/* Smart Trippy — section layout CSS */

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .3s, backdrop-filter .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7,17,30,.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 24px -10px rgba(0,0,0,.4);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header .logo span { color: white; }
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 24px;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--teal-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }
.header-cta .btn { padding: 10px 18px; font-size: 14px; }
/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  border-radius: 12px;
  cursor: pointer;
  z-index: 201;
  transition: background .25s, border-color .25s, transform .25s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-toggle:hover, .mobile-toggle.open {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.mobile-toggle .icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  transition: opacity .3s ease, transform .45s cubic-bezier(.2,.8,.2,1);
}
.mobile-toggle .icon-x { opacity: 0; transform: translate(-50%, -50%) rotate(-90deg) scale(.7); }
.mobile-toggle.open .icon-menu { opacity: 0; transform: translate(-50%, -50%) rotate(90deg) scale(.7); }
.mobile-toggle.open .icon-x { opacity: 1; transform: translate(-50%, -50%) rotate(0) scale(1); }

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  will-change: opacity, transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity .4s cubic-bezier(.2,.8,.2,1), visibility 0s linear .4s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity .4s cubic-bezier(.2,.8,.2,1), visibility 0s linear 0s;
}

.mm-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 100% 0%, #0F2238 0%, #07111E 55%, #050A12 100%);
  overflow: hidden;
  pointer-events: none;
}
.mm-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 75%);
}
.mm-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.mm-glow-1 {
  width: 420px; height: 420px;
  background: rgba(45,182,181,.55);
  top: -120px; right: -100px;
  animation: mm-float-1 9s ease-in-out infinite;
}
.mm-glow-2 {
  width: 320px; height: 320px;
  background: rgba(122,107,255,.35);
  bottom: -80px; left: -80px;
  animation: mm-float-2 11s ease-in-out infinite;
}
@keyframes mm-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.05); }
}
@keyframes mm-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.08); }
}

.mm-content {
  position: relative;
  z-index: 1;
  padding: 96px 24px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  align-self: flex-start;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s cubic-bezier(.2,.8,.2,1), transform .55s cubic-bezier(.2,.8,.2,1);
}
.mm-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 12px var(--teal-400);
}

.mm-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mm-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: white;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .55s cubic-bezier(.2,.8,.2,1),
    transform .55s cubic-bezier(.2,.8,.2,1),
    padding-left .35s cubic-bezier(.2,.8,.2,1),
    color .25s;
  -webkit-tap-highlight-color: transparent;
}
.mm-link::before {
  content: "";
  position: absolute;
  left: -24px; right: -24px;
  top: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(45,182,181,.18), rgba(45,182,181,0) 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.mm-link:hover::before, .mm-link:active::before { opacity: 1; }
.mm-link:hover, .mm-link:active { padding-left: 14px; }
.mm-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal-300);
  font-weight: 500;
  letter-spacing: .12em;
  align-self: center;
}
.mm-text {
  font-family: var(--font-serif);
  font-size: clamp(30px, 9vw, 44px);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1;
  font-style: italic;
  background: linear-gradient(100deg, #FFFFFF 0%, #B8E6E3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 2px;
}
.mm-arrow {
  color: rgba(255,255,255,.35);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), color .25s;
  display: inline-flex;
}
.mm-link:hover .mm-arrow,
.mm-link:active .mm-arrow {
  transform: translateX(8px);
  color: var(--teal-300);
}

.mm-cta {
  margin-top: 28px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s cubic-bezier(.2,.8,.2,1), transform .55s cubic-bezier(.2,.8,.2,1);
}
.mm-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 22px;
  font-size: 15px;
}

