/* ===================================================
   OPERATOR TO ARCHITECT — Premium Light Theme CSS
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800;900&display=swap');

/* ── Reset & Base ──────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Ice Blue Palette ─────────────────────────── */
  --ice-blue:      #eaeff5;   /* Primary background */
  --ice-blue-mid:  #dce4ee;   /* Section alternating */
  --ice-blue-deep: #cdd8e6;   /* Deeper contrast areas */
  --ice-blue-dark: #b8c8da;   /* Borders, dividers */

  /* Backgrounds */
  --bg-primary:    var(--ice-blue);
  --bg-secondary:  var(--ice-blue-mid);
  --bg-tertiary:   var(--ice-blue-deep);
  --bg-card:       #ffffff;

  /* Text */
  --text-primary:   #0f172a;
  --text-secondary: #3d5a7a;
  --text-muted:     #5a7a96;
  --text-faint:     #7a96b0;

  /* Brand / Accent */
  --accent:      #2563eb;   /* Strong blue — pops on ice */
  --accent-dark: #1d4ed8;
  --accent-light: #bfdbfe;
  --navy:        #0f172a;
  --navy-soft:   #1e293b;
  --gold:        #f59e0b;
  --green:       #22c55e;
  --red:         #ef4444;

  /* Borders */
  --border:        rgba(147, 181, 210, 0.45);
  --border-strong: rgba(100, 140, 180, 0.6);
  --border-accent: rgba(37, 99, 235, 0.4);

  /* Shadows — cooler blue-tinted */
  --shadow-xs: 0 1px 3px rgba(15,50,100,0.06);
  --shadow-sm: 0 2px 6px rgba(15,50,100,0.08), 0 1px 2px rgba(15,50,100,0.04);
  --shadow-md: 0 6px 16px rgba(15,50,100,0.10), 0 2px 4px rgba(15,50,100,0.06);
  --shadow-lg: 0 14px 32px rgba(15,50,100,0.12), 0 4px 8px rgba(15,50,100,0.06);
  --shadow-xl: 0 24px 50px rgba(15,50,100,0.14), 0 8px 16px rgba(15,50,100,0.07);
  --shadow-accent: 0 8px 24px rgba(37, 99, 235, 0.25);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;

  /* Motion */
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--text-faint); border-radius: 3px; }

/* ── Text Gradient Utilities ─────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-cyan {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════
   FLOATING GLASSMORPHIC NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;

  /* Width — shrinks on scroll via JS class */
  width: calc(100% - 40px);
  max-width: 1000px;
  transition:
    max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    background 0.4s ease;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 20px;

  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Frosted glass */
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);

  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.30);

  /* Premium multi-layer shadow:
     1. Outer elevation  2. Inner white highlight (glass edge) */
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.10),
    0 2px 8px  rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.90);

  animation: navSlideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes navSlideDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-24px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Hover: entire bar lifts + glows slightly */
.navbar:hover {
  background: rgba(255, 255, 255, 0.52);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.13),
    0 4px 12px  rgba(0, 0, 0, 0.07),
    inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

/* Scrolled: narrow + deeper shadow */
.navbar.scrolled {
  max-width: 860px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 12px 36px rgba(15, 50, 100, 0.13),
    0 4px 10px  rgba(15, 50, 100, 0.07),
    inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

/* Logo — subtle zoom on parent hover */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}

.nav-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin-left: 10px;
}

/* Centre nav links pill */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.50);
  border: 1px solid rgba(255, 255, 255, 0.60);
  border-radius: var(--radius-pill);
  padding: 4px 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: #374151;  /* gray-700 */
  text-decoration: none;
  font-size: 0.875rem;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.nav-links a:hover {
  color: #111111;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* CTA button — deep black pill */
.nav-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  background: rgba(17, 17, 17, 0.90);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  transform: scale(1.05);
  background: #111111;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.nav-cta:active {
  transform: scale(0.96);
}

