*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:     #2DD4BF;
  --white:    #FFFFFF;
  --black:    #111111;
  --text-sec: #6B7280;
  --border:   #E5E7EB;
  --page-bg:  #F3F4F6;
  --nav-h:    68px;
  --r:        18px;          /* hero border-radius */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Carlito', Calibri, sans-serif;
  background: var(--page-bg);
  color: var(--black);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════
   NAVBAR — white, fixed
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  border-radius:0 0 var(--r) var(--r);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 30px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.nav-active { color: var(--teal); font-weight: 700; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  transition: background 0.16s;
}
.nav-icon-btn:hover { background: var(--page-bg); }

.nav-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  border-radius: 8px;
  font-family: 'Carlito', Calibri, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.nav-dl-btn.outline {
  border: 1.5px solid #D1D5DB;
  background: transparent;
  color: var(--black);
}
.nav-dl-btn.outline:hover { border-color: var(--black); }
.nav-dl-btn.filled {
  border: 1.5px solid var(--teal);
  background: var(--teal);
  color: var(--white);
}
.nav-dl-btn.filled:hover { background: #22c5b0; border-color: #22c5b0; }

/* ═══════════════════════════════════════
   90% PAGE WRAPPER
═══════════════════════════════════════ */
.page-wrap {
  width: 90%;
  margin: 0 auto;
  max-width: 1560px;
}

/* ═══════════════════════════════════════
HERO — rounded card
═══════════════════════════════════════ */
.hero {
  margin-top: calc(var(--nav-h) + 14px);
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h) - 28px);
  min-height: 520px;
  border-radius: var(--r);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

/* dark gradient — covers left+bottom for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.02) 52%,
      rgba(0,0,0,0.0)  100%
    ),
    linear-gradient(
      to top,
      rgba(0,0,0,0.80) 0%,
      rgba(0,0,0,0.15) 38%,
      rgba(0,0,0,0.08) 100%
    );
  z-index: 1;
}

/* ── Social proof chip — top right ── */
.hero-proof {
  position: absolute;
  top: 26px;
  right: 28px;
  z-index: 5;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 190px;
}
.proof-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.proof-avatars {
  display: flex;
}
.proof-avatars i {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.65);
  background: linear-gradient(135deg, var(--teal), #0d9488);
  display: flex; align-items: center; justify-content: center;
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
  flex-shrink: 0;
}
.proof-avatars i:first-child { margin-left: 0; }
.proof-count {
  background: rgba(0,0,0,0.55);
  border-radius: 100px;
  padding: 2px 9px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--white);
}
.proof-label {
  font-size: 12px;
  color: rgba(255,255,255,0.80);
  line-height: 1.4;
  font-weight: 400;
}

