/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --orange:     #E86C35;
  --peach:      #F4A261;
  --teal:       #4CC9C0;
  --teal-dark:  #2A9D8F;
  --near-black: #1A1A1A;
  --body-gray:  #3A3A3A;
  --muted:      #6B6B6B;
  --border:     #E0E0E0;
  --bg-light:   #F7F8FA;
  --white:      #FFFFFF;
  --nav-h:      68px;
  --banner-h:   44px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--banner-h));
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--body-gray);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Typography ────────────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-label-light { color: var(--teal); }

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--near-black);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.section-heading-light { color: var(--white); }

.section-sub {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.section-sub-light { color: rgba(255,255,255,0.75); }

/* Centered section header block: label + heading + sub stacked */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
  gap: 0;
}
.section-header .section-label { margin-bottom: 0.75rem; }
.section-header .section-heading { margin-bottom: 1rem; }
.section-header .section-sub { max-width: 100%; margin-bottom: 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--peach) 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Layout ────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 5rem 0; }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232,108,53,0.35);
}
.btn-primary:hover {
  background: #d45f28;
  box-shadow: 0 6px 20px rgba(232,108,53,0.45);
  transform: translateY(-1px);
}

.btn-ghost {
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--near-black);
  font-weight: 700;
}
.btn-light:hover {
  background: var(--bg-light);
  transform: translateY(-1px);
}

.btn-lg { padding: 0.95rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ─── Founding Banner ───────────────────────────────────────────────────────── */
#founding-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal) 100%);
  height: var(--banner-h);
}

.banner-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--white);
  flex-wrap: wrap;
}

.banner-badge {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.banner-text { opacity: 0.95; }

.banner-cta {
  background: var(--white);
  color: var(--teal-dark);
  border-radius: 5px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.banner-cta:hover { opacity: 0.85; }

/* ─── Navigation ────────────────────────────────────────────────────────────── */
#nav {
  position: sticky;
  top: var(--banner-h);
  z-index: 999;
  height: var(--nav-h);
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

#nav.nav-scrolled {
  background: rgba(26,26,26,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-by {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  letter-spacing: 0.02em;
  padding-top: 0.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.nav-cta { flex-shrink: 0; margin-left: auto; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  background: var(--near-black);
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow-left {
  position: absolute;
  top: -100px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(232,108,53,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-right {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(76,201,192,0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--teal); }
  50% { opacity: 0.6; box-shadow: 0 0 3px var(--teal); }
}

.hero-headline {
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-sub em { color: rgba(255,255,255,0.9); font-style: normal; }

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.trust-item svg { width: 12px; height: 12px; flex-shrink: 0; }
.trust-divider { color: rgba(255,255,255,0.2); font-size: 1.2rem; }

/* ─── Problem Section ───────────────────────────────────────────────────────── */
#problem { background: var(--white); }
/* #problem uses .section-header — centering handled there */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.problem-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.problem-icon svg { width: 24px; height: 24px; }

.problem-icon-1 { background: rgba(232,108,53,0.1); color: var(--orange); }
.problem-icon-2 { background: rgba(76,201,192,0.1); color: var(--teal-dark); }
.problem-icon-3 { background: rgba(26,26,26,0.07); color: var(--near-black); }

.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 0.75rem;
}
.problem-card p { font-size: 0.95rem; line-height: 1.65; color: var(--muted); }

/* ─── How It Works ──────────────────────────────────────────────────────────── */
#how-it-works { background: var(--bg-light); }
/* #how-it-works uses .section-header */

.steps-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}

.steps-line {
  position: absolute;
  left: 27px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--teal));
  opacity: 0.3;
}

.step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--near-black);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg-light), 0 0 0 6px rgba(232,108,53,0.2);
}

.step:nth-child(2) .step-number { background: var(--orange); }
.step:nth-child(3) .step-number { background: var(--teal-dark); }
.step:nth-child(4) .step-number { background: var(--near-black); }
.step:nth-child(5) .step-number { background: var(--orange); }

.step-content { padding-top: 0.75rem; }
.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 0.6rem;
}
.step-content p { font-size: 0.975rem; line-height: 1.7; color: var(--muted); }