/* ── Hamburger button (mobile only) ──────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-hamburger:hover { background: rgba(0,0,0,0.05); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile dropdown menu ─────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 86px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: calc(100% - 32px);
  max-width: 500px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 40px rgba(15,50,100,0.14), inset 0 1px 1px rgba(255,255,255,0.9);
  padding: 10px;
  z-index: 199;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mobile-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #374151;
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 12px;
  transition: background 0.2s;
}

.mobile-link:hover { background: rgba(0,0,0,0.04); color: #111; }

.mobile-link-cta {
  background: rgba(17,17,17,0.9);
  color: #fff;
  text-align: center;
  margin-top: 4px;
}

.mobile-link-cta:hover { background: #111; color: #fff; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #e0e9f5 0%, #eaeff5 45%, #dce8f4 100%);
}

/* Subtle mesh gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 50% 0%, rgba(37,99,235,0.12) 0%, transparent 65%),
    radial-gradient(circle at 8% 80%, rgba(37,99,235,0.07) 0%, transparent 40%),
    radial-gradient(circle at 92% 20%, rgba(37,99,235,0.06) 0%, transparent 40%);
  pointer-events: none;
}

/* Animated hero grid dots */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,0.15) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
  opacity: 0.4;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(37,99,235,0.25);
  color: var(--accent-dark);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease both;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
  color: var(--text-primary);
}

.hero h1 .text-gradient-cyan {
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 44px;
  font-weight: 400;
  animation: fadeInUp 0.9s ease 0.2s both;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.3s both;
  margin-bottom: 70px;
}

/* ── Buttons ──────────────────────────────────── */
.btn-primary {
  background: var(--navy);
  color: #fff;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(15,23,42,0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.15) 50%, transparent 65%);
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 0.5s ease;
}

.btn-primary:hover::after {
  background-position: -200% 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.35);
  background: var(--navy-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  background: var(--bg-secondary);
  transform: translateY(-2px);
}

/* ── Hero Stats ─────────────────────────────── */
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.4s both;
  border: 1px solid rgba(184,200,218,0.6);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 20px 28px;
  flex: 1;
  border-right: 1px solid rgba(184,200,218,0.5);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}

/* ═══════════════════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════════════════ */
section {
  padding: 104px 24px;
  position: relative;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-label {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.text-center { text-align: center; }

/* ═══════════════════════════════════════════════════
   JOURNEY / PHASES
═══════════════════════════════════════════════════ */
.journey-section {
  background: var(--bg-secondary);
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 60px;
}

.phase-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(184,200,218,0.5);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(8px);
}

.phase-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.phase-number {
  min-width: 38px;
  height: 38px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}

.phase-content h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 5px;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
}

.phase-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(184,200,218,0.5);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(8px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-size: 1.35rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.08) rotate(-3deg);
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   WHO THIS IS FOR
═══════════════════════════════════════════════════ */
.for-section {
  background: var(--bg-secondary);
}

.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 60px;
}

.for-card {
  background: rgba(255,255,255,0.8);
  border-left: 3px solid var(--accent);
  border-top: 1px solid rgba(184,200,218,0.5);
  border-right: 1px solid rgba(184,200,218,0.5);
  border-bottom: 1px solid rgba(184,200,218,0.5);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(8px);
}

.for-card:hover {
  border-top-color: var(--border-accent);
  border-right-color: var(--border-accent);
  border-bottom-color: var(--border-accent);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.for-check {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
}

.for-card h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 5px;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
}

.for-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════ */
.pricing-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.trade-show-banner {
  background: rgba(245,158,11,0.07);
  border: 1px solid rgba(245,158,11,0.28);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.trade-show-banner .banner-icon { font-size: 1.5rem; }

.trade-show-banner strong {
  color: #92400e;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.trade-show-banner p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 2px;
}

.pricing-note {
  background: rgba(14,165,233,0.05);
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 52px;
  text-align: center;
}

.pricing-note strong { color: var(--accent-dark); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.tier-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(184,200,218,0.55);
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.tier-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-xl);
  background: #ffffff;
}

.tier-card.featured {
  border-color: var(--accent);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-accent), var(--shadow-lg);
}

.tier-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-xl), var(--shadow-accent);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-header { margin-bottom: 24px; }