.mm-contact {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s cubic-bezier(.2,.8,.2,1), transform .55s cubic-bezier(.2,.8,.2,1);
}
.mm-c-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 4px;
  color: white;
  border-radius: 8px;
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
}
.mm-c-row:hover { background: rgba(255,255,255,.04); }
.mm-c-k {
  font-size: 10px;
  color: rgba(255,255,255,.45);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.mm-c-v {
  font-weight: 600;
  font-size: 13px;
  color: white;
  word-break: break-word;
}

/* Staggered reveal when open */
.mobile-menu.open .mm-eyebrow {
  opacity: 1; transform: translateY(0);
  transition-delay: .1s;
}
.mobile-menu.open .mm-link { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mm-link:nth-of-type(1) { transition-delay: .15s; }
.mobile-menu.open .mm-link:nth-of-type(2) { transition-delay: .22s; }
.mobile-menu.open .mm-link:nth-of-type(3) { transition-delay: .29s; }
.mobile-menu.open .mm-link:nth-of-type(4) { transition-delay: .36s; }
.mobile-menu.open .mm-cta {
  opacity: 1; transform: translateY(0);
  transition-delay: .42s;
}
.mobile-menu.open .mm-contact {
  opacity: 1; transform: translateY(0);
  transition-delay: .48s;
}

/* Responsive: only enable mobile nav at <=880px */
@media (max-width: 880px) {
  .nav-links, .header-cta { display: none; }
  .mobile-toggle { display: inline-flex; }
  .mobile-menu { display: flex; }
}
@media (max-width: 380px) {
  .mm-content { padding: 88px 18px 22px; }
  .mm-link { padding: 20px 4px; gap: 14px; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse at top, #0F2238 0%, #07111E 60%, #050A12 100%);
  overflow: hidden;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.6), transparent 50%),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,.5), transparent 50%),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,.4), transparent 50%),
    radial-gradient(1px 1px at 65% 80%, rgba(255,255,255,.5), transparent 50%),
    radial-gradient(1px 1px at 90% 60%, rgba(255,255,255,.45), transparent 50%),
    radial-gradient(1px 1px at 10% 50%, rgba(255,255,255,.35), transparent 50%),
    radial-gradient(1.5px 1.5px at 30% 15%, rgba(255,255,255,.5), transparent 50%);
  opacity: .55;
}
.globe-orbit {
  position: absolute;
  width: 1200px; height: 1200px;
  border-radius: 50%;
  border: 1px solid rgba(45,182,181,.12);
  left: 50%;
  bottom: -800px;
  transform: translateX(-50%);
}
.globe-orbit::before, .globe-orbit::after {
  content: "";
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(45,182,181,.1);
}
.globe-orbit::after { inset: 180px; border-color: rgba(45,182,181,.08); }
.globe-orbit.small {
  width: 800px; height: 800px;
  bottom: -550px;
  border-color: rgba(45,182,181,.18);
}
.globe-orbit.big {
  width: 1600px; height: 1600px;
  bottom: -1100px;
  border-color: rgba(45,182,181,.14);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-copy { color: white; max-width: 640px; }
.eyebrow-dark {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.hero-copy .headline { color: white; margin: 22px 0 22px; }
.hero-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  max-width: 540px;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 12px; margin: 32px 0 40px; flex-wrap: wrap; align-items: center; }
.store-badges { flex-basis: 100%; display: flex; gap: 12px; flex-wrap: wrap; }
.app-store-badge,
.play-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 12px;
  background: #000;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  line-height: 1;
  height: 48px;
  box-sizing: border-box;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .25s;
}
.app-store-badge:hover,
.play-store-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.6);
  box-shadow: 0 14px 32px -10px rgba(0,0,0,.6);
}
.app-store-badge .asb-text,
.play-store-badge .asb-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  white-space: nowrap;
}
.app-store-badge .asb-top,
.play-store-badge .asb-top { font-size: 10px; letter-spacing: .02em; opacity: .92; margin-bottom: 2px; }
.app-store-badge .asb-bot,
.play-store-badge .asb-bot { font-size: 19px; font-weight: 600; letter-spacing: -.01em; }
.hero-stats {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-stats .num { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: white; display:flex; align-items:baseline; gap:4px; }
.hero-stats .lbl { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }
.hero-stats .div { width: 1px; height: 32px; background: rgba(255,255,255,.15); }

.hero-scene {
  position: relative;
  height: 640px;
  perspective: 1400px;
}
.scene-stack {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
}
.phone-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.phone-glow {
  position: absolute;
  inset: -40px;
  border-radius: 60px;
  background: radial-gradient(ellipse at center, rgba(45,182,181,.4), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}
.float-panel {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,.6);
}
.float-panel--lg {
  width: 460px;
  left: -80px;
  top: 30px;
  opacity: .9;
  animation: float-y 8s ease-in-out infinite;
}
.dash--mini { font-size: 10px; transform: scale(.95); transform-origin: top left; width: 105%; }
.dash--mini .side { min-height: 380px; }

.float-card {
  position: absolute;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.4);
  font-size: 12px;
  z-index: 4;
  min-width: 200px;
  color: var(--ink-900);
}
.float-card .ic-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card .t { font-weight: 600; font-size: 12px; line-height: 1.2; }
.float-card .s { font-size: 10px; color: var(--ink-500); margin-top: 2px; }
.card-notif { top: 80px; right: -20px; animation: float-y 7s ease-in-out infinite; }
.card-doc { bottom: 80px; right: -10px; animation: float-y-2 9s ease-in-out infinite; }
.card-pin { bottom: 180px; left: 20px; animation: float-y 8.5s ease-in-out infinite; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}
.scroll-hint .dot-anim {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--teal-400);
  animation: scroll-dot 1.6s infinite;
}

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-scene { height: 700px; max-width: 600px; margin: 0 auto; }
  .hero-scene .phone-shell { width: 290px; }
  .float-panel--lg { width: 360px; left: -20px; }
}
@media (max-width: 720px) {
  .hero { padding: 100px 0 40px; }
  .hero-stats { gap: 16px; }
  .hero-stats .div { display: none; }
  /* Drop the phone out of absolute positioning so it can't overflow into the copy. */
  .hero-scene { height: auto; padding: 12px 0 24px; perspective: none; }
  .hero-scene .scene-stack { position: relative; transform: none !important; transform-style: flat; }
  .hero-scene .phone-wrap {
    position: relative;
    left: auto; top: auto;
    transform: none !important;
    margin: 0 auto;
    display: block;
    width: max-content;
  }
  .hero-scene .phone-shell { width: 230px; }
  .float-panel--lg { display: none; }
  .float-card { display: none; }
  .scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 10px; flex-wrap: nowrap; justify-content: space-between; }
  .hero-stats > div:not(.div) { flex: 1 1 0; min-width: 0; }
  .hero-stats .num { font-size: 22px; gap: 2px; }
  .hero-stats .num span { font-size: 14px !important; }
  .hero-stats .lbl { font-size: 10px; line-height: 1.25; }
}
@media (max-width: 380px) {
  .hero-scene .phone-shell { width: 200px; }
  .hero-stats { gap: 8px; }
  .hero-stats .num { font-size: 20px; }
  .hero-stats .lbl { font-size: 9.5px; }
}

