/* ============================================================
   SK STORAGE SOLUTIONS — Design System (Blue/White Brand)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&family=JetBrains+Mono:wght@700&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Blues from SKSS_Logo_Primary */
  --navy:      #0D1F3C;
  --blue:      #1A5FD4;
  --cyan:      #1B9FE8;
  --blue-dk:   #1348B0;
  --cyan-lt:   #E8F4FD;
  --blue-mid:  #2271E8;

  /* Surfaces */
  --bg:        #FFFFFF;
  --bg-alt:    #F0F6FF;
  --bg-card:   #FFFFFF;
  --bg-nav:    #FFFFFF;
  --bg-footer: #0D1F3C;
  --border:    #D0DFF5;

  /* Text */
  --text:      #0D1F3C;
  --subtext:   #486080;
  --white:     #FFFFFF;
  --success:   #1A9F6B;

  /* Legacy aliases */
  --orange:    #1A5FD4;
  --orange-dk: #1348B0;

  --sp-1:  4px;  --sp-2:  8px;  --sp-3:  12px; --sp-4:  16px;
  --sp-5:  20px; --sp-6:  24px; --sp-8:  32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  --text-xs:   .75rem;   --text-sm:   .875rem;  --text-base: 1rem;
  --text-lg:   1.125rem; --text-xl:   1.25rem;  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem; --text-4xl:  2.25rem;  --text-5xl:  3rem;

  --radius: 10px;
  --shadow: 0 4px 24px rgba(13,31,60,.10);
  --shadow-card: 0 2px 12px rgba(26,95,212,.10);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: var(--text-base);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; color: var(--navy); }
h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
p  { color: var(--subtext); max-width: 65ch; }
strong { color: var(--text); }

.price-figure {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: min(1160px, 100% - var(--sp-8));
  margin-inline: auto;
}
.section { padding-block: var(--sp-20); }
.section--sm { padding-block: var(--sp-12); }
.section--alt { background: var(--bg-alt); }

/* ── Navigation ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding-block: var(--sp-3);
  box-shadow: 0 2px 16px rgba(13,31,60,.08);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
}
.site-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: var(--sp-5);
  font-size: var(--text-sm); font-weight: 600;
}
.nav-links a { color: var(--navy); transition: color .15s; }
.nav-links a:hover { color: var(--blue); }
.nav-active { color: var(--blue) !important; }
.nav-cta {
  background: var(--blue); color: var(--white) !important;
  padding: var(--sp-2) var(--sp-5); border-radius: var(--radius);
  font-weight: 700; transition: background .15s !important;
}
.nav-cta:hover { background: var(--blue-dk) !important; }

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: var(--sp-2);
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); margin-block: 5px; transition: all .2s;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-footer);
  padding-block: var(--sp-12);
  font-size: var(--text-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
}
.footer-brand img { height: 44px; margin-bottom: var(--sp-4); }
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,.65); max-width: none; }
.footer-col h4 { font-size: var(--text-base); margin-bottom: var(--sp-4); color: var(--white); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col a { color: rgba(255,255,255,.65); transition: color .15s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  margin-top: var(--sp-10);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--text-xs); color: rgba(255,255,255,.45);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius); font-weight: 700; font-size: var(--text-base);
  cursor: pointer; border: 2px solid transparent;
  transition: background .15s, color .15s, transform .1s, box-shadow .15s;
  text-transform: uppercase; letter-spacing: .05em;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,95,212,.25); }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dk); border-color: var(--blue-dk); }
.btn-secondary { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-secondary:hover { background: var(--blue); color: var(--white); }
.btn-phone { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-phone:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: var(--sp-4) var(--sp-8); font-size: var(--text-lg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #EEF5FF 0%, #FFFFFF 50%, #F0F8FF 100%);
  padding-block: var(--sp-20);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(26,95,212,.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(27,159,232,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { color: var(--navy); margin-bottom: var(--sp-4); }
.hero h1 span { color: var(--blue); }
.hero p { font-size: var(--text-xl); margin-bottom: var(--sp-8); }
.hero-ctas { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.hero-visual { display: flex; align-items: center; justify-content: center; }

/* ── Page hero (interior pages) ─────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1A3A70 100%);
  padding-block: var(--sp-12);
  border-bottom: 3px solid var(--cyan);
}
.page-hero h1 { color: var(--white); margin-bottom: var(--sp-3); font-size: var(--text-4xl); }
.page-hero p { font-size: var(--text-lg); color: rgba(255,255,255,.8); max-width: none; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex; gap: var(--sp-2); font-size: var(--text-sm);
  color: rgba(255,255,255,.6); margin-bottom: var(--sp-4);
}
.breadcrumb a { color: var(--cyan); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,.5); }

/* ── Trust bar ──────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding-block: var(--sp-6);
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.trust-icon {
  width: 48px; height: 48px;
  background: rgba(27,159,232,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 24px; height: 24px; fill: var(--cyan); }
.trust-label { font-weight: 700; font-size: var(--text-sm); color: var(--white); }
.trust-sub { font-size: var(--text-xs); color: rgba(255,255,255,.55); }

/* ── Section headings ───────────────────────────────────── */
.section-heading { margin-bottom: var(--sp-10); }
.section-heading h2 { color: var(--navy); margin-bottom: var(--sp-3); }
.section-heading h2 span { color: var(--blue); }
.section-heading p { font-size: var(--text-lg); }
.section-heading--center { text-align: center; }
.section-heading--center p { margin-inline: auto; }

