/* ==========================================================================
   Ammar Web Studio — Header / Navbar
   Premium dark theme, glassmorphism on scroll, fully responsive.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --color-bg: #050505;
  --color-primary: #FFB000;
  --color-secondary: #FFC83D;
  --color-text: #ffffff;
  --color-text-muted: #B5B5B5;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-scrolled: rgba(255, 255, 255, 0.10);

  --max-width: 1280px;
  --header-height: 90px;
  --header-height-scrolled: 75px;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition: 320ms var(--ease);

  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ---------- Base reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Offset for sticky header when jumping to anchors */
  scroll-padding-top: var(--header-height-scrolled);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Focus ring for accessibility */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition:
    height var(--transition),
    background-color var(--transition),
    backdrop-filter var(--transition),
    -webkit-backdrop-filter var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

/* Scrolled state: glassmorphism, shrink, subtle shadow */
.site-header.scrolled {
  height: var(--header-height-scrolled);
  background-color: rgba(10, 10, 10, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--color-border-scrolled);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.55);
}

.nav-container {
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 176, 0, 0.25),
    rgba(255, 176, 0, 0.05) 70%
  );
  border: 1px solid rgba(255, 176, 0, 0.25);
  box-shadow: 0 0 20px rgba(255, 176, 0, 0.12);
  transition: box-shadow var(--transition), transform var(--transition);
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 6px rgba(255, 200, 61, 0.35));
}

.logo:hover .logo-icon {
  box-shadow: 0 0 26px rgba(255, 176, 0, 0.28);
  transform: rotate(-4deg);
}

.logo-text-accent {
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ---------- Primary nav ---------- */
.primary-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-text);
}

/* Animated underline */
.nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms var(--ease);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--color-text);
}

/* ---------- CTA button ---------- */
.cta-button {
  --shine-x: -120%;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1200;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-pill);
  box-shadow:
    0 8px 22px -8px rgba(255, 176, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
  white-space: nowrap;
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  transform: translateX(var(--shine-x));
  transition: transform 700ms var(--ease);
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px -10px rgba(255, 176, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  filter: brightness(1.03);
}

.cta-button:hover::before {
  --shine-x: 120%;
}

.cta-button:active {
  transform: translateY(0);
}

.cta-arrow {
  display: inline-block;
  transition: transform var(--transition);
}

.cta-button:hover .cta-arrow {
  transform: translateX(3px);
}

.cta-mobile {
  display: none;
}

/* ---------- Hamburger ---------- */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--color-border);
  background-color: rgba(255, 255, 255, 0.03);
  transition: background-color var(--transition), border-color var(--transition);
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.menu-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-text);
  transition: transform 300ms var(--ease), opacity 200ms var(--ease);
}

.menu-toggle[aria-expanded='true'] .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded='true'] .menu-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded='true'] .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Responsive — Mobile Menu
   ========================================================================== */
@media (max-width: 960px) {
  .nav-container {
    padding: 0 20px;
    gap: 12px;
  }

  .cta-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  /* Fullscreen slide-down mobile nav */
  .primary-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    padding: calc(var(--header-height) + 24px) 24px 40px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;

    background-color: rgba(5, 5, 5, 0.92);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    backdrop-filter: blur(22px) saturate(160%);
    border-bottom: 1px solid var(--color-border-scrolled);

    transform: translateY(-102%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 350ms var(--ease),
      opacity 300ms var(--ease),
      visibility 350ms var(--ease);
    z-index: 999;
  }

  /* Keep the hamburger button (and logo/theme toggle) above the open menu
     so users can always close the menu. */
  .menu-toggle,
  .logo,
  .theme-toggle {
    position: relative;
    z-index: 1001;
  }

  /* Give the header a solid backdrop while the menu is open so it reads
     as a fixed bar sitting on top of the fullscreen nav. */
  body.menu-open .site-header {
    background-color: rgba(5, 5, 5, 0.92);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    backdrop-filter: blur(22px) saturate(160%);
    border-bottom-color: var(--color-border-scrolled);
  }

  .primary-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 16px 12px;
    font-size: 1.15rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }

  .nav-link::after {
    left: 12px;
    right: auto;
    bottom: 10px;
    width: 28px;
  }

  .cta-mobile {
    display: inline-flex;
    align-self: flex-start;
    padding: 14px 26px;
    font-size: 1rem;
    margin-top: 8px;
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .logo-text-accent {
    display: none;
  }
  .logo-text {
    font-size: 1.05rem;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  max-height: 1080px;
  padding: calc(var(--header-height) + 12px) 32px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  box-sizing: border-box;
}


/* Ambient background: soft glows + subtle grid */
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.glow-primary {
  width: 520px; height: 520px;
  top: 20%; right: -8%;
  background: radial-gradient(circle, rgba(255,176,0,0.55), transparent 65%);
  animation: floatGlow 12s ease-in-out infinite;
}
.glow-secondary {
  width: 420px; height: 420px;
  bottom: -10%; left: -6%;
  background: radial-gradient(circle, rgba(255,200,61,0.28), transparent 65%);
  animation: floatGlow 14s ease-in-out infinite reverse;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-20px, 20px) scale(1.05); }
}

.hero-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ---------- Left content ---------- */
.hero-content { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,176,0,0.08);
  border: 1px solid rgba(255,176,0,0.25);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 20px;
}
.stars {
  color: var(--color-secondary);
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.hero-heading {
  font-size: clamp(2rem, 3.9vw, 3.25rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--color-text);
}
.heading-accent {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-subheading {
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 26px;
  max-width: 560px;
}

/* ---------- Hero buttons ---------- */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), border-color var(--transition);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary {
  color: #1a1200;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  box-shadow:
    0 12px 30px -10px rgba(255,176,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease);
  z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px -10px rgba(255,176,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-primary:hover::before { transform: translateX(120%); }

.btn-secondary {
  color: var(--color-text);
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,176,0,0.55);
}

.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Trust indicators ---------- */
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 24px;
  max-width: 520px;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,176,0,0.12);
  border: 1px solid rgba(255,176,0,0.35);
  color: var(--color-secondary);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Device Mockup (Laptop + Phone) — pure CSS
   ========================================================================== */
.hero-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.mockup-float {
  position: relative;
  width: 100%;
  max-width: 560px;
  animation: floatMockup 6s ease-in-out infinite;
}
@keyframes floatMockup {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Laptop */
.laptop {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.55));
}
.laptop-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0a0a0a;
  border: 10px solid #1a1a1a;
  border-radius: 16px 16px 4px 4px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 40px rgba(255,176,0,0.04);
}
.laptop-topbar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.url-bar {
  margin-left: 10px;
  flex: 1;
  padding: 4px 10px;
  background: #1c1c1c;
  border-radius: 4px;
  font-size: 0.65rem;
  color: var(--color-text-muted);
}