/* ===== APP SECTION ===== */
.app-section {
  position: relative;
  background: var(--paper);
  height: 780vh;
}
.app-section-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.app-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.app-copy .section-title { margin: 22px 0 16px; }
.app-copy .section-sub { margin-bottom: 32px; }
/* Scrollytelling stage — only the active row is composed in space.
   Each step animates in with a staggered: counter → icon → title → subtitle. */
.feature-list {
  --p: .166;
  position: relative;
  padding: 0 0 0 32px;
  margin-top: 16px;
  min-height: 60vh;
}
.feature-list::before,
.feature-list::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 2px;
  border-radius: 2px;
}
.feature-list::before { background: var(--ink-100); }
.feature-list::after {
  background: linear-gradient(180deg, var(--teal-500), var(--teal-700));
  transform-origin: top;
  transform: scaleY(var(--p));
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 0 4px rgba(45,182,181,.08);
}
.feature-row {
  position: absolute;
  left: 32px;
  right: 0;
  top: 10%;
  height: 80%;
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto auto;
  align-content: center;
  column-gap: 26px;
  row-gap: 14px;
  padding: 0;
  border: 0;
  cursor: default;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .65s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  will-change: transform, opacity;
}
.feature-row.exit-up {
  opacity: 0;
  transform: translateY(-28px);
}
.feature-row.exit-down {
  opacity: 0;
  transform: translateY(28px);
}
.feature-row.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
}
/* Step counter as a serif italic editorial label */
.feature-row::before {
  content: attr(data-step) " — z 13";
  grid-column: 1 / -1;
  grid-row: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--teal-700);
  align-self: end;
  margin-bottom: 4px;
  opacity: 0;
}
.feature-row.active::before {
  animation: featureCounterIn .55s .1s cubic-bezier(.2,.8,.2,1) both;
}
.feature-row .ic {
  grid-column: 1;
  grid-row: 2;
  width: 80px; height: 80px;
  border-radius: 22px;
  background: linear-gradient(140deg, var(--teal-500), var(--teal-700));
  border: 0;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 22px 44px -16px rgba(45,182,181,.6), inset 0 1px 0 rgba(255,255,255,.28);
  opacity: 0;
}
.feature-row .ic .icon {
  width: 36px; height: 36px;
}
.feature-row.active .ic {
  animation: featureIconIn .7s .2s cubic-bezier(.2,.8,.2,1) both;
}
.feature-row .copy {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  padding-top: 2px;
}
.feature-row .t {
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink-900);
  margin: 0;
  opacity: 0;
}
.feature-row.active .t {
  animation: featureTitleIn .7s .28s cubic-bezier(.2,.8,.2,1) both;
}
.feature-row .s {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ink-500);
  line-height: 1.5;
  max-width: 540px;
  margin: 16px 0 0;
  opacity: 0;
}
.feature-row.active .s {
  animation: featureSubIn .7s .38s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes featureCounterIn {
  from { opacity: 0; transform: translateX(-10px); letter-spacing: .14em; }
  to   { opacity: 1; transform: translateX(0);     letter-spacing: .06em; }
}
@keyframes featureIconIn {
  from { opacity: 0; transform: translateY(14px) scale(.78) rotate(-10deg); }
  to   { opacity: 1; transform: translateY(0)    scale(1)   rotate(0); }
}
@keyframes featureTitleIn {
  from { opacity: 0; transform: translateY(22px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes featureSubIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .feature-row,
  .feature-row.active::before,
  .feature-row.active .ic,
  .feature-row.active .t,
  .feature-row.active .s {
    transition: opacity .2s ease;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
  .feature-row { opacity: 0; }
  .feature-row.active { opacity: 1; }
  .feature-row.active::before,
  .feature-row.active .ic,
  .feature-row.active .t,
  .feature-row.active .s { opacity: 1; }
}

.app-phone-stage {
  position: relative;
  height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-phone-stage .halo {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,182,181,.18), transparent 60%);
  filter: blur(40px);
}
.phone-orbit {
  position: relative;
  width: 320px;
  height: 624px;
}
.phone-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px) scale(.95);
  transition: opacity .55s cubic-bezier(.2,.8,.2,1), transform .55s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.phone-card.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.orbit-pins {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
}
.orbit-pins .pin {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--ink-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-400);
  cursor: pointer;
  box-shadow: 0 4px 10px -4px rgba(7,17,30,.1);
  transition: all .25s;
}
.orbit-pins .pin.active {
  background: var(--teal-500);
  color: white;
  border-color: var(--teal-500);
  transform: scale(1.1);
  box-shadow: 0 8px 20px -6px rgba(45,182,181,.5);
}

/* Mobile-only swipe affordance shown below the phone stage */
.swipe-hint { display: none; }
@media (max-width: 1080px) {
  .swipe-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 18px auto 0;
    padding: 8px 16px 8px 12px;
    border-radius: 999px;
    background: rgba(7,17,30,.06);
    color: var(--ink-700);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1;
    border: 1px solid rgba(7,17,30,.08);
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
    animation: swipeHintIn .55s .4s cubic-bezier(.2,.8,.2,1) forwards;
  }
  .swipe-hint-hand {
    width: 22px;
    height: 22px;
    color: var(--teal-700);
    animation: swipeHandWiggle 1.8s ease-in-out infinite;
    transform-origin: 50% 70%;
  }
  .swipe-hint-arrow {
    width: 13px;
    height: 13px;
    color: var(--ink-400);
  }
  .swipe-hint-arrow-l { animation: swipeArrowL 1.8s ease-in-out infinite; }
  .swipe-hint-arrow-r { animation: swipeArrowR 1.8s ease-in-out infinite; }
  .swipe-hint-label {
    margin-left: 2px;
    white-space: nowrap;
  }
}
@keyframes swipeHintIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes swipeHandWiggle {
  0%, 100% { transform: translateX(0) rotate(0); }
  25%      { transform: translateX(-7px) rotate(-8deg); }
  50%      { transform: translateX(0) rotate(0); }
  75%      { transform: translateX(7px) rotate(8deg); }
}
@keyframes swipeArrowL {
  0%, 100% { opacity: .35; transform: translateX(0); }
  25%      { opacity: 1;   transform: translateX(-3px); }
  50%      { opacity: .35; transform: translateX(0); }
}
@keyframes swipeArrowR {
  0%, 50%, 100% { opacity: .35; transform: translateX(0); }
  75%           { opacity: 1;   transform: translateX(3px); }
}
@media (prefers-reduced-motion: reduce) {
  .swipe-hint, .swipe-hint-hand, .swipe-hint-arrow-l, .swipe-hint-arrow-r {
    animation: none !important;
  }
  .swipe-hint { opacity: 1; transform: none; }
}