/* ─── Features / Pillars ────────────────────────────────────────────────────── */
#features { background: var(--white); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  position: relative;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.pillar-card-featured {
  background: var(--near-black);
  border-color: rgba(232,108,53,0.55);
  box-shadow: 0 8px 32px rgba(232,108,53,0.15);
}
.pillar-card-featured h3 { color: var(--white); }
.pillar-card-featured p { color: rgba(255,255,255,0.65); }
.pillar-card-featured .pillar-details li { color: rgba(255,255,255,0.55); }
.pillar-card-featured .pillar-details li::before { color: var(--teal); }

.pillar-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.pillar-icon svg { width: 28px; height: 28px; }

.pillar-icon-1 { background: rgba(232,108,53,0.12); color: var(--orange); }
.pillar-icon-2 { background: rgba(76,201,192,0.15); color: var(--teal); }
.pillar-icon-3 { background: rgba(42,157,143,0.12); color: var(--teal-dark); }

.pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 0.75rem;
}
.pillar-card p { font-size: 0.95rem; line-height: 1.65; color: var(--muted); margin-bottom: 1.25rem; }

.pillar-details { display: flex; flex-direction: column; gap: 0.5rem; }
.pillar-details li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
}
.pillar-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ─── Compliance ────────────────────────────────────────────────────────────── */
#compliance { padding: 0; }

.compliance-bg {
  background: linear-gradient(135deg, var(--near-black) 0%, #0f2422 100%);
  padding: 5rem 0;
}

.compliance-header { max-width: 640px; margin-bottom: 3rem; }
.compliance-header .section-sub { margin-bottom: 0; }

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.compliance-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.5rem;
  transition: background 0.2s;
}
.compliance-item:hover { background: rgba(255,255,255,0.06); }

.compliance-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(76,201,192,0.12);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.compliance-icon svg { width: 20px; height: 20px; }

.compliance-item h4 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.compliance-item p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

.compliance-cta {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.compliance-cta p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* ─── Industries ────────────────────────────────────────────────────────────── */
#industries { background: var(--bg-light); }
/* #industries uses .section-header */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76,201,192,0.1);
  border-color: var(--teal);
}

.industry-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(232,108,53,0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.industry-icon svg { width: 22px; height: 22px; }

.industry-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 0.5rem;
}
.industry-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ─── Pricing ───────────────────────────────────────────────────────────────── */
#pricing { background: var(--white); }
/* #pricing uses .section-header */

.founding-alert {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(90deg, rgba(42,157,143,0.08) 0%, rgba(76,201,192,0.06) 100%);
  border: 1.5px solid rgba(42,157,143,0.3);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.founding-alert-icon { color: var(--teal-dark); flex-shrink: 0; }
.founding-alert-icon svg { width: 24px; height: 24px; }

.founding-alert-content { flex: 1; }
.founding-alert-content strong {
  display: block;
  color: var(--teal-dark);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.founding-alert-content span { font-size: 0.875rem; color: var(--muted); }

.founding-alert-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--teal-dark);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  min-width: 70px;
}
.countdown-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.countdown-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.15rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.pricing-card-featured {
  background: var(--near-black);
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(232,108,53,0.18);
}
.pricing-card-featured .pricing-tier-name { color: rgba(255,255,255,0.6); }
.pricing-card-featured .price-amount { color: var(--white); }
.pricing-card-featured .price-period { color: rgba(255,255,255,0.5); }
.pricing-card-featured .setup-was { color: rgba(255,255,255,0.4); }
.pricing-card-featured .setup-now { color: var(--teal); }
.pricing-card-featured .detail-label { color: rgba(255,255,255,0.4); }
.pricing-card-featured .detail-value { color: rgba(255,255,255,0.85); }
.pricing-card-featured .pricing-detail-row { border-color: rgba(255,255,255,0.07); }
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.65); }
.pricing-card-featured .pricing-features li::before { color: var(--teal); }

.pricing-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; }
.price-amount { font-size: 2.5rem; font-weight: 900; color: var(--near-black); letter-spacing: -0.02em; }
.price-period { font-size: 0.9rem; color: var(--muted); }