.laptop-content {
  padding: 16px 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,176,0,0.14), transparent 55%),
    #0b0b0b;
  height: calc(100% - 34px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 14px;
}
.site-logo {
  font-size: 0.72rem; font-weight: 700; color: #fff;
  display: inline-flex; align-items: center; gap: 4px;
}
.bolt { color: var(--color-secondary); }

.site-links { display: flex; align-items: center; gap: 8px; }
.site-links span {
  width: 24px; height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}
.site-cta {
  width: 42px !important;
  height: 14px !important;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary)) !important;
  border-radius: 999px !important;
}

.site-hero .site-h1 {
  height: 12px; border-radius: 4px;
  background: rgba(255,255,255,0.85);
  margin-bottom: 6px;
  width: 85%;
}
.site-hero .site-h1.short { width: 55%; margin-bottom: 12px; }

.site-p { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.18); width: 90%; margin-bottom: 5px; }
.site-p.short { width: 65%; margin-bottom: 14px; }

.site-buttons { display: flex; gap: 8px; margin-bottom: 16px; }
.site-btn { width: 60px; height: 18px; border-radius: 4px; }
.site-btn.primary { background: linear-gradient(135deg, var(--color-secondary), var(--color-primary)); }
.site-btn.ghost { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); }

.site-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.card {
  aspect-ratio: 1 / 0.8;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.card-ic { filter: drop-shadow(0 0 6px rgba(255,200,61,0.4)); }

.laptop-base {
  position: relative;
  height: 14px;
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  border-radius: 0 0 20px 20px;
  margin: 0 -14px;
}
.laptop-notch {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 22%; height: 6px;
  background: #050505;
  border-radius: 0 0 8px 8px;
}

/* Phone (overlapping) */
.phone {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 27%;
  min-width: 130px;
  aspect-ratio: 9 / 19;
  background: #0e0e0e;
  border: 6px solid #1a1a1a;
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 30px 50px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  animation: floatPhone 5s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-10px) rotate(-3deg); }
}
.phone-notch {
  position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 40%; height: 10px;
  background: #050505;
  border-radius: 6px;
  z-index: 2;
}
.phone-screen {
  height: 100%;
  padding: 22px 10px 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,176,0,0.18), transparent 55%),
    #0a0a0a;
  display: flex; flex-direction: column; gap: 8px;
}
.phone-header { text-align: center; font-size: 0.85rem; color: var(--color-secondary); }
.phone-bolt { filter: drop-shadow(0 0 6px rgba(255,200,61,0.6)); }
.phone-hero {
  padding: 6px 4px;
  display: flex; flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.phone-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.7); }
.phone-line.lg { width: 90%; height: 8px; }
.phone-line.md { width: 70%; background: rgba(255,255,255,0.5); }
.phone-line.sm { width: 50%; background: rgba(255,255,255,0.25); height: 5px; }
.phone-btn {
  margin-top: 6px; width: 60%; height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}
.phone-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px;
  padding: 0 4px;
}
.pcard {
  aspect-ratio: 1 / 0.9;
  border-radius: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.phone-cta {
  margin-top: auto;
  padding: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  color: #1a1200;
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
}

/* ==========================================================================
   Fade-up load animation
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 700ms var(--ease) forwards;
  animation-delay: var(--delay, 0ms);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Hero responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-mockup { max-width: 520px; margin: 0 auto; width: 100%; }
  .trust-list { max-width: 100%; }
}

@media (max-width: 600px) {
  .hero {
    padding: calc(var(--header-height) + 20px) 20px 48px;
  }
  .hero-container { gap: 40px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .trust-list { grid-template-columns: 1fr; gap: 10px; }
  .phone { left: -14px; bottom: -14px; width: 30%; }
  .glow-primary { width: 320px; height: 320px; }
  .glow-secondary { width: 280px; height: 280px; }
  /* Hide hero mockup entirely on mobile to prevent flash/overlap with next section */
  .hero-mockup { display: none !important; }
}

/*@media (max-width: 600px) {*/
/*  .hero {*/
/*    align-items: flex-start;*/
/*    min-height: auto;*/
/*    max-height: none;*/
/*    padding: calc(var(--header-height) + 28px) 20px 60px;*/
/*  }*/
/*  .hero-container { gap: 44px; }*/
/*  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }*/
/*  .trust-list { grid-template-columns: 1fr; gap: 10px; }*/
/*  .phone { left: -14px; bottom: -14px; width: 30%; }*/
/*  .glow-primary { width: 320px; height: 320px; }*/
/*  .glow-secondary { width: 280px; height: 280px; }*/
/*}*/

/* Short laptop screens (e.g. 13" @ 1366x768) — keep hero fully in view */
@media (min-width: 1025px) and (max-height: 820px) {
  .hero { padding-top: calc(var(--header-height) + 8px); padding-bottom: 24px; }
  .hero-heading   { font-size: clamp(1.85rem, 3.2vw, 2.6rem); margin-bottom: 14px; }
  .hero-subheading{ font-size: 0.98rem; margin-bottom: 20px; }
  .hero-badge     { margin-bottom: 14px; padding: 6px 12px; font-size: 0.8rem; }
  .hero-actions   { margin-bottom: 20px; }
  .btn            { padding: 11px 20px; font-size: 0.92rem; }
  .trust-list     { gap: 8px 20px; font-size: 0.88rem; }
  .hero-mockup    { min-height: 320px; }
  .mockup-float   { max-width: 480px; }
}

/* ==========================================================================
   THEME TOGGLE BUTTON
   ========================================================================== */
.theme-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background-color: rgba(255, 176, 0, 0.08);
  border-color: rgba(255, 176, 0, 0.35);
  color: var(--color-secondary);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -8px rgba(255, 176, 0, 0.45);
}

.theme-icon {
  width: 20px;
  height: 20px;
  transition: transform 400ms var(--ease), opacity 250ms var(--ease);
}

/* Show moon in dark mode, sun in light mode */
.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: inline-block; }

.theme-toggle:hover .theme-icon {
  transform: rotate(-18deg) scale(1.08);
}

/* ==========================================================================
   LIGHT THEME OVERRIDES
   ========================================================================== */
[data-theme="light"] {
  --color-bg: #f7f7f8;
  --color-text: #0b0b0c;
  --color-text-muted: #5a5a63;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-scrolled: rgba(0, 0, 0, 0.10);
}

[data-theme="light"] body {
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* Header glass surface for light theme */
[data-theme="light"] .site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.65);
  border-bottom-color: var(--color-border-scrolled);
  box-shadow: 0 10px 30px -14px rgba(15, 15, 20, 0.18);
}

