/* ==========================================================================
   PROMOFY — Design System v2
   Your Marketing Marketplace
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors */
  --teal: #438a8d;
  --teal-600: #397779;
  --teal-dark: #176d72;
  --navy: #172333;
  --navy-deep: #102c3b;
  --teal-light: #eaf4f4;
  --teal-tint: #dcedec;
  --grey-light: #f1f3f4;

  --text: #172333;
  --text-70: rgba(23, 35, 51, 0.72);
  --text-55: rgba(23, 35, 51, 0.58);
  --text-40: rgba(23, 35, 51, 0.42);

  --bg: #f7f9fa;
  --bg-alt: #ffffff;
  --white: #ffffff;

  --border: #e5eaec;
  --border-strong: #d7dee1;

  --coral: #e2694f;

  /* Shadows — reserved for phones / floating UI / key panels only */
  --shadow-sm: 0 2px 10px rgba(16, 44, 59, 0.06);
  --shadow-md: 0 10px 28px rgba(16, 44, 59, 0.10);
  --shadow-lg: 0 24px 56px rgba(16, 44, 59, 0.16);
  --shadow-phone: 0 30px 60px -12px rgba(16, 44, 59, 0.35), 0 10px 24px rgba(16, 44, 59, 0.12);
  --shadow-teal: 0 14px 32px rgba(67, 138, 141, 0.28);

  /* Radii */
  --r-sm: 14px;
  --r-md: 18px;
  --r-lg: 22px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Type */
  --font: "Poppins", "Manrope", -apple-system, sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 850px;
  --section-pad: clamp(56px, 7.5vw, 96px);
  --gutter: clamp(20px, 5vw, 48px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  width: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
}

p { font-size: 1rem; }

/* ---------- Accessibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2.5px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--teal-600); color: var(--white);
  padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

::selection { background: var(--teal); color: var(--white); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); }

.section { position: relative; padding-block: var(--section-pad); isolation: isolate; }
.section-tight { padding-block: clamp(40px, 5vw, 64px); }

/* ---------- Section header ("component") ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--teal); border-radius: 2px; }
.eyebrow.on-dark { color: #9fe3d4; }
.eyebrow.on-dark::before { background: #9fe3d4; }
.eyebrow.center { justify-content: center; }

.section-header { max-width: 640px; margin-bottom: 52px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header.wide { max-width: 760px; }

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 650;
  margin-bottom: 18px;
}
.section-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  color: var(--text-55);
  max-width: 560px;
}
.section-header.center .section-sub { margin-inline: auto; }

.text-teal { color: var(--teal); }
.text-navy-deep { color: var(--navy-deep); }

/* ---------- Buttons ("component": PrimaryButton) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 32px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 1rem; white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  min-height: 52px;
}
.btn-primary { background: var(--teal-600); color: var(--white); box-shadow: var(--shadow-teal); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(67, 138, 141, 0.36); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary { background: var(--white); color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-ghost-light { background: rgba(255,255,255,0.08); color: var(--white); border: 1.5px solid rgba(255,255,255,0.32); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.55); transform: translateY(-2px); }

.btn-text { display:inline-flex; align-items:center; gap:7px; font-weight:600; color: var(--teal-dark); }
.btn-text svg { transition: transform 0.25s var(--ease); }
.btn-text:hover svg { transform: translateX(4px); }
.btn-text.on-dark { color: #9fe3d4; }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 0.9rem; min-height: 42px; }
.btn[aria-disabled="true"] { opacity: 0.55; pointer-events: none; }

/* ---------- Ambient background ---------- */
.atmosphere { position: absolute; inset: 0; overflow: hidden; z-index: -1; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(64px); opacity: 0.5; animation: float-slow 36s ease-in-out infinite; will-change: transform; }
.blob.teal { background: radial-gradient(circle at 30% 30%, rgba(67,138,141,0.30), rgba(67,138,141,0) 70%); }
.blob.grey { background: radial-gradient(circle at 30% 30%, rgba(148,175,178,0.24), rgba(148,175,178,0) 70%); }
.blob.light { background: radial-gradient(circle at 30% 30%, rgba(67,138,141,0.12), rgba(67,138,141,0) 70%); }

.dot-field {
  position: absolute;
  background-image: radial-gradient(rgba(23,35,51,0.13) 1.4px, transparent 1.4px);
  background-size: 22px 22px; opacity: 0.55;
}

@keyframes float-slow {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(3%,4%) scale(1.05); }
  66% { transform: translate(-2%,-3%) scale(0.98); }
}
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1){transition-delay:.02s}
.reveal-stagger.is-visible > *:nth-child(2){transition-delay:.1s}
.reveal-stagger.is-visible > *:nth-child(3){transition-delay:.18s}
.reveal-stagger.is-visible > *:nth-child(4){transition-delay:.26s}
.reveal-stagger.is-visible > *:nth-child(5){transition-delay:.34s}
.reveal-stagger.is-visible > *:nth-child(6){transition-delay:.42s}