.testimonial-wrap {
  padding: 60px 0 100px;
  display: flex;
  justify-content: center;
}
.testimonial {
  max-width: 880px;
  background: linear-gradient(180deg, white 0%, var(--teal-50) 100%);
  border: 1px solid var(--teal-100);
  border-radius: 24px;
  padding: 48px 56px;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(45,182,181,.25);
}
.testimonial .quote-mark {
  position: absolute;
  top: 8px; left: 32px;
  font-family: var(--font-serif);
  font-size: 140px;
  line-height: 1;
  color: var(--teal-200);
  font-style: italic;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: var(--ink-800);
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
  font-style: normal;
  font-weight: 400;
}
.testimonial blockquote em { color: var(--teal-700); }
.testimonial .cite { display: flex; align-items: center; gap: 14px; }
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.testimonial .who { font-weight: 600; font-size: 15px; }
.testimonial .role { font-size: 13px; color: var(--ink-500); }
.testimonial .rating-stars { margin-left: auto; color: #FFD66B; letter-spacing: 2px; }

/* Pager (mobile only) — hidden on desktop */
.feature-pager { display: none; }

@media (max-width: 1080px) {
  .app-section { height: auto; }
  .app-section-sticky { position: static; height: auto; padding: 72px 0; overflow: visible; }
  .app-section#funkcje .app-section-sticky { padding: 72px 0 0 0; }
  .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-phone-stage { height: 640px; }

  /* Section heading needs to fit a phone column without clipping. */
  .app-copy .section-title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.1;
    letter-spacing: -.02em;
  }

  /* Mobile carousel — horizontal scroll-snap, one card per snap, with peek. */
  .feature-list {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    scroll-padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 20px 22px;
    margin: 18px -20px 0;
    min-height: 0;
    --p: 0;
    max-width: 100vw;
  }
  .feature-list::-webkit-scrollbar { display: none; }
  .feature-list::before,
  .feature-list::after { display: none; }

  .feature-row {
    position: relative;
    flex: 0 0 calc(100% - 48px);
    max-width: min(380px, calc(100vw - 64px));
    width: calc(100% - 48px);
    min-width: 0;
    height: auto;
    left: auto; right: auto; top: auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-content: start;
    column-gap: 0;
    row-gap: 18px;
    padding: 26px 24px 28px;
    background:
      radial-gradient(120% 80% at 100% 0%, rgba(45,182,181,.10), transparent 55%),
      var(--paper);
    border: 1px solid var(--ink-100);
    border-radius: 22px;
    box-shadow: 0 18px 40px -28px rgba(7,17,30,.18);
    opacity: .55;
    transform: scale(.96);
    transform-origin: center center;
    pointer-events: auto;
    overflow: hidden;
    isolation: isolate;
    transition: opacity .45s cubic-bezier(.2,.8,.2,1), transform .55s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease;
  }
  .feature-row.exit-up,
  .feature-row.exit-down {
    opacity: .55;
    transform: scale(.96);
  }
  .feature-row.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(45,182,181,.4);
    box-shadow: 0 30px 60px -28px rgba(45,182,181,.4), 0 2px 0 rgba(45,182,181,.08);
  }
  /* Giant translucent watermark of the step number behind the content */
  .feature-row::after {
    content: attr(data-step);
    position: absolute;
    top: -34px;
    right: -10px;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 160px;
    line-height: 1;
    letter-spacing: -.04em;
    color: rgba(45,182,181,.1);
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }
  .feature-row > *,
  .feature-row::before {
    position: relative;
    z-index: 1;
  }
  /* Row 1 — step counter */
  .feature-row::before {
    content: attr(data-step) " — z 13";
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  /* Row 2 — icon stamp */
  .feature-row .ic {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    box-shadow: 0 14px 28px -10px rgba(45,182,181,.5), inset 0 1px 0 rgba(255,255,255,.28);
  }
  .feature-row .ic .icon { width: 24px; height: 24px; }
  /* Row 3 — title + description */
  .feature-row .copy {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    padding: 0;
    min-width: 0;
    overflow: visible;
  }
  .feature-row .t {
    font-size: clamp(21px, 5.8vw, 26px);
    line-height: 1.2;
    letter-spacing: -.015em;
    margin: 0;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: manual;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
  .feature-row .s {
    font-size: clamp(14.5px, 3.9vw, 16px);
    line-height: 1.55;
    margin: 10px 0 0;
    max-width: none;
    overflow-wrap: break-word;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  /* Pager: dot row + step label */
  .feature-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 36px auto 16px auto;
    padding: 0 4px;
  }
  .feature-dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .feature-dots .d {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    padding: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--ink-100);
    cursor: pointer;
    transition: width .35s cubic-bezier(.2,.8,.2,1), background .35s ease;
  }
  .feature-dots .d.active {
    width: 28px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-700));
  }
  .feature-pager-label {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--ink-500);
    letter-spacing: .02em;
  }
  .feature-pager-label .now {
    color: var(--teal-700);
    font-weight: 600;
  }
  .feature-pager-label .sep { margin: 0 6px; opacity: .4; }
}