/* ── Pricing cards ──────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  border-top: 4px solid var(--blue);
  padding: var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-4);
  box-shadow: var(--shadow-card);
}
.pricing-card--featured { border-top-color: var(--cyan); }
.pricing-badge {
  display: inline-block; background: var(--cyan);
  color: var(--white); font-size: var(--text-xs); font-weight: 700;
  padding: 2px var(--sp-3); border-radius: 4px;
  text-transform: uppercase; letter-spacing: .06em;
  align-self: flex-start;
}
.pricing-card h3 { color: var(--navy); font-size: var(--text-2xl); }
.pricing-dims { color: var(--subtext); font-size: var(--text-sm); }
.pricing-amount {
  display: flex; align-items: baseline; gap: var(--sp-2);
}
.pricing-weekly {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-5xl); font-weight: 700; color: var(--blue);
}
.pricing-weekly-label { font-size: var(--text-sm); color: var(--subtext); }
.pricing-monthly { font-size: var(--text-sm); color: var(--subtext); }
.pricing-includes { display: flex; flex-direction: column; gap: var(--sp-2); }
.pricing-includes li {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); color: var(--subtext);
}
.pricing-includes li::before {
  content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0;
}

/* ── Unit cards (home) ──────────────────────────────────── */
.units-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}
.unit-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.unit-card:hover { box-shadow: 0 8px 32px rgba(26,95,212,.18); transform: translateY(-2px); }
/* Stretched link — makes the entire card clickable via the CTA button */
.unit-card { position: relative; cursor: pointer; }
.unit-card .btn-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
}

/* Container illustration area */
.unit-card-visual {
  background: #FFFFFF;
  padding: var(--sp-4) var(--sp-4) 0;
  display: flex; align-items: flex-end; justify-content: center;
  min-height: 220px; position: relative; overflow: hidden;
}
.unit-card-visual svg { display: block; }