.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob, .chip-float, .phone-mockup.float, .timeline-fill, .hub-lines path,
  [class*="float"], [class*="parallax"] { animation: none !important; }
  .reveal, .reveal-stagger > *, .reveal-left, .reveal-right {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Utilities */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ==========================================================================
   REUSABLE COMPONENT: <PhoneMockup />
   Swap the <img src> only — no structural changes needed per screenshot.
   Sizes: .size-lg / .size-md / .size-sm
   Rotation: .rotate-left / .rotate-right
   Motion: .float-a / .float-b / .float-c (subtle vertical float)
   ========================================================================== */
.phone-mockup {
  --phone-w: 260px;
  position: relative;
  width: var(--phone-w);
  aspect-ratio: 9 / 19.4;
  flex-shrink: 0;
}
.phone-mockup.size-lg { --phone-w: 300px; }
.phone-mockup.size-md { --phone-w: 240px; }
.phone-mockup.size-sm { --phone-w: 190px; }

.phone-mockup-bezel {
  position: absolute; inset: 0;
  background: var(--navy);
  border-radius: 34px;
  padding: 11px;
  box-shadow: var(--shadow-phone);
}
.phone-mockup.size-sm .phone-mockup-bezel { border-radius: 26px; padding: 8px; }

.phone-mockup-notch {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 16px;
  background: var(--navy);
  border-radius: 0 0 12px 12px;
  z-index: 3;
}
.phone-mockup.size-sm .phone-mockup-notch { top: 8px; height: 12px; }

.phone-mockup-screen-wrap {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-alt);
}
.phone-mockup.size-sm .phone-mockup-screen-wrap { border-radius: 18px; }

.phone-mockup-screen {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.phone-mockup.rotate-left { transform: rotate(-5deg); }
.phone-mockup.rotate-right { transform: rotate(5deg); }

.phone-mockup.float-a { animation: phone-float-a 9s ease-in-out infinite; }
.phone-mockup.float-b { animation: phone-float-b 10s ease-in-out infinite; }
.phone-mockup.float-c { animation: phone-float-c 11s ease-in-out infinite; }

@keyframes phone-float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes phone-float-b { 0%,100%{transform:translateY(0) rotate(-5deg)} 50%{transform:translateY(9px) rotate(-6deg)} }
@keyframes phone-float-c { 0%,100%{transform:translateY(5px) rotate(5deg)} 50%{transform:translateY(-7px) rotate(6deg)} }

/* ==========================================================================
   REUSABLE COMPONENT: <FloatingChip />
   ========================================================================== */
.chip-float {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); padding: 11px 18px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  font-size: 0.85rem; font-weight: 600; color: var(--text);
  z-index: 4; white-space: nowrap;
  animation: float-y 7s ease-in-out infinite;
}
.chip-float .dot-ind { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ==========================================================================
   REUSABLE COMPONENT: <ServiceFeature /> (icon + label row, used in benefit lists)
   ========================================================================== */
.service-feature-list { display: flex; flex-direction: column; gap: 14px; margin-block: 28px; }
.service-feature {
  display: flex; align-items: center; gap: 14px;
  font-size: 1rem; font-weight: 600; color: var(--text);
}
.service-feature .sf-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--teal-light); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Inline benefit pills (compact variant) */
.benefit-row { display: flex; flex-wrap: wrap; gap: 10px; margin-block: 26px; }
.benefit-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.86rem; font-weight: 600; color: var(--teal-dark);
  background: var(--teal-light); padding: 8px 15px; border-radius: var(--r-pill);
}
.benefit-pill svg { flex-shrink: 0; }

/* ==========================================================================
   REUSABLE COMPONENT: <AppStoreButtons />
   ========================================================================== */
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: rgba(0,0,0,0.26); border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 22px; border-radius: 14px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.store-badge:hover { transform: translateY(-2px); background: rgba(0,0,0,0.38); }
.store-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge .sb-text { text-align: left; line-height: 1.2; }
.store-badge .sb-text small { display: block; font-size: 0.64rem; opacity: 0.8; }
.store-badge .sb-text span { display: block; font-size: 1rem; font-weight: 600; }
.store-badge.on-light { background: var(--navy); border-color: var(--navy); }
.store-badge.on-light:hover { background: var(--navy-deep); }

