/* ==========================================================================
   Maxistorm Janitorial — Site Stylesheet
   Design system: deep navy foundation, refined teal + blue accents,
   solid interactive surfaces, layered depth shadows.
   ========================================================================== */

/* ── Design tokens ─────────────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --navy: #071426;
  --navy-dark: #050E1B;
  --navy-light: #0E2038;

  /* Accents */
  --blue: #47A0FF;
  --blue-deep: #1E6FD9;
  --blue-bright: #3589F0;
  --blue-soft: #85C2FF;
  --blue-dim: rgba(71, 160, 255, 0.1);
  --mint: #3FD9B6;
  --mint-dim: rgba(63, 217, 182, 0.09);
  --sand: #E3C77E;
  --red: #F87171;

  /* Text */
  --white: #FFFFFF;
  --off-white: #F1F7FB;
  --gray-100: #E8EDF2;
  --gray-200: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --text-body: rgba(226, 236, 248, 0.78);
  --text-muted: rgba(178, 196, 220, 0.55);

  /* Lines & fills */
  --border: rgba(154, 187, 229, 0.14);
  --card-bg: rgba(255, 255, 255, 0.035);

  /* Geometry */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Depth */
  --shadow-sm: 0 1px 2px rgba(2, 8, 20, 0.4);
  --shadow-md: 0 8px 24px rgba(2, 8, 20, 0.45);
  --shadow-lg: 0 24px 64px rgba(2, 8, 20, 0.55);
  --shadow-blue: 0 8px 20px rgba(30, 111, 217, 0.32);

  /* Type */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  /* Layout */
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--blue-deep); color: var(--white); }

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

a { color: inherit; }

/* ── Typography ────────────────────────────────────────────────────────── */
.font-display { font-family: var(--font-display); font-optical-sizing: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

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

.section-title {
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-desc {
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.8;
  font-size: 15px;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

section { padding: 76px 0; }

@media (min-width: 768px) { section { padding: 96px 0; } }

/* ── Scrollbar ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: rgba(154, 187, 229, 0.25); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(154, 187, 229, 0.45); }

/* ── Reveal animations ─────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

[data-reveal-left] {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal-left].visible { opacity: 1; transform: translateX(0); }

[data-reveal-right] {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal-right].visible { opacity: 1; transform: translateX(0); }

/* ── Top bar ───────────────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy-dark);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 24px;
}

.top-bar a {
  color: var(--mint);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--white); }

.top-bar-info { display: flex; flex-wrap: wrap; gap: 0 24px; }

.top-bar-hours { display: none; }
@media (min-width: 640px) { .top-bar-hours { display: inline; } }

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.top-bar-contact .sep { color: rgba(255, 255, 255, 0.18); }

/* ── Header / navigation ───────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 14, 26, 0.86);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

header.scrolled { box-shadow: 0 12px 32px rgba(2, 8, 20, 0.5); }

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-light);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  background: var(--white);
}

.logo-wrap:hover .logo-icon { border-color: rgba(63, 217, 182, 0.45); transform: scale(1.03); }

.logo-text { display: flex; flex-direction: column; }

.logo-wrap > div { display: flex; flex-direction: row; align-items: baseline; gap: 8px; }

.logo-name,
.logo-sub {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.2;
  display: inline-block;
}

/* Desktop nav */
nav { display: none; align-items: center; gap: 2px; }
@media (min-width: 1024px) { nav { display: flex; } }

nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}

nav a:hover { background: rgba(255, 255, 255, 0.05); color: var(--white); }

nav a.active { color: var(--mint); }

nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--mint);
}

.btn-cta {
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--blue-deep);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  box-shadow: var(--shadow-blue);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-cta:hover {
  background: var(--blue-bright);
  box-shadow: 0 10px 26px rgba(30, 111, 217, 0.42);
  transform: translateY(-1px);
}

/* Mobile nav */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}

.nav-toggle:hover { background: rgba(255, 255, 255, 0.05); }

@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: rgba(6, 14, 26, 0.98);
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; animation: mobileNavIn 0.22s ease; }

@keyframes mobileNavIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active { background: rgba(255, 255, 255, 0.05); color: var(--mint); }

