/* ================================================================
   NAAM JAPA COUNTER — style.css
   Theme: Light pink-cream + deep crimson (app theme)
   ================================================================ */

/* ---- Variables ---- */
:root {
  --bg: #fef5f7;
  --bg-alt: #fdeef2;
  --bg-section: #fff9fb;
  --white: #ffffff;

  --crimson: #b5174e;
  --crimson-dark: #8e1040;
  --crimson-light: #f0c2d0;
  --pink-soft: #f9dde6;
  --pink-pale: #fce8ef;

  --text-dark: #18090e;
  --text-mid: #5c3a47;
  --text-muted: #9e7d89;

  --border: rgba(181, 23, 78, 0.11);
  --border-light: rgba(181, 23, 78, 0.07);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 10px rgba(181, 23, 78, 0.08);
  --shadow-md: 0 6px 26px rgba(181, 23, 78, 0.13);
  --shadow-lg: 0 14px 44px rgba(181, 23, 78, 0.17);

  --transition: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Inter", system-ui, sans-serif;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* ---- Scroll Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.delay-1 {
  transition-delay: 0.1s;
}
.fade-up.delay-2 {
  transition-delay: 0.2s;
}
.fade-up.delay-3 {
  transition-delay: 0.3s;
}
.fade-up.delay-4 {
  transition-delay: 0.4s;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Typography (small + modern) ---- */
h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
}
h3 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
}
p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.72;
}
strong {
  font-weight: 700;
  color: var(--text-dark);
}

/* ---- Utilities ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.mt-0 {
  margin-top: 0 !important;
}

.label-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson);
  background: var(--pink-pale);
  padding: 4px 11px;
  border-radius: var(--radius-full);
  margin-bottom: 9px;
}

.highlight {
  color: var(--crimson);
}

.section-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 44px;
}
.section-header h2 {
  margin-bottom: 7px;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.81rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
}
.btn-primary:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(181, 23, 78, 0.28);
}
.btn-outline {
  background: transparent;
  color: var(--crimson);
  border-color: var(--crimson-light);
}
.btn-outline:hover {
  background: var(--pink-pale);
  border-color: var(--crimson);
  transform: translateY(-2px);
}
.btn-large {
  padding: 12px 26px;
  font-size: 0.88rem;
}

/* ================================================================
   HEADER / NAVBAR
   ================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(254, 245, 247, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  flex-shrink: 0;
}
.logo-om {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--crimson), #d4245e);
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.81rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--crimson);
}
.nav-cta {
  margin-left: 8px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(254, 245, 247, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mobile-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-menu a:hover {
  background: var(--pink-pale);
  color: var(--crimson);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  gap: 52px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 118px 20px 76px;
}
.hero-left {
  flex: 1;
  min-width: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--crimson);
  background: var(--pink-pale);
  border: 1px solid var(--crimson-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.hero h1 {
  margin-bottom: 14px;
}
.hero-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  max-width: 430px;
  margin-bottom: 10px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 34px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 18px;
}
.stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.stat span {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-sep {
  width: 1px;
  height: 26px;
  background: var(--border);
}

.hero-right {
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-wrap {
  position: relative;
  display: inline-block;
}
.phone-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse at 50% 55%,
    rgba(181, 23, 78, 0.11) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}
.phone-img {
  width: 250px;
  border-radius: 32px;
  box-shadow:
    0 20px 56px rgba(181, 23, 78, 0.2),
    0 3px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}
.phone-badge {
  position: absolute;
  bottom: 22px;
  right: -18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 13px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 2;
  animation: float 4s ease-in-out 0.4s infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* ================================================================
   WHAT IS
   ================================================================ */