/* ==========================================================================
   CARD SYSTEM
   Primary cards: border only, 20-24px radius. Shadows reserved for
   phones / floating UI / key panels (applied per-component above).
   ========================================================================== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.card-flush { padding: 0; }


/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  height: 72px;
  padding: 0;
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding-block: 10px;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.navbar-logo img { height: 150px; width: auto; display: block; }

.navbar-nav { display: flex; align-items: center; gap: 38px; position: absolute; left: 50%; transform: translateX(-50%); }
.navbar-nav a { font-size: 0.96rem; font-weight: 560; color: var(--text); position: relative; padding-block: 4px; }
.navbar-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--teal); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.navbar-nav a:hover::after, .navbar-nav a:focus-visible::after { transform: scaleX(1); }

.navbar-cta { display: flex; align-items: center; gap: 22px; }
.navbar-contact-link { font-size: 0.94rem; font-weight: 600; color: var(--text-70); }
.navbar-contact-link:hover { color: var(--teal-dark); }

.navbar-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; border-radius: var(--r-sm);
}
.navbar-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.navbar-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar.is-scrolled {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(16,44,59,0.06); border-bottom-color: var(--border);
  padding-block: 13px;
}

.navbar-mobile-download { display: none; }

@media (max-width: 940px) {
  .navbar-nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 84vw);
    background: var(--white); flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 6px; padding: 32px; transform: translateX(100%); transition: transform 0.4s var(--ease);
    box-shadow: -12px 0 40px rgba(16,44,59,0.14); left: auto;
  }
  .navbar-nav.is-open { transform: translateX(0); }
  .navbar-nav a { width: 100%; padding: 15px 10px; font-size: 1.08rem; border-bottom: 1px solid var(--border); }
  .navbar-cta .navbar-contact-link, .navbar-cta .navbar-download-desktop { display: none; }
  .navbar-mobile-download { display: inline-flex; }
  .navbar-toggle { display: flex; }
}

.nav-scrim { position: fixed; inset: 0; background: rgba(16,44,59,0.4); z-index: 190; opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); }
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }


/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: clamp(116px, 14vw, 140px);
  padding-bottom: clamp(48px, 6vw, 72px);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 70%, var(--bg-alt) 100%);
  overflow-x: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  width: 100%;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-light); color: var(--teal-dark);
  font-size: 0.86rem; font-weight: 650; padding: 9px 18px; border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.hero-pill svg { width: 14px; height: 14px; }

.hero-title {
  font-size: clamp(2.4rem, 4.3vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-value-line {
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  font-weight: 650;
  color: var(--text-70);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  color: var(--text-55);
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }

.hero-trust-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: var(--text-40); font-weight: 550;
}
.hero-trust-row .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-40); }

/* Phone stage */
.hero-phones {
  position: relative;
  height: clamp(440px, 46vw, 620px);
  display: flex; align-items: center; justify-content: center;
}
.hero-phones .phone-mockup { position: absolute; }
.hero-phones .phone-dominant { z-index: 3; }
.hero-phones .phone-bg-left { z-index: 1; left: 2%; top: 6%; opacity: 0.94; }
.hero-phones .phone-bg-right { z-index: 2; right: 0%; top: 16%; opacity: 0.96; }

@media (max-width: 1100px) {
  .hero-phones .phone-bg-left { left: -4%; }
  .hero-phones .phone-bg-right { right: -6%; }
}

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 1; }
  .hero-phones { order: 0; margin-bottom: 12px; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas, .hero-trust-row { justify-content: center; }
}

@media (max-width: 560px) {
  .hero-phones { height: 400px; }
  .hero-phones .phone-mockup.size-lg { --phone-w: 220px; }
  .hero-phones .phone-mockup.size-sm { --phone-w: 130px; }
  .hero-ctas .btn { flex: 1 1 auto; }
}


/* ==========================================================================
   MICRO VALUE BAR
   ========================================================================== */
.value-bar { background: var(--white); padding-block: 44px; border-bottom: 1px solid var(--border); }
.value-bar-text {
  text-align: center; max-width: 620px; margin: 0 auto 36px;
  font-size: 1.05rem; color: var(--text-70); font-weight: 500;
}
.value-steps { display: flex; align-items: center; justify-content: center; gap: 0; max-width: 780px; margin-inline: auto; }
.value-step { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; text-align: center; }
.value-step-icon {
  width: 46px; height: 46px; border-radius: 13px; background: var(--teal-light); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.value-step span { font-size: 0.88rem; font-weight: 650; color: var(--text); }
.value-connector { flex: 0 0 auto; width: clamp(24px, 5vw, 64px); height: 2px; position: relative; top: -18px; overflow: hidden; background: var(--border); }
.value-connector .fill {
  position: absolute; inset: 0; background: var(--teal); transform: scaleX(0); transform-origin: left;
  transition: transform 1s var(--ease);
}
.value-bar.is-visible .value-connector .fill { transform: scaleX(1); }
.value-bar.is-visible .value-connector:nth-of-type(1) .fill { transition-delay: 0.1s; }
.value-bar.is-visible .value-connector:nth-of-type(2) .fill { transition-delay: 0.35s; }
.value-bar.is-visible .value-connector:nth-of-type(3) .fill { transition-delay: 0.6s; }

@media (max-width: 640px) {
  .value-steps { flex-wrap: wrap; }
  .value-connector { display: none; }
  .value-step { flex: 0 0 42%; }
}


/* ==========================================================================
   THE PROBLEM — Before / After
   ========================================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 20px;
}

.problem-panel {
  border-radius: var(--r-xl);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.problem-panel.without {
  background: var(--grey-light);
  border: 1px solid var(--border);
}
.problem-panel.with {
  background: linear-gradient(165deg, var(--teal-light) 0%, #fff 100%);
  border: 1px solid var(--teal-tint);
}

.problem-panel-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 6px;
}
.problem-panel.without .problem-panel-label { color: var(--text-40); }
.problem-panel.with .problem-panel-label { color: var(--teal-dark); }

.chaos-stage {
  position: relative;
  height: 300px;
  margin-block: 18px;
}
.chaos-owner {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--white); border: 1.5px dashed var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-40); z-index: 2;
}
.chaos-node {
  position: absolute;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 8px 14px;
  font-size: 0.78rem; font-weight: 650; color: var(--text-55);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.chaos-sources .chaos-node.n1 { top: 2%; left: 4%; transform: rotate(-4deg); }
.chaos-sources .chaos-node.n2 { top: 6%; right: 2%; transform: rotate(3deg); }
.chaos-sources .chaos-node.n3 { top: 42%; left: -2%; transform: rotate(-2deg); }
.chaos-sources .chaos-node.n4 { top: 44%; right: -4%; transform: rotate(4deg); }
.chaos-sources .chaos-node.n5 { bottom: 4%; left: 8%; transform: rotate(3deg); }
.chaos-sources .chaos-node.n6 { bottom: 2%; right: 6%; transform: rotate(-3deg); }

.chaos-pain {
  position: absolute;
  font-size: 0.72rem; font-weight: 600; color: var(--coral);
  font-style: italic;
}
.chaos-pains .chaos-pain.p1 { top: 24%; left: 26%; }
.chaos-pains .chaos-pain.p2 { top: 26%; right: 22%; }
.chaos-pains .chaos-pain.p3 { bottom: 22%; left: 30%; }
.chaos-pains .chaos-pain.p4 { bottom: 24%; right: 26%; }

/* WITH PROMOFY visual — plain flexbox, no fixed-height container to
   mismatch against, so the phone can never overflow/clip its box and
   there's no leftover dead space to manage. */
.clarity-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-block: 28px;
}
.clarity-center-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.clarity-chip {
  background: var(--white); border: 1px solid var(--teal-tint);
  border-radius: var(--r-pill); padding: 10px 18px;
  font-size: 0.84rem; font-weight: 650; color: var(--teal-dark);
  box-shadow: var(--shadow-sm); white-space: nowrap; flex-shrink: 0;
}