.mobile-nav .btn-mobile-cta {
  margin-top: 8px;
  text-align: center;
  background: var(--blue-deep);
  color: var(--white);
  font-weight: 700;
  border-radius: 999px;
  padding: 14px;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: var(--blue-bright);
  box-shadow: 0 10px 26px rgba(30, 111, 217, 0.42);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(71, 160, 255, 0.08);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--blue-deep);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
  background: var(--blue-bright);
  box-shadow: 0 10px 26px rgba(30, 111, 217, 0.42);
  transform: translateY(-1px);
}

.btn-submit:disabled { opacity: 0.6; cursor: default; transform: none; }

/* ── Home hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg { position: absolute; inset: 0; }

.hero-bg img { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(5, 12, 23, 0.96) 0%,
    rgba(6, 16, 30, 0.86) 45%,
    rgba(8, 22, 40, 0.42) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(154, 187, 229, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 187, 229, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 20px;
}

.hero-inner { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  border: 1px solid rgba(63, 217, 182, 0.28);
  background: rgba(63, 217, 182, 0.07);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 20px;
}

.hero h1 em { font-style: normal; color: var(--mint); }

.hero-desc {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--mint);
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Subpage hero ──────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 64px 20px 72px;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(154, 187, 229, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 187, 229, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.8;
}

.hero-section {
  position: relative;
  padding: 56px 20px;
  background: var(--navy);
  overflow: hidden;
}

.hero-section .hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-section h1,
.hero-section h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-section p { color: var(--text-body); font-size: 17px; max-width: 540px; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(71, 160, 255, 0.22);
  background: rgba(71, 160, 255, 0.06);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ── Trust strip ───────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--navy-dark);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
}

.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: border-color 0.2s, color 0.2s;
}

.trust-badge:hover { border-color: rgba(63, 217, 182, 0.4); color: var(--mint); }

.trust-badge svg { width: 13px; height: 13px; fill: var(--mint); flex-shrink: 0; }

/* ── Services grid (shared) ────────────────────────────────────────────── */
.services-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  border-color: rgba(71, 160, 255, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(5, 14, 27, 0.6);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg { width: 26px; height: 26px; fill: var(--blue); }

.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }

.service-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.service-link:hover { color: var(--mint); gap: 8px; }

.service-card--photo { padding-top: 0; overflow: hidden; }

.service-card-img {
  width: calc(100% + 56px);
  max-width: none;
  margin: 0 -28px 20px;
  height: 160px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}

.service-features { list-style: none; margin: 16px 0; }

.service-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before { content: "\2713"; color: var(--mint); font-weight: 700; }

.services-section {
  background: var(--navy-dark);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.services-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

.services-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .services-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.services-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, gap 0.2s;
}

.services-link:hover { color: var(--mint); gap: 10px; }

/* ── Testimonials ──────────────────────────────────────────────────────── */
#testimonials { background: var(--navy-dark); }

.testimonials-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }

.testimonials-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover {
  border-color: rgba(63, 217, 182, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: rgba(71, 160, 255, 0.22);
  margin-bottom: -8px;
}

.stars {
  color: var(--mint);
  margin: 8px 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-text { color: var(--text-body); line-height: 1.7; font-size: 14px; margin-top: 12px; }

.testimonial-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.reviewer-name { font-weight: 700; color: var(--white); font-size: 14px; }

.reviewer-meta { font-size: 12px; color: var(--text-muted); }

/* ── Promise section ───────────────────────────────────────────────────── */
.promise-section {
  background: linear-gradient(180deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
}

.promise-header { text-align: center; max-width: 600px; margin: 0 auto 40px; }

.promise-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .promise-grid { grid-template-columns: repeat(3, 1fr); } }

.promise-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s;
}

.promise-card:hover { border-color: rgba(63, 217, 182, 0.3); }

.promise-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}

.promise-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }

.promise-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* ── Credentials ───────────────────────────────────────────────────────── */
.credentials-section {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credentials-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .credentials-grid { grid-template-columns: repeat(2, 1fr); align-items: center; } }

.cred-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }

.cred-item {
  display: flex;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  align-items: flex-start;
}