[data-theme="light"] .logo-text-accent { color: var(--color-text-muted); }

[data-theme="light"] .nav-link { color: var(--color-text-muted); }
[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link:focus-visible,
[data-theme="light"] .nav-link.active { color: var(--color-text); }

[data-theme="light"] .menu-toggle {
  background-color: rgba(0, 0, 0, 0.03);
  border-color: var(--color-border);
}
[data-theme="light"] .menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.14);
}
[data-theme="light"] .menu-bar { background-color: var(--color-text); }

[data-theme="light"] .theme-toggle {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: var(--color-border);
}

/* Mobile fullscreen menu on light theme */
[data-theme="light"] .primary-nav {
  background-color: rgba(255, 255, 255, 0.94);
}
[data-theme="light"] .nav-link { border-bottom-color: var(--color-border); }

/* Hero ambient glows dial down on light theme */
[data-theme="light"] .glow-primary { opacity: 0.35; }
[data-theme="light"] .glow-secondary { opacity: 0.22; }
[data-theme="light"] .grid-overlay {
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
}

/* Smooth cross-fade when switching themes */
body,
.site-header,
.nav-link,
.menu-toggle,
.theme-toggle,
.primary-nav {
  transition-property: background-color, color, border-color, box-shadow;
}

/* ============================================================
   PROBLEM vs SOLUTION SECTION
   ============================================================ */
.ps-section {
  position: relative;
  padding: clamp(16px, 2vw, 28px) 0 clamp(40px, 5vw, 72px);

  background: var(--bg, #050505);
  overflow: hidden;
}
/* Soft ambient glows behind the section */
.ps-section::before,
.ps-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.ps-section::before {
  top: -140px;
  left: -160px;
  background: rgba(231, 76, 60, 0.28);
}
.ps-section::after {
  bottom: -160px;
  right: -160px;
  background: rgba(255, 176, 0, 0.22);
}
[data-theme="light"] .ps-section { background: #f7f7f8; }
[data-theme="light"] .ps-section::before,
[data-theme="light"] .ps-section::after { opacity: 0.18; }

.ps-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* -------- Header -------- */
.ps-header {
  max-width: 780px;
  margin: 0 auto clamp(24px, 3vw, 40px);
  text-align: center;
}
.ps-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFB000;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 176, 0, 0.08);
  border: 1px solid rgba(255, 176, 0, 0.25);
  margin-bottom: 20px;
}
.ps-heading {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--fg, #fff);
}
.ps-heading-accent {
  background: linear-gradient(120deg, #FFB000, #FFC83D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ps-sub {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.65;
  color: #B5B5B5;
  margin: 0;
}
[data-theme="light"] .ps-sub { color: #4a4a52; }

/* -------- Grid -------- */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
}

/* -------- Cards -------- */
.ps-card {
  position: relative;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.8);
  transition: transform 350ms cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 350ms ease,
              border-color 350ms ease;
  overflow: hidden;
  isolation: isolate;
}
[data-theme="light"] .ps-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.25);
}

/* Accent top strip */
.ps-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 1;
}
.ps-card--problem::before {
  background: linear-gradient(90deg, transparent, #E74C3C, transparent);
}
.ps-card--solution::before {
  background: linear-gradient(90deg, transparent, #FFB000, #FFC83D, transparent);
}

/* Hover lift */
.ps-card:hover {
  transform: translateY(-6px);
}
.ps-card--problem:hover {
  border-color: rgba(231, 76, 60, 0.45);
  box-shadow: 0 30px 70px -30px rgba(231, 76, 60, 0.35),
              0 0 0 1px rgba(231, 76, 60, 0.15) inset;
}
.ps-card--solution:hover {
  border-color: rgba(255, 176, 0, 0.5);
  box-shadow: 0 30px 70px -30px rgba(255, 176, 0, 0.4),
              0 0 0 1px rgba(255, 176, 0, 0.18) inset;
}

/* Card head */
.ps-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.ps-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ps-chip--problem {
  background: rgba(231, 76, 60, 0.12);
  color: #ff7566;
  border: 1px solid rgba(231, 76, 60, 0.3);
}
.ps-chip--solution {
  background: rgba(255, 176, 0, 0.12);
  color: #FFC83D;
  border: 1px solid rgba(255, 176, 0, 0.3);
}
.ps-card-title {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg, #fff);
}

/* List */
.ps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 4px;
  color: #d8d8dc;
  font-size: 0.98rem;
  line-height: 1.55;
  border-radius: 10px;
  transition: transform 300ms ease, color 300ms ease, background 300ms ease;
}
[data-theme="light"] .ps-list li { color: #2b2b30; }
[data-theme="light"] .ps-heading,
[data-theme="light"] .ps-card-title { color: #0b0b0c; }
.ps-list li:hover {
  transform: translateX(4px);
}
.ps-card--problem .ps-list li:hover { background: rgba(231, 76, 60, 0.05); }
.ps-card--solution .ps-list li:hover { background: rgba(255, 176, 0, 0.05); }

/* Icons */
.ps-ic {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ps-list li:hover .ps-ic { transform: scale(1.12) rotate(-4deg); }
.ps-ic--x {
  background: rgba(231, 76, 60, 0.14);
  color: #ff5c4d;
  border: 1px solid rgba(231, 76, 60, 0.32);
}
.ps-ic--check {
  background: rgba(255, 176, 0, 0.14);
  color: #FFC83D;
  border: 1px solid rgba(255, 176, 0, 0.32);
}

/* VS divider */
.ps-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: #B5B5B5;
}
.ps-vs span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
[data-theme="light"] .ps-vs span {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1);
  color: #4a4a52;
}

/* -------- Reveal animations -------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal-left { transform: translate3d(-40px, 0, 0); }
.reveal-right { transform: translate3d(40px, 0, 0); }
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .ps-card,
  .ps-list li,
  .ps-ic { transition: none; }
  .reveal { opacity: 1; transform: none; }
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .ps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ps-vs {
    order: 0;
  }
  .ps-vs span { transform: rotate(0); }
  .reveal-left,
  .reveal-right { transform: translateY(24px); }
}

@media (max-width: 600px) {
  .ps-section { padding: 16px 0 48px; }
  .ps-card { border-radius: 20px; }
  .ps-card-head { flex-wrap: wrap; gap: 10px; }
  .ps-list li { font-size: 0.94rem; }
}

/* Short laptop screens — keep the whole section in view */
@media (min-width: 1025px) and (max-height: 820px) {
  .ps-section { padding: 12px 0 40px; }
  .ps-header  { margin: 0 auto 20px; }
  .ps-label   { margin-bottom: 12px; padding: 6px 12px; font-size: 0.72rem; }
  .ps-heading { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 10px; }
  .ps-sub     { font-size: 0.95rem; line-height: 1.55; }
  .ps-card    { padding: 22px 24px; border-radius: 20px; }
  .ps-card-head { margin-bottom: 16px; }
  .ps-card-title { font-size: 1.2rem; }
  .ps-list    { gap: 8px; }
  .ps-list li { padding: 6px 4px; font-size: 0.92rem; line-height: 1.45; }
  .ps-ic      { width: 22px; height: 22px; }
  .ps-vs span { width: 44px; height: 44px; font-size: 0.78rem; }
}

/* ============================================================
   LIVE MASTER DEMO SHOWCASE SECTION
   ============================================================ */
.demo-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: clamp(40px, 6vh, 80px) 0 clamp(48px, 7vh, 96px);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: radial-gradient(1200px 600px at 50% -10%,
                rgba(255, 176, 0, 0.06), transparent 60%),
              var(--color-bg, #050505);
}

.demo-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.demo-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.demo-glow--a {
  width: 520px; height: 520px;
  top: -140px; left: -120px;
  background: radial-gradient(closest-side, rgba(255, 176, 0, 0.35), transparent 70%);
}
.demo-glow--b {
  width: 620px; height: 620px;
  bottom: -220px; right: -160px;
  background: radial-gradient(closest-side, rgba(255, 200, 61, 0.22), transparent 70%);
}
[data-theme="light"] .demo-section {
  background: radial-gradient(1200px 600px at 50% -10%,
                rgba(255, 176, 0, 0.15), transparent 60%),
              var(--color-bg, #f7f7f8);
}
[data-theme="light"] .demo-glow { opacity: 0.4; }

.demo-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 36px);
  width: 100%;
  justify-content: center;
}

/* Header */
.demo-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.demo-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFB000;
  padding: 6px 14px;
  border: 1px solid rgba(255, 176, 0, 0.35);
  border-radius: 999px;
  background: rgba(255, 176, 0, 0.08);
}
.demo-title {
  margin: 12px 0 8px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text, #ffffff);
  letter-spacing: -0.02em;
}
.demo-subtitle {
  margin: 0;
  color: var(--color-text-muted, #B5B5B5);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.55;
}

/* Grid */
.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  min-height: 0;
}