.problem-result-line {
  margin-top: auto; padding-top: 18px;
  font-size: 1.05rem; font-weight: 650; color: var(--navy-deep);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; }
  .chaos-stage { height: 260px; }
}

/* Dedicated mobile composition for "Without Promofy": normal flow instead
   of absolute chaos-cloud, so nothing overlaps and nothing is hidden. */
@media (max-width: 700px) {
  .chaos-stage {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding-block: 8px;
  }
  .chaos-owner { position: static; }
  .chaos-sources {
    position: static;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 9px;
  }
  .chaos-sources .chaos-node { position: static; transform: none; }
  .chaos-pains {
    position: static;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .chaos-pains .chaos-pain { position: static; text-align: center; }
  .clarity-center-row { flex-wrap: wrap; gap: 14px; }
}


/* ==========================================================================
   THE SOLUTION — hub reveal diagram
   ========================================================================== */
.solution-hub-wrap { text-align: center; }
.solution-diagram {
  position: relative;
  max-width: 640px;
  margin: 44px auto 28px;
  height: 300px;
}
.solution-center {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 148px; height: 148px; border-radius: 50%;
  background: linear-gradient(160deg, var(--teal), var(--teal-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
  font-weight: 700; font-size: 1rem;
  box-shadow: var(--shadow-teal);
  z-index: 2;
}
.solution-center img { width: 50px; height: 50px; margin-bottom: 2px; }

.solution-node {
  position: absolute; bottom: 0;
  width: 158px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 12px; text-align: center;
  box-shadow: var(--shadow-sm); z-index: 2;
}
.solution-node-icon {
  width: 38px; height: 38px; border-radius: 11px; background: var(--teal-light); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
}
.solution-node b { display: block; font-size: 0.92rem; font-weight: 650; color: var(--text); }

.solution-node.s1 { left: 0; }
.solution-node.s2 { left: 50%; transform: translateX(-50%); }
.solution-node.s3 { right: 0; }

.hub-lines-draw { position: absolute; inset: 0; z-index: 1; }
.hub-lines-draw path {
  fill: none; stroke: var(--teal); stroke-width: 2;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.1s var(--ease);
  opacity: 0.65;
}
.solution-hub-wrap.is-visible .hub-lines-draw path { stroke-dashoffset: 0; }
.solution-hub-wrap.is-visible .hub-lines-draw path:nth-child(2) { transition-delay: 0.18s; }
.solution-hub-wrap.is-visible .hub-lines-draw path:nth-child(3) { transition-delay: 0.36s; }

.solution-caption { max-width: 480px; margin-inline: auto; color: var(--text-55); font-size: 1.02rem; }

@media (max-width: 700px) {
  .solution-diagram {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .solution-center {
    position: static;
    transform: none;
    width: 132px;
    height: 132px;
    aspect-ratio: 1 / 1;
    margin-bottom: 32px;
  }
  /* Higher-specificity + later source order wins over the desktop .s1/.s2/.s3
     left/right/transform rules, so nothing carries over as an offset. */
  .solution-node.s1,
  .solution-node.s2,
  .solution-node.s3 {
    position: static;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 240px;
    margin-bottom: 16px;
  }
  .solution-node.s3 { margin-bottom: 0; }
  .solution-diagram::before {
    content: "";
    position: absolute;
    top: 132px;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
    z-index: 0;
  }
  .hub-lines-draw { display: none; }
}


/* ==========================================================================
   CORE SOLUTIONS — alternating feature sections
   ========================================================================== */
.feature-section { overflow: hidden; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.feature-visual { display: flex; justify-content: center; position: relative; }
.feature-visual .phone-mockup { position: relative; z-index: 2; }

.feature-content .eyebrow { margin-bottom: 16px; }
.feature-title { font-size: clamp(1.7rem, 2.8vw, 2.5rem); margin-bottom: 16px; }
.feature-desc { font-size: 1.05rem; color: var(--text-55); max-width: 460px; margin-bottom: 8px; }

.feature-chip {
  position: absolute;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 10px 16px;
  font-size: 0.82rem; font-weight: 650; color: var(--text);
  box-shadow: var(--shadow-md); z-index: 3; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
  animation: float-y 7s ease-in-out infinite;
}
.feature-chip .dot-ind { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

.feature-service-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-block: 24px; max-width: 460px; }
.feature-service-chip {
  background: var(--white); border: 1px solid var(--border); padding: 8px 15px;
  border-radius: var(--r-pill); font-size: 0.84rem; font-weight: 600; color: var(--text-70);
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-visual { order: 0; margin-bottom: 8px; }
  .feature-content { order: 1; text-align: center; }
  .feature-desc { margin-inline: auto; }
  .feature-service-chips, .benefit-row, .service-feature-list { justify-content: center; }
  .service-feature { justify-content: center; }
}


/* ==========================================================================
   BULK INFLUENCER CAMPAIGNS
   ========================================================================== */
.bulk-section { background: var(--teal-light); overflow: hidden; }
.bulk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.bulk-copy .eyebrow { color: var(--teal-dark); }
.bulk-copy h2 { margin-bottom: 16px; }
.bulk-copy p { color: var(--text-70); margin-bottom: 26px; max-width: 460px; }
.bulk-flow-line { margin-top: 22px; font-size: 0.92rem; font-weight: 650; color: var(--teal-dark); display: flex; align-items: center; gap: 8px; }

.bulk-visual { position: relative; display: flex; justify-content: center; }
.campaign-card {
  background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  padding: 28px; max-width: 400px; width: 100%; position: relative; z-index: 2;
}
.campaign-card .cc-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 16px; }
.campaign-card .cc-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.campaign-card .cc-row:last-of-type { border-bottom: none; }
.campaign-card .cc-row span:first-child { color: var(--text-55); }
.campaign-card .cc-row span:last-child { font-weight: 650; color: var(--text); text-align: right; }

.bulk-avatars { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.bulk-avatar {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-tint), var(--teal-light));
  border: 3px solid var(--white); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; color: var(--teal-dark); font-weight: 700; font-size: 0.72rem;
  opacity: 0; transform: scale(0.6);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease-spring);
}
.bulk-visual.is-visible .bulk-avatar { opacity: 1; transform: scale(1); }
.bulk-avatar.a1 { top: -6%; left: 2%; transition-delay: 0.05s; }
.bulk-avatar.a2 { top: 4%; right: -2%; transition-delay: 0.15s; }
.bulk-avatar.a3 { bottom: 6%; left: -4%; transition-delay: 0.25s; }
.bulk-avatar.a4 { bottom: -4%; right: 8%; transition-delay: 0.35s; }
.bulk-avatar.a5 { top: 42%; left: -8%; transition-delay: 0.45s; }
.bulk-avatar.a6 { top: 46%; right: -10%; transition-delay: 0.55s; }

@media (max-width: 860px) {
  .bulk-grid { grid-template-columns: 1fr; }
  .campaign-card { max-width: 100%; }
  .bulk-avatar { display: none; }
}


/* ==========================================================================
   FOR BUSINESSES — journey timeline
   Connector is drawn per-step, anchored to each node's own box (calc-based),
   so it stays exactly centered on every circle at any container width —
   no arbitrary percentage guesses.
   ========================================================================== */
.journey-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.journey-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.journey-connector {
  position: absolute;
  top: 31px; /* vertical center of the 62px journey-num circle */
  left: -14px; /* half of the 28px grid gap, so segments meet exactly at the gap midpoint */
  right: -14px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
}
.journey-step.is-first .journey-connector { left: 0; }
.journey-step.is-last .journey-connector { right: 0; }
.journey-connector .fill {
  position: absolute; inset: 0; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1s var(--ease);
}
.journey-timeline.is-visible .journey-connector .fill { transform: scaleX(1); }
.journey-timeline.is-visible .journey-step:nth-child(1) .fill { transition-delay: 0.05s; }
.journey-timeline.is-visible .journey-step:nth-child(2) .fill { transition-delay: 0.35s; }
.journey-timeline.is-visible .journey-step:nth-child(3) .fill { transition-delay: 0.65s; }
.journey-timeline.is-visible .journey-step:nth-child(4) .fill { transition-delay: 0.95s; }

.journey-num {
  position: relative;
  z-index: 1;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--white); border: 2.5px solid var(--teal);
  color: var(--teal-dark); font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.journey-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.journey-step p { font-size: 0.92rem; color: var(--text-55); max-width: 220px; }

@media (max-width: 900px) {
  .journey-timeline { grid-template-columns: 1fr; gap: 0; }
  .journey-timeline::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 27px; /* horizontal center of the 54px mobile circle — fixed, so exact at any width */
    width: 3px;
    background: var(--border);
    border-radius: 2px;
    transform: scaleY(0); transform-origin: top;
    transition: transform 1.3s var(--ease);
  }
  .journey-timeline.is-visible::before { transform: scaleY(1); }
  .journey-connector { display: none; }
  .journey-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding-block: 20px;
  }
  .journey-num { margin-bottom: 0; flex-shrink: 0; width: 54px; height: 54px; }
  .journey-step p { max-width: none; }
}