.cred-badge {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.cred-badge.blue { background: var(--blue-deep); color: var(--white); }
.cred-badge.mint { background: var(--mint); color: var(--navy-dark); }
.cred-badge.lime { background: var(--sand); color: var(--navy-dark); }

.cred-item h4 { font-weight: 700; margin-bottom: 3px; font-size: 14px; }

.cred-item p { font-size: 13px; color: var(--text-body); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }

.industry-tile {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--card-bg);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
  padding: 8px;
  transition: border-color 0.2s, color 0.2s;
}

.industry-tile:hover { border-color: rgba(63, 217, 182, 0.4); color: var(--mint); }

/* ── Why us ────────────────────────────────────────────────────────────── */
.why-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); align-items: center; } }

.stats-panel {
  background: linear-gradient(150deg, var(--navy-light), var(--navy-dark));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.stats-panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; position: relative; }

.stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
}

.stat-box .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--mint);
}

.stat-box .lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}

.why-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }

.why-list li { display: flex; gap: 10px; }

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg { width: 12px; height: 12px; fill: var(--navy-dark); }

.why-list li p { color: var(--text-body); line-height: 1.6; font-size: 14px; }

.why-list li strong { color: var(--white); }

.why-story-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

.why-story-link:hover { color: var(--mint); }

/* ── Areas / cities ────────────────────────────────────────────────────── */
.areas-section {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  padding: 56px 20px;
}

.areas-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .areas-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

.areas-inner h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }

.areas-inner p { color: var(--text-body); max-width: 360px; font-size: 14px; }

.city-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.city-tag {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-body);
  transition: border-color 0.2s, color 0.2s;
}

.city-tag:hover { border-color: rgba(63, 217, 182, 0.4); color: var(--mint); }

.cities-section {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  padding: 72px 20px;
}

.cities-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.cities-head { max-width: 640px; margin: 0 auto 32px; }

.cities-head .section-title { margin: 8px 0 12px; }

.cities-head .section-desc { margin: 0; color: var(--text-body); }

.cities-tags { justify-content: center; gap: 8px; max-width: 1000px; margin: 0 auto; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
#faq {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-inner { max-width: 720px; margin: 0 auto; padding: 0 20px; }

.faq-inner .section-title,
.faq-inner .section-desc { text-align: center; }

.faq-inner .section-desc { margin: 0 auto 36px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

details.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: border-color 0.2s;
}

details.faq-item[open] { border-color: rgba(71, 160, 255, 0.45); }

summary.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 14px;
}

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

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}

.faq-arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  margin-top: -3px;
}

details[open] .faq-arrow { transform: rotate(180deg); background: var(--blue-deep); }
details[open] .faq-arrow::before { border-color: var(--white); }

.faq-answer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
}

.faq-answer a { color: var(--blue); text-decoration: none; font-weight: 600; }
.faq-answer a:hover { color: var(--mint); }

.faq-footer { text-align: center; margin-top: 32px; font-size: 14px; color: var(--text-muted); }

.faq-footer a { color: var(--blue); font-weight: 700; text-decoration: none; }

/* ── CTA ───────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--navy-dark);
  text-align: center;
  overflow: hidden;
  padding: 80px 20px;
}

.cta-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; position: relative; }

.cta-section p {
  color: var(--text-body);
  font-size: 16px;
  margin: 14px auto 0;
  max-width: 500px;
  position: relative;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  position: relative;
}

/* ── Quote form / contact info ─────────────────────────────────────────── */
#quote { background: var(--navy-dark); }

.quote-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .quote-grid { grid-template-columns: repeat(2, 1fr); gap: 64px; } }

.contact-info { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }

.contact-card {
  display: flex;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; fill: var(--blue); }

.contact-card .label {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-card a { color: var(--blue); font-weight: 700; text-decoration: none; }
.contact-card a:hover { color: var(--mint); }

.contact-card span { font-weight: 600; font-size: 14px; }

/* ── Forms ─────────────────────────────────────────────────────────────── */
.quote-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.quote-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }

.form-row { display: grid; gap: 14px; }
@media (min-width: 480px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

.form-group { margin-top: 14px; position: relative; }

.form-group label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(5, 14, 27, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(71, 160, 255, 0.14);
}

.form-group select option { background: var(--navy-dark); }

.form-success {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--mint-dim);
  border: 1px solid rgba(63, 217, 182, 0.25);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--mint);
}

.form-success.is-visible { display: block; }

/* ── Map ───────────────────────────────────────────────────────────────── */
.map-section { background: var(--navy-dark); padding: 0 20px 64px; }

.map-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  display: grid;
}

@media (min-width: 1024px) { .map-wrap { grid-template-columns: 1fr 1fr; } }

.map-wrap iframe { width: 100%; min-height: 260px; display: block; }

.map-info {
  background: linear-gradient(150deg, var(--navy-light), var(--navy-dark));
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }

.map-info p { color: var(--text-body); font-size: 14px; }

.map-info a { display: inline-flex; margin-top: 20px; font-weight: 700; text-decoration: none; transition: color 0.2s; }

.map-info a.phone { color: var(--mint); font-size: 17px; }
.map-info a.phone:hover { color: var(--white); }

.map-info a.email { color: var(--text-body); font-size: 13px; margin-top: 6px; word-break: break-all; }
.map-info a.email:hover { color: var(--blue); }

/* ── Footer ────────────────────────────────────────────────────────────── */
footer { background: var(--navy-dark); border-top: 1px solid var(--border); padding: 56px 20px 28px; }

.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-grid { display: grid; gap: 32px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }

.footer-logo .icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo .icon img { width: 100%; height: 100%; object-fit: contain; border-radius: inherit; }

.footer-logo .icon svg { width: 18px; height: 18px; fill: var(--navy-dark); }

.footer-logo span { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); }

.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.footer-socials { display: flex; gap: 8px; margin-top: 16px; }

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.2s;
}

.social-btn:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: var(--white); }

.social-btn svg { width: 15px; height: 15px; fill: currentColor; }

.footer-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }

.footer-col ul a { font-size: 13px; color: var(--text-body); text-decoration: none; transition: color 0.2s; }

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ── Chat FAB ──────────────────────────────────────────────────────────── */
.chat-panel {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 200;
  width: 280px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  display: none;
}

.chat-panel.open { display: block; animation: panelIn 0.2s ease; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.chat-panel h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }

.chat-panel p { font-size: 13px; color: var(--text-body); margin-bottom: 14px; }

.chat-panel .c-action {
  display: block;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 6px;
  transition: opacity 0.2s;
}

.chat-panel .c-action:hover { opacity: 0.85; }

.chat-panel .c-action.primary { background: var(--blue-deep); color: var(--white); }

.chat-panel .c-action.outline { border: 1px solid var(--border); color: var(--white); }

.chat-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: var(--blue-deep);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(30, 111, 217, 0.4);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.chat-fab:hover {
  background: var(--blue-bright);
  box-shadow: 0 14px 32px rgba(30, 111, 217, 0.48);
  transform: scale(1.06);
}

/* ── Contact page ──────────────────────────────────────────────────────── */
.contact-cards {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 0 20px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-card-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.contact-card-item:hover {
  border-color: rgba(63, 217, 182, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.contact-card-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  word-break: break-word;
}

.contact-card-meta { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

.two-col-section {
  max-width: var(--max-width);
  margin: 0 auto 64px;
  padding: 56px 20px 0;
  display: grid;
  gap: 48px;
}

@media (min-width: 1024px) { .two-col-section { grid-template-columns: 1fr 1fr; gap: 64px; } }

.info-content h1,
.info-content h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; margin-bottom: 14px; }

.info-content p { color: var(--text-body); line-height: 1.7; margin-bottom: 20px; font-size: 14px; }

.steps-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }

.steps-list li { display: flex; gap: 10px; align-items: flex-start; }

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.steps-list li span:last-child { color: var(--text-body); font-size: 14px; }

.security-note {
  font-size: 11px;
  color: var(--text-muted);
  border-left: 2px solid var(--blue);
  padding-left: 14px;
  margin-top: 14px;
}

/* ── About page ────────────────────────────────────────────────────────── */
.about-section { padding: 80px 20px; }

.about-inner { max-width: var(--max-width); margin: 0 auto; display: grid; gap: 40px; }

@media (min-width: 1024px) { .about-inner { grid-template-columns: 1fr 1fr; align-items: center; } }

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

.stat-tile { border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; }

.stat-tile.dark { background: var(--navy-dark); border: 1px solid var(--border); }

.stat-tile.accent { background: var(--blue-deep); }

.stat-tile .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; }

