/* ============================================================
   RECLAIMOPS — Design System & Styles v2
   Premium, operator-grade, world-class aesthetic
   ============================================================ */

/* === RESET & VARIABLES === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core palette */
  --navy:       #0B1120;
  --navy-light: #111827;
  --navy-mid:   #0F172A;
  --charcoal:   #1E293B;
  --slate:      #334155;
  --steel:      #64748B;
  --steel-light:#94A3B8;
  --silver:     #CBD5E1;
  --cloud:      #E2E8F0;
  --off-white:  #F8FAFC;
  --white:      #FFFFFF;

  /* Accent */
  --accent:     #2E7D5B;
  --accent-light:#3B9E74;
  --accent-dim: #245E45;
  --accent-glow: rgba(46, 125, 91, 0.12);
  --accent-glow-strong: rgba(46, 125, 91, 0.2);

  /* Functional */
  --green-yes:  #22C55E;
  --red-no:     #EF4444;
  --red-dim:    rgba(239, 68, 68, 0.08);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-y: clamp(80px, 10vw, 140px);
  --container: 1160px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.3s;

  /* Header */
  --header-h: 72px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}


/* === CONTAINER === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}


/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); letter-spacing: -0.035em; font-weight: 900; }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); letter-spacing: -0.025em; font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); letter-spacing: -0.01em; font-weight: 700; }


/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--duration) var(--ease);
}

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

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background-color: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--silver);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}


/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  z-index: 1000;
  transition: all var(--duration) var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  border-bottom-color: transparent;
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--steel);
  transition: color var(--duration) var(--ease);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width var(--duration) var(--ease);
}

.header-nav a:hover {
  color: var(--navy);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  flex-shrink: 0;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.mobile-nav-overlay.active {
  display: flex;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-nav-links a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--duration) var(--ease);
}

.mobile-nav-links a:hover {
  color: var(--accent);
}

.mobile-nav-cta {
  margin-top: 16px;
  padding: 16px 40px;
  font-size: 1rem;
}


/* === HERO === */
.hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: var(--section-y);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(11, 17, 32, 0.03) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 70% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 70% 40%, black 20%, transparent 70%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

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

.hero-headline {
  margin-bottom: 28px;
  font-weight: 900;
  line-height: 1.08;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--steel);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.trust-divider {
  color: var(--silver);
  font-size: 1rem;
}

/* Hero visual — data visualization */
.hero-visual {
  position: relative;
  z-index: 1;
}

.leak-viz {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

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

.viz-pipeline {
  position: relative;
}

.viz-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel-light);
  margin-bottom: 28px;
}

.viz-bar-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.viz-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.viz-fill {
  height: 28px;
  border-radius: 4px;
  transition: width 1.2s var(--ease);
}

.viz-fill-1 {
  width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.viz-fill-2 {
  width: 52%;
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
}

.viz-fill-3 {
  width: 28%;
  background: linear-gradient(90deg, #EF4444, #F87171);
}

.viz-bar-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--steel-light);
  white-space: nowrap;
  min-width: 80px;
}

.viz-leak-indicator {
  position: relative;
  margin-top: 8px;
}

.viz-leak-indicator svg {
  width: 100%;
  height: 40px;
}

.viz-leak-text {
  position: absolute;
  right: 0;
  bottom: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #F87171;
  letter-spacing: 0.03em;
}


/* === SECTION GLOBAL === */
.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.section-title {
  margin-bottom: 20px;
}

.section-intro {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--slate);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 56px;
}

.section-bottom-line {
  margin-top: 56px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.01em;
  padding: 20px 0;
  border-top: 1px solid var(--cloud);
  border-bottom: 1px solid var(--cloud);
}


/* === THE LEAK === */
.section-leak {
  background: var(--off-white);
}

.leak-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.leak-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

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

.leak-card:hover {
  border-color: var(--silver);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.leak-card-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 10px;
  background: var(--accent-glow);
  border-radius: 10px;
}

.leak-card-icon svg {
  width: 100%;
  height: 100%;
}

.leak-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.leak-card p {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.7;
}


/* === MID-PAGE CTA === */
.mid-cta {
  background: var(--navy);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.mid-cta-alt {
  background: var(--charcoal);
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mid-cta-text {
  color: var(--steel-light);
  font-size: 0.95rem;
  font-weight: 500;
}


/* === WHAT WE DO === */
.section-what {
  background: var(--white);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.what-item {
  padding: 32px 28px;
  border: 1px solid var(--cloud);
  border-radius: 12px;
  background: var(--white);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.what-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 0 0 2px 0;
  transition: height 0.5s var(--ease);
}

.what-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.what-item:hover::before {
  height: 100%;
}

.what-number {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.what-item h3 {
  margin-bottom: 12px;
}

.what-item p {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.7;
}

.what-note {
  background: var(--off-white);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  border-radius: 0 10px 10px 0;
}

.what-note p {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.7;
}


/* === HOW IT WORKS === */
.section-how {
  background: var(--off-white);
}

.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  border-color: var(--silver);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.step-card:hover .step-accent {
  opacity: 1;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.7;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--silver);
  flex-shrink: 0;
  gap: 4px;
}

.connector-line {
  width: 1px;
  height: 20px;
  background: var(--silver);
}

.step-connector svg {
  width: 20px;
  height: 20px;
  color: var(--steel);
}


/* === OFFERS === */
.section-offers {
  background: var(--white);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 44px 36px;
  position: relative;
  transition: all var(--duration) var(--ease);
}

.offer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.offer-card-primary {
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-md);
}

.offer-card-primary::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--navy), var(--charcoal), var(--accent-dim));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.offer-card-primary:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.offer-card-primary:hover::before {
  opacity: 1;
}

.offer-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel);
  border: 1px solid var(--cloud);
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 24px;
}

.offer-badge-primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.offer-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.offer-desc {
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.offer-details {
  margin-bottom: 24px;
}

.offer-details li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.6;
}

.offer-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.offer-fit {
  font-size: 0.82rem;
  color: var(--steel);
  font-style: italic;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--cloud);
}

.offer-card .btn {
  width: 100%;
}

.offers-note {
  text-align: center;
  margin-top: 44px;
  color: var(--steel);
  font-size: 0.88rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}


/* === WHO THIS IS FOR === */
.section-fit {
  background: var(--off-white);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.fit-card {
  padding: 40px 36px;
  border-radius: 16px;
  border: 1px solid var(--cloud);
  transition: all var(--duration) var(--ease);
}

.fit-card:hover {
  box-shadow: var(--shadow-md);
}

.fit-yes {
  background: var(--white);
  border-color: var(--accent);
  border-width: 2px;
}

.fit-no {
  background: var(--white);
  border-color: var(--cloud);
}

.fit-card h3 {
  font-size: 1.12rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fit-yes h3::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.fit-no h3::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cloud);
  border: 1px solid var(--silver);
}

.fit-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 0.93rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.fit-yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
}

.fit-no li::before {
  content: '✕';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--red-no);
  opacity: 0.5;
  font-size: 0.85rem;
}


/* === WHY RECLAIMOPS === */
.section-why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  padding: 32px 28px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all var(--duration) var(--ease);
}

.why-item:hover {
  border-color: var(--cloud);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 8px;
  background: var(--accent-glow);
  border-radius: 10px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.why-item p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.7;
}


/* === FAQ === */
.section-faq {
  background: var(--off-white);
}

.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--cloud);
}

.faq-item:first-child {
  border-top: 1px solid var(--cloud);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  gap: 24px;
  transition: color var(--duration) var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--steel);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--cloud);
  transition: all var(--duration) var(--ease);
}

.faq-item[open] summary::after {
  content: '−';
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.faq-item summary:hover {
  color: var(--accent-dim);
}

.faq-item summary:hover::after {
  border-color: var(--silver);
}

.faq-answer {
  padding: 0 0 24px;
  animation: faqFade 0.3s var(--ease);
}

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

.faq-answer p {
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.8;
}


/* === FINAL CTA === */
.section-final-cta {
  background: var(--navy);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.section-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.section-final-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.4;
}

.final-cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-content h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.final-cta-content p {
  color: var(--steel-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.final-cta-content .hero-ctas {
  justify-content: center;
}

.final-cta-content .btn-primary {
  background-color: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.final-cta-content .btn-primary:hover {
  background-color: var(--off-white);
  border-color: var(--off-white);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.2);
}


/* === FOOTER === */
.site-footer {
  background: var(--navy-light);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

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

.footer-tagline {
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.7;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel-light);
  margin-bottom: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--steel);
  margin-bottom: 10px;
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--steel);
}

.footer-micro {
  font-style: italic;
  color: var(--steel) !important;
  opacity: 0.6;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-grid > :last-child {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .header-nav,
  .header-cta {
    display: none;
  }

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

  .hero {
    padding-top: calc(var(--header-h) + 48px);
  }

  .hero-headline br {
    display: none;
  }

  .leak-grid,
  .offers-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

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

  .what-grid > :last-child {
    grid-column: span 1;
  }

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

  .steps-grid {
    flex-direction: column;
    gap: 16px;
  }

  .step-connector {
    flex-direction: row;
    padding: 4px 0;
  }

  .connector-line {
    width: 20px;
    height: 1px;
  }

  .step-connector svg {
    transform: rotate(90deg);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .trust-divider {
    display: none;
  }

  .mid-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand-col {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .final-cta-content h2 br {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .offer-card {
    padding: 32px 24px;
  }

  .fit-card {
    padding: 32px 24px;
  }

  .step-card {
    padding: 32px 24px;
  }

  .why-item {
    padding: 28px 24px;
  }
}


/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.leak-grid .reveal:nth-child(2),
.why-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.leak-grid .reveal:nth-child(3),
.why-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.leak-grid .reveal:nth-child(4),
.why-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.why-grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.why-grid .reveal:nth-child(6) { transition-delay: 0.30s; }

.what-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.what-grid .reveal:nth-child(3) { transition-delay: 0.16s; }

.steps-grid .step-card.reveal:nth-child(3) { transition-delay: 0.08s; }
.steps-grid .step-card.reveal:nth-child(5) { transition-delay: 0.16s; }

.offers-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.fit-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