/* ==========================================================================
   FOR CREATORS & AGENCIES — dark section
   ========================================================================== */
.sellers-section { background: var(--navy-deep); color: var(--white); }
.sellers-section .section-title { color: var(--white); }
.sellers-section .section-sub { color: rgba(255,255,255,0.7); }

.seller-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 8px; }
.seller-panel {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl); padding: 34px 30px;
  display: flex; flex-direction: column;
}
.seller-panel .seller-tag {
  display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: #9fe3d4; margin-bottom: 16px;
}
.seller-panel h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 12px; }
.seller-panel p { font-size: 0.96rem; color: rgba(255,255,255,0.75); margin-bottom: 24px; max-width: 420px; }

.seller-panel-body { display: flex; gap: 24px; align-items: center; margin-top: auto; }
.seller-panel-body .phone-mockup { flex-shrink: 0; }

.seller-feature-list { display: flex; flex-direction: column; gap: 12px; }
.seller-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.9);
}
.seller-feature .sf-dot { width: 6px; height: 6px; border-radius: 50%; background: #9fe3d4; flex-shrink: 0; }

.sellers-cta { text-align: center; margin-top: 44px; }

@media (max-width: 900px) {
  .seller-grid { grid-template-columns: 1fr; }
  .seller-panel-body { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .seller-panel-body { flex-direction: column; }
  .seller-feature { justify-content: center; }
}


/* ==========================================================================
   HOW IT WORKS — interactive
   ========================================================================== */
.hiw-tabs {
  display: inline-flex; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 5px; margin-bottom: 48px;
}
.hiw-tab {
  padding: 12px 28px; border-radius: var(--r-pill); font-weight: 650; font-size: 0.92rem;
  color: var(--text-55); transition: background 0.3s var(--ease), color 0.3s var(--ease), box-shadow .3s var(--ease);
}
.hiw-tab.is-active { background: var(--teal-light); color: var(--teal-dark); box-shadow: var(--shadow-sm); }

.hiw-interactive { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.hiw-phone-wrap { display: flex; justify-content: center; }
.hiw-phone-wrap .phone-mockup-screen { transition: opacity 0.22s var(--ease), transform 0.22s var(--ease); }
.hiw-phone-wrap .phone-mockup-screen.is-fading { opacity: 0.25; transform: scale(0.97); }

.hiw-steps { display: flex; flex-direction: column; gap: 12px; }
.hiw-steps[hidden] { display: none; }
.hiw-step {
  display: flex; align-items: center; gap: 16px; text-align: left;
  padding: 18px 20px; border-radius: var(--r-md); border: 1px solid var(--border);
  background: var(--white); transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  width: 100%;
}
.hiw-step .step-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--teal-light); color: var(--teal-dark);
  font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.hiw-step .step-text { font-weight: 600; font-size: 0.98rem; color: var(--text); }
.hiw-step.is-active { border-color: var(--teal); background: var(--teal-light); }
.hiw-step.is-active .step-num { background: var(--teal-600); color: var(--white); }
.hiw-step:hover:not(.is-active) { border-color: var(--border-strong); }

@media (max-width: 900px) {
  .hiw-interactive { grid-template-columns: 1fr; }
  .hiw-phone-wrap { margin-bottom: 8px; }
}


/* ==========================================================================
   APP EXPERIENCE — scroll-driven showcase (desktop) + swipe carousel (mobile)
   ========================================================================== */
.app-exp-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; margin-top: 8px; }
.app-exp-sticky-wrap { position: relative; }
.app-exp-sticky { position: sticky; top: 130px; display: flex; justify-content: center; }
.app-exp-sticky .phone-mockup-screen { transition: opacity 0.25s var(--ease); }
.app-exp-sticky .phone-mockup-screen.is-fading { opacity: 0.3; }

.app-exp-steps { display: flex; flex-direction: column; }
.app-exp-step {
  min-height: 46vh; display: flex; flex-direction: column; justify-content: center;
  padding-block: 36px; border-top: 1px solid var(--border);
  opacity: 0.32; transition: opacity 0.4s var(--ease);
}
.app-exp-step:first-child { border-top: none; }
.app-exp-step.is-active { opacity: 1; }
.app-exp-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 12px; display: block; }
.app-exp-step h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); margin-bottom: 10px; }
.app-exp-step p { color: var(--text-55); font-size: 1rem; max-width: 420px; }