/* ---------- LEFT: Laptop + phone stage ---------- */
.demo-stage {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 10;
  max-height: min(58vh, 560px);
  margin: 0 auto;
  animation: demoFloat 7s ease-in-out infinite;
}
@keyframes demoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.demo-stage-glow {
  position: absolute;
  inset: 10% 8% -6% 8%;
  background: radial-gradient(closest-side, rgba(255, 176, 0, 0.35), transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.demo-laptop {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}
.demo-laptop-lid {
  background: linear-gradient(180deg, #1c1c1e, #0e0e10);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px 18px 6px 6px;
  padding: 12px 12px 14px;
  position: relative;
}
.demo-laptop-screen {
  position: relative;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255,255,255,0.06);
}
.demo-laptop-notch {
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 5px;
  background: #050505;
  border-radius: 0 0 6px 6px;
  z-index: 2;
}
.demo-frame-wrap {
  position: absolute;
  inset: 0;
  background: #0b0b0d;
}
.demo-frame {
  width: 117.65%;
  height: 117.65%;
  border: 0;
  display: block;
  background: #fff;
  transform: scale(0.85);
  transform-origin: top left;
}
.demo-frame-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    linear-gradient(135deg, rgba(255,176,0,0.08), rgba(255,200,61,0.04)),
    #0b0b0d;
  color: #fff;
}
.demo-frame-fallback[hidden] { display: none; }
.demo-frame-fallback-badge {
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FFB000, #FFC83D);
  color: #050505;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.demo-frame-fallback-hint {
  font-size: 12px;
  color: #B5B5B5;
  letter-spacing: 0.05em;
}
.demo-laptop-base {
  position: relative;
  margin: 0 auto;
  width: 112%;
  left: -6%;
  height: 14px;
  background: linear-gradient(180deg, #202024, #0a0a0b);
  border-radius: 0 0 14px 14px;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
}
.demo-laptop-notch-b {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 22%;
  height: 6px;
  background: #050505;
  border-radius: 0 0 10px 10px;
}

/* Phone overlap */
.demo-phone {
  position: absolute;
  right: -6px;
  bottom: -18px;
  width: 22%;
  min-width: 120px;
  max-width: 170px;
  aspect-ratio: 9 / 19;
  z-index: 2;
  margin: 0;
  background: linear-gradient(180deg, #1c1c1e, #0b0b0c);
  border-radius: 22px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.55));
  animation: demoFloat 6s ease-in-out infinite;
  animation-delay: -1.5s;
}
.demo-phone-screen {
  position: relative;
  background: #0b0b0d;
  border-radius: 16px;
  height: 100%;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.demo-phone-topbar {
  display: flex; align-items: center; justify-content: space-between;
}
.demo-phone-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #FFB000;
}
.demo-phone-pill {
  width: 40%; height: 6px; border-radius: 6px;
  background: rgba(255,255,255,0.12);
}
.demo-phone-hero {
  display: flex; flex-direction: column; gap: 6px;
  padding: 8px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,176,0,0.16), rgba(255,200,61,0.04));
  border: 1px solid rgba(255,176,0,0.25);
}
.demo-phone-hero-title { display:block; height: 8px; width: 80%; border-radius: 4px; background: rgba(255,255,255,0.85); }
.demo-phone-hero-sub   { display:block; height: 5px; width: 60%; border-radius: 4px; background: rgba(255,255,255,0.35); }
.demo-phone-cta        { display:block; height: 12px; width: 55%; border-radius: 6px; background: linear-gradient(135deg,#FFB000,#FFC83D); margin-top: 3px; }
.demo-phone-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px;
}
.demo-phone-cards span {
  aspect-ratio: 1 / 1; border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.05);
}
.demo-phone-call {
  margin-top: auto;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFB000, #FFC83D);
  color: #050505;
  font-size: 9px;
  font-weight: 700;
}
.demo-phone-call-ico { font-size: 10px; }

/* ---------- RIGHT: Features + CTA ---------- */
.demo-side {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vh, 22px);
  min-width: 0;
}
.demo-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 14px);
}
.demo-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(12px, 1.6vh, 18px) clamp(14px, 1.4vw, 20px);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 320ms ease, border-color 320ms ease,
              background 320ms ease, box-shadow 320ms ease;
}
[data-theme="light"] .demo-feature {
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,0,0,0.08);
}
.demo-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(255,176,0,0.45);
  background: rgba(255,176,0,0.06);
  box-shadow: 0 14px 40px -20px rgba(255,176,0,0.55);
}
.demo-feature-icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,176,0,0.22), rgba(255,200,61,0.1));
  border: 1px solid rgba(255,176,0,0.35);
  font-size: 20px;
  line-height: 1;
}
.demo-feature-body { min-width: 0; }
.demo-feature-title {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text, #fff);
  letter-spacing: -0.005em;
}
.demo-feature-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-muted, #B5B5B5);
}

