:root {
  --navy: #0b1c45;
  --navy-dark: #030e30;
  --red: #d8151e;
  --red-dark: #b70002;
  --bg-alt: #f4f7fa;
  --border: #e1e5ea;
  --text-muted: #5d646f;
  --white: #ffffff;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0; }

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

.container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 720px;
}

.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px -10px rgba(212,12,26,0.5);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline-light {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 12px -2px rgba(0,0,0,0.08), 0 20px 40px -16px rgba(8,21,44,0.22);
}
.btn-lg { padding: 15px 24px; font-size: 14px; }
.btn-block { width: 100%; padding: 14px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 81px;
}
.logo img { height: 110px; border-radius: 10px; display: block; }
.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(3,14,48,0.8);
}
.header-actions { display: flex; align-items: center; gap: 24px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 48px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 6px 16px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 999px;
}
.hero-copy h1 {
  color: var(--white);
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-copy .accent { color: var(--red); }
.hero-copy .lead {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { color: var(--white); font-family: 'Barlow'; font-weight: 900; font-size: 30px; }
.hero-stats span { color: rgba(255,255,255,0.6); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

/* Quote form */
.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 12px -2px rgba(0,0,0,0.08), 0 20px 40px -16px rgba(8,21,44,0.22);
  align-self: start;
}
.quote-form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.quote-form-head h3 { font-size: 22px; }
.pill-time { color: var(--red); font-size: 12px; font-weight: 600; text-transform: uppercase; }
.quote-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-field input, .form-field select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--navy-dark);
  background: var(--white);
}
.form-disclaimer {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 16px;
}

/* Hero image strip */
.hero-image-strip {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.hero-image-frame {
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px -2px rgba(0,0,0,0.08), 0 20px 40px -16px rgba(8,21,44,0.22);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Trust strip */
.trust-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(11,28,69,0.7);
}
.trust-strip-inner span { display: flex; align-items: center; gap: 8px; }

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 48px;
}
.section > .container > h2.center + .section-sub,
.section-sub.center { margin-left: auto; margin-right: auto; }

/* Grids & cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px -12px rgba(8,21,44,0.15);
}
.card h3 { font-size: 20px; margin-bottom: 12px; }
.card h4 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.icon-box {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}
.link-arrow { color: var(--red); font-weight: 700; font-size: 14px; }

.card-center { text-align: center; }
.round-icon {
  width: 56px; height: 56px;
  background: rgba(216,21,30,0.1);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
}

/* Steps */
.steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 48px;
}
.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px -12px rgba(8,21,44,0.15);
}
.step-num {
  display: block;
  font-family: 'Barlow';
  font-weight: 900;
  font-size: 42px;
  color: rgba(216,21,30,0.2);
  margin-bottom: 12px;
}
.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14px; }
.step-arrow {
  display: flex;
  align-items: center;
  color: var(--border);
  font-size: 20px;
}

/* Coverage */
.coverage {
  background: var(--navy);
  padding: 96px 0;
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.coverage-copy .eyebrow { margin-bottom: 16px; }
.coverage-copy h2 { color: var(--white); font-size: 36px; margin-bottom: 20px; }
.lead-alt { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.6; margin-bottom: 28px; }
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.check-list li::before {
  content: "✓";
  width: 24px; height: 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.coverage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(4px);
}
.stat-icon { font-size: 24px; display: block; margin-bottom: 20px; }
.stat-card strong {
  display: block;
  font-family: 'Barlow';
  font-weight: 900;
  font-size: 36px;
  color: var(--white);
}
.stat-card span { color: rgba(255,255,255,0.7); font-size: 14px; }

/* Storage */
.storage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.storage-features {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px -12px rgba(8,21,44,0.15);
}
.feature-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 22px;
}
.feature-tile h4 { font-size: 16px; margin-top: 16px; }
.storage-copy .eyebrow { margin-bottom: 16px; }
.storage-copy h2 { margin-bottom: 20px; }
.storage-copy .section-sub { margin: 0 0 28px; max-width: none; }

/* Reviews */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px -12px rgba(8,21,44,0.15);
}
.stars { color: var(--red); letter-spacing: 4px; margin-bottom: 20px; }
.review-card p {
  font-size: 14px;
  color: rgba(3,14,48,0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}
.review-author {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-author strong { font-size: 16px; }
.review-author span { font-size: 12px; color: var(--text-muted); }

/* FAQ */
.faq-section .container-narrow { margin: 0 auto; }
.accordion { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.accordion details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.accordion summary {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  float: right;
  font-size: 20px;
  color: var(--text-muted);
}
.accordion details[open] summary::after { content: "–"; }
.accordion details p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.6;
}

/* CTA */
.cta {
  background: linear-gradient(165deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 96px 0;
}
.cta-heading {
  color: var(--white);
  font-size: 44px;
  margin-bottom: 20px;
}
.cta-sub {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Footer */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); padding: 56px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-logo { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-col h5 { font-family: 'Barlow'; font-weight: 700; color: var(--white); font-size: 16px; margin-bottom: 20px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-col a { color: rgba(255,255,255,0.8); }
.footer-col span { color: rgba(255,255,255,0.8); }
.footer-fine { color: rgba(255,255,255,0.5) !important; font-size: 12px; margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom-inner div { display: flex; gap: 24px; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .coverage-grid, .storage-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 38px; }
  .header-phone { display: none; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}