.app-exp-mobile { display: none; }

@media (max-width: 900px) {
  .app-exp-layout { display: none; }
  .app-exp-mobile {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }
  .app-exp-mobile-item { text-align: center; }
  .app-exp-mobile-item .app-exp-label { display: block; }
  .app-exp-mobile-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
  .app-exp-mobile-item p { font-size: 0.92rem; color: var(--text-55); margin-bottom: 20px; max-width: 320px; margin-inline: auto; }
  .app-exp-mobile-item .phone-mockup { margin-inline: auto; position: static; }
}


/* ==========================================================================
   WHY PROMOFY — asymmetric composition
   ========================================================================== */
.why-composition { display: grid; grid-template-columns: 1fr 0.82fr 1fr; gap: 32px; align-items: center; margin-top: 12px; }
.why-col { display: flex; flex-direction: column; gap: 36px; }
.why-col.right { align-items: flex-end; text-align: right; }
.why-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why-item p { font-size: 0.94rem; color: var(--text-55); max-width: 260px; }
.why-col.right .why-item p { margin-left: auto; }
.why-phone-col { display: flex; justify-content: center; position: relative; }

@media (max-width: 900px) {
  .why-composition { grid-template-columns: 1fr; text-align: center; }
  .why-col, .why-col.right { align-items: center; text-align: center; }
  .why-col.right .why-item p, .why-item p { margin-inline: auto; }
  .why-phone-col { order: -1; margin-bottom: 12px; }
}


