/* ═══════════════════════════════════════════════════════════
   KloudPoP Corporate Site — main.css
   Light professional base + orange brand accent
   ═══════════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
button { cursor: pointer; font: inherit; border: none; background: none; }
a { text-decoration: none; }

/* ── Design tokens ── */
:root {
  /* Brand */
  --orange:       #F2853A;
  --orange-deep:  #E06B22;
  --amber:        #F5B048;
  --orange-light: rgba(242,133,58,0.08);
  --orange-mid:   rgba(242,133,58,0.15);

  /* Dark (hero / footer) */
  --dark:         #0e0b1a;
  --dark-2:       #160f2e;
  --violet:       #8B5CF6;
  --green:        #34D399;

  /* Light (body) */
  --white:        #ffffff;
  --off-white:    #FAFAF8;
  --warm-50:      #FFF8F3;
  --warm-100:     #FDEEE0;
  --gray-50:      #F7F7F6;
  --gray-100:     #EFEFED;
  --gray-200:     #DDDCDA;
  --gray-400:     #9B9994;
  --gray-600:     #6B6966;
  --gray-800:     #2C2B29;
  --gray-900:     #1A1917;

  /* Typography */
  --font:         'Manrope', sans-serif;

  /* Spacing */
  --section-pad:  96px;
  --container:    min(1160px, 80%);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl:    0 24px 80px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.07);
  --shadow-orange:0 8px 32px rgba(242,133,58,0.28);
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(242,133,58,0.20); color: var(--gray-900); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-nav.transparent {
  background: transparent;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo { flex-shrink: 0; position: relative; display: flex; align-items: center; }
.nav-logo img { display: block; width: 152px; height: auto; }
.logo-dark  { opacity: 0; position: absolute; top: 50%; left: 0; transform: translateY(-50%); transition: opacity .3s ease; }
.logo-white { transition: opacity .3s ease; }
.site-nav.scrolled .logo-dark  { opacity: 1; position: relative; top: auto; transform: none; }
.site-nav.scrolled .logo-white { opacity: 0; position: absolute; top: 50%; transform: translateY(-50%); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color .2s ease;
}
.nav-links a:hover { color: #fff; }
.site-nav.scrolled .nav-links a { color: var(--gray-600); }
.site-nav.scrolled .nav-links a:hover { color: var(--gray-900); }

/* Enterprise nav link — subtle highlight */
.nav-link-enterprise {
  position: relative;
  color: var(--orange) !important;
  font-weight: 700 !important;
}
.nav-link-enterprise::after {
  content: 'New';
  position: absolute; top: -8px; right: -24px;
  font-size: 9px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
  padding: 2px 5px; border-radius: 4px;
  line-height: 1.4;
}
.site-nav.scrolled .nav-link-enterprise { color: var(--orange-deep) !important; }

/* ── Active nav link (current page highlight) ── */
.nav-link-active {
  color: var(--orange) !important;
  font-weight: 700 !important;
}
.site-nav.scrolled .nav-link-active {
  color: var(--orange-deep) !important;
}

/* Hero announcement bar */
.hero-announce {
  position: relative; z-index: 10;
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding: 0;
}
.hero-announce-inner {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 100px;
  background: rgba(242,133,58,.10);
  border: 1px solid rgba(242,133,58,.25);
  margin-bottom: 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.hero-announce-inner:hover {
  background: rgba(242,133,58,.16);
  border-color: rgba(242,133,58,.40);
}
.hero-announce-badge {
  font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
  padding: 3px 9px; border-radius: 100px;
  flex-shrink: 0;
}
.hero-announce-text {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.80);
}
.hero-announce-arrow {
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.hero-announce-inner:hover .hero-announce-arrow { transform: translateX(3px); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-ghost-nav {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.80);
  padding: 8px 16px; border-radius: 8px;
  transition: all .2s ease;
}
.btn-ghost-nav:hover { color: #fff; background: rgba(255,255,255,0.10); }
.site-nav.scrolled .btn-ghost-nav { color: var(--gray-600); }
.site-nav.scrolled .btn-ghost-nav:hover { color: var(--gray-900); background: var(--gray-50); }
.btn-orange-nav {
  font-size: 14px; font-weight: 700;
  color: #fff;
  padding: 9px 20px; border-radius: 9px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 4px 14px rgba(242,133,58,.30);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-orange-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242,133,58,.40);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all .25s ease;
}
.site-nav.scrolled .nav-hamburger span { background: var(--gray-800); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  background: #fff;
  border-top: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
}
.nav-drawer nav {
  display: flex; flex-direction: column;
  padding: 20px 32px 28px;
  gap: 4px;
}
.nav-drawer nav a {
  font-size: 16px; font-weight: 600;
  color: var(--gray-800);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color .2s ease;
}
.nav-drawer nav a:last-child { border-bottom: none; }
.nav-drawer nav a:hover { color: var(--orange); }
.drawer-cta {
  margin-top: 12px;
  text-align: center;
  padding: 14px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff !important;
  border-bottom: none !important;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 12px;
  font-size: 15px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  box-shadow: var(--shadow-orange);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(242,133,58,.38);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  font-size: 15px; font-weight: 600; color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  transition: all .2s ease;
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.btn-secondary.on-dark {
  color: #fff;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.25);
}
.btn-secondary.on-dark:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.50);
}
.btn-group { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ── App store buttons ── */
.store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.store-btn:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.32);
  transform: translateY(-2px);
}
.store-btn-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: #fff;
}
.store-btn-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.store-btn-sub {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.02em;
  line-height: 1;
}
.store-btn-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════
   SECTION LABELS & HEADINGS
   ═══════════════════════════════════════════════════════════ */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label.center { justify-content: center; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--gray-900);
}
.display-xl {
  font-size: clamp(52px, 8vw, 86px);
  letter-spacing: -.04em;
  line-height: 1.0;
}
.display-lg {
  font-size: clamp(38px, 5.5vw, 60px);
  letter-spacing: -.03em;
}
.display-md {
  font-size: clamp(28px, 4vw, 44px);
}
.display-sm {
  font-size: clamp(22px, 3vw, 32px);
}
.lead {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-white  { color: #fff; }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }
.delay-4 { transition-delay: .34s; }
.delay-5 { transition-delay: .42s; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/images/hero-1.jpg');
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.hero-orb-1 {
  position: absolute; top: -20%; right: -8%;
  width: clamp(400px, 55vw, 700px);
  height: clamp(400px, 55vw, 700px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,133,58,.22) 0%, transparent 65%);
  animation: orb-float 20s ease-in-out infinite;
}
.hero-orb-2 {
  position: absolute; bottom: -15%; left: -5%;
  width: clamp(300px, 40vw, 550px);
  height: clamp(300px, 40vw, 550px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.18) 0%, transparent 65%);
  animation: orb-float 28s ease-in-out infinite reverse;
}
@keyframes orb-float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(30px,-40px) scale(1.06); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-content {
  position: relative; z-index: 10;
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding: 140px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { max-width: 580px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(242,133,58,.8);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:.5;} 50%{opacity:1;} }

.hero-headline {
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-headline .accent {
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px; font-weight: 500;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: 16px;
}
.hero-body {
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,.50);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.hero-phone-frame {
  position: relative;
  width: 280px;
  margin: 0 auto;
}
.hero-phone-frame img {
  width: 100%; border-radius: 36px;
  box-shadow: 0 40px 120px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
}
.hero-phone-glow {
  position: absolute; inset: -20px;
  border-radius: 56px;
  background: radial-gradient(ellipse at center, rgba(242,133,58,.20) 0%, transparent 65%);
  pointer-events: none;
}
.hero-placeholder {
  width: 280px; height: 580px;
  border-radius: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.30);
  font-size: 13px; font-weight: 500;
}
.hero-placeholder svg { opacity: .4; }

/* Hero bullet list */
.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.hero-bullets li svg {
  flex-shrink: 0;
  color: var(--orange);
}

/* Hero stats bar — removed, kept stub so other pages don't break */
.hero-stats { display: none; }

/* ── App store buttons ── */
.store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2 — TRANSITION (Chaos → Control)
   ═══════════════════════════════════════════════════════════ */
.section-transition {
  padding: var(--section-pad) 0;
  background: var(--off-white);
  overflow: hidden;
}
.transition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.transition-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  background: var(--gray-100);
}
.transition-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 13px; font-weight: 500;
}
.img-placeholder svg { opacity: .5; }
.transition-content { padding: 16px 0; }
.transition-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 32px;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
}
.pill.orange { background: var(--orange-light); border-color: rgba(242,133,58,.25); color: var(--orange-deep); }
.pill svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   SECTION 3 — WHAT KLOUDPOP DOES
   ═══════════════════════════════════════════════════════════ */
