/* =========================================================
   MAK'D IT Solutions — Design System
   Premium B2B • Dark + light sections • Mobile-first
   ========================================================= */

:root {
  /* Brand */
  --ink:        #0A1326;   /* deep navy — dark sections / sidebar feel */
  --ink-2:      #0E1B36;
  --ink-3:      #13264a;
  --teal:       #00CBB4;   /* primary accent */
  --teal-600:   #06b39f;
  --teal-700:   #0a8c7d;
  --blue:       #2563EB;   /* secondary accent for gradients */
  --cyan:       #22d3ee;

  /* Neutrals */
  --bg:         #ffffff;
  --bg-soft:    #f6f8fb;
  --bg-soft-2:  #eef2f8;
  --line:       #e4e9f1;
  --text:       #0f1b2d;
  --muted:      #56657a;
  --muted-2:    #7a8aa0;
  --white:      #ffffff;

  /* Effects */
  --radius:     16px;
  --radius-sm:  12px;
  --radius-lg:  24px;
  --shadow-sm:  0 1px 2px rgba(13,26,46,.06), 0 1px 1px rgba(13,26,46,.04);
  --shadow:     0 10px 30px -12px rgba(13,26,46,.18);
  --shadow-lg:  0 30px 60px -20px rgba(13,26,46,.28);
  --ring:       0 0 0 4px rgba(0,203,180,.18);

  --maxw:       1180px;
  --gut:        clamp(20px, 5vw, 56px);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Plus Jakarta Sans", var(--font);
}

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

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 .4em; color: var(--text); font-weight: 800; }
h1 { font-size: clamp(2rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
p  { margin: 0 0 1rem; color: var(--muted); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.grid { display: grid; gap: 24px; }
.center { text-align: center; }
.measure { max-width: 720px; }
.measure.center { margin-inline: auto; }

/* Dark surfaces */
.dark { background: var(--ink); color: #dbe4f0; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark p { color: #aab8cc; }
.soft { background: var(--bg-soft); }

/* ---------- Eyebrow / kicker ---------- */
.kicker {
  display: inline-block; max-width: 100%;
  font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-700); background: rgba(0,203,180,.10);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.dark .kicker { color: #5af0df; background: rgba(0,203,180,.14); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); }
.dark .lead { color: #b9c6d8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: .98rem; line-height: 1.15;
  padding: 14px 24px; border-radius: 12px; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; flex: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-600) 100%); color: #0A1326; font-weight: 800; box-shadow: 0 12px 24px -10px rgba(0,203,180,.6); }
.btn-primary:hover { box-shadow: 0 16px 30px -10px rgba(0,203,180,.7); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-700); }
.dark .btn-ghost, .hero .btn-ghost, .page-hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.22); }
.dark .btn-ghost:hover, .hero .btn-ghost:hover, .page-hero .btn-ghost:hover { border-color: var(--teal); color: #5af0df; }
.btn-wa { background: #25D366; color: #0A1326; font-weight: 800; }
.btn-wa:hover { filter: brightness(.97); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 30px; font-size: 1.02rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; color: var(--ink); }
.brand .logo {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  display: grid; place-items: center; color: var(--teal); font-weight: 900; font-size: .95rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.brand .logo span { background: linear-gradient(135deg,#00CBB4,#22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand small { display:block; font-size:.62rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--muted-2); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a, .nav-toggle-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 10px; font-weight: 600; font-size: .94rem; color: var(--text);
  transition: background .15s, color .15s;
}
.nav-links > li > a:hover, .nav-item:hover > .nav-toggle-link { background: var(--bg-soft); color: var(--teal-700); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Dropdown */
.nav-item { position: relative; }
.nav-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 280px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: .16s ease; z-index: 70;
}
.nav-item:hover .nav-menu, .nav-item:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu a { display: block; padding: 9px 12px; border-radius: 9px; font-size: .92rem; font-weight: 600; color: var(--text); }
.nav-menu a small { display: block; font-weight: 500; font-size: .76rem; color: var(--muted-2); margin-top: 1px; }
.nav-menu a:hover { background: var(--bg-soft); color: var(--teal-700); }

.hamburger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ""; display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px; margin: 0 auto; position: relative; transition: .2s;
}
.hamburger span::before { position: absolute; top: -6px; } .hamburger span::after { position: absolute; top: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 8%, rgba(0,203,180,.22), transparent 60%),
    radial-gradient(50% 50% at 12% 90%, rgba(37,99,235,.20), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; padding-top: clamp(48px, 7vw, 92px); padding-bottom: clamp(48px, 7vw, 92px); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .hl { background: linear-gradient(120deg,#00CBB4,#22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: #c3d0e2; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: #9fb0c7; font-size: .9rem; }
.hero-meta b { color: #fff; font-family: var(--display); font-size: 1.35rem; display: block; line-height: 1; margin-bottom: 4px; }

/* Hero card stack */
.hero-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px; padding: 22px; box-shadow: var(--shadow-lg); backdrop-filter: blur(6px);
}
.hero-card h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.svc-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.svc-mini div { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: #d7e0ee; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 11px; padding: 11px 12px; }
.svc-mini .ic { color: var(--teal); flex: none; }

/* ---------- Trust bar ---------- */
.trustbar { border-bottom: 1px solid var(--line); background: #fff; }
.trustbar .row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 32px; padding: 20px 0; }
.trust-pill { display: inline-flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 600; color: var(--muted); }
.trust-pill .ic { color: var(--teal-700); }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfe9e4; }
.card .ic-wrap {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(0,203,180,.14), rgba(37,99,235,.10)); color: var(--teal-700);
}
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { font-size: .95rem; margin-bottom: 16px; }
.card .card-link { margin-top: auto; font-weight: 700; font-size: .9rem; color: var(--teal-700); display: inline-flex; align-items: center; gap: 6px; }
.card .card-link:hover { gap: 10px; }
.card ul.ticks { margin: 0 0 4px; }

ul.ticks li { position: relative; padding-left: 28px; margin-bottom: 9px; color: var(--muted); font-size: .95rem; }
ul.ticks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 6px;
  background: rgba(0,203,180,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2306b39f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.dark ul.ticks li { color: #c3d0e2; }

/* Industry cards (dark) */
.ind-card { background: var(--ink-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 26px; transition: .2s; }
.ind-card:hover { border-color: rgba(0,203,180,.4); transform: translateY(-3px); }
.ind-card .ic-wrap { background: rgba(0,203,180,.12); color: var(--teal); }
.ind-card h3 { color: #fff; }
.ind-card p { color: #aab8cc; font-size: .94rem; }

/* ---------- Section heading ---------- */
.sec-head { max-width: 660px; margin-bottom: 40px; }
.sec-head.center { margin-inline: auto; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .num { font-family: var(--display); font-weight: 800; font-size: 1.05rem; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--ink); color: var(--teal); margin-bottom: 14px; }
.step h3 { font-size: 1.1rem; }
.step p { font-size: .92rem; }

/* ---------- Case studies ---------- */
.case { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: .2s; }
.case:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.case .case-top { padding: 22px 24px; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%); color: #fff; }
.case .case-top .tag { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.case .case-top h3 { color: #fff; margin: 8px 0 0; font-size: 1.2rem; }
.case .case-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 12px; }
.case .case-body p { margin: 0; font-size: .93rem; }
.case .case-body .label { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; margin-bottom: 2px; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip { font-size: .76rem; font-weight: 600; color: var(--teal-700); background: rgba(0,203,180,.10); border: 1px solid rgba(0,203,180,.2); padding: 4px 10px; border-radius: 999px; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 44px 18px 4px; position: relative; font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--teal-700); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 4px 18px; margin: 0; font-size: .96rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--ink) 0%, var(--ink-3) 100%); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px); color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 90% 10%, rgba(0,203,180,.25), transparent 60%); }
.cta-band .inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { color: #fff; margin: 0 0 8px; }
.cta-band p { color: #b9c6d8; margin: 0; max-width: 520px; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px; font-family: inherit; font-size: .96rem; color: var(--text); background: #fcfdff; transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--muted-2); margin-top: 4px; }

/* ---------- Info / contact tiles ---------- */
.info-tile { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.info-tile .ic-wrap { width: 42px; height: 42px; flex: none; }
.info-tile b { display: block; font-family: var(--display); }
.info-tile a, .info-tile span { color: var(--muted); font-size: .95rem; }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .84rem; color: var(--muted-2); padding: 16px 0; }
.crumbs a { color: var(--muted); } .crumbs a:hover { color: var(--teal-700); }
.crumbs span { margin: 0 7px; }

/* Page hero (interior) */
.page-hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(55% 60% at 88% 0%, rgba(0,203,180,.20), transparent 60%); }
.page-hero .container { position: relative; padding: clamp(34px,5vw,64px) var(--gut) clamp(40px,6vw,72px); }
.page-hero h1 { color: #fff; max-width: 760px; }
.page-hero p { color: #c3d0e2; max-width: 660px; font-size: clamp(1.02rem,1.4vw,1.18rem); }
.page-hero .crumbs { color: #8fa1ba; } .page-hero .crumbs a { color: #b9c6d8; }

/* Split content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,56px); align-items: center; }
.split--form { grid-template-columns: 1fr .9fr; align-items: start; }
.prose h2 { margin-top: 0; }
.prose h3 { margin-top: 1.6em; }
.prose ul.ticks { margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #aab8cc; padding-top: 64px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer h5 { color: #fff; font-family: var(--display); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px; }
.site-footer a:not(.btn) { display: block; padding: 5px 0; font-size: .92rem; color: #aab8cc; }
.site-footer a:not(.btn):hover { color: var(--teal); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 22px 0 30px; font-size: .84rem; color: #7a8aa0; }

/* ---------- Floating CTAs ---------- */
.fab-stack { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); border: none; transition: transform .15s; }
.fab:hover { transform: scale(1.06); }
.fab-wa { background: #25D366; }
.fab-call { background: var(--teal-600); }
.mobile-bar { display: none; }

/* ---------- Helpers ---------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.mt-24{margin-top:24px}.mt-32{margin-top:32px}
.flex{display:flex}.gap-12{gap:12px}.gap-16{gap:16px}.wrap{flex-wrap:wrap}.aic{align-items:center}
.stat-row{display:flex;flex-wrap:wrap;gap:32px}
.stat b{font-family:var(--display);font-size:2rem;line-height:1;display:block;color:var(--text)}
.dark .stat b{color:#fff}
.stat span{font-size:.85rem;color:var(--muted-2)}
.badge-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.badge{display:inline-flex;align-items:center;gap:7px;font-size:.82rem;font-weight:600;color:var(--muted);background:#fff;border:1px solid var(--line);border-radius:999px;padding:7px 13px}
.dark .badge{color:#cdd9e8;background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.12)}

/* ---------- Icons (SVG sprite) ---------- */
.icon { width: 24px; height: 24px; flex: none; display: inline-block; vertical-align: middle; }
.ic-wrap .icon { width: 24px; height: 24px; }
.card-link { gap: 7px; }
.card-link .icon { width: 18px; height: 18px; transition: transform .15s ease; }
.card:hover .card-link .icon, .card-link:hover .icon { transform: translateX(3px); }
.btn .icon { width: 19px; height: 19px; }
.trust-pill .icon { width: 18px; height: 18px; color: var(--teal-700); }
.badge .icon { width: 15px; height: 15px; color: var(--teal-700); }
.dark .badge .icon { color: #5af0df; }
.nav-toggle-link .icon { width: 14px; height: 14px; opacity: .5; }
.info-tile .ic-wrap .icon { width: 20px; height: 20px; }
.svc-mini .icon { width: 17px; height: 17px; color: var(--teal); }
.fab .icon { width: 24px; height: 24px; }
.mobile-bar a .icon { width: 18px; height: 18px; }
.ic-wrap.warn { background: rgba(245,158,11,.13); color: #b45309; }
.ic-wrap.warn .icon { color: #b45309; }

/* ---------- Brand logo (uses your real logo file: /assets/img/logo.png) ---------- */
.brand { min-width: 0; }
.brand-logo { height: clamp(42px, 5vw, 56px); width: auto; max-width: 64vw; display: block; flex: none; }
.nav-cta, .hamburger { flex: none; }
/* Footer / dark backgrounds: show the colour logo on a clean white chip so it stays legible */
.logo-badge { display: inline-flex; background: #fff; padding: 9px 13px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.logo-badge .brand-logo { height: 38px; }
/* legacy inline mark (kept for favicon/OG generation only) */
.brand-mark { height: 30px; width: auto; display: block; flex: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 5px; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--ink); color: #fff; padding: 10px 18px; font-weight: 700; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { display: none; }
  .cards, .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .split, .split--form { grid-template-columns: 1fr; }
  .nav-links, .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .hamburger { display: grid; place-items: center; }

  /* Mobile menu */
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 72px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: 14px var(--gut) 22px;
  }
  .nav-links.open .nav-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 0 4px 10px; min-width: auto; }
  .nav-links.open > li > a, .nav-links.open .nav-toggle-link { padding: 12px 6px; font-size: 1rem; }

  .mobile-bar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -8px 24px -12px rgba(13,26,46,.2); }
  .mobile-bar a { flex: 1; text-align: center; padding: 13px 6px; font-weight: 700; font-size: .92rem; display: flex; align-items: center; justify-content: center; gap: 7px; }
  .mobile-bar a.m-wa { background: #25D366; color: #0A1326; }
  .mobile-bar a.m-call { color: var(--teal-700); }
  .mobile-bar a.m-quote { background: var(--ink); color: #fff; }
  .fab-stack { display: none; }
  body { padding-bottom: 52px; }
}
@media (max-width: 560px) {
  .cards, .cards--2, .cards--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta-band .inner { flex-direction: column; align-items: flex-start; }
  .hero-meta { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