/* CTA */
.demo-cta-wrap { text-align: left; }
.demo-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFB000, #FFC83D);
  color: #050505;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 12px 40px -12px rgba(255,176,0,0.6),
              inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 320ms ease, box-shadow 320ms ease, filter 320ms ease;
}
.demo-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%),
              rgba(255,255,255,0.6), transparent 45%);
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: -1;
}
.demo-cta:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.05);
  box-shadow: 0 22px 60px -18px rgba(255,176,0,0.75),
              inset 0 1px 0 rgba(255,255,255,0.4);
}
.demo-cta:hover::before { opacity: 1; }
.demo-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.demo-cta-arrow { transition: transform 320ms ease; }
.demo-cta:hover .demo-cta-arrow { transform: translate(2px, -2px); }
.demo-cta-note {
  margin: 10px 2px 0;
  font-size: 12px;
  color: var(--color-text-muted, #B5B5B5);
}

/* Ripple */
.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.55);
  animation: rippleAnim 600ms ease-out;
  pointer-events: none;
  z-index: 0;
}
@keyframes rippleAnim {
  to { transform: scale(3); opacity: 0; }
}

/* ---------- Short laptops (fit 1366x768) ---------- */
@media (min-width: 1025px) and (max-height: 820px) {
  .demo-section { padding: 20px 0 22px; }
  .demo-title { font-size: clamp(22px, 2.4vw, 30px); }
  .demo-subtitle { font-size: 13px; }
  .demo-stage { max-height: 52vh; }
  .demo-feature { padding: 10px 14px; border-radius: 16px; gap: 12px; }
  .demo-feature-icon { width: 36px; height: 36px; font-size: 18px; border-radius: 10px; }
  .demo-feature-title { font-size: 14px; }
  .demo-feature-desc { font-size: 12.5px; line-height: 1.45; }
  .demo-cta { padding: 12px 22px; font-size: 14px; }
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
  .demo-section {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 64px 0;
  }
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .demo-stage { max-height: none; aspect-ratio: 16 / 10; }
  .demo-cta-wrap { text-align: center; }
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  .demo-section { padding: 48px 0; }
  .demo-title { font-size: 26px; }
  .demo-stage { aspect-ratio: 4 / 3; }
  .demo-phone { width: 26%; right: -4px; bottom: -14px; }
  .demo-cta { display: flex; width: 100%; justify-content: center; }
  .demo-feature { padding: 12px 14px; }
  .demo-feature-title { font-size: 14px; }
  .demo-feature-desc { font-size: 13px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .demo-stage, .demo-phone { animation: none; }
  .demo-cta { transition: none; }
}

/* ============================================================
   WHY CHOOSE US SECTION
   Premium 2x2 grid of glassmorphism cards with staggered
   reveal, hover lift, golden border glow, and subtle radial
   background accents.
============================================================ */
.why-section {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
  background-color: var(--bg, #050505);
  overflow: hidden;
  isolation: isolate;
}

/* Soft radial golden glows behind the section */
.why-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.why-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.28;
}
.why-glow--left {
  top: -160px;
  left: -180px;
  background: radial-gradient(circle, rgba(255, 176, 0, 0.55), transparent 60%);
}
.why-glow--right {
  bottom: -180px;
  right: -160px;
  background: radial-gradient(circle, rgba(255, 200, 61, 0.35), transparent 60%);
}
[data-theme="light"] .why-section { background-color: #f7f7f8; }
[data-theme="light"] .why-glow { opacity: 0.18; }

.why-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* Section header */
.why-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.why-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFB000;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 176, 0, 0.28);
  background: rgba(255, 176, 0, 0.06);
  margin-bottom: 20px;
}
.why-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 18px;
}
[data-theme="light"] .why-title { color: #0b0b0c; }
.why-title .accent-gradient {
  background: linear-gradient(135deg, #FFB000 0%, #FFC83D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.65;
  color: #B5B5B5;
  margin: 0;
}
[data-theme="light"] .why-subtitle { color: #4a4a52; }

/* 2x2 grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}

/* Card */
.why-card {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 22px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.045) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  transition:
    transform 350ms ease,
    border-color 350ms ease,
    box-shadow 350ms ease,
    background 350ms ease;
  overflow: hidden;
}
[data-theme="light"] .why-card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.6) 100%
  );
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Subtle top-edge accent line that lights up on hover */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 176, 0, 0.55), transparent);
  opacity: 0;
  transition: opacity 350ms ease;
}
.why-card:hover::before,
.why-card:focus-within::before { opacity: 1; }

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 176, 0, 0.55);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 176, 0, 0.25),
    0 0 40px rgba(255, 176, 0, 0.18);
}

/* Icon container */
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 200, 61, 0.28),
    rgba(255, 176, 0, 0.1) 60%,
    transparent 100%
  );
  border: 1px solid rgba(255, 176, 0, 0.32);
  box-shadow: inset 0 0 20px rgba(255, 176, 0, 0.12);
  margin-bottom: 22px;
  transition: transform 400ms ease, box-shadow 400ms ease;
}
.why-icon-emoji {
  font-size: 1.6rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(255, 176, 0, 0.35));
  transition: transform 400ms ease;
}
.why-card:hover .why-icon {
  box-shadow:
    inset 0 0 20px rgba(255, 176, 0, 0.2),
    0 0 24px rgba(255, 176, 0, 0.25);
}
.why-card:hover .why-icon-emoji {
  transform: rotate(-8deg) scale(1.08);
}