.what-is {
  padding: 80px 0;
  background: var(--white);
}
.what-is-layout {
  display: flex;
  align-items: center;
  gap: 64px;
}
.wi-image img {
  width: 220px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.wi-content {
  flex: 1;
}
.wi-content h2 {
  margin: 6px 0 14px;
}
.wi-content p {
  margin-bottom: 10px;
}

/* ================================================================
   HOW TO USE
   ================================================================ */
.how-to-use {
  padding: 80px 0;
  background: var(--bg-alt);
}
.steps-layout {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
.steps-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all var(--transition);
}
.step-card:hover {
  border-color: var(--crimson-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}
.step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h3 {
  margin-bottom: 4px;
}

.steps-phones {
  flex-shrink: 0;
  position: relative;
  width: 300px;
  height: 440px;
}
.sp-phone {
  position: absolute;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sp-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-back {
  width: 185px;
  height: 370px;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 1;
}
.sp-front {
  width: 195px;
  height: 390px;
  bottom: 0;
  right: 0;
  transform: rotate(2deg);
  z-index: 2;
}

/* ================================================================
   SACRED SCIENCE
   ================================================================ */
.sacred {
  padding: 80px 0;
  background: var(--white);
}
.sacred-layout {
  display: flex;
  align-items: center;
  gap: 64px;
}
.sacred-content {
  flex: 1;
}
.sacred-content h2 {
  margin: 6px 0 14px;
}
.sacred-content p {
  margin-bottom: 10px;
}
.sacred-image img {
  width: 220px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

/* ================================================================
   10 TIPS
   ================================================================ */
.tips-section {
  padding: 80px 0;
  background: var(--bg-alt);
}
.tips-layout {
  display: flex;
  gap: 52px;
  align-items: flex-start;
}
.tips-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.tip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 18px;
  transition: all var(--transition);
  position: relative;
}
.tip-card:hover {
  border-color: var(--crimson-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.tip-num {
  font-size: 0.63rem;
  font-weight: 800;
  color: var(--crimson);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 6px;
}
.tip-card h3 {
  margin-bottom: 4px;
}

.tips-image {
  flex-shrink: 0;
}
.tips-image img {
  width: 215px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

/* ================================================================
   PRIVACY
   ================================================================ */
.privacy-section {
  padding: 80px 0;
  background: var(--white);
}
.privacy-layout {
  display: flex;
  align-items: center;
  gap: 64px;
}
.priv-image img {
  width: 215px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.priv-content {
  flex: 1;
}
.priv-content h2 {
  margin: 6px 0 12px;
}
.priv-content > p {
  margin-bottom: 22px;
}
.priv-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.priv-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.priv-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--pink-pale);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.priv-list strong {
  font-size: 0.85rem;
  display: block;
  margin-bottom: 2px;
}
.priv-footer {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ================================================================
   COMPARISON TABLE
   ================================================================ */
.comparison {
  padding: 80px 0;
  background: var(--bg-alt);
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.81rem;
}
.compare-table thead {
  background: var(--crimson);
  color: #fff;
}
.compare-table th {
  padding: 13px 18px;
  text-align: left;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.compare-table td {
  padding: 12px 18px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-light);
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table tbody tr:hover td {
  background: var(--pink-pale);
}
.compare-table .highlight-col {
  background: rgba(181, 23, 78, 0.06);
  color: var(--crimson);
  font-weight: 600;
}
.compare-table thead .highlight-col {
  background: rgba(255, 255, 255, 0.15);
}
.table-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* Responsive Table (Stacked Card Layout) */
@media (max-width: 640px) {
  .compare-table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table th,
  .compare-table td,
  .compare-table tr {
    display: block;
  }

  .compare-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .compare-table tr {
    border: 1px solid var(--border);
    border-bottom: 2px solid var(--crimson-light);
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    background: var(--white);
    overflow: hidden;
  }

  .compare-table td {
    border: none;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 50% !important;
    text-align: right !important;
    font-size: 0.8rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .compare-table td:last-child {
    border-bottom: none;
  }

  .compare-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 14px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--crimson);
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  /* Highlight the App column specifically in stacked view */
  .compare-table td.highlight-col {
    background: rgba(181, 23, 78, 0.04);
    font-weight: 700;
  }

  .compare-table td.highlight-col::before {
    color: var(--crimson-dark);
  }
}

/* ================================================================
   6 FEATURES
   ================================================================ */
.features {
  padding: 80px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--crimson-light);
}
.feat-img-wrap {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--pink-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.feat-icon {
  color: var(--crimson);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 12px rgba(181, 23, 78, 0.15));
}
.feat-card:hover .feat-icon {
  transform: scale(1.15) rotate(5deg);
}
/* Image styles removed as icons are now used */
.feat-info {
  padding: 16px 18px 18px;
}
.feat-num {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--crimson);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 5px;
}
.feat-info h3 {
  margin-bottom: 5px;
}
.feat-info p {
  font-size: 0.78rem;
}

/* ================================================================
   WHY DIGITAL
   ================================================================ */
.why-digital {
  padding: 80px 0;
  background: var(--bg-alt);
}
.why-layout {
  display: flex;
  align-items: center;
  gap: 64px;
}
.why-content {
  flex: 1;
}
.why-content h2 {
  margin: 6px 0 10px;
}
.why-content > p {
  margin-bottom: 22px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.why-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list strong {
  font-size: 0.84rem;
  display: block;
  margin-bottom: 2px;
}

/* Stacked phones */
.why-phones {
  flex-shrink: 0;
  position: relative;
  width: 310px;
  height: 410px;
}
.wd-phone {
  position: absolute;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.wd-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wd-back {
  width: 185px;
  height: 320px;
  top: 0;
  left: 0;
  transform: rotate(-4deg);
  z-index: 1;
}
.wd-front {
  width: 195px;
  height: 340px;
  bottom: 0;
  right: 0;
  transform: rotate(3deg);
  z-index: 2;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  padding: 76px 0;
  background: var(--white);
}
.cta-card {
  background: linear-gradient(135deg, var(--crimson) 0%, #d4245e 100%);
  border-radius: var(--radius-xl);
  padding: 52px 52px;
  display: flex;
  align-items: center;
  gap: 44px;
  overflow: hidden;
  position: relative;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}
.cta-text {
  flex: 1;
}
.cta-text h2 {
  color: #fff;
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
}
.cta-text p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
  font-size: 0.82rem;
  max-width: 380px;
}
.cta-text p:last-of-type {
  margin-bottom: 22px;
}
.cta-text .btn-primary {
  background: #fff;
  color: var(--crimson);
  border-color: #fff;
}
.cta-text .btn-primary:hover {
  background: var(--pink-soft);
  border-color: var(--pink-soft);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}
.cta-phones {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
}
.cta-phone {
  border-radius: 22px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
}
.cta-back {
  width: 140px;
  transform: rotate(-4deg) translateX(20px);
  z-index: 1;
  opacity: 0.82;
}
.cta-front {
  width: 155px;
  transform: rotate(2deg);
  z-index: 2;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-section {
  padding: 80px 0;
  background: var(--bg-alt);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  transition: all var(--transition);
}
.faq-card:hover {
  border-color: var(--crimson-light);
  box-shadow: var(--shadow-sm);
}
.faq-card h3 {
  font-size: 0.85rem;
  color: var(--crimson);
  margin-bottom: 8px;
  line-height: 1.4;
}
.faq-card p {
  font-size: 0.8rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px;
  padding: 38px 20px 30px;
}
.footer-brand {
  flex: 1;
  min-width: 200px;
}
.footer-brand p {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 7px;
  max-width: 240px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: flex-start;
}
.footer-nav a {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--crimson);
}
.footer-social {
  display: flex;
  gap: 9px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--pink-pale);
  border-color: var(--crimson-light);
  color: var(--crimson);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 15px 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.73rem;
  color: var(--text-muted);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .what-is-layout,
  .sacred-layout {
    gap: 40px;
  }
  .steps-phones {
    width: 250px;
    height: 380px;
  }
  .sp-back {
    width: 155px;
    height: 315px;
  }
  .sp-front {
    width: 165px;
    height: 335px;
  }
  .why-phones {
    width: 260px;
    height: 360px;
  }
  .wd-back {
    width: 155px;
    height: 270px;
  }
  .wd-front {
    width: 165px;
    height: 290px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    padding: 108px 20px 58px;
    text-align: center;
    gap: 36px;
  }
  .hero-right {
    order: -1;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .phone-img {
    width: 210px;
  }
  .phone-badge {
    right: -10px;
  }

  .what-is-layout {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .wi-image img {
    width: 200px;
    margin: 0 auto;
  }

  .steps-layout {
    flex-direction: column;
  }
  .steps-phones {
    display: none;
  }

  .sacred-layout {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .sacred-image img {
    width: 200px;
    margin: 0 auto;
  }

  .tips-layout {
    flex-direction: column;
  }
  .tips-image {
    display: none;
  }
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .privacy-layout {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .priv-image img {
    width: 200px;
    margin: 0 auto;
  }
  .priv-list li {
    justify-content: flex-start;
    text-align: left;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-layout {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }
  .why-phones {
    margin: 0 auto;
  }
  .why-list li {
    text-align: left;
  }

  .cta-card {
    flex-direction: column;
    padding: 36px 24px;
    text-align: center;
  }
  .cta-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-phones {
    justify-content: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-nav,
  .footer-social {
    justify-content: center;
  }
  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.55rem;
  }
  .phone-img {
    width: 185px;
  }
  .cta-card {
    padding: 28px 18px;
  }
}