.unit-card-body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; gap: var(--sp-4); }
.unit-card-body > div:first-child { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.unit-card h3 { color: var(--navy); }
.unit-card .price-weekly {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-4xl); font-weight: 700; color: var(--blue);
}
.unit-card .price-monthly { font-size: var(--text-sm); color: var(--subtext); }
.urgency-badge {
  display: inline-block;
  font-size: var(--text-sm); font-weight: 700;
  color: #C53030;
  animation: urgencyPulse 1.6s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%,100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

.available-badge {
  font-size: var(--text-sm); font-weight: 700;
  color: #1A9F6B;
}

.unit-size-badge {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  background: var(--cyan-lt); color: var(--blue);
  font-size: var(--text-xs); font-weight: 700;
  padding: 3px var(--sp-3); border-radius: 4px;
  border: 1px solid rgba(26,95,212,.2);
}

/* ── How it works ───────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  text-align: center;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  font-size: var(--text-2xl); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-4);
}
.step h4 { color: var(--navy); margin-bottom: var(--sp-2); }

/* ── Services strip ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.service-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-4);
  border: 2px solid var(--border);
  border-top: 4px solid var(--blue);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-card);
}
.service-tile:hover {
  border-color: var(--blue);
  border-top-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,95,212,.15);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--cyan-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 28px; height: 28px; fill: var(--blue); }
.service-tile h3 { color: var(--navy); font-size: var(--text-xl); }
.service-tile p { font-size: var(--text-sm); }

/* ── Reviews ────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--sp-6);
  border: 1px solid var(--border);
  border-left: 4px solid var(--cyan);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.review-stars { color: #F59E0B; font-size: var(--text-lg); letter-spacing: 2px; }
.review-text {
  color: var(--subtext); font-size: var(--text-sm); line-height: 1.7; font-style: italic;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.review-text.expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}
.review-more-btn {
  background: none; border: none; padding: 0;
  color: var(--blue); font-size: var(--text-xs); font-weight: 700;
  cursor: pointer; margin-top: var(--sp-1);
  transition: color .15s;
}
.review-more-btn:hover { color: var(--blue-dk); }
.review-author { font-weight: 700; color: var(--navy); font-size: var(--text-sm); }
.review-source { font-size: var(--text-xs); color: var(--subtext); }
.google-badge {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-xs); color: var(--subtext);
}
.google-badge svg { width: 16px; height: 16px; }

/* ── Customer illustration ──────────────────────────────── */
.customer-scene {
  display: flex; align-items: flex-end; justify-content: center;
  gap: var(--sp-6); padding: var(--sp-6) 0;
}

/* ── FAQ accordion ──────────────────────────────────────── */
.faq-jump-nav {
  display: flex; gap: var(--sp-3); flex-wrap: wrap;
  padding: var(--sp-4) 0; border-bottom: 2px solid var(--border);
  margin-bottom: var(--sp-8);
}
.faq-jump-nav a {
  background: var(--bg-alt); color: var(--blue);
  padding: var(--sp-2) var(--sp-4); border-radius: 4px;
  font-size: var(--text-sm); font-weight: 600; border: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.faq-jump-nav a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

.faq-category { margin-bottom: var(--sp-10); scroll-margin-top: 80px; }
.faq-category h2 { color: var(--navy); font-size: var(--text-2xl); margin-bottom: var(--sp-6); }

details {
  border-bottom: 1px solid var(--border);
}
details summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-5) 0;
  font-weight: 700; font-size: var(--text-base); color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--sp-4);
  user-select: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '▸';
  color: var(--blue); font-size: var(--text-base);
  transition: transform .2s; flex-shrink: 0;
}
details[open] summary::after { transform: rotate(90deg); }
details[open] summary { color: var(--blue); }
.faq-answer {
  padding: 0 0 var(--sp-5);
  color: var(--subtext);
  font-size: var(--text-base);
  line-height: 1.7;
}
.faq-answer a { color: var(--blue); text-decoration: underline; }

/* ── Photo/illustration grid ────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.illus-cell {
  background: linear-gradient(135deg, #EEF5FF, #DCEEFF);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── CTA banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1A3A70 100%);
  padding-block: var(--sp-12);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(27,159,232,.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: var(--sp-3); }
.cta-banner p { color: rgba(255,255,255,.75); margin-inline: auto; margin-bottom: var(--sp-6); }
.cta-banner .btn-primary { background: var(--cyan); border-color: var(--cyan); }
.cta-banner .btn-primary:hover { background: var(--blue); border-color: var(--blue); }
.cta-banner .btn-secondary { border-color: var(--white); color: var(--white); }
.cta-banner .btn-secondary:hover { background: var(--white); color: var(--navy); }
.cta-btns { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }

/* ── Comparison table ───────────────────────────────────── */
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: var(--text-sm);
}
.compare-table th, .compare-table td {
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.compare-table th { background: var(--bg-alt); color: var(--navy); font-weight: 700; }
.compare-table td { color: var(--subtext); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg-alt); }

