/* ================= ElektroFix — Servis elektronike ================= */
/* Design system reproduced 1:1 from the Claude Design source            */

:root {
  --teal: #0d7d86;
  --teal-dark: #0a5b62;
  --teal-soft: #e6f4f5;
  --teal-border: #9fd2d6;
  --ink: #171a20;
  --ink-2: #2b323b;
  --body: #eef1f4;
  --card: #ffffff;
  --card-border: #e3e8ec;
  --muted: #5b636d;
  --muted-2: #7a828d;
  --muted-3: #8792a0;
  --dark: #12202b;
  --footer: #0f1a22;
  --gold: #e0a72b;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
input, textarea, select, button { font-family: inherit; }
::selection { background: var(--teal); color: #fff; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: 'Sora', 'IBM Plex Sans', sans-serif; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.page { flex: 1; }

/* ================= Buttons ================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 11px; font-weight: 600; font-size: 16px;
  cursor: pointer; padding: 15px 28px; text-align: center; line-height: 1.1;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 24px rgba(13,125,134,0.4); }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.08); color: #f4f7f8; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); color: #fff; }
.btn-light { background: #fff; color: var(--teal); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.btn-light:hover { color: var(--teal-dark); }
.btn-sm { padding: 11px 18px; font-size: 14px; border-radius: 9px; box-shadow: none; }
.btn-block { width: 100%; }

/* ================= Header ================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #dde3e8;
}
.header-inner {
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; flex-shrink: 0; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px; background: var(--teal);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px;
  box-shadow: 0 4px 12px rgba(13,125,134,0.28); flex-shrink: 0;
}
.brand-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; color: var(--ink); line-height: 1.05; }
.brand-sub { font-size: 11px; color: var(--muted-2); letter-spacing: 0.04em; line-height: 1.05; margin-top: 1px; }
.main-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.main-nav a {
  font-size: 15px; font-weight: 500; color: #4b535d; cursor: pointer;
  padding: 8px 12px; border-radius: 8px; white-space: nowrap;
}
.main-nav a:hover { background: #f0f4f5; color: var(--teal); }
.main-nav a.active { color: var(--teal); background: var(--teal-soft); }
.cart-btn {
  position: relative; display: flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff; border: none; border-radius: 10px;
  padding: 10px 16px; font-weight: 600; font-size: 14px; cursor: pointer; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13,125,134,0.28); text-decoration: none;
}
.cart-btn:hover { background: var(--teal-dark); color: #fff; }
.cart-badge {
  min-width: 20px; height: 20px; border-radius: 10px; padding: 0 6px;
  background: rgba(255,255,255,0.25); color: #fff; font-size: 12px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-badge.has-items { background: #fff; color: var(--teal); }
.nav-toggle { display: none; }

/* ================= Generic sections / headings ================= */
.section { padding-top: 72px; padding-bottom: 72px; }
.section-white { background: #fff; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; color: var(--teal); text-transform: uppercase; margin-bottom: 12px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2, .h-section { font-weight: 700; font-size: 38px; margin: 0; letter-spacing: -0.02em; }
.center { text-align: center; }

/* ================= Page banner (dark) ================= */
.page-banner { background: var(--dark); color: #f4f7f8; }
.page-banner .wrap { padding-top: 60px; padding-bottom: 60px; }
.crumb { font-size: 13px; color: #8fb0b4; margin-bottom: 10px; }
.page-banner h1 { font-weight: 800; font-size: 44px; margin: 0 0 12px; letter-spacing: -0.02em; }
.page-banner h1.only { margin-bottom: 0; }
.page-banner p { font-size: 18px; color: #c3d3d6; margin: 0; max-width: 640px; }

/* ================= Hero ================= */
.hero { background: linear-gradient(160deg,#12202b 0%,#0f2c33 60%,#0d3b42 100%); color: #f4f7f8; }
.hero .wrap { padding-top: 80px; padding-bottom: 96px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 7px 14px; font-size: 13px; color: #a9d6db; margin-bottom: 24px;
}
.hero h1 { font-weight: 800; font-size: 52px; line-height: 1.05; margin: 0 0 20px; letter-spacing: -0.02em; }
.hero-lead { font-size: 19px; line-height: 1.6; color: #c3d3d6; margin: 0 0 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 30px; }
.hero-stats .lbl { font-size: 13px; color: #9fb3b6; }
.hero-media { border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 30px 60px rgba(0,0,0,0.35); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ================= Service cards (home) ================= */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--card-border); border-radius: 16px; padding: 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(18,32,43,0.08); }
.icon-badge {
  width: 48px; height: 48px; border-radius: 12px; background: var(--teal-soft); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px;
}
.card h3 { font-weight: 600; font-size: 20px; margin: 0 0 10px; }
.card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 14px; }
.card .price { font-size: 14px; font-weight: 600; color: var(--teal); }

/* ================= Steps ================= */
.step .step-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 44px; color: #cfe4e6; line-height: 1; margin-bottom: 14px; }
.step h3 { font-weight: 600; font-size: 18px; margin: 0 0 8px; }
.step p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ================= Why us (split) ================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media { border-radius: 18px; overflow: hidden; aspect-ratio: 5/4; border: 1px solid #d5dee2; box-shadow: 0 20px 44px rgba(18,32,43,0.12); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.why-title { font-weight: 700; font-size: 34px; margin: 0 0 24px; letter-spacing: -0.02em; }
.benefit-list { display: flex; flex-direction: column; gap: 20px; }
.benefit { display: flex; gap: 14px; }
.check {
  width: 26px; height: 26px; border-radius: 50%; background: var(--teal-soft); color: var(--teal);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
}
.check-sm { width: 24px; height: 24px; font-size: 13px; }
.benefit .b-title { font-weight: 600; font-size: 16px; margin-bottom: 3px; }
.benefit .b-text { font-size: 14px; line-height: 1.55; color: var(--muted); }

/* ================= Reviews ================= */
.review { background: #f6f8f9; border: 1px solid var(--card-border); border-radius: 16px; padding: 28px; }
.stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review p { font-size: 15px; line-height: 1.65; color: #3b424b; margin: 0 0 18px; }
.review .r-name { font-weight: 600; font-size: 14px; }
.review .r-city { font-size: 13px; color: var(--muted-2); }

/* ================= CTA banner ================= */
.cta-banner { background: linear-gradient(135deg,#0d7d86,#0a5b62); border-radius: 22px; padding: 56px; text-align: center; color: #fff; }
.cta-banner h2 { font-weight: 700; font-size: 34px; margin: 0 0 14px; letter-spacing: -0.02em; }
.cta-banner p { font-size: 18px; color: #cfeced; margin: 0 auto 28px; max-width: 560px; }

/* ================= Usluge (service detail rows) ================= */
.service-rows { display: flex; flex-direction: column; gap: 26px; }
.service-row {
  background: #fff; border: 1px solid var(--card-border); border-radius: 18px; padding: 34px;
  display: grid; grid-template-columns: 64px 1fr auto; gap: 24px; align-items: start;
}
.service-row .icon-lg {
  width: 64px; height: 64px; border-radius: 14px; background: var(--teal-soft); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.service-row h3 { font-weight: 700; font-size: 23px; margin: 0 0 10px; }
.service-row p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0 0 14px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: #f0f4f5; border: 1px solid #e0e7ea; border-radius: 999px; padding: 5px 12px; font-size: 13px; color: #4b535d; }
.price-col { text-align: right; white-space: nowrap; }
.price-col .from { font-size: 12px; color: var(--muted-2); }
.price-col .amount { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 24px; color: var(--teal); }
.info-card { background: #fff; border: 1px solid var(--card-border); border-radius: 18px; padding: 40px; text-align: center; }
.info-card h2 { font-weight: 700; font-size: 26px; margin: 0 0 10px; }
.info-card p { font-size: 16px; color: var(--muted); margin: 0 0 22px; }

/* ================= Trgovina (products) ================= */
.product { background: #fff; border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.product-media { aspect-ratio: 4/3; position: relative; overflow: hidden; background: #eef2f4; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product:hover .product-media img { transform: scale(1.04); }
.product-tag { position: absolute; top: 12px; left: 12px; background: var(--teal); color: #fff; font-size: 11px; font-weight: 600; border-radius: 6px; padding: 4px 9px; }
.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-weight: 600; font-size: 17px; margin: 0 0 6px; }
.product-body p { font-size: 13px; line-height: 1.5; color: var(--muted-2); margin: 0 0 16px; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px; color: var(--ink); }
.shop-note { font-size: 13px; color: var(--muted-3); margin-top: 28px; text-align: center; }

/* ================= Košarica ================= */
.cart-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item { background: #fff; border: 1px solid var(--card-border); border-radius: 14px; padding: 18px; display: grid; grid-template-columns: 72px 1fr auto; gap: 16px; align-items: center; }
.cart-thumb { width: 72px; height: 72px; border-radius: 10px; overflow: hidden; background: #eef2f4; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item .ci-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.cart-item .ci-unit { font-size: 13px; color: var(--muted-2); }
.link-remove { background: none; border: none; color: #c04848; font-size: 13px; cursor: pointer; padding: 4px 0 0; }
.link-remove:hover { text-decoration: underline; }
.qty { display: flex; align-items: center; border: 1px solid #dde3e8; border-radius: 8px; overflow: hidden; }
.qty button { background: #f4f6f8; border: none; width: 32px; height: 32px; font-size: 18px; cursor: pointer; color: #4b535d; }
.qty button:hover { background: #e6ebee; }
.qty span { width: 38px; text-align: center; font-weight: 600; font-size: 15px; }
.ci-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.ci-line { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; }
.summary { background: #fff; border: 1px solid var(--card-border); border-radius: 16px; padding: 26px; position: sticky; top: 96px; }
.summary h3 { font-weight: 700; font-size: 19px; margin: 0 0 18px; }
.sum-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--muted); margin-bottom: 10px; }
.sum-div { border-top: 1px solid var(--card-border); margin: 14px 0; }
.sum-total { display: flex; justify-content: space-between; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 22px; }
.field-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.fineprint { font-size: 12px; color: var(--muted-3); margin: 14px 0 0; text-align: center; }
input.field, textarea.field {
  width: 100%; border: 1px solid #dde3e8; border-radius: 9px; padding: 11px 13px; font-size: 14px;
  outline: none; color: var(--ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
input.field:focus, textarea.field:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,125,134,0.12); }
input.field.invalid, textarea.field.invalid { border-color: #c04848; box-shadow: 0 0 0 3px rgba(192,72,72,0.10); }
.empty-state { background: #fff; border: 1px solid var(--card-border); border-radius: 16px; padding: 56px; text-align: center; }
.empty-state .emoji { font-size: 44px; margin-bottom: 14px; }
.empty-state h2 { font-weight: 600; font-size: 22px; margin: 0 0 8px; }
.empty-state p { font-size: 15px; color: var(--muted-2); margin: 0 0 22px; }
.success-box { background: var(--teal-soft); border: 1px solid var(--teal-border); border-radius: 16px; padding: 40px; text-align: center; }
.success-box .tick { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 18px; }
.success-box h2 { font-weight: 700; font-size: 26px; margin: 0 0 10px; }
.success-box p { font-size: 16px; color: #3b535a; margin: 0 0 22px; }
.h-page { font-weight: 800; font-size: 38px; margin: 0 0 28px; letter-spacing: -0.02em; }

/* ================= O nama ================= */
.prose { max-width: 820px; margin: 0 auto; }
.prose .lead { font-size: 19px; line-height: 1.7; color: var(--ink-2); margin: 0 0 24px; }
.prose p { font-size: 16px; line-height: 1.75; color: #4b535d; margin: 0 0 20px; }
.stat-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 24px 0 44px; }
.stat-card { background: #fff; border: 1px solid var(--card-border); border-radius: 14px; padding: 26px; text-align: center; }
.stat-card .big { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 32px; color: var(--teal); }
.stat-card .small { font-size: 14px; color: var(--muted); margin-top: 4px; }
.values { display: flex; flex-direction: column; gap: 16px; }
.value-row { display: flex; gap: 14px; }
.value-row b { font-weight: 600; }
.value-row span.txt { color: #4b535d; }

/* ================= Kontakt ================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info h2 { font-weight: 700; font-size: 24px; margin: 0 0 20px; }
.info-list { display: flex; flex-direction: column; gap: 18px; }
.info-list .label { font-size: 13px; color: var(--muted-2); margin-bottom: 2px; }
.info-list .value { font-size: 16px; font-weight: 600; color: var(--ink-2); }
.info-list .value.sm { font-size: 15px; line-height: 1.55; font-weight: 500; }
.contact-map { margin-top: 26px; border-radius: 14px; overflow: hidden; border: 1px solid #d5dee2; aspect-ratio: 16/9; }
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
.contact-form { background: #fff; border: 1px solid var(--card-border); border-radius: 18px; padding: 32px; }
.contact-form h2 { font-weight: 700; font-size: 22px; margin: 0 0 18px; }
.form-note { font-size: 12px; color: var(--muted-3); margin: 4px 0 0; }
.notice { background: var(--teal-soft); border: 1px solid var(--teal-border); border-radius: 12px; padding: 22px; text-align: center; color: #2b535a; font-size: 15px; }

/* ================= Legal pages ================= */
.legal-meta { font-size: 13px; color: var(--muted-3); margin: 0 0 32px; }
.legal-section { margin-bottom: 30px; }
.legal-section h2 { font-weight: 700; font-size: 21px; margin: 0 0 12px; color: var(--ink); }
.legal-section p { font-size: 15px; line-height: 1.75; color: #424a54; margin: 0 0 12px; }

/* ================= Footer ================= */
.site-footer { background: var(--footer); color: #c3ced3; }
.site-footer .wrap { padding-top: 56px; padding-bottom: 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-mark { width: 38px; height: 38px; font-size: 19px; box-shadow: none; }
.footer-brand .fb-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; color: #fff; }
.footer-about { font-size: 14px; line-height: 1.6; color: #8b979e; margin: 0 0 16px; max-width: 320px; }
.footer-addr { font-size: 13px; color: #77848b; line-height: 1.6; }
.footer-addr a { color: #9fd2d6; }
.footer-col h4 { font-weight: 600; font-size: 14px; color: #fff; margin: 0 0 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: #a9b4ba; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #22303a; margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #6e7a81; }

/* ================= Cookie banner ================= */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 960px; margin: 0 auto;
  background: #fff; border: 1px solid #dde3e8; border-radius: 16px;
  box-shadow: 0 16px 48px rgba(15,26,34,0.22); padding: 22px 26px; z-index: 100;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.cookie-banner .txt { flex: 1; min-width: 280px; font-size: 14px; line-height: 1.6; color: #424a54; }
.cookie-banner .actions { display: flex; gap: 10px; }
.cookie-banner button { border-radius: 9px; padding: 11px 20px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; }
.cookie-accept { background: var(--teal); color: #fff; }
.cookie-accept:hover { background: var(--teal-dark); }
.cookie-decline { background: #f0f4f5; color: #424a54; border: 1px solid #dde3e8 !important; }
.cookie-decline:hover { background: #e6ecee; }

/* ================= Toast ================= */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 12px;
  font-size: 14px; font-weight: 500; box-shadow: 0 12px 32px rgba(0,0,0,0.28);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
  display: flex; align-items: center; gap: 10px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .toast-tick { width: 22px; height: 22px; border-radius: 50%; background: var(--teal); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; }

.hidden { display: none !important; }

/* ================= Responsive ================= */
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; padding-bottom: 64px; }
  .hero h1 { font-size: 40px; }
  .hero-media { aspect-ratio: 16/10; max-height: 360px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-head h2, .h-section { font-size: 30px; }
}
@media (max-width: 760px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid #dde3e8; padding: 10px 16px 16px;
    box-shadow: 0 16px 32px rgba(15,26,34,0.12);
  }
  .main-nav.open a { padding: 12px 14px; font-size: 16px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 10px; border: 1px solid #dde3e8;
    background: #fff; cursor: pointer; flex-shrink: 0;
  }
  .nav-toggle span { position: relative; width: 18px; height: 2px; background: var(--ink); display: block; }
  .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); }
  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after { top: 6px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 40px 26px; }
  .cta-banner h2 { font-size: 26px; }
  .service-row { grid-template-columns: 52px 1fr; }
  .service-row .price-col { grid-column: 1 / -1; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-banner h1 { font-size: 34px; }
  .hero h1 { font-size: 34px; }
}
@media (max-width: 480px) {
  .wrap { padding-left: 16px; padding-right: 16px; }
  .brand-sub { display: none; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .section { padding-top: 52px; padding-bottom: 52px; }
}