@media (max-width: 720px) {
  .app-phone-stage { margin: 20px 0; height: auto; }
  .feature-row {
    flex-basis: calc(100% - 40px);
    width: calc(100% - 40px);
    padding: 24px 22px 28px;
  }
  .feature-row::after { font-size: 140px; top: -10px; right: -6px; }
}

@media (max-width: 1080px) {
  .orbit-pins { display: none; }
}

@media (max-width: 720px) {
  .testimonial { padding: 32px 24px; }
  .testimonial .quote-mark { font-size: 80px; left: 16px; }
  .testimonial-section { padding: 0 20px; }
}

/* ===== DASHBOARD SECTION ===== */
.dash-section {
  position: relative;
  background: linear-gradient(180deg, #07111E 0%, #0B1A2C 50%, #07111E 100%);
  color: white;
  padding: clamp(100px, 12vw, 160px) 0;
  overflow: hidden;
}
.section-title.light { color: white; }
.section-sub.light { color: rgba(255,255,255,.65); }
.dash-head {
  text-align: center;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.dash-head .section-sub { margin: 0 auto; }

.sync-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin: 0 auto 80px;
  max-width: 1200px;
}
.sync-dash, .sync-phone {
  transition: transform .1s;
}
.sync-dash {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.sync-line {
  position: relative;
  height: 600px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sync-line svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.sync-pulse {
  position: relative;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 4px rgba(45,182,181,.3);
}
.sync-pulse::before, .sync-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--teal-400);
  animation: pulse-ring 2.4s infinite;
  opacity: .4;
}
.sync-pulse::after { animation-delay: 1.2s; }
.sync-phone { display: flex; justify-content: center; }

.dash-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.dash-fc {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  transition: all .3s;
}
.dash-fc:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(45,182,181,.3);
  transform: translateY(-2px);
}
.dash-fc .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(45,182,181,.2), rgba(45,182,181,.05));
  border: 1px solid rgba(45,182,181,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-300);
  margin-bottom: 16px;
}
.dash-fc .t { font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.dash-fc .s { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }

.dash-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.dash-pills .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 500;
}
.dash-pills .pill svg { color: var(--teal-400); }