.stat-tile.dark .num { color: var(--mint); }

.stat-tile.accent .num { color: var(--white); }

.stat-tile .lbl {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-tile.dark .lbl { color: var(--text-muted); }

.stat-tile.accent .lbl { color: rgba(255, 255, 255, 0.75); }

.about-content h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 700; margin-bottom: 14px; }

.about-content > p { color: var(--text-body); line-height: 1.75; }

.about-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }

.about-list li { display: flex; gap: 10px; }

.about-list .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 11px;
  color: var(--navy-dark);
  font-weight: 700;
}

.about-list .check-icon svg { width: 12px; height: 12px; fill: var(--navy-dark); }

.about-list li p { color: var(--text-body); line-height: 1.6; font-size: 14px; }

.about-list li strong { color: var(--white); }

/* ── Gallery ───────────────────────────────────────────────────────────── */
.gallery-section {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 20px;
}

.gallery-inner { max-width: var(--max-width); margin: 0 auto; }

.gallery-header { text-align: center; max-width: 560px; margin: 0 auto 40px; }

.gallery-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-bg);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  max-height: none;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(5, 14, 27, 0.85);
  border-top: 1px solid var(--border);
}

/* ── Pricing ───────────────────────────────────────────────────────────── */
.pricing-section {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 20px;
}

.pricing-inner { max-width: var(--max-width); margin: 0 auto; }

.pricing-header { text-align: center; max-width: 560px; margin: 0 auto 40px; }

.pricing-grid { display: grid; gap: 16px; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: rgba(63, 217, 182, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pricing-card-icon {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
  line-height: 1;
}

.pricing-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }

.pricing-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* ── Orders / supplies (legacy store components) ───────────────────────── */
fieldset { border: none; margin-top: 6px; }

legend {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.radio-group { display: flex; flex-wrap: wrap; gap: 20px; }

.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
}

.radio-group input[type="radio"] { width: 16px; height: 16px; accent-color: var(--blue); }

.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) { .main-content { grid-template-columns: 1fr 340px; gap: 40px; } }

.section-header {
  background: linear-gradient(150deg, var(--navy-light), var(--navy));
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.section-header svg { width: 20px; height: 20px; fill: var(--blue); }

.section-header h2 { font-family: var(--font-display); font-size: 16px; font-weight: 700; }

.section-body { padding: 20px; }

.form-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}

.category-container {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.category-header {
  background: linear-gradient(150deg, var(--navy-light), var(--navy));
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.category-header h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; }

.category-toggle { transition: transform 0.25s; width: 18px; height: 18px; fill: var(--blue); }

.category-container.collapsed .category-toggle { transform: rotate(-90deg); }

.category-container.collapsed .category-body { display: none; }

.category-body { padding: 18px; border-top: 1px solid var(--border); }

.products-grid { display: grid; gap: 10px; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: rgba(5, 14, 27, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  transition: border-color 0.2s;
}

.product-card:hover { border-color: var(--blue); }

.product-name { font-weight: 700; font-size: 13px; margin-bottom: 4px; }

.product-control { display: flex; align-items: center; gap: 10px; margin-top: 10px; }

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: var(--blue-dim);
  border: 1px solid var(--border);
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.qty-btn:hover { background: var(--blue-deep); color: var(--white); }

.qty-input {
  width: 46px;
  text-align: center;
  background: rgba(5, 14, 27, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px;
  color: var(--white);
  font-weight: 600;
}

.sidebar { position: sticky; top: 90px; align-self: start; }

.summary-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.summary-header { background: var(--blue-deep); padding: 18px; }

.summary-header h2 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); }

.summary-header p { font-size: 10px; color: rgba(255, 255, 255, 0.75); margin-top: 2px; }

.summary-body { padding: 18px; }

#summaryEmpty { text-align: center; padding: 28px 14px; color: var(--text-muted); font-size: 13px; }

#summaryItems { list-style: none; max-height: 280px; overflow-y: auto; }

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.summary-item-name { color: var(--text-body); }

.summary-item-qty { color: var(--blue); font-weight: 700; }

.summary-divider { margin: 14px 0; height: 1px; background: var(--border); }

.summary-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 14px; margin-top: 10px; }