.tier-number {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.tier-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.tier-tagline {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.tier-price {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.price-amount .currency {
  font-size: 1.5rem;
  vertical-align: super;
  font-weight: 700;
}

.price-period {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 500;
}

.price-note {
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 6px;
  display: block;
  font-weight: 600;
}

.tier-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}

.tier-features li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.tier-features li:last-child { border-bottom: none; }

.tier-features li .check {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.tier-cta {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  display: block;
}

.tier-cta-outline {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text-primary);
}

.tier-cta-outline:hover {
  background: var(--bg-secondary);
  border-color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.tier-cta-filled {
  background: var(--navy);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(15,23,42,0.25);
}

.tier-cta-filled:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.3);
}

/* ── Add-on Card ────────────────────────────────── */
.addon-card {
  background: linear-gradient(135deg, rgba(245,158,11,0.06) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(245,158,11,0.28);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.addon-card:hover {
  border-color: rgba(245,158,11,0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(245,158,11,0.12);
}

.addon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.28);
  color: #92400e;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.addon-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.addon-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 480px;
}

.addon-price-block { text-align: right; min-width: 180px; }

.addon-price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.addon-price-amount .currency { font-size: 1.2rem; vertical-align: super; }

.addon-price-period {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.addon-price-note {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 6px;
  display: block;
}

.addon-cta {
  display: block;
  margin-top: 16px;
  padding: 12px 24px;
  background: transparent;
  border: 1.5px solid rgba(245,158,11,0.45);
  color: #92400e;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
}

.addon-cta:hover {
  background: rgba(245,158,11,0.1);
  box-shadow: 0 4px 14px rgba(245,158,11,0.15);
}

/* ═══════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════ */
.faq-section { background: var(--bg-secondary); }

.faq-list {
  max-width: 760px;
  margin: 60px auto 0;
}

.faq-item {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(184,200,218,0.5);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(8px);
}

.faq-item:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.faq-question:hover { color: var(--accent-dark); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ═══════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(150deg, #dce5f0 0%, #e4ecf5 40%, #d8e3ee 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Decorative grid dots */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 60px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
}

.cta-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Reset the dark-section button overrides */
.cta-section .btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15,23,42,0.25);
}

.cta-section .btn-primary:hover {
  background: var(--navy-soft);
  box-shadow: 0 8px 24px rgba(15,23,42,0.3);
  transform: translateY(-2px);
}

.cta-section .btn-ghost {
  border-color: var(--border-strong);
  color: var(--text-secondary);
}

.cta-section .btn-ghost:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  background: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  background: var(--ice-blue-mid);
  border-top: 1px solid rgba(184,200,218,0.6);
  padding: 52px 24px 38px;
  text-align: center;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--text-faint);
  font-size: 0.875rem;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text-primary); }

.footer-copy {
  color: var(--text-faint);
  font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS — SCROLL REVEAL
═══════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* Base reveal state */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }
.reveal[data-delay="7"] { transition-delay: 0.56s; }
.reveal[data-delay="8"] { transition-delay: 0.64s; }

/* ── Section Divider ──────────────────────────── */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
  position: relative;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-50%);
  transition: width 1.2s ease;
}

.section-divider.visible::after {
  width: 60%;
}

/* ── Orbs (kept subtle for light) ────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(14,165,233,0.07) 0%, transparent 70%); top: -150px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,102,241,0.05) 0%, transparent 70%); top: 20%; right: -100px; animation-delay: 3s; }
.orb-3 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(14,165,233,0.04) 0%, transparent 70%); bottom: 10%; left: 20%; animation-delay: 6s; }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.04); }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-pill  { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }
  .navbar {
    width: calc(100% - 24px);
    padding: 8px 8px 8px 14px;
  }
}

@media (max-width: 768px) {
  section { padding: 72px 20px; }

  .for-grid { grid-template-columns: 1fr; }

  .addon-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .addon-price-block { text-align: center; }
  .addon-cta { width: 100%; }

  .cta-box { padding: 50px 28px; }

  .hero-stats { max-width: 100%; }
}

@media (max-width: 480px) {
  .phases-grid, .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}