/* ── Design Tokens ───────────────────────────────────────────────────────── */
:root {
  /* Type scale */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-hero: clamp(2.5rem, 1rem + 5vw, 5.5rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;

  /* Palette — Navy + Steel + Teal accent */
  --navy-900: #0D1B2A;
  --navy-800: #162032;
  --navy-700: #1E2E42;
  --navy-600: #2A3D54;
  --navy-400: #4A6278;
  --steel-200: #C8D5E0;
  --steel-100: #E8EEF3;
  --off-white:  #F5F7F9;
  --white:      #FFFFFF;
  --teal:       #4F9EA8;
  --teal-hover: #3B8490;
  --teal-light: #D4EEF1;
  --muted:      #6B7E8F;
  --border:     #D4DCE4;
  --text:       #1A2B3C;
  --text-soft:  #4A6278;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'General Sans', system-ui, sans-serif;
  --font-body:    'Satoshi', 'Inter', system-ui, sans-serif;

  /* Radius */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(13,27,42,0.08), 0 1px 2px rgba(13,27,42,0.06);
  --shadow:    0 4px 12px rgba(13,27,42,0.10), 0 2px 4px rgba(13,27,42,0.06);
  --shadow-lg: 0 16px 40px rgba(13,27,42,0.16);
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: clamp(var(--space-12), 7vw, var(--space-24)) 0;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.7em 1.5em;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, transform 0.12s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-hover); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Logo ────────────────────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo svg { flex-shrink: 0; }
.logo-text {
  line-height: 1.2;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.logo-reformed, .logo-power, .logo-solutions { color: var(--white); }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--space-8);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.site-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--white); }
.site-nav .nav-cta {
  padding: 0.45em 1.1em;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background 0.15s;
}
.site-nav .nav-cta:hover { background: var(--teal-hover); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: 0.2s;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.65) 60%,
    rgba(13,27,42,0.40) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  max-width: 740px;
}
.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-4);
}
.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-width: 580px;
  margin-bottom: var(--space-8);
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.35);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust Bar ───────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  flex: 1 1 auto;
  min-width: 180px;
}
.trust-item svg { color: var(--teal); flex-shrink: 0; }
.trust-sep {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.12);
}

/* ── Section Common ──────────────────────────────────────────────────────── */
.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.section-header {
  max-width: 620px;
  margin-bottom: var(--space-12);
}
.section-desc {
  color: var(--text-soft);
  font-size: var(--text-base);
  line-height: 1.65;
}