/* ── Unit detail ────────────────────────────────────────── */
.unit-detail {
  padding-block: var(--sp-16);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 80px;
}
.unit-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.unit-detail h2 { color: var(--navy); margin-bottom: var(--sp-4); }
.unit-detail .unit-price-block { margin-block: var(--sp-6); }
.unit-detail .price-weekly {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-5xl); font-weight: 700; color: var(--blue);
}
.unit-detail .price-monthly { color: var(--subtext); font-size: var(--text-sm); margin-top: var(--sp-1); }
.unit-fits { margin-top: var(--sp-4); }
.unit-fits h4 { color: var(--navy); margin-bottom: var(--sp-3); }
.unit-fits ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.unit-fits li {
  color: var(--subtext); font-size: var(--text-sm);
  display: flex; align-items: center; gap: var(--sp-2);
}
.unit-fits li::before { content: '→'; color: var(--blue); }
.unit-img { border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg,#EEF5FF,#DCEEFF); border: 2px solid var(--border); }
.unit-img svg { width: 100%; }

/* ── Features list ──────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--sp-5);
  display: flex; align-items: flex-start; gap: var(--sp-3);
  border: 1px solid var(--border);
}
.feature-check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(26,159,107,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--success); font-weight: 700; font-size: var(--text-sm);
}
.feature-item p { font-size: var(--text-sm); margin: 0; }
.feature-item strong { color: var(--navy); }

/* ── Location / map ─────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.map-embed {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  border: 2px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }
.contact-details { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-line { display: flex; align-items: flex-start; gap: var(--sp-3); }
.contact-line-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--cyan-lt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-line-icon svg { width: 20px; height: 20px; fill: var(--blue); }
.contact-line-body { display: flex; flex-direction: column; }
.contact-line-label { font-size: var(--text-xs); color: var(--subtext); text-transform: uppercase; letter-spacing: .05em; }
.contact-line-value { font-size: var(--text-base); color: var(--navy); font-weight: 500; }
.contact-line-value a { transition: color .15s; }
.contact-line-value a:hover { color: var(--blue); }

/* ── Contact form ───────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: var(--sp-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group label { font-size: var(--text-sm); font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--navy); padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius); transition: border-color .15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Modification cards ─────────────────────────────────── */
.mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.mod-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-4);
  border: 2px solid var(--border);
  border-top: 4px solid var(--cyan);
  box-shadow: var(--shadow-card);
}
.mod-card h3 { color: var(--navy); }

/* ── Process steps ──────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.process-step { text-align: center; }
.process-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  color: var(--blue); font-size: var(--text-xl); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-4);
}
.process-step h4 { color: var(--navy); margin-bottom: var(--sp-2); }

/* ── Values ─────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--sp-8);
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.value-icon { font-size: 2.5rem; margin-bottom: var(--sp-4); }
.value-card h3 { color: var(--blue); margin-bottom: var(--sp-2); }

/* ── Thank you ──────────────────────────────────────────── */
.thank-you {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.thank-you-inner { max-width: 560px; }
.thank-you .check-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(26,159,107,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-6);
  font-size: 2rem; color: var(--success);
}
.thank-you h1 { font-size: var(--text-4xl); color: var(--navy); margin-bottom: var(--sp-4); }

/* ── Note ───────────────────────────────────────────────── */
.note {
  background: var(--cyan-lt);
  border-left: 3px solid var(--cyan);
  padding: var(--sp-4) var(--sp-5);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--text-sm); color: var(--subtext);
}