/* ── Right description + CTA ── */
.hero-right {
  position: absolute;
  right: 28px;
  bottom: calc(110px + 28px);
  z-index: 5;
  max-width: 260px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.hero-right p {
  font-size: 16px;
  line-height: 1.62;
  color: rgba(255,255,255,0.75);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  color: var(--black);
  border-radius: 100px;
  font-family: 'Carlito', Calibri, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}
.hero-cta:hover { background: #f0fdfb; transform: translateY(-1px); }
.hero-cta svg { transition: transform 0.18s; }
.hero-cta:hover svg { transform: translateX(3px); }

/* ── Hero pill badge ── */
.hero-pill {
  position: absolute;
  bottom: calc(40px + 22px + clamp(155px, 22vw, 295px));
  left: 60px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 10px;
  background: rgba(204, 250, 244, 0.18);
  /* border: 1px solid rgba(45, 212, 191, 0.45); */
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
}
.hero-pill__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.hero-pill__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-pill__text {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

/* ── Hero heading — bottom left ── */
.hero-heading {
  position: absolute;
  bottom: calc(40px + 22px);
  left: 60px;
  z-index: 5;
  font-family: 'Carlito', Calibri, sans-serif;
  font-weight: 200;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.0;
  letter-spacing: 1.5;
  color: var(--white);
  text-transform: normal;
  max-width: 55%;
}
.hero-heading em {
  font-size: clamp(60px, 7.2vw, 150px);
  font-style: normal;
  letter-spacing: -5px;
  font-weight: 900;
  text-transform: normal;
  color: var(--teal);
 }

/* ── Stats card — white, bottom-right ── */
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 4;
  width: 56%;
  max-width: 600px;
  background: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px 0 0 0;
  display: flex;
  align-items: stretch;
}

/* top-right concave corner cap */
.hero-stats::before {
  content: '';
  position: absolute;
  top: -16px;
  right: 0;
  width: 16px;
  height: 16px;
  transform: rotate(90deg);
  background: radial-gradient(
    circle at 0% 100%,
    transparent 15px,
    rgba(255,255,255,0.93) 16px
  );
  pointer-events: none;
  z-index: 5;
}

/* bottom-left concave corner cap */
.hero-stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  transform: rotate(-90deg);
  left: -16px;
  width: 16px;
  height: 16px;
  background: radial-gradient(
    circle at 100% 0%,
    transparent 15px,
    rgba(255,255,255,0.93) 16px
  );
  pointer-events: none;
  z-index: 5;
}

.stat-item {
  flex: 1;
  padding: 22px 28px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Carlito', Calibri, sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-value sup {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--teal);
  vertical-align: super;
}
.stat-label {
  font-size: 16px;
  color: var(--text-sec);
  margin-top: 4px;
  line-height: 1.2;
}

/* ═══════════════════════════════════════
   ACCORDION SECTION
═══════════════════════════════════════ */
.accord-section {
  width: 90%;
  margin: 64px auto 0;
}

.accord-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 0 50px;
  margin-bottom: 46px;
}
.accord-heading {
  font-family: 'Carlito', Calibri, sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--black);
  max-width: 400px;
  flex-shrink: 0;
}
.accord-subtext {
  font-size: 20px;
  color: var(--text-sec);
  line-height: 1.3;
  max-width: 450px;
  padding-top: 4px;
}

.accord-track {
  display: flex;
  gap: 10px;
  height: 680px;
}

.accord-panel {
  flex: 1;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.62s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 72px;
}
.accord-panel.is-active {
  flex: 1.5;
  min-width: 350px;
}

.panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.2);
}
.accord-panel.is-active .panel-bg {
  transform: scale(1);
}

.panel-overlay {
  position: absolute;
  inset: 0;
  /* background:
    linear-gradient(to top,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.42) 45%,
      rgba(0,0,0,0.18) 100%); */
  background: rgba(21, 21, 21, 0.8);
  transition: background 0.4s;
  z-index: 1;
}

.accord-panel.is-active .panel-overlay {
    background:
    linear-gradient(to top,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.42) 15%,
      rgba(0,0,0,0.0) 100%);
}
.panel-num {
  position: absolute;
  top: 20px;
  left: 18px;
  z-index: 3;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.accord-panel.is-active .panel-num {
  color: var(--teal);
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 20px;
  border-radius: 100px;
  background: var(--teal);
  color: var(--white);
  opacity: 1;
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.panel-v-label {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}
.accord-panel.is-active .panel-v-label {
  opacity: 0;
  pointer-events: none;
}

.panel-h-content {
  position: absolute;
  bottom: 28px;
  left: 26px;
  right: 26px;
  z-index: 3;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s 0.18s, transform 0.35s 0.18s;
  pointer-events: none;
}
.accord-panel.is-active .panel-h-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.panel-h-title {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.panel-h-desc {
  font-size: 16px;
  color: rgba(255,255,255,1);
  line-height: 1.3;
}

.accord-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--teal);
  border-radius: 0 0 14px 14px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 4;
}
.accord-panel.is-active::after {
  width: 100%;
}

/* ═══════════════════════════════════════
   SCROLL TEXT REVEAL
═══════════════════════════════════════ */
.scroll-text-section {
  /* background: var(--white); */
  padding: 100px 5%;
}
.scroll-text-inner {
  max-width: 1460px;
  margin: 0 auto;
}
.scroll-text-para {
  font-size: clamp(24px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--black);
}
/* each word starts grey */
.scroll-text-para .word {
  display: inline;
  color: #ccc;
  transition: none; /* GSAP handles it */
}
.scroll-text-tag {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ccc;
}

/* ═══════════════════════════════════════
   WHY CHOOSE ZOWAAJ
═══════════════════════════════════════ */
.why-section {
  background: var(--white);
  padding: 96px 5%;
  border-radius: var(--r);
  margin-top: 64px;
  margin-bottom: 64px;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Left */
.why-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.why-heading {
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 18px;
  max-width: 400px;
}
.why-sub {
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-sec);
  max-width: 440px;
  margin-bottom: 44px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: var(--white);
  /* border: 1px solid var(--border); */
  border-radius: 16px;
  padding: 22px 20px 20px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.why-card:hover {
  box-shadow: 0 8px 28px rgba(45,212,191,0.12);
  transform: translateY(-3px);
}
.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #CCFAF4;
  border-radius: 10px;
  color: var(--teal);
  margin-bottom: 14px;
}
.why-icon svg { width: 20px; height: 20px; }
.why-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.why-card-desc {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-sec);
}