.pricing-setup { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.setup-was { font-size: 0.875rem; color: var(--muted); }
.setup-was s { opacity: 0.7; }
.setup-now { font-size: 0.875rem; font-weight: 700; color: var(--teal-dark); }
.setup-custom { font-size: 0.875rem; color: var(--muted); font-style: italic; }

.pricing-details { display: flex; flex-direction: column; gap: 0; }
.pricing-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.pricing-detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--muted); }
.detail-value { font-weight: 600; color: var(--near-black); }

.pricing-features { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.pricing-features li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-dark);
  font-weight: 700;
}
.pricing-features li:first-child { font-weight: 600; }

.pricing-roi-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-style: italic;
}

.addons-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border);
  line-height: 1.7;
}

/* ─── ROI Section ───────────────────────────────────────────────────────────── */
#roi { padding: 0; }

.roi-bg {
  background: linear-gradient(135deg, var(--orange) 0%, var(--peach) 100%);
  padding: 5rem 0;
}

.roi-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.roi-text .section-label { color: rgba(255,255,255,0.7); }
.roi-text .section-heading { color: var(--white); }

.roi-description { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }

.roi-numbers {
  background: rgba(0,0,0,0.15);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.roi-calc { display: flex; flex-direction: column; gap: 0; margin-bottom: 1rem; }

.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.roi-label { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.4; flex: 1; }
.roi-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
}
.roi-unit { font-size: 0.9rem; font-weight: 400; opacity: 0.8; }

.roi-divider { border: none; border-top: 1px solid rgba(255,255,255,0.2); margin: 0.25rem 0; }

.roi-highlight .roi-label { color: var(--white); font-weight: 500; }
.roi-check { font-size: 1.5rem; color: rgba(255,255,255,0.9); }

.roi-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.5; font-style: italic; }

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
#faq { background: var(--bg-light); }
#faq .section-heading { max-width: 560px; }

.faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 0.5rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: var(--orange); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--near-black);
  transition: color 0.15s;
}
.faq-question:hover { color: var(--orange); }
.faq-question[aria-expanded="true"] { color: var(--orange); }

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-light);
  position: relative;
  transition: transform 0.2s, background 0.2s;
}
.faq-arrow::before, .faq-arrow::after {
  content: '';
  position: absolute;
  background: var(--muted);
  border-radius: 2px;
  transition: background 0.2s;
}
.faq-arrow::before { width: 8px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-arrow::after { width: 1.5px; height: 8px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform 0.2s, background 0.2s; }

.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(45deg); background: rgba(232,108,53,0.1); }
.faq-question[aria-expanded="true"] .faq-arrow::before,
.faq-question[aria-expanded="true"] .faq-arrow::after { background: var(--orange); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer.open { max-height: 500px; }
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CTA Section ───────────────────────────────────────────────────────────── */
#cta { padding: 0; }

.cta-bg {
  background: var(--near-black);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-bg::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(232,108,53,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.75rem;
}

.cta-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-direct-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.35rem; }
.cta-direct-link { font-size: 0.95rem; color: var(--teal); font-weight: 600; transition: color 0.15s; }
.cta-direct-link:hover { color: var(--white); }

/* ─── Contact Form ───────────────────────────────────────────────────────────── */
.cta-form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 3rem;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
  position: relative;
}

.cta-form-wrap h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--near-black);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.cta-form-wrap .form-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--body-gray);
  letter-spacing: 0.01em;
}

.form-optional { font-weight: 400; color: var(--muted); }
.req { color: var(--orange); font-weight: 700; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--near-black);
  font-family: inherit;
  font-size: 0.925rem;
  padding: 0.72rem 1rem;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  width: 100%;
  line-height: 1.4;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236B6B6B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 14px;
  cursor: pointer;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--white); color: var(--near-black); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff9f6;
  box-shadow: 0 0 0 3px rgba(232,108,53,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #C5C5C5; }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.25rem 0 1.25rem;
}

.form-challenge { margin-bottom: 0; }

.challenge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.challenge-question {
  font-size: 0.9rem;
  color: var(--body-gray);
  font-weight: 600;
  flex: 1;
  min-height: 1.5rem;
}