@media (max-width: 1080px) {
  .sync-stage { grid-template-columns: 1fr; gap: 40px; }
  .sync-line { display: none; }
  .dash-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .dash-features { grid-template-columns: 1fr; }
}

/* ===== BENEFITS ===== */
.benefits { background: var(--paper); }
.benefits-head {
  text-align: center;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.benefit-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -20px rgba(7,17,30,.12);
  border-color: var(--teal-200);
}
.bc-art {
  height: 100px;
  margin: -36px -36px 24px;
  padding: 24px 24px 0;
  background: linear-gradient(180deg, var(--teal-50) 0%, white 100%);
  border-bottom: 1px solid var(--teal-100);
}
.bc-art svg { width: 100%; height: 100%; }
.bc-tag {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-700);
  font-weight: 600;
  margin-bottom: 10px;
}
.bc-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.bc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.bc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.5;
}
.bc-list .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal-500);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

@media (max-width: 720px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===== PRICING ===== */
.pricing { background: var(--paper); border-top: 1px solid var(--ink-100); }
.pricing-head {
  text-align: center;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.plan {
  position: relative;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -30px rgba(7,17,30,.18);
}
.plan-featured {
  background: linear-gradient(180deg, #0B1A2C 0%, #07111E 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 30px 60px -20px rgba(7,17,30,.4);
  overflow: hidden;
}
.plan-featured .plan-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(45,182,181,.3), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(122,107,255,.2), transparent 50%);
  pointer-events: none;
}
.plan-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--teal-500);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
  z-index: 1;
}
.plan-head { position: relative; z-index: 1; margin-bottom: 24px; }
.plan-name { font-size: 14px; font-weight: 600; color: var(--teal-700); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.plan-featured .plan-name { color: var(--teal-300); }
.plan-desc { font-size: 14px; color: var(--ink-500); line-height: 1.5; }
.plan-featured .plan-desc { color: rgba(255,255,255,.7); }
.plan-price { display: flex; align-items: baseline; gap: 6px; position: relative; z-index: 1; margin-bottom: 4px; }
.plan-price .amount { font-size: 48px; font-weight: 600; letter-spacing: -.03em; }
.plan-price .per { font-size: 15px; color: var(--ink-400); font-weight: 500; }
.plan-featured .plan-price .per { color: rgba(255,255,255,.6); }
.plan-yr { font-size: 13px; color: var(--ink-400); margin-bottom: 24px; }
.plan-featured .plan-yr { color: rgba(255,255,255,.55); }
.plan-cta { width: 100%; justify-content: center; position: relative; z-index: 1; }
.plan-divider { height: 1px; background: var(--ink-100); margin: 28px 0; }
.plan-featured .plan-divider { background: rgba(255,255,255,.1); }
.plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-600); line-height: 1.5;
}
.plan-featured .plan-features li { color: rgba(255,255,255,.85); }
.plan-features .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal-500);
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.guarantee {
  margin: 60px auto 0;
  max-width: 720px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(90deg, var(--teal-50), white);
  border: 1px solid var(--teal-100);
  border-radius: 16px;
}
.g-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--teal-500);
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.g-t { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.g-s { font-size: 13px; color: var(--ink-500); line-height: 1.5; }

@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .plan { padding: 28px; }
}
@media (max-width: 480px) {
  .plan { padding: 24px 20px; }
  .plan-price .amount { font-size: 40px; }
  .plan-cta {
    white-space: normal;
    line-height: 1.3;
    text-align: center;
    padding: 13px 16px;
    font-size: 14px;
  }
  .plan-ribbon { font-size: 10px; padding: 5px 10px; right: 16px; top: 16px; }
}
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .container.testimonial-wrap { padding: 60px 0 100px; }
  .plan { padding: 22px 18px; border-radius: 20px; }
  .plan-price .amount { font-size: 34px; }
  .plan-name { font-size: 12px; }
  .plan-desc { font-size: 13px; }
  .plan-cta { padding: 12px 14px; font-size: 13px; }
}

