/* ============================================================
   1333 Solutions — main.css
   Design system: DESIGN.md
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────────── */

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin-ext.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Design tokens ─────────────────────────────────────────── */

:root {
  --bg:            #f8fafc;
  --surface:       #ffffff;
  --surface-alt:   #f1f5f9;
  --accent:        #0e7490;
  --accent-light:  #ecfeff;
  --accent-hover:  #0c6580;
  --text:          #0f172a;
  --muted:         #64748b;
  --border:        #e2e8f0;
  --success:       #16a34a;
  --error:         #dc2626;

  --font-display:  'Fraunces', Georgia, serif;
  --font-body:     'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm:     4px;
  --radius-md:     6px;
  --radius-lg:     8px;

  --max-width:     1200px;
  --nav-height:    68px;

  /* Spacing */
  --sp-2:   2px;  --sp-4:   4px;   --sp-8:   8px;
  --sp-12: 12px;  --sp-16: 16px;  --sp-24:  24px;
  --sp-32: 32px;  --sp-48: 48px;  --sp-64:  64px;
  --sp-96: 96px;
}

/* ── Reset ──────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
ul, ol { list-style: none; }

/* ── Utilities ─────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-24);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Scroll fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── Typography ─────────────────────────────────────────────── */

h1, h2, h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; }
h2 { font-size: clamp(24px, 3vw, 34px);   font-weight: 600; letter-spacing: -0.015em; }
h3 { font-size: clamp(18px, 2vw, 22px);   font-weight: 600; letter-spacing: -0.01em; }

p { line-height: 1.7; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-48);
}
.section-header .eyebrow {
  justify-content: center;
  margin-bottom: var(--sp-12);
}
.section-header h2 {
  margin-bottom: var(--sp-12);
}
.section-header p {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 17px;
}

/* ── Buttons ─────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: var(--sp-12) var(--sp-24);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(14,116,144,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--muted);
  color: var(--text);
  background: var(--surface-alt);
}
.btn-lg {
  font-size: 15px;
  padding: 14px 28px;
}

/* ── Nav ──────────────────────────────────────────────────────── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav-brand span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-32);
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-cta { margin-left: var(--sp-16); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-24);
  z-index: 199;
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: var(--sp-12) 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.active { color: var(--accent); }
.nav-mobile .btn {
  display: block;
  text-align: center;
  margin-top: var(--sp-16);
  width: 100%;
}

/* ── Hero ────────────────────────────────────────────────────── */

.hero {
  padding: var(--sp-96) 0;
  background: var(--bg);
}

.hero-eyebrow { margin-bottom: var(--sp-16); }

.hero h1 {
  grid-column: 1 / -1;
  margin-bottom: var(--sp-32);
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-48);
  align-items: flex-start;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: var(--sp-32);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: var(--sp-12);
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  margin-top: var(--sp-20);
  font-size: 13px;
  color: var(--muted);
}
.hero-trust-check {
  color: var(--success);
  font-size: 14px;
  font-weight: 700;
}

/* Hero stat panel */
.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-24);
  box-shadow: 0 4px 24px rgba(15,23,42,0.06);
}
.hero-panel-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-16);
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
}
.stat {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: var(--sp-16);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.hero-panel-footer {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  margin-top: var(--sp-16);
  padding-top: var(--sp-16);
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

/* ── Page Hero (inner pages) ────────────────────────────────── */

.page-hero {
  padding: var(--sp-64) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: var(--sp-12); }
.page-hero h1 { margin-bottom: var(--sp-12); }
.page-hero p {
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
}

/* ── Sections ────────────────────────────────────────────────── */

section { padding: var(--sp-96) 0; }

.bg-surface { background: var(--surface); }
.bg-alt     { background: var(--surface-alt); }

/* ── Service cards ───────────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-32);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.service-card:hover {
  box-shadow: 0 4px 24px rgba(15,23,42,0.08);
  transform: translateY(-2px);
}
.service-card.featured {
  border-color: var(--accent);
  background: var(--accent-light);
}
.service-card.featured:hover {
  box-shadow: 0 4px 24px rgba(14,116,144,0.15);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--sp-20);
}
.service-card.featured .service-icon {
  background: #fff;
  border-color: rgba(14,116,144,0.2);
}

.service-card h3 {
  margin-bottom: var(--sp-12);
}
.service-card p {
  color: var(--muted);
  font-size: 15px;
}
.service-tag {
  display: inline-block;
  margin-top: var(--sp-16);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 999px;
}
.service-card.featured .service-tag { background: #fff; }

/* Services detail page */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-48);
  align-items: flex-start;
  padding: var(--sp-64) 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-meta { position: sticky; top: calc(var(--nav-height) + 24px); }
.service-detail-meta .service-icon { margin-bottom: var(--sp-16); }
.service-detail-meta h2 { margin-bottom: var(--sp-8); }
.service-detail-meta .btn { margin-top: var(--sp-24); }
.service-detail-content h3 {
  margin-top: var(--sp-32);
  margin-bottom: var(--sp-12);
  font-size: 17px;
}
.service-detail-content h3:first-child { margin-top: 0; }
.service-detail-content p {
  color: var(--muted);
  margin-bottom: var(--sp-16);
}
.service-detail-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}
.service-detail-content ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-8);
  font-size: 15px;
  color: var(--muted);
}
.service-detail-content ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Testimonials ─────────────────────────────────────────────── */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-24);
}
.testi-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: var(--sp-16);
}
.testi-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--sp-20);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
}
.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.testi-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── About ──────────────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-64);
  align-items: center;
}
.about-content h2 { margin-bottom: var(--sp-16); }
.about-content p {
  color: var(--muted);
  margin-bottom: var(--sp-16);
}
.about-content .btn { margin-top: var(--sp-8); }