/* ── FAQ teaser (home) ──────────────────────────────────── */
.faq-teaser { display: flex; flex-direction: column; gap: var(--sp-1); }

/* ── Container illustrations ─────────────────────────────
   Doors open on hover via CSS animation
   ──────────────────────────────────────────────────────── */
.door-left, .door-right {
  transform-origin: left center;
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
}
.door-right { transform-origin: right center; }
.unit-card:hover .door-left,
.unit-card-visual:hover .door-left,
.open-doors .door-left { transform: perspective(300px) rotateY(-75deg); }
.unit-card:hover .door-right,
.unit-card-visual:hover .door-right,
.open-doors .door-right { transform: perspective(300px) rotateY(75deg); }

/* Auto-open doors on page load */
@keyframes openDoor {
  0%   { transform: perspective(300px) rotateY(0deg); }
  20%  { transform: perspective(300px) rotateY(0deg); }
  80%  { transform: perspective(300px) rotateY(-75deg); }
  100% { transform: perspective(300px) rotateY(-75deg); }
}
@keyframes openDoorR {
  0%   { transform: perspective(300px) rotateY(0deg); }
  20%  { transform: perspective(300px) rotateY(0deg); }
  80%  { transform: perspective(300px) rotateY(75deg); }
  100% { transform: perspective(300px) rotateY(75deg); }
}
.auto-open .door-left  { animation: openDoor  2.5s ease forwards; }
.auto-open .door-right { animation: openDoorR 2.5s ease forwards; }

/* ── Reviews slider ─────────────────────────────────────── */
.reviews-slider { position: relative; }
.reviews-controls {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-4); margin-top: var(--sp-8);
}
.reviews-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  color: var(--navy); font-size: var(--text-xl); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s, color .15s;
}
.reviews-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.reviews-dots { display: flex; gap: var(--sp-2); align-items: center; }
.reviews-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.reviews-dot.active { background: var(--blue); transform: scale(1.3); }

/* ── Customer animation ─────────────────────────────────── */
@keyframes walkCycle {
  0%,100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}
@keyframes armSwing {
  0%,100% { transform: rotate(0deg); }
  50%      { transform: rotate(-20deg); }
}
.customer-walk { animation: walkCycle 1.2s ease-in-out infinite; }
.customer-arm  { transform-origin: top center; animation: armSwing 0.6s ease-in-out infinite; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  h1 { font-size: var(--text-4xl); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }

  .review-card { padding: var(--sp-3); gap: var(--sp-2); }
  .review-text { -webkit-line-clamp: 2; font-size: var(--text-xs); }
  .review-stars { font-size: var(--text-base); }
  .review-author { font-size: var(--text-xs); }
  .review-source { font-size: var(--text-xs); }
  .reviews-grid { gap: var(--sp-2); }

  .mod-card { padding: var(--sp-4); gap: var(--sp-2); }
  .mod-card h3 { font-size: var(--text-base); margin-bottom: 0; }
  .mod-card p { font-size: var(--text-sm); }
  .mod-card ul { gap: var(--sp-1) !important; margin-top: var(--sp-1) !important; }
  .mod-card ul li { font-size: var(--text-xs) !important; }
  .mod-card .service-icon { width: 36px; height: 36px; }
  .mod-grid { gap: var(--sp-4); }

  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: var(--sp-6);
    border-bottom: 2px solid var(--border);
    gap: var(--sp-4);
    box-shadow: 0 8px 24px rgba(13,31,60,.12);
  }
  .nav-links.nav-open { display: flex; }
  .site-header .container { position: relative; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }

  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .units-grid,
  .pricing-grid,
  .services-grid,
  .mod-grid,
  .values-grid,
  .steps-grid,
  .features-grid,
  .reviews-grid { grid-template-columns: 1fr; }

  .unit-detail-inner { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; gap: var(--sp-2); text-align: center; }

  .section { padding-block: var(--sp-12); }
}

@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
}