/* Card text */
.why-card-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
[data-theme="light"] .why-card-title { color: #0b0b0c; }
.why-card-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #B5B5B5;
  margin: 0;
}
[data-theme="light"] .why-card-desc { color: #4a4a52; }

/* Staggered reveal — layered on top of the shared .reveal utility */
.why-card.reveal { transition-delay: var(--stagger, 0ms); }

/* Tablet: 2 columns already, tighten spacing */
@media (max-width: 1024px) {
  .why-grid { gap: 22px; }
}

/* Mobile: single column */
@media (max-width: 640px) {
  .why-section { padding: 56px 0 64px; }
  .why-grid { grid-template-columns: 1fr; gap: 18px; }
  .why-card { padding: 26px 22px; }
  .why-icon { width: 56px; height: 56px; margin-bottom: 18px; }
  .why-icon-emoji { font-size: 1.4rem; }
  .why-card-title { font-size: 1.15rem; }
}

/* ============================================================
   SHARED SECTION UTILITIES (used by How It Works, Pricing, FAQ)
============================================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFB000;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 176, 0, 0.28);
  background: rgba(255, 176, 0, 0.06);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 18px;
}
[data-theme="light"] .section-title { color: #0b0b0c; }
.section-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.65;
  color: #B5B5B5;
  margin: 0 auto;
  max-width: 640px;
}
[data-theme="light"] .section-subtitle { color: #4a4a52; }

/* ============================================================
   HOW IT WORKS SECTION
============================================================ */
.hiw-section {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
  background: #050505;
  overflow: hidden;
}
[data-theme="light"] .hiw-section { background: #f7f7f8; }

.hiw-container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

.hiw-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.hiw-steps {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

/* Horizontal timeline (desktop) */
.hiw-timeline {
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  z-index: 0;
}
.hiw-timeline-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #FFB000, #FFC83D);
  box-shadow: 0 0 20px rgba(255, 176, 0, 0.55);
  transition: width 1.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.hiw-steps.is-animated .hiw-timeline-fill { width: 100%; }

/* Step node dot on the timeline */
.hiw-step { position: relative; list-style: none; }
.hiw-node {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFC83D 0%, #FFB000 60%, transparent 100%);
  border: 2px solid #050505;
  box-shadow: 0 0 20px rgba(255, 176, 0, 0.55);
  z-index: 2;
}
[data-theme="light"] .hiw-node { border-color: #f7f7f8; }

.hiw-card {
  position: relative;
  margin-top: 70px;
  padding: 32px 28px 28px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
  transition: transform 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}
[data-theme="light"] .hiw-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6));
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.hiw-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 176, 0, 0.5);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255,176,0,0.18);
}
.hiw-number {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(255, 176, 0, 0.25), rgba(255, 176, 0, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
}
.hiw-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: radial-gradient(circle at 30% 30%, rgba(255,200,61,0.28), rgba(255,176,0,0.1) 60%, transparent);
  border: 1px solid rgba(255, 176, 0, 0.32);
  box-shadow: inset 0 0 20px rgba(255, 176, 0, 0.12);
}
.hiw-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}
[data-theme="light"] .hiw-card-title { color: #0b0b0c; }
.hiw-card-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #B5B5B5;
  margin: 0;
}
[data-theme="light"] .hiw-card-desc { color: #4a4a52; }

.hiw-step.reveal { transition-delay: var(--stagger, 0ms); }

/* Tablet: 2 rows */
@media (max-width: 1024px) {
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }
  .hiw-timeline { display: none; }
  .hiw-node { position: static; margin: 0 auto 14px; transform: none; }
  .hiw-card { margin-top: 0; }
}
/* Mobile: vertical timeline */
@media (max-width: 640px) {
  .hiw-steps {
    grid-template-columns: 1fr;
    padding-left: 32px;
  }
  .hiw-timeline {
    display: block;
    top: 12px;
    bottom: 12px;
    left: 8px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .hiw-timeline-fill { width: 100%; height: 0; transition: height 1.6s cubic-bezier(0.65,0,0.35,1); }
  .hiw-steps.is-animated .hiw-timeline-fill { width: 100%; height: 100%; }
  .hiw-step { position: relative; }
  .hiw-node {
    position: absolute;
    top: 22px;
    left: -32px;
    transform: none;
    margin: 0;
    width: 18px;
    height: 18px;
  }
  .hiw-card { margin-top: 0; text-align: left; padding: 26px 22px; }
  .hiw-icon { margin: 0 0 16px; }
  .hiw-number { font-size: 3rem; }
}

/* ============================================================
   PRICING SECTION
============================================================ */
.pricing-section {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
  background: #050505;
  overflow: hidden;
  isolation: isolate;
}
[data-theme="light"] .pricing-section { background: #f7f7f8; }
.pricing-bg { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.pricing-glow {
  position: absolute;
  top: 20%; left: 50%;
  width: 700px; height: 700px;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(140px);
  background: radial-gradient(circle, rgba(255, 176, 0, 0.28), transparent 60%);
  opacity: 0.55;
}
[data-theme="light"] .pricing-glow { opacity: 0.25; }

.pricing-container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.pricing-header { text-align: center; max-width: 780px; margin: 0 auto clamp(40px, 5vw, 56px); }

/* Currency toggle */
.currency-toggle {
  position: relative;
  display: inline-flex;
  gap: 4px;
  margin-top: 28px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
[data-theme="light"] .currency-toggle {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
}
.currency-indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: calc((100% - 12px) / 3);
  border-radius: 999px;
  background: linear-gradient(135deg, #FFB000, #FFC83D);
  box-shadow: 0 6px 20px rgba(255, 176, 0, 0.4);
  transition: transform 380ms cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.currency-btn {
  position: relative;
  z-index: 1;
  min-width: 92px;
  padding: 10px 18px;
  border: none;
  background: transparent;
  color: #B5B5B5;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 999px;
  cursor: pointer;
  transition: color 300ms ease;
}
.currency-btn.is-active { color: #050505; }
[data-theme="light"] .currency-btn { color: #4a4a52; }
[data-theme="light"] .currency-btn.is-active { color: #050505; }
.currency-btn:focus-visible {
  outline: 2px solid #FFB000;
  outline-offset: 2px;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

.price-card {
  position: relative;
  padding: 36px 32px 40px;
  height: 100%;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  transition: transform 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}
[data-theme="light"] .price-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6));
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.price-card.reveal { transition-delay: var(--stagger, 0ms); }
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 176, 0, 0.5);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55), 0 0 40px rgba(255,176,0,0.2);
}

.price-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFB000;
  background: rgba(255, 176, 0, 0.08);
  border: 1px solid rgba(255, 176, 0, 0.28);
  margin-bottom: 18px;
}

.price-amount { margin-bottom: 24px; }
.price-value {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1;
  transition: opacity 200ms ease, transform 200ms ease;
}
[data-theme="light"] .price-value { color: #0b0b0c; }
.price-value.is-updating { opacity: 0; transform: translateY(-6px); }
.price-per {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.9rem;
  color: #B5B5B5;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  flex-grow: 1;
}
.price-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #d8d8d8;
}
[data-theme="light"] .price-features li { color: #333; }
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB000, #FFC83D);
  box-shadow: 0 0 12px rgba(255, 176, 0, 0.35);
}
.price-features li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #050505;
  border-bottom: 2px solid #050505;
  transform: rotate(-45deg);
}

.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: #FFFFFF;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform 300ms ease, background 300ms ease, box-shadow 300ms ease, color 300ms ease;
}
[data-theme="light"] .price-cta { color: #0b0b0c; background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.12); }
.price-cta:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
.price-cta--primary {
  color: #050505;
  background: linear-gradient(135deg, #FFB000, #FFC83D);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(255, 176, 0, 0.35);
}
.price-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 176, 0, 0.5);
}

/* Featured card */
.price-card--featured {
  border-color: rgba(255, 176, 0, 0.55);
  box-shadow:
    0 10px 40px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255, 176, 0, 0.2),
    0 0 60px rgba(255, 176, 0, 0.18);
  transform: scale(1.03);
}
.price-card--featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,176,0,0.6), rgba(255,200,61,0.2) 40%, rgba(255,176,0,0) 80%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.price-card--featured {
  padding-top: 44px;
  padding-bottom: 48px;
}
.price-card--featured .price-badge--popular {
  color: #050505;
  background: linear-gradient(135deg, #FFB000, #FFC83D);
  border-color: transparent;
  margin-bottom: 10px;
}
.price-plan-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0 0 18px;
}
[data-theme="light"] .price-plan-title { color: #0b0b0c; }
.price-card--featured:hover { transform: translateY(-8px) scale(1.03); }


@media (max-width: 780px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }
  .currency-btn { min-width: 80px; padding: 10px 14px; font-size: 0.85rem; }
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-section {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
  background: #050505;
  overflow: hidden;
}
[data-theme="light"] .faq-section { background: #f7f7f8; }

.faq-container { max-width: 860px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.faq-header { text-align: center; margin: 0 auto clamp(40px, 5vw, 56px); }

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}
[data-theme="light"] .faq-item {
  background: linear-gradient(160deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6));
  border-color: rgba(0,0,0,0.08);
}
.faq-item[open] {
  border-color: rgba(255, 176, 0, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 30px rgba(255,176,0,0.12);
}
.faq-item + .faq-item { margin-top: 0; }

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: color 300ms ease;
}
[data-theme="light"] .faq-question { color: #0b0b0c; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: #FFC83D; }
.faq-question:focus-visible { outline: 2px solid #FFB000; outline-offset: -4px; border-radius: 18px; }

/* Custom + / – icon */
.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 176, 0, 0.4);
  transition: background 300ms ease, transform 300ms ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: #FFB000;
  transition: transform 300ms ease, opacity 300ms ease;
}
.faq-icon::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 10px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon { background: rgba(255,176,0,0.15); transform: rotate(180deg); }
.faq-item[open] .faq-icon::after { opacity: 0; }

/* Answer with smooth height animation */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 400ms ease, opacity 300ms ease, padding 400ms ease;
  padding: 0 24px;
}
.faq-answer p {
  margin: 0 0 22px;
  color: #B5B5B5;
  line-height: 1.7;
  font-size: 0.98rem;
}
[data-theme="light"] .faq-answer p { color: #4a4a52; }
.faq-item[open] .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-top: 4px;
}