.section-what {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.what-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}
.feature-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all .2s ease;
}
.feature-row:first-child { border-top: 1px solid var(--gray-100); }
.feature-icon-box {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--orange-light);
  border: 1.5px solid rgba(242,133,58,.20);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  transition: all .2s ease;
}
.feature-row:hover .feature-icon-box {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.feature-row-text h4 {
  font-size: 15px; font-weight: 700;
  color: var(--gray-900); margin-bottom: 2px;
  letter-spacing: -.01em;
}
.feature-row-text p {
  font-size: 13px; color: var(--gray-500);
  line-height: 1.55;
}
.what-visual {
  position: relative;
}
.what-screen-stack {
  position: relative;
  height: 560px;
}
.screen-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}
.screen-card.main {
  width: 240px; right: 20px; top: 0;
  aspect-ratio: 9/19;
}
.screen-card.secondary {
  width: 200px; left: 0; bottom: 40px;
  aspect-ratio: 9/19;
  opacity: .85;
}
.screen-card img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════════════════════
   SECTION 4 — HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.section-how {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.section-how::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.how-orb {
  position: absolute; top: -20%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,133,58,.15) 0%, transparent 60%);
  pointer-events: none;
}
.how-header { position: relative; z-index: 1; text-align: center; margin-bottom: 72px; }
.how-header .section-label { color: var(--amber); }
.how-header .section-label::before { background: linear-gradient(90deg, var(--orange), var(--amber)); }
.how-steps {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.how-step {
  position: relative;
  padding: 36px 28px;
  border-radius: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: background .3s ease;
}
.how-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.how-step:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.how-step:hover { background: rgba(255,255,255,.06); }

/* Connector line between steps */
.how-step:not(:last-child)::after {
  content: '';
  position: absolute; right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(242,133,58,.4), transparent);
}
.how-step-num {
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.how-step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(242,133,58,.10);
  border: 1px solid rgba(242,133,58,.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
  transition: all .3s ease;
}
.how-step:hover .how-step-icon {
  background: rgba(242,133,58,.18);
}
.how-step h3 {
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 10px; letter-spacing: -.02em;
}
.how-step p {
  font-size: 14px; color: rgba(255,255,255,.48);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5 — CORE BENEFITS
   ═══════════════════════════════════════════════════════════ */
.section-benefits {
  padding: var(--section-pad) 0;
  background: var(--warm-50);
}
.benefits-header { text-align: center; margin-bottom: 64px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242,133,58,.25);
}
.benefit-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
  transition: all .3s ease;
}
.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
}
.benefit-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--gray-900); margin-bottom: 8px;
  letter-spacing: -.01em;
}
.benefit-card p {
  font-size: 14px; color: var(--gray-500); line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 6 — USE CASES
   ═══════════════════════════════════════════════════════════ */
.section-use-cases {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.use-cases-header { margin-bottom: 56px; }
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.use-case-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  transition: all .25s ease;
}
.use-case-card:hover {
  background: var(--white);
  border-color: rgba(242,133,58,.30);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.use-case-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--orange-light);
  border: 1.5px solid rgba(242,133,58,.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0;
}
.use-case-card h3 {
  font-size: 16px; font-weight: 700;
  color: var(--gray-900); margin-bottom: 6px;
  letter-spacing: -.01em;
}
.use-case-card p {
  font-size: 13px; color: var(--gray-500); line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 7 — PRODUCT PREVIEW
   ═══════════════════════════════════════════════════════════ */
.section-preview {
  padding: var(--section-pad) 0 30px;
  background: var(--off-white);
  overflow: hidden;
}
.preview-header { text-align: center; margin-bottom: 64px; }
.preview-captions {
  display: flex; justify-content: center; gap: 32px;
  flex-wrap: wrap; margin-bottom: 48px;
}
.preview-caption {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--gray-600);
}
.preview-caption-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}
.screens-showcase {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 0 32px;
}
.showcase-phone {
  flex-shrink: 0;
  border-radius: 32px;
  overflow: hidden;
  /* box-shadow: var(--shadow-xl);
  background: var(--gray-100);
  border: 1px solid var(--gray-200); */
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.showcase-phone:hover { transform: translateY(-8px); }
.showcase-phone.center {
  width: 260px;
  transform: translateY(-24px);
}
.showcase-phone.center:hover { transform: translateY(-36px); }
.showcase-phone.side { width: 220px; opacity: .85; }
.showcase-phone img { width: 100%; display: block; aspect-ratio: 9/19; object-fit: cover; }
.phone-placeholder {
  aspect-ratio: 9/19;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: var(--gray-400);
  font-size: 12px; font-weight: 500;
}
.phone-placeholder svg { opacity: .4; }

/* ═══════════════════════════════════════════════════════════
   SECTION 8 — WHY IT'S BETTER (comparison)
   ═══════════════════════════════════════════════════════════ */
.section-compare {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.compare-header { text-align: center; margin-bottom: 56px; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.compare-col { border-radius: var(--radius); overflow: hidden; }
.compare-col-header {
  padding: 18px 28px;
  font-size: 14px; font-weight: 700;
}
.compare-col.old .compare-col-header {
  background: var(--gray-100);
  color: var(--gray-500);
}
.compare-col.new .compare-col-header {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
}
.compare-items { border: 1.5px solid var(--gray-100); border-top: none; border-radius: 0 0 var(--radius) var(--radius); }
.compare-col.new .compare-items { border-color: rgba(242,133,58,.25); }
.compare-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px; font-weight: 500;
}
.compare-col.new .compare-item { border-bottom-color: rgba(242,133,58,.10); }
.compare-item:last-child { border-bottom: none; }
.compare-item svg { flex-shrink: 0; }
.compare-col.old  .compare-item { color: var(--gray-500); }
.compare-col.new  .compare-item { color: var(--gray-800); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   SECTION 9 — PRICING
   ═══════════════════════════════════════════════════════════ */
.section-pricing {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all .3s ease;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242,133,58,.10), var(--shadow-lg);
  transform: translateY(-8px);
}
.pricing-card.featured:hover { transform: translateY(-12px); }
.pricing-badge {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  text-align: center; padding: 8px;
}
.pricing-body { padding: 32px 28px; }
.pricing-tier {
  font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 8px;
}
.pricing-price {
  font-size: 42px; font-weight: 800;
  color: var(--gray-900); letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sup { font-size: 20px; vertical-align: top; margin-top: 8px; font-weight: 700; }
.pricing-price .period {
  font-size: 15px; font-weight: 500;
  color: var(--gray-400); letter-spacing: 0;
}
.pricing-desc {
  font-size: 13px; color: var(--gray-500); margin-bottom: 28px;
  line-height: 1.55;
}
.pricing-features {
  list-style: none; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--gray-700);
}
.pricing-features li svg { color: var(--green); flex-shrink: 0; }
.pricing-cta { display: block; text-align: center; }

/* ═══════════════════════════════════════════════════════════
   SECTION 10 — FINAL CTA
   ═══════════════════════════════════════════════════════════ */
.section-cta {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-orb-1 {
  position: absolute; top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,133,58,.20) 0%, transparent 60%);
  pointer-events: none;
}
.cta-orb-2 {
  position: absolute; bottom: -30%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content .display-lg { color: #fff; margin-bottom: 16px; }
.cta-content .lead { color: rgba(255,255,255,.58); margin-bottom: 40px; }
.cta-note {
  margin-top: 20px;
  font-size: 13px; color: rgba(255,255,255,.30);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: #080615;
  padding: 72px 0 0;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 0 56px;
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 80px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,.35);
  line-height: 1.65;
}
.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.30);
  margin-bottom: 16px;
}
.footer-col a {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.50);
  padding: 5px 0;
  transition: color .2s ease;
}
.footer-col a:hover { color: rgba(255,255,255,.85); }
.store-link { color: rgba(255,255,255,.45) !important; }
.store-link:hover { color: var(--orange) !important; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-size: 12px; color: rgba(255,255,255,.22);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 12px; color: rgba(255,255,255,.22);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES (privacy + terms)
   ═══════════════════════════════════════════════════════════ */
.legal-page { padding: 120px 0 80px; }
.legal-header { margin-bottom: 48px; }
.legal-label {
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.legal-header h1 { font-size: clamp(32px,5vw,48px); color: var(--gray-900); margin-bottom: 12px; }
.legal-meta { font-size: 13px; color: var(--gray-400); }
.legal-intro {
  padding: 24px 28px; border-radius: var(--radius);
  background: var(--warm-50);
  border: 1.5px solid rgba(242,133,58,.18);
  margin-bottom: 48px;
  font-size: 15px; color: var(--gray-600); line-height: 1.7;
}
.legal-section { margin-bottom: 44px; }
.legal-section h2 {
  display: flex; align-items: center; gap: 12px;
  font-size: 18px; font-weight: 700; color: var(--gray-900);
  padding-bottom: 12px; margin-bottom: 16px;
  border-bottom: 1.5px solid var(--gray-100);
}
.legal-num {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--orange-light);
  border: 1.5px solid rgba(242,133,58,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--orange);
  flex-shrink: 0;
}
.legal-section p { font-size: 14px; color: var(--gray-600); margin-bottom: 12px; line-height: 1.7; }
.legal-section ul { list-style: none; margin-bottom: 12px; }
.legal-section li {
  position: relative; padding: 5px 0 5px 20px;
  font-size: 14px; color: var(--gray-600); line-height: 1.6;
}
.legal-section li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); opacity: .6;
}
.legal-notice {
  padding: 16px 20px; border-radius: 10px;
  background: rgba(139,92,246,.06);
  border: 1.5px solid rgba(139,92,246,.18);
  font-size: 13px; color: var(--gray-600); line-height: 1.65;
  margin: 16px 0;
}
.legal-contact-box {
  padding: 20px 24px; border-radius: 12px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  font-size: 14px; color: var(--gray-600);
  margin-top: 16px;
}
.legal-contact-box strong { color: var(--gray-900); }
.legal-email-link {
  display: inline-block; margin-top: 8px;
  font-size: 14px; font-weight: 600; color: var(--orange);
  border-bottom: 1px solid rgba(242,133,58,.30);
  transition: border-color .2s;
}
.legal-email-link:hover { border-color: var(--orange); }
.legal-footer-nav {
  margin-top: 64px; padding-top: 28px;
  border-top: 1.5px solid var(--gray-100);
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
.legal-footer-links { display: flex; gap: 20px; }
.legal-footer-links a {
  font-size: 13px; color: var(--gray-400);
  transition: color .2s;
}
.legal-footer-links a:hover { color: var(--gray-800); }
.legal-footer-links a.active { color: var(--orange); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --section-pad: 72px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; padding-top: 120px; }
  .hero-image { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .hero-phone-frame { width: 240px; }
  .store-buttons { justify-content: center; width: 100%; }
  .transition-grid,
  .what-grid { grid-template-columns: 1fr; gap: 48px; }
  .what-screen-stack { height: 380px; }
  .how-steps { grid-template-columns: repeat(2,1fr); }
  .how-step:first-child  { border-radius: var(--radius) 0 0 0; }
  .how-step:last-child   { border-radius: 0 0 var(--radius) var(--radius); }
  .how-step:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
  .how-step:nth-child(3) { border-radius: 0 0 0 var(--radius); }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .use-cases-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-links-group { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px; --container: min(1160px, 92%); }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { gap: 0; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-radius: 0 !important; }
  .how-step:first-child { border-radius: var(--radius) var(--radius) 0 0 !important; }
  .how-step:last-child  { border-radius: 0 0 var(--radius) var(--radius) !important; }
  .benefits-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .screens-showcase { gap: 10px; }
  .showcase-phone.side { width: 140px; }
  .showcase-phone.center { width: 180px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .footer-links-group { grid-template-columns: 1fr; }
  .hero-stats-inner { flex-direction: column; align-items: center; gap: 16px; }
}