.rush-badge {
  margin-top: 10px;
  padding: 8px;
  text-align: center;
  background: var(--mint-dim);
  border: 1px solid rgba(63, 217, 182, 0.25);
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  color: var(--mint);
}

.sidebar-link {
  margin-top: 16px;
  padding: 14px;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.sidebar-link a { color: var(--blue); text-decoration: none; font-weight: 700; font-size: 13px; }

.sidebar-link a:hover { color: var(--mint); }

/* ── Accessibility ─────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 20px;
  background: var(--blue-deep);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.hidden { display: none !important; }

.text-balance { text-wrap: balance; }

/* ── Deployment polish ─────────────────────────────────────────────────── */
.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

.page-hero-inner { position: relative; z-index: 1; max-width: var(--max-width); margin: 0 auto; }

.breadcrumb { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }

.breadcrumb a { color: var(--blue); text-decoration: none; transition: color 0.2s; }

.breadcrumb a:hover { color: var(--mint); }

.breadcrumb span { margin: 0 8px; color: rgba(255, 255, 255, 0.3); }

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  max-width: 700px;
  margin-bottom: 16px;
}

.page-hero h1 em { font-style: normal; color: var(--mint); }

.trust-item {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

.cta-bottom {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 72px 20px;
}

.cta-bottom h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 12px; }

.cta-bottom p { color: var(--text-body); font-size: 16px; margin: 0 auto 28px; max-width: 540px; }

.map-wrapper { max-width: var(--max-width); margin: 0 auto 64px; padding: 0 20px; }

.map-container {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
}

.map-container iframe { width: 100%; min-height: 360px; display: block; border: 0; }

/* ── Back to top ───────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 199;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--navy-light);
  color: var(--blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.back-to-top:hover {
  background: var(--blue-deep);
  color: var(--white);
  border-color: var(--blue-deep);
  transform: translateY(-3px);
}

/* ── Field errors ──────────────────────────────────────────────────────── */
.field-error {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  margin-top: 4px;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.field-error.visible { opacity: 1; }

.input-error { border-color: var(--red) !important; box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12) !important; }

/* ── Focus styles ──────────────────────────────────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

/* ── Loading spinner ───────────────────────────────────────────────────── */
.btn-submit.loading { pointer-events: none; position: relative; color: transparent; }

.btn-submit.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Supplies under maintenance ────────────────────────────────────────── */
.maintenance-section { background: var(--navy-dark); padding: 64px 20px 96px; }

.maintenance-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}

.maintenance-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-dim);
  color: var(--blue);
}

.maintenance-icon svg { width: 42px; height: 42px; }

.maintenance-card h2 { margin: 8px 0 16px; font-size: clamp(1.6rem, 3vw, 2.2rem); }

.maintenance-desc { color: var(--text-muted); line-height: 1.8; max-width: 520px; margin: 0 auto 28px; }

.maintenance-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 36px; }

.maintenance-notes { display: grid; gap: 14px; text-align: left; border-top: 1px solid var(--border); padding-top: 28px; }

.maintenance-note { display: flex; gap: 14px; align-items: flex-start; color: var(--text-body); line-height: 1.7; }

.maintenance-note strong { color: var(--white); }

.note-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-dim);
  color: var(--mint);
}

.note-icon svg { width: 15px; height: 15px; }

@media (max-width: 600px) {
  .maintenance-card { padding: 40px 22px; }
  .maintenance-actions .btn-primary,
  .maintenance-actions .btn-secondary { width: 100%; }
}

/* ── Reduced motion ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal],
  [data-reveal-left],
  [data-reveal-right] { opacity: 1 !important; transform: none !important; }
}