.trust-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-20);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-16);
}
.trust-item-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.trust-item-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.trust-item-text span {
  font-size: 14px;
  color: var(--muted);
}

/* ── CTA strip ───────────────────────────────────────────────── */

.cta-strip {
  background: var(--accent);
  padding: var(--sp-64) 0;
  text-align: center;
}
.cta-strip h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: var(--sp-12);
}
.cta-strip p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  margin-bottom: var(--sp-32);
}
.btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}
.btn-white:hover {
  background: #f0fdff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* ── Contact form ─────────────────────────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-64);
  align-items: flex-start;
}
.contact-info h2 { margin-bottom: var(--sp-12); }
.contact-info p {
  color: var(--muted);
  margin-bottom: var(--sp-32);
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-20);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-12);
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.contact-item-text span, .contact-item-text a {
  font-size: 14px;
  color: var(--muted);
}
.contact-item-text a:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-32);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.form-group.full,
.form-group-full { grid-column: 1 / -1; }
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
select {
  font-family: var(--font-body);
  font-size: 14px;
  padding: var(--sp-12) var(--sp-16);
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,116,144,0.12);
  background-color: var(--surface);
}

input[type="text"],
input[type="email"],
textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: var(--sp-12) var(--sp-16);
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,116,144,0.12);
  background: var(--surface);
}
input::placeholder, textarea::placeholder { color: var(--muted); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: var(--sp-8); }
.form-fallback {
  margin-top: var(--sp-16);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.form-fallback a { color: var(--accent); }
.form-fallback a:hover { text-decoration: underline; }

/* Honeypot — hidden from humans, visible to bots */
.bot-field { display: none !important; }

/* ── Footer ──────────────────────────────────────────────────── */

.site-footer {
  background: var(--text);
  padding: var(--sp-48) 0 var(--sp-32);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-48);
  margin-bottom: var(--sp-48);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-12);
}
.footer-brand span { color: rgba(14,116,144,0.9); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-20);
}
.footer-email a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-email a:hover { color: #fff; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-16);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  padding-top: var(--sp-24);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ── Thank-you + 404 ─────────────────────────────────────────── */

.centered-page {
  min-height: calc(100vh - var(--nav-height) - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-96) var(--sp-24);
}
.centered-page-inner { max-width: 520px; }
.centered-page-icon {
  font-size: 48px;
  margin-bottom: var(--sp-24);
  line-height: 1;
}
.centered-page-icon--muted {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  color: var(--border);
  letter-spacing: -0.04em;
}
.centered-page h1 { margin-bottom: var(--sp-12); font-size: clamp(28px, 4vw, 42px); }
.centered-page p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: var(--sp-32);
}
.centered-page .btn { margin: var(--sp-8); }

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 900px) {
  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: var(--sp-32); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-meta { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  h1 { font-size: clamp(26px, 7vw, 36px); }

  .hero { padding: var(--sp-64) 0; }
  .hero-body { grid-template-columns: 1fr; gap: var(--sp-32); }

  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .cta-strip { padding: var(--sp-48) 0; }
}

@media (max-width: 580px) {
  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-32); }
  .footer-bottom { flex-direction: column; gap: var(--sp-8); text-align: center; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