/* ==========================================================================
   REAL-WORLD USE CASE
   ========================================================================== */
.usecase-center {
  max-width: 320px; margin: 0 auto 40px; text-align: center;
  background: var(--navy-deep); color: var(--white);
  padding: 18px 28px; border-radius: var(--r-pill);
  font-weight: 650; font-size: 1.02rem;
}
.usecase-branches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.usecase-branch {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px 22px; text-align: center;
}
.usecase-branch .uc-icon {
  width: 46px; height: 46px; border-radius: 13px; background: var(--teal-light); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.usecase-branch h3 { font-size: 1.05rem; margin-bottom: 14px; }
.usecase-branch ul { display: flex; flex-direction: column; gap: 9px; }
.usecase-branch li { font-size: 0.88rem; color: var(--text-55); }

.usecase-footer {
  text-align: center; font-size: 1.15rem; font-weight: 650; color: var(--navy-deep);
  margin-top: 40px; line-height: 1.4;
}
.usecase-disclaimer {
  text-align: center; font-size: 0.82rem; color: var(--text-40);
  margin-top: 12px; max-width: 460px; margin-inline: auto;
}

@media (max-width: 760px) {
  .usecase-branches { grid-template-columns: 1fr; }
}


/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.cta-section { background: linear-gradient(155deg, var(--teal) 0%, var(--teal-dark) 100%); color: var(--white); overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }
.cta-grid .eyebrow { color: #cdeee9; }
.cta-grid .eyebrow::before { background: #cdeee9; }
.cta-grid h2 { color: var(--white); font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 18px; }
.cta-grid p { color: rgba(255,255,255,0.85); font-size: 1.08rem; margin-bottom: 30px; max-width: 460px; }
.cta-secondary-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-weight: 650; color: var(--white); border-bottom: 1.5px solid rgba(255,255,255,0.4); padding-bottom: 2px; }
.cta-secondary-link:hover { border-color: var(--white); }

.cta-phone-wrap { display: flex; justify-content: center; position: relative; }
.cta-phone-wrap .phone-mockup { position: relative; z-index: 2; }
.cta-glow { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.22), rgba(255,255,255,0) 70%); z-index: 0; filter: blur(10px); }

.cta-float-tag {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  padding: 9px 16px; border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 650; color: var(--white);
  animation: float-y 7s ease-in-out infinite;
}

@media (max-width: 860px) {
  .cta-grid { grid-template-columns: 1fr; text-align: center; }
  .cta-grid p { margin-inline: auto; }
  .store-badges { justify-content: center; }
  .cta-phone-wrap { order: -1; }
}