.form-group input[type="number"] {
  width: 80px;
  flex-shrink: 0;
  text-align: center;
  padding: 0.72rem 0.5rem;
}

.form-error {
  background: #fff5f5;
  border: 1.5px solid #fca5a5;
  border-radius: 8px;
  color: #dc2626;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-success-icon { color: var(--teal-dark); margin-bottom: 1.25rem; }
.form-success-icon svg { width: 56px; height: 56px; }
.form-success-title { font-size: 1.35rem; font-weight: 800; color: var(--near-black); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.form-success-body { font-size: 0.9rem; color: var(--muted); line-height: 1.65; max-width: 280px; }

#form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ─── Infrastructure Section ─────────────────────────────────────────────────── */
.infra-section {
  background: var(--near-black);
  padding: 5rem 0;
}

.infra-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.infra-content .section-heading { color: var(--white); }
.infra-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.infra-tagline {
  color: var(--teal) !important;
  font-weight: 600;
  font-size: 1rem !important;
  margin-top: 0.5rem;
}

.infra-photo-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 60px rgba(76,201,192,0.07);
  border: 1px solid rgba(255,255,255,0.09);
}
.infra-photo-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.9) saturate(1.1);
}

/* ─── Northshore Section ─────────────────────────────────────────────────────── */
.northshore-section {
  background: var(--white);
  padding: 5rem 0;
}

.northshore-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.northshore-content p {
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
#footer {
  background: #111;
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer-logo { margin-bottom: 1rem; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 0.5rem; max-width: 320px; }
.footer-location { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

.footer-nav-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-nav-col h5 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-nav-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.footer-nav-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-note { text-align: right; max-width: 400px; }

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .roi-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav-cols { grid-template-columns: repeat(2, 1fr); }
  .cta-form-wrap { padding: 2rem; }
  .infra-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .infra-photo-card img { height: 280px; }
  .northshore-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 700px) {
  :root { --banner-h: 52px; }

  .section-intro-split { display: block; }
  .section-intro-split .section-heading { margin-bottom: 1.25rem; }
  .section-intro-split .section-sub { max-width: 100%; }

  section { padding: 4rem 0; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: calc(var(--banner-h) + var(--nav-h)); left: 0; right: 0; background: rgba(26,26,26,0.98); padding: 1rem 2rem 2rem; gap: 0.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 0.75rem 1rem; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-eyebrow { white-space: normal; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .trust-divider { display: none; }
  .hero-trust-row { flex-direction: column; align-items: flex-start; gap: 0.6rem; }

  .steps-line { display: none; }
  .step { flex-direction: column; gap: 1rem; padding: 1.5rem 0; }
  .step-number { width: 44px; height: 44px; font-size: 0.75rem; }

  .compliance-cta { flex-direction: column; align-items: flex-start; }
  .founding-alert { flex-direction: column; align-items: flex-start; }
  .founding-alert-countdown { flex-direction: row; gap: 0.5rem; align-items: baseline; padding: 0.5rem 0.75rem; }
  .countdown-number { font-size: 1.2rem; }

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

  .cta-form-wrap { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-nav-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
  .footer-note { text-align: left; }

  .banner-badge { display: none; }
  .banner-text-full { display: none; }
  .banner-inner { padding: 0 1.25rem; gap: 0.75rem; }
  .banner-text { font-size: 0.8rem; }
}

@media (max-width: 360px) {
  :root { --banner-h: 68px; }
  #founding-banner { height: auto; min-height: var(--banner-h); padding: 0.35rem 0; }
  .banner-inner { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .footer-nav-cols { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(1.75rem, 5vw, 2.4rem); }
  .section-heading { font-size: clamp(1.4rem, 3.5vw, 2rem); }
  .pillars-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
  .compliance-item { padding: 1.2rem 1rem; }
  .hero-ctas { gap: 0.75rem; }
  .btn-lg { padding: 0.95rem 1.5rem; font-size: 0.95rem; }
  .form-group input, .form-group select, .form-group textarea { padding: 0.9rem 1rem; font-size: 1rem; }
  .banner-text { font-size: 0.75rem; }
  .banner-cta { padding: 0.2rem 0.6rem; font-size: 0.7rem; }
}

/* ─── Utility ───────────────────────────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