/* Right */
.why-right {
  position: relative;
}
.why-img-wrap {
  position: relative;
  border-radius: 24px;
}

/* ── stacked phone mockups ── */
.why-phones-stack {
  position: relative;
  width: 100%;
  height: 600px;
}

.why-phones-stack:hover .why-phone--back {
  transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  left: 10%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
}
.why-phones-stack:hover  .why-phone--front {
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  right: 10%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
}
.why-phone {
  position: absolute;
  width: 50%;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-phone img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.why-phone--back {
  left: 15%;
  top: 0px;
  transform: rotate(-9deg);
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

}
.why-phone--front {
  right: 15%;
  top: 60px;
  transform: rotate(6deg);
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
/* hover — phones tilt away from each other */
.why-phones-stack:hover .why-phone--back {
  transform: rotate(-14deg) translateX(-12px) translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
}
.why-phones-stack:hover .why-phone--front {
  transform: rotate(10deg) translateX(12px) translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
}
.why-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 10;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.wib-stat {
  font-size: 26px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.wib-stat sup { font-size: 14px; }
.wib-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-sec);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 860px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-right { order: -1; }
}

/* ═══════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════ */
.testi-section {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 80px 0;
}
.testi-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.testi-left-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
}
.testi-left-heading {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--black);
}
/* 4 cards in one row */
.testi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: start;
}
.testi-card {
  background: var(--white);
  /* border: 1px solid var(--border); */
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  gap: 10px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  justify-content: space-between;
}
.testi-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.testi-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testi-avatar--teal   { background: linear-gradient(135deg, #2DD4BF, #0d9488); }
.testi-avatar--blue   { background: linear-gradient(135deg, #60A5FA, #2563EB); }
.testi-avatar--rose   { background: linear-gradient(135deg, #FB7185, #E11D48); }
.testi-avatar--amber  { background: linear-gradient(135deg, #FCD34D, #D97706); }
.testi-avatar--purple { background: linear-gradient(135deg, #A78BFA, #7C3AED); }
.testi-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.testi-meta strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testi-meta span {
  font-size: 16px;
  color: var(--text-sec);
}
.testi-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-badge--ios     { background: #000; color: #fff; }
.testi-badge--android { background: #01875F; color: #fff; }
.testi-stars {
  font-size: 14px;
  color: #F59E0B;
  letter-spacing: 1px;
}
.testi-quote {
  font-size: 22px;
  line-height: 1.4;
  color: #374151;
  margin: 0;
}

@media (max-width: 960px) {
  .testi-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .testi-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════ */
.faq-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
  padding: 80px 0 100px;
  width: 90%;
  max-width: 1560px;
  margin: 0 auto;
}
.faq-left { display: flex; flex-direction: column; }
.faq-big {
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -4px;
  color: var(--black);
  margin-bottom: 20px;
}
.faq-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-sec);
  max-width: 240px;
}
.faq-right {
  display: flex;
  flex-direction: column;
}
.faq-item {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 8px;
  padding: 0px 20px;
  /* border-bottom: 1px solid var(--border); */
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Carlito', Calibri, sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
  cursor: pointer;
  text-align: left;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  transition: background 0.2s, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.is-open .faq-icon {
  background: var(--teal);
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-sec);
}
.faq-item.is-open .faq-answer {
  max-height: 300px;
}

@media (max-width: 760px) {
  .faq-section { grid-template-columns: 1fr; gap: 32px; }
  .faq-big { font-size: clamp(56px, 14vw, 90px); }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: #111111;
  color: #fff;
  padding: 72px 5% 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto 64px;
}
/* Left */
.footer-left { display: flex; flex-direction: column; }
.footer-talk {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 28px;
}
.footer-tagline {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 380px;
  margin-bottom: 44px;
}
.footer-tagline em {
  font-style: normal;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}
.footer-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-perk-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.footer-perk-icon svg {
  width: 16px;
  height: 16px;
}
.footer-perk-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.footer-perk-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
/* Right — contact card */
.footer-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  color: var(--black);
}
.footer-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
}
.footer-field label span { color: #E11D48; }
.footer-field input,
.footer-field textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Carlito', Calibri, sans-serif;
  font-size: 14px;
  color: var(--black);
  background: #fff;
  outline: none;
  transition: border-color 0.18s;
  resize: none;
}
.footer-field input::placeholder,
.footer-field textarea::placeholder { color: #9CA3AF; }
.footer-field input:focus,
.footer-field textarea:focus { border-color: var(--teal); }
.footer-field textarea { height: 90px; }
.footer-submit {
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-family: 'Carlito', Calibri, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
  margin-top: 2px;
}
.footer-submit:hover { background: #222; }
.footer-privacy {
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 10px;
  line-height: 1.5;
}
.footer-privacy a { color: #6B7280; text-decoration: underline; }
/* Bottom bar */
.footer-bottom {
  max-width: 1460px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-logo-mark {
  width: 62px;
  height: 62px;
  background: var(--teal);
  border-radius: 8px;
  margin-right: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-mark img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-social-link {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 4px 14px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: color 0.18s;
  white-space: nowrap;
}
.footer-social-link:last-child { border-right: none; }
.footer-social-link:hover { color: #fff; }
.footer-copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 16px;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-legal a:hover { color: #fff; }

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-talk { font-size: clamp(44px, 12vw, 72px); }
}

/* ═══════════════════════════════════════
   CTA / DOWNLOAD SECTION
═══════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
  /* background: #fff; */
  padding: 80px 5% 0;
  text-align: center;
  /* teal blob radiating from bottom-center */
  background-image:
    radial-gradient(ellipse 90% 55% at 50% 105%, rgba(45,212,191,0.28) 0%, rgba(45,212,191,0.10) 50%, transparent 70%);
}

/* text block */
.cta-text {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto 56px;
}
.cta-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #CCFAF4;
  color: #0d9488;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 999px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.cta-heading {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--black);
  margin-bottom: 18px;
}
.cta-heading em {
  font-style: normal;
  color: var(--teal);
}
.cta-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-sec);
  margin-bottom: 36px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: var(--black);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cta-btn:hover {
  background: #222;
  transform: translateY(-2px);
}

/* phones row */
.cta-phones {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
}
.phone-wrap {
  flex-shrink: 0;
}
/* center phone — tallest */
.phone-center .phone-shell {
  width: 220px;
  height: 440px;
  border-radius: 36px;
  background: var(--black);
  border: 4px solid #333;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
  position: relative;
  z-index: 4;
}
/* side phones — smaller, overlapping, rotated */
.phone-left  { transform: rotate(-6deg) translateX(30px); z-index: 1; }
.phone-right { transform: rotate(6deg)  translateX(-30px); z-index: 1; }
.phone-left .phone-shell,
.phone-right .phone-shell {
  width: 180px;
  height: 360px;
  border-radius: 30px;
  background: var(--black);
  border: 3px solid #333;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  /* placeholder tint so empty screens aren't pure black */
  background-image: linear-gradient(160deg, #222 0%, #111 100%);
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* notch */
.phone-shell::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}

@media (max-width: 860px) {
  .cta-phones { gap: 0; }
  .phone-center .phone-shell { width: 170px; height: 340px; }
  .phone-left .phone-shell,
  .phone-right .phone-shell  { width: 130px; height: 260px; }
  .phone-left  { transform: rotate(-6deg) translateX(22px); }
  .phone-right { transform: rotate(6deg)  translateX(-22px); }
}
@media (max-width: 480px) {
  .phone-left, .phone-right { display: none; }
  .phone-center .phone-shell { width: 200px; height: 400px; }
}

/* ═══════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-stats { width: 100%; border-radius: 0 0 var(--r) var(--r); }
  .hero-heading { max-width: 70%; font-size: clamp(32px, 7vw, 52px); }
  .hero-pill { left: 24px; bottom: calc(50px + 32px + clamp(180px, 26vw, 240px)); }
  .hero-pill__text { font-size: 12px; }
  .hero-right { display: none; }

  .accord-header { flex-direction: column; gap: 12px; }
  .accord-heading { max-width: 100%; }
  .accord-track {
    flex-direction: column;
    height: auto;
    gap: 8px;
  }
  .accord-panel {
    flex: none;
    height: 68px;
    min-width: unset;
    transition: height 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .accord-panel.is-active {
    flex: none;
    height: 320px;
  }
  .panel-v-label {
    writing-mode: horizontal-tb;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    font-size: 14px;
  }
  .accord-panel.is-active .panel-v-label { opacity: 0; }
  .panel-num {
    writing-mode: horizontal-tb;
    transform: none;
    top: 18px;
    left: 16px;
  }
}

/* ═══════════════════════════════════════
   MOBILE FIXES (≤ 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── Nav — compact download buttons, hide icon buttons ── */
  .nav-icon-btn { display: none; }
  .navbar { padding: 0 4%; }
  .nav-dl-btn {
    padding: 6px 10px;
    font-size: 11.5px;
    gap: 4px;
    border-radius: 7px;
  }
  .nav-dl-btn svg { width: 11px; height: 11px; }

  /* ── Hero — push text above stats bar ── */
  .hero-heading {
    font-size: clamp(28px, 9vw, 40px);
    left: 20px;
    max-width: 90%;
    bottom: 110px;
  }
  .hero-pill {
    left: 20px;
    bottom: calc(150px + clamp(100px, 28vw, 160px));
  }
  .hero-proof { right: 12px; top: 16px; min-width: unset; max-width: 160px; }
  .proof-label { font-size: 11px; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .stat-item { padding: 14px 12px; }
  .stat-value { font-size: clamp(18px, 5vw, 24px); }
  .stat-label { font-size: 9px; }

  /* ── Scroll text ── */
  .scroll-text-section { padding: 60px 5%; }
  .scroll-text-para { font-size: clamp(18px, 5.5vw, 28px); }

  /* ── Accordion ── */
  .accord-section { padding: 48px 4%; }
  .accord-heading { font-size: clamp(24px, 7vw, 36px); }
  .accord-subtext { font-size: 14px; }

  /* ── Why section ── */
  .why-section { padding: 56px 4%; margin-top: 24px; margin-bottom: 24px; }
  .why-heading { font-size: clamp(26px, 7vw, 38px); }
  .why-sub { font-size: 15px; margin-bottom: 28px; }
  .why-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-phones-stack { height: 360px; }
  .why-phone { width: 46%; }

  /* ── Testimonials ── */
  .testi-section { padding: 48px 0; }
  .testi-row { grid-template-columns: 1fr; }

  /* ── FAQ ── */
  .faq-section { padding: 48px 4% 60px; }
  .faq-big { font-size: clamp(60px, 18vw, 90px); }
  .faq-sub { font-size: 13.5px; }
  .faq-question { font-size: 15px; }
  .faq-answer-inner { font-size: 14px; }

  /* ── CTA — show all 3 phones ── */
  .phone-left, .phone-right { display: block !important; }
  .phone-center .phone-shell { width: 130px; height: 260px; }
  .phone-left .phone-shell,
  .phone-right .phone-shell  { width: 95px; height: 190px; }
  .phone-left  { transform: rotate(-6deg) translateX(16px); }
  .phone-right { transform: rotate(6deg)  translateX(-16px); }
  .phone-shell::before { width: 40px; }
  .cta-heading { font-size: clamp(24px, 7vw, 36px); }
  .cta-section { padding: 48px 4% 0; }

  /* ── Footer ── */
  .site-footer { padding: 48px 4% 28px; }
  .footer-talk { font-size: clamp(40px, 13vw, 60px); }
  .footer-card { padding: 24px 20px; }
  .footer-socials { gap: 0; flex-wrap: wrap; row-gap: 6px; }
  .footer-social-link { font-size: 12px; padding: 4px 10px; }
  .footer-copy-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}