/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: var(--container-narrow); margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; text-align: left; font-weight: 650; font-size: 1.05rem; color: var(--text);
}
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: var(--teal-light); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.faq-item.is-open .faq-icon { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p { padding: 0 26px 22px; color: var(--text-55); font-size: 0.98rem; max-width: 660px; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 40px; align-items: start; }
.contact-grid > * { min-width: 0; }
.contact-copy p { color: var(--text-55); margin-top: -4px; margin-bottom: 28px; max-width: 400px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; display: flex; align-items: center; gap: 15px; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.contact-card .cc-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--teal-light); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .cc-label { font-size: 0.78rem; color: var(--text-40); margin-bottom: 2px; }
.contact-card .cc-value { font-weight: 700; font-size: 0.98rem; }

.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row > * { min-width: 0; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; min-width: 0; }
.form-group label { font-size: 0.85rem; font-weight: 650; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 15px; border: 1.5px solid var(--border-strong); border-radius: var(--r-sm);
  background: var(--bg); font-size: 0.94rem; transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal); background: var(--white); outline: none; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-error { font-size: 0.78rem; color: var(--coral); min-height: 16px; }
.form-group.has-error input, .form-group.has-error textarea, .form-group.has-error select { border-color: var(--coral); }
.form-status { margin-top: 14px; padding: 12px 15px; border-radius: var(--r-sm); font-size: 0.9rem; font-weight: 600; display: none; }
.form-status.is-success { display: block; background: var(--teal-light); color: var(--teal-dark); }
.form-status.is-error { display: block; background: rgba(226,105,79,0.12); color: var(--coral); }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.68); padding-block: 64px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 0.85fr 0.85fr 0.85fr 0.85fr; gap: 28px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 45px; margin-bottom: 18px; }
.footer-brand .foot-tagline { color: #9fe3d4; font-weight: 650; font-size: 0.94rem; margin-bottom: 10px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.6; max-width: 300px; }
.footer-col h4 { color: var(--white); font-size: 0.84rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.2s var(--ease); }
.footer-social a:hover { background: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 0.82rem; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Sticky mobile CTA */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94); backdrop-filter: blur(10px);
  box-shadow: 0 -6px 24px rgba(16,44,59,0.1);
  transform: translateY(0); transition: transform 0.35s var(--ease);
}
.mobile-sticky-cta.is-hidden { transform: translateY(110%); }
.mobile-sticky-cta .btn svg { flex-shrink: 0; }
@media (max-width: 720px) {
  .mobile-sticky-cta { display: block; }
  body:has(.mobile-sticky-cta) { padding-bottom: 78px; }
}


/* ==========================================================================
   LEGAL PAGES (Privacy Policy / Terms)
   ========================================================================== */
.legal-header { padding-top: 64px; padding-bottom: 40px; background: linear-gradient(180deg, var(--teal-light) 0%, var(--bg) 100%); }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 650; color: var(--teal-dark); margin-bottom: 24px; }
.legal-back:hover { text-decoration: underline; }
.legal-header h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 10px; }
.legal-updated { font-size: 0.88rem; color: var(--text-40); font-weight: 500; }

.legal-body { padding-block: 56px; }
.legal-body section { margin-bottom: 40px; scroll-margin-top: 100px; }
.legal-body h2 { font-size: 1.25rem; color: var(--text); margin-bottom: 14px; display: flex; align-items: baseline; gap: 10px; }
.legal-body h2 .num { color: var(--teal-dark); font-size: 0.95rem; font-weight: 700; }
.legal-body p, .legal-body li { font-size: 0.96rem; color: var(--text-70); margin-bottom: 12px; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin-bottom: 12px; }
.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }

.legal-toc { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; position: sticky; top: 104px; }
.legal-toc h3 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-40); margin-bottom: 14px; }
.legal-toc ol { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.legal-toc a { font-size: 0.86rem; color: var(--text-70); padding: 7px 8px; border-radius: 8px; display: block; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.legal-toc a:hover { background: var(--teal-light); color: var(--teal-dark); }

.legal-flag { display: inline-block; background: rgba(226,163,59,0.16); color: #93691c; font-size: 0.74rem; font-weight: 700; padding: 2px 9px; border-radius: 6px; margin-left: 4px; white-space: nowrap; }

.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; margin-bottom: 24px; }
}


/* ==========================================================================
   TRUST STRIP — compact bridge between buyer and seller value props
   ========================================================================== */
.trust-strip { background: var(--teal-light); padding-block: 48px; }
.trust-heading {
  text-align: center; font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 650;
  color: var(--navy-deep); margin-bottom: 28px; max-width: 560px; margin-inline: auto;
}
.trust-columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  max-width: 900px; margin-inline: auto; margin-bottom: 28px;
}
.trust-columns p { font-size: 0.95rem; color: var(--text-70); line-height: 1.55; }
.trust-columns p strong { color: var(--navy-deep); font-weight: 650; }
.trust-labels { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.trust-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--teal-tint);
  padding: 8px 16px; border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 650; color: var(--teal-dark);
}
.trust-label svg { flex-shrink: 0; }

@media (max-width: 720px) {
  .trust-columns { grid-template-columns: 1fr; gap: 20px; text-align: center; }
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  z-index: 400;
  max-width: min(420px, calc(100vw - 40px));
  background: var(--navy-deep);
  color: var(--white);
  padding: 15px 22px;
  border-radius: var(--r-md);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.is-error { background: #7a3226; }
.toast.is-success { background: var(--teal-dark); }

@media (max-width: 720px) {
  .toast { bottom: calc(86px + env(safe-area-inset-bottom)); }
}

.phone-mockup { aspect-ratio: auto !important; }
.phone-mockup-bezel {
  position: static !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.phone-mockup-notch { display: none !important; }
.phone-mockup-screen-wrap {
  width: 100% !important;
  height: auto !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.phone-mockup-screen {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  filter: none !important;
  box-shadow: none !important;
}