/* ── Services ────────────────────────────────────────────────────────────── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-5);
}
.service-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-card--featured {
  background: var(--navy-900);
  border-color: transparent;
  color: var(--white);
}
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,0.75); }
.service-card--featured .service-card-icon { color: var(--teal); }

.service-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--teal);
}
.service-card--featured .service-card-icon {
  background: rgba(79,158,168,0.15);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--text-soft);
  line-height: 1.65;
}
.service-details {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.service-details li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  padding-left: var(--space-5);
  position: relative;
}
.service-details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.service-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.tier {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--teal);
  background: rgba(79,158,168,0.15);
  border: 1px solid rgba(79,158,168,0.25);
  border-radius: 20px;
  padding: 0.25em 0.85em;
  white-space: nowrap;
}

/* ── Why Section ─────────────────────────────────────────────────────────── */
.why { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.why-text p {
  color: var(--text-soft);
  margin-bottom: var(--space-5);
  line-height: 1.7;
}
.why-text strong { color: var(--text); }
.why-text .section-title { margin-bottom: var(--space-6); }

.storage-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.storage-table-header {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background: var(--navy-800);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.storage-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.storage-row:last-of-type { border-bottom: none; }
.storage-label {
  font-size: var(--text-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.storage-label::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.storage-action {
  font-size: var(--text-sm);
  color: var(--text-soft);
  line-height: 1.45;
}
.storage-ok   { background: #f0faf5; }
.storage-warn { background: #fffbec; }
.storage-caution { background: #fff6ed; }
.storage-critical { background: #fff0f0; }
.storage-ok    .storage-label { color: #2d6a4f; }
.storage-warn  .storage-label { color: #7d5a00; }
.storage-caution .storage-label { color: #964219; }
.storage-critical .storage-label { color: #a12c2c; }
.storage-ok    .storage-label::before { background: #52b788; }
.storage-warn  .storage-label::before { background: #f4a226; }
.storage-caution .storage-label::before { background: #e07843; }
.storage-critical .storage-label::before { background: #d94f4f; }
.storage-note {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-xs);
  color: var(--muted);
  background: var(--off-white);
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* ── Proof Section ───────────────────────────────────────────────────────── */
.proof { background: var(--navy-900); }
.proof .section-label { color: var(--teal); }
.proof .section-title { color: var(--white); }
.proof .section-desc  { color: rgba(255,255,255,0.6); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}
.proof-item {
  padding: var(--space-6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  transition: background 0.2s, border-color 0.2s;
}
.proof-item:hover {
  background: rgba(79,158,168,0.06);
  border-color: rgba(79,158,168,0.25);
}
.proof-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(79,158,168,0.25);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.proof-item h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.proof-item p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.proof-footer {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  line-height: 1.65;
}

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.contact-text p {
  color: var(--text-soft);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}
.contact-text .section-title { margin-bottom: var(--space-5); }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-soft);
}
.contact-item svg { color: var(--teal); flex-shrink: 0; }
.contact-item a { color: var(--teal); font-weight: 500; transition: color 0.15s; }
.contact-item a:hover { color: var(--teal-hover); }

.contact-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-group label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.form-group input,
.form-group textarea {
  padding: 0.65em 0.9em;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text);
  transition: border-color 0.15s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(79,158,168,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}
.form-note {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: var(--space-3);
  line-height: 1.5;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-16);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo { margin-bottom: var(--space-4); }
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-contact a,
.footer-contact span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--teal); }
.footer-bottom {
  padding: var(--space-5) 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
}

/* ── Scroll animations ───────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-sep { display: none; }
  .trust-inner { gap: var(--space-4); }
}

@media (max-width: 640px) {
  .site-nav {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-900);
    padding: var(--space-6);
    gap: var(--space-2);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .site-nav.nav-open { display: flex; }
  .site-nav a {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
  }
  .site-nav a:hover { background: rgba(255,255,255,0.05); }
  .site-nav .nav-cta { text-align: center; justify-content: center; }
  .mobile-menu-btn { display: flex; }
  .hero-heading { letter-spacing: -0.02em; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .storage-table-header, .storage-row { grid-template-columns: 120px 1fr; }
}

/* ── Quote Form ───────────────────────────────────────────────────────────── */
.quote { background: var(--off-white); }

.quote-section-label {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-700);
  border-bottom: 2px solid var(--teal);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-6);
  display: inline-block;
}
.note-label {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}
.req { color: var(--teal); font-weight: 700; }

.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-10);
  box-shadow: var(--shadow);
}

.quote-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-4);
}

.form-group select {
  padding: 0.65em 0.9em;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text);
  transition: border-color 0.15s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236B7E8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75em center;
  padding-right: 2.2em;
  width: 100%;
}
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(79,158,168,0.12);
}

.quote-drives-note {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.drive-slots {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.drive-slot {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.drive-slot-num {
  background: var(--navy-800);
  color: rgba(255,255,255,0.75);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-5);
}

.drive-slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--off-white);
}

.quote-submit {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}
.quote-submit .btn { flex-shrink: 0; padding: 0.8em 2em; }
.quote-submit .form-note { margin: 0; flex: 1; min-width: 200px; }
.quote-submit .form-note a { color: var(--teal); }

/* Also update nav to include quote link */

@media (max-width: 900px) {
  .quote-grid-2 { grid-template-columns: 1fr 1fr; }
  .drive-slot-grid { grid-template-columns: 1fr 1fr; }
  .drive-slot-notes { grid-column: 1 / -1; }
  .quote-form { padding: var(--space-8) var(--space-6); }
}
@media (max-width: 640px) {
  .quote-grid-2 { grid-template-columns: 1fr; }
  .drive-slot-grid { grid-template-columns: 1fr 1fr; }
  .quote-form { padding: var(--space-6) var(--space-4); }
  .quote-submit { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
}

/* ── Drive slot header (with remove button) ─────────────────────────────── */
.drive-slot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-800);
  padding: var(--space-3) var(--space-5);
}
.drive-remove-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
  padding: 0;
  font-family: var(--font-body);
}
.drive-remove-btn:hover { color: #ff8080; }

/* ── Add Drive button ────────────────────────────────────────────────────── */
.btn-add-drive {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: 0.65em 1.4em;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--teal);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-family: var(--font-body);
}
.btn-add-drive:hover {
  border-color: var(--teal);
  background: rgba(79,158,168,0.05);
}

/* ── Why callout box (replaces storage table) ───────────────────────────── */
.why-callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow);
}
.why-callout p {
  font-size: var(--text-base);
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.why-callout p:last-of-type { margin-bottom: 0; }

/* ── Free service card ───────────────────────────────────────────────────── */
.service-card--free {
  position: relative;
  border-color: var(--teal);
  border-width: 2px;
}
.service-card-free-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--teal);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 0.75em;
  border-radius: 20px;
}
.service-card-free-note {
  font-size: var(--text-xs) !important;
  color: var(--teal) !important;
  margin-top: var(--space-3);
  font-style: italic;
}