/* ===== FAQ ===== */
.faq { background: white; border-top: 1px solid var(--ink-100); position: relative; }
.faq-bg-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(45,182,181,.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}
.faq-container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; position: relative; z-index: 1; }
.faq-head { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border-bottom: 1px solid var(--ink-100);
  transition: background .2s;
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 22px 4px;
  display: grid;
  grid-template-columns: 32px 1fr 24px;
  gap: 16px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: var(--ink-900);
  font-family: inherit;
}
.faq-q .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal-600);
  font-weight: 600;
}
.faq-q .qtxt { font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.faq-q .chev {
  color: var(--ink-400);
  transition: transform .3s, color .3s;
  display: flex;
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--teal-600); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.2,.8,.2,1);
  padding: 0 24px 0 52px;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}
.faq-a > p {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.6;
  padding: 0;
  text-wrap: pretty;
}
.faq-item.open .faq-a > p {
  padding-bottom: 22px;
}
@media (max-width: 880px) {
  .faq-container { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { position: static; }
}

/* ===== FOOTER CTA ===== */
.footer-cta {
  position: relative;
  background: radial-gradient(ellipse at bottom, #0F2238 0%, #07111E 70%, #050A12 100%);
  color: white;
  padding: clamp(80px, 10vw, 140px) 0 80px;
  overflow: hidden;
  text-align: center;
}
.fcta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.fcta-inner .section-sub { margin: 0 auto 12px; }
.fcta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.fcta-contact {
  display: flex;
  gap: 56px;
  padding: 24px 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: center;
}
.fcta-contact > a { text-decoration: none; color: inherit; transition: opacity .2s; }
.fcta-contact > a:hover { opacity: .75; }
.fcta-contact .k { display: block; font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.fcta-contact .v { font-weight: 600; font-size: 15px; color: white; }

.site-footer {
  background: #050A12;
  color: rgba(255,255,255,.55);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer .logo span { color: white; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--teal-400); }
.copyright { font-size: 12px; }

.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a { color: currentColor; transition: color .2s; }
.footer-social a:hover { color: var(--teal-400); }