@media (max-width: 640px) {
  .faq-question { padding: 20px; font-size: 0.98rem; }
  .faq-answer { padding: 0 20px; }
}

/* ============================================================
   LEAD CAPTURE SECTION - "Request a Free Custom Demo"
   ============================================================ */
.lead-section {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 0 clamp(72px, 9vw, 140px);
  overflow: hidden;
  isolation: isolate;
}
.lead-glow {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  filter: blur(90px);
  opacity: 0.55;
  border-radius: 50%;
}
.lead-glow--a {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,176,0,0.35), transparent 70%);
  top: -160px; left: -120px;
}
.lead-glow--b {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,200,61,0.28), transparent 70%);
  bottom: -160px; right: -100px;
}
.lead-container { max-width: 1100px; }
.lead-header { text-align: center; margin-bottom: clamp(32px, 4vw, 56px); }

/* Card */
.lead-card {
  position: relative;
  padding: clamp(24px, 3.4vw, 48px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,176,0,0.05) inset;
}
[data-theme="light"] .lead-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.75));
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.15);
}

/* Grid */
.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field--full { grid-column: 1 / -1; }

.field label,
.radio-field legend {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
.req { color: #FFB000; margin-left: 2px; }
.opt {
  color: var(--color-text-muted, #B5B5B5);
  font-weight: 400;
  font-size: 0.78rem;
  margin-left: 4px;
}

/* Inputs */
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form input[type="url"],
.lead-form select {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--color-text, #fff);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
  -webkit-appearance: none;
  appearance: none;
}
[data-theme="light"] .lead-form input,
[data-theme="light"] .lead-form select {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.1);
  color: #0b0b0c;
}
.lead-form input::placeholder { color: rgba(181,181,181,0.55); }
.lead-form input:hover,
.lead-form select:hover { border-color: rgba(255,176,0,0.35); }
.lead-form input:focus,
.lead-form select:focus {
  border-color: #FFB000;
  background: rgba(255,176,0,0.05);
  box-shadow: 0 0 0 4px rgba(255,176,0,0.15), 0 0 24px -8px rgba(255,176,0,0.5);
}
.lead-form .field.has-error input,
.lead-form .field.has-error select {
  border-color: #ff5a5a;
  box-shadow: 0 0 0 4px rgba(255,90,90,0.12);
}

/* Select arrow */
.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 18px; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid #FFB000;
  border-bottom: 2px solid #FFB000;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.lead-form select { padding-right: 42px; }
.lead-form select option { background: #0e0e0e; color: #fff; }

/* Errors */
.field-error {
  min-height: 1em;
  font-size: 0.78rem;
  color: #ff7a7a;
  margin: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s ease, transform .25s ease;
}
.field.has-error .field-error {
  opacity: 1;
  transform: translateY(0);
}

/* Radio pills */
.radio-field { border: 0; padding: 0; margin: 0; }
.radio-field legend { margin-bottom: 10px; }
.radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text, #fff);
  transition: all .3s ease;
  user-select: none;
}
.radio-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.radio-pill:hover { border-color: rgba(255,176,0,0.5); }
.radio-pill:has(input:checked) {
  background: linear-gradient(135deg, rgba(255,176,0,0.18), rgba(255,200,61,0.1));
  border-color: #FFB000;
  box-shadow: 0 0 20px -6px rgba(255,176,0,0.5);
  color: #FFC83D;
}
.radio-pill input:focus-visible + span {
  outline: 2px solid #FFB000;
  outline-offset: 4px;
  border-radius: 4px;
}

/* Submit */
.lead-submit-row {
  margin-top: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lead-submit {
  position: relative;
  min-width: 280px;
  padding: 18px 40px;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #0b0b0c;
  background: linear-gradient(135deg, #FFB000, #FFC83D);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
  box-shadow: 0 12px 30px -8px rgba(255,176,0,0.55);
}
.lead-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -8px rgba(255,176,0,0.75), 0 0 0 4px rgba(255,176,0,0.12);
  filter: brightness(1.05);
}
.lead-submit:active { transform: translateY(0); }
.lead-submit:focus-visible {
  outline: 2px solid #FFC83D;
  outline-offset: 4px;
}
.lead-submit__spinner {
  display: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(11,11,12,0.25);
  border-top-color: #0b0b0c;
  animation: leadSpin .8s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}
.lead-submit.is-loading { pointer-events: none; opacity: 0.85; }
.lead-submit.is-loading .lead-submit__spinner { display: inline-block; }
@keyframes leadSpin { to { transform: rotate(360deg); } }

.lead-note {
  font-size: 0.82rem;
  color: var(--color-text-muted, #B5B5B5);
  margin: 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 720px) {
  .lead-grid { grid-template-columns: 1fr; }
  .lead-submit { width: 100%; min-width: 0; }
}

/* ============================================================
   FOOTER SECTION
   ============================================================ */
.site-footer {
  position: relative;
  background: #050505;
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 24px 24px;
  border-top: 1px solid rgba(255, 176, 0, 0.12);
  overflow: hidden;
  font-family: 'Poppins', system-ui, sans-serif;
}

.footer-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255, 176, 0, 0.12), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

/* Brand column */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 18px;
}
.footer-logo__mark {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFB000, #FFC83D);
  color: #050505;
  box-shadow: 0 0 24px rgba(255, 176, 0, 0.35);
}
.footer-logo__mark svg { width: 20px; height: 20px; }
.footer-logo__text {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.footer-logo__text span {
  color: #FFB000;
  font-weight: 500;
}

.footer-bio {
  color: #B5B5B5;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 380px;
}

.footer-social {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: transform 350ms ease, background 350ms ease, box-shadow 350ms ease, border-color 350ms ease, color 350ms ease;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 176, 0, 0.12);
  border-color: rgba(255, 176, 0, 0.5);
  color: #FFC83D;
  box-shadow: 0 8px 24px rgba(255, 176, 0, 0.35), 0 0 0 4px rgba(255, 176, 0, 0.08);
  outline: none;
}

/* Middle & right titles */
.footer-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
  position: relative;
}
.footer-title::after {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, #FFB000, #FFC83D);
  border-radius: 2px;
  margin-top: 10px;
}

/* Quick links */
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  position: relative;
  color: #B5B5B5;
  text-decoration: none;
  font-size: 0.95rem;
  padding-bottom: 2px;
  transition: color 300ms ease;
  display: inline-block;
}
.footer-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, #FFB000, #FFC83D);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #FFC83D;
  outline: none;
}
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 18px;
}
.footer-contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fc-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 176, 0, 0.08);
  border: 1px solid rgba(255, 176, 0, 0.2);
  color: #FFB000;
}
.fc-icon svg { width: 18px; height: 18px; }
.fc-body { display: flex; flex-direction: column; gap: 2px; }
.fc-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #B5B5B5;
}
.fc-body a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 300ms ease;
}
.fc-body a:hover,
.fc-body a:focus-visible { color: #FFC83D; outline: none; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  color: #B5B5B5;
  font-size: 0.85rem;
  margin: 0;
}
.footer-legal {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: #B5B5B5;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 300ms ease;
}
.footer-legal a:hover,
.footer-legal a:focus-visible { color: #FFC83D; outline: none; }

/* Back to top */
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 176, 0, 0.5);
  color: #FFB000;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 350ms ease, transform 350ms ease, background 350ms ease, box-shadow 350ms ease, color 350ms ease, visibility 350ms;
}
.back-to-top svg { width: 14px; height: 14px; }
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover,
.back-to-top:focus-visible {
  background: linear-gradient(135deg, #FFB000, #FFC83D);
  color: #050505;
  box-shadow: 0 8px 24px rgba(255, 176, 0, 0.4);
  outline: none;
  transform: translateY(-2px);
}

/* Light theme adjustments */
[data-theme="light"] .site-footer {
  background: #f7f7f8;
  color: #0b0b0c;
  border-top-color: rgba(255, 176, 0, 0.25);
}
[data-theme="light"] .footer-bio,
[data-theme="light"] .footer-copy,
[data-theme="light"] .footer-legal a,
[data-theme="light"] .footer-links a,
[data-theme="light"] .fc-label { color: #4a4a52; }
[data-theme="light"] .footer-logo,
[data-theme="light"] .fc-body a { color: #0b0b0c; }
[data-theme="light"] .social-icon {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
  color: #0b0b0c;
}
[data-theme="light"] .footer-bottom { border-top-color: rgba(0,0,0,0.08); }

/* Responsive */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .site-footer { padding: 56px 20px 20px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bio { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-title::after { margin-left: auto; margin-right: auto; }
  .footer-contact li { justify-content: center; text-align: left; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* Fade-up on load */
.site-footer .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.site-footer .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   GLOBAL SPACING & LAYOUT REFINEMENTS
   Consolidated fixes: tighten section rhythm, fix light-mode
   heading color, equalize cards, center lead form.
   ============================================================ */

/* Consistent vertical rhythm across major sections */
.why-section,
.hiw-section,
.pricing-section,
.faq-section,
.lead-section {
  padding-top: clamp(48px, 5.5vw, 80px) !important;
  padding-bottom: clamp(48px, 5.5vw, 80px) !important;
}
.site-footer { padding-top: clamp(40px, 5vw, 64px) !important; }

/* Tighter header spacing inside sections */
.why-header,
.hiw-header,
.pricing-header,
.faq-header {
  margin-bottom: clamp(28px, 3.5vw, 44px) !important;
}

/* -------- Why Choose: heading visible in light mode -------- */
.why-title { color: var(--color-foreground, #FFFFFF); }
[data-theme="light"] .why-title { color: #0b0b0c; }

/* -------- Why Choose: center row, equalize + shrink cards -------- */
.why-grid {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  grid-auto-rows: 1fr;
  gap: clamp(18px, 2vw, 26px) !important;
}
.why-grid > * { height: 100%; }
@media (min-width: 1025px) {
  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1180px;
  }
  .why-card { padding: 26px 22px; }
  .why-card .why-card-title,
  .why-card h3 { font-size: 1.05rem; }
  .why-card .why-icon,
  .why-card .why-card-icon { width: 54px; height: 54px; }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* -------- How It Works: equal-size step cards in one row -------- */
.hiw-steps { grid-auto-rows: 1fr; align-items: stretch; }
.hiw-step { display: flex; flex-direction: column; height: 100%; }
.hiw-card {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* -------- Lead capture: center + balance the container -------- */
.lead-container {
  max-width: 1100px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}
.lead-card { margin-left: auto; margin-right: auto; }
