/* Tiszta Verda — shared stylesheet (self-contained, no external fonts/CDN) */

:root {
  --bg: #f2f5f5;
  --ink: #101a1d;
  --navy: #0f2429;
  --navy-deep: #0a1518;
  --teal: #0b6f8c;
  --teal-dark: #08556c;
  --teal-deep: #0b3d4e;
  --sky: #4fc3e8;
  --sky-light: #7ad4f0;
  --muted-1: #43565b;
  --muted-2: #33474c;
  --muted-3: #5d7075;
  --muted-4: #8b9b9f;
  --muted-5: #7d8f93;
  --border-1: #e2e8e8;
  --border-2: #cfd7d8;
  --border-3: #d9e0e0;
  --border-4: #eef2f2;
  --tint: #eef4f5;
  --gold: #e0a33c;
  --cream: #f7fafa;
  --radius: 2px;
  --font-head: Archivo, "Segoe UI", Arial, sans-serif;
  --font-body: Manrope, "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
img { max-width: 100%; display: block; }
::selection { background: #bfe6f1; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; }

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; color: var(--ink); padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Photo placeholders / images ---------- */
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  background: #eef2f2;
}
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph-dark { border-color: #33565e; background: #1b3b42; }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--navy); color: #cfeaf2; padding: 10px 24px;
  display: flex; justify-content: center; gap: 18px; align-items: center;
  font-size: 13.5px; letter-spacing: .02em; flex-wrap: wrap; text-align: center;
}
.promo-bar strong { font-weight: 600; }
.promo-bar .sep { opacity: .55; }
.promo-bar .hours { opacity: .8; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(242,245,245,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-3);
}
.site-header .bar { display: flex; align-items: center; gap: 28px; padding: 14px 28px; }
.brand { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.brand .name { font-family: var(--font-head); font-weight: 900; font-size: 21px; letter-spacing: -.02em; color: var(--ink); }
.brand .tag { font-size: 9.5px; letter-spacing: .28em; color: var(--muted-3); margin-top: 5px; text-transform: uppercase; }

.main-nav { display: flex; gap: 20px; align-items: center; margin-left: auto; flex-wrap: wrap; }
.main-nav a { font-size: 14.5px; font-weight: 600; color: #22343a; padding: 4px 0; border-bottom: 2px solid transparent; text-decoration: none; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--teal); border-bottom-color: var(--teal); }
.nav-toggle { display: none; }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.phone-link { font-size: 14.5px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.phone-link:hover { text-decoration: none; color: var(--teal); }

.cart-btn {
  position: relative; background: var(--navy); color: #fff; border: 0; border-radius: var(--radius);
  padding: 11px 18px; font-size: 13.5px; font-weight: 700; letter-spacing: .02em;
}
.cart-btn:hover { background: var(--teal); }
.cart-count {
  position: absolute; top: -7px; right: -7px; background: var(--teal); color: #fff;
  min-width: 20px; height: 20px; border-radius: 10px; font-size: 11.5px;
  display: flex; align-items: center; justify-content: center; padding: 0 5px; border: 2px solid var(--bg);
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; cursor: pointer; border-radius: var(--radius); font-weight: 800; font-size: 15px; letter-spacing: .02em; padding: 16px 28px; border: 0; text-decoration: none; }
.btn:hover { text-decoration: none; }
.btn-accent { background: var(--sky); color: #062126; }
.btn-accent:hover { background: var(--sky-light); color: #062126; }
.btn-outline-dark { border: 1px solid #4c7079; color: #dcecf1; background: transparent; }
.btn-outline-dark:hover { border-color: #9fc9d4; color: #fff; }
.btn-outline-light { border: 1px solid var(--border-2); color: var(--ink); background: transparent; }
.btn-outline-light:hover { border-color: var(--teal); color: var(--teal); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--teal); color: #fff; }
.btn-white { background: #fff; color: var(--teal-deep); }
.btn-white:hover { background: #d6eef6; }
.btn-sm { padding: 11px 16px; font-size: 13px; }
.btn-block { width: 100%; }
.link-arrow { cursor: pointer; font-weight: 700; color: var(--teal); font-size: 14.5px; }

/* ---------- Sections ---------- */
.section { padding: 88px 28px; }
.section-sm { padding: 64px 28px; }
.section-tight { padding: 72px 28px; }
.section-dark { background: var(--navy); color: #eef6f8; }
.section-white { background: #fff; }
.section-border-y { border-top: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1); }
.section-border-b { border-bottom: 1px solid var(--border-1); }
.section-teal { background: var(--teal); color: #fff; }
.eyebrow { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.eyebrow-dark { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #7fb3c1; font-weight: 700; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; border: 1px solid #33565e; border-radius: var(--radius); padding: 7px 13px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #9fc9d4; }

.display { font-family: var(--font-head); font-weight: 900; font-size: 64px; line-height: 1.02; letter-spacing: -.03em; margin: 26px 0 0; }
.page-title { font-family: var(--font-head); font-weight: 900; font-size: 52px; letter-spacing: -.03em; margin: 14px 0 16px; }
.title-lg { font-family: var(--font-head); font-weight: 900; font-size: 42px; letter-spacing: -.03em; }
.title-md { font-family: var(--font-head); font-weight: 900; font-size: 36px; letter-spacing: -.03em; }
.title-sm { font-family: var(--font-head); font-weight: 800; font-size: 27px; letter-spacing: -.02em; }
.lede { font-size: 19px; line-height: 1.6; color: #b9d3da; max-width: 560px; margin: 24px 0 0; }
.lede-page { font-size: 18px; color: #b9d3da; max-width: 720px; margin: 0; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-center { align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--border-1); border-radius: var(--radius); }
.card:hover { border-color: var(--teal); }
.card-pad { padding: 32px; }
.stat { }
.stat-num { font-family: var(--font-head); font-size: 38px; font-weight: 900; letter-spacing: -.03em; color: var(--teal); }
.stat-label { font-size: 13.5px; color: var(--muted-3); margin-top: 4px; }

.service-card { background: #fff; border: 1px solid var(--border-1); padding: 32px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 14px; }
.service-card:hover { border-color: var(--teal); }
.service-index { font-family: ui-monospace, Menlo, monospace; font-size: 12px; color: var(--muted-4); }
.service-price { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border-4); font-family: var(--font-head); font-weight: 800; font-size: 20px; }

.step { border-top: 3px solid var(--navy); padding-top: 18px; }
.step-label { font-family: var(--font-head); font-weight: 900; font-size: 15px; letter-spacing: .1em; color: var(--teal); }
.step-title { font-family: var(--font-head); font-size: 19px; margin: 10px 0 8px; }
.step-text { margin: 0; font-size: 14.5px; color: var(--muted-1); }

.review { border: 1px solid var(--border-1); padding: 30px; border-radius: var(--radius); background: #fff; }
.review .stars { color: var(--gold); letter-spacing: .1em; }
.review p { font-size: 15.5px; color: #22343a; margin: 16px 0 20px; }
.review .who { font-size: 13.5px; color: var(--muted-3); }

.tag-pill { background: var(--tint); padding: 6px 12px; border-radius: var(--radius); font-size: 13px; display: inline-block; }
.badge-popular { background: var(--sky); color: #062126; font-size: 11.5px; font-weight: 800; letter-spacing: .12em; padding: 5px 12px; border-radius: var(--radius); }

.price-table { background: #fff; border: 1px solid var(--border-1); border-radius: var(--radius); overflow: hidden; }
.price-table .head { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; background: var(--navy); color: #cfeaf2; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.price-table .head > div, .price-table .row > div { padding: 14px 20px; }
.price-table .row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; border-top: 1px solid var(--border-4); font-size: 15px; }
.price-table .row:hover { background: var(--cream); }
.price-table .row .name { font-weight: 600; padding: 15px 20px; }
.price-table .row .cell { color: var(--muted-1); padding: 15px 20px; }

.plan-card { background: #fff; border: 1px solid var(--border-1); padding: 32px; border-radius: var(--radius); position: relative; }
.plan-card.featured { background: var(--teal); color: #fff; border: none; }
.plan-kicker { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-3); font-weight: 700; }
.plan-card.featured .plan-kicker { color: #bfe6f1; }
.plan-title { font-family: var(--font-head); font-size: 26px; margin: 10px 0 4px; }
.plan-price { font-family: var(--font-head); font-weight: 900; font-size: 38px; letter-spacing: -.03em; margin: 12px 0 20px; }
.plan-list { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--muted-1); }
.plan-card.featured .plan-list { color: #e2f4fa; }
.plan-list .off { color: #a9b6b9; }
.plan-time { margin-top: 24px; font-size: 13px; color: var(--muted-4); }
.plan-card.featured .plan-time { color: #bfe6f1; }

.blog-card { cursor: pointer; background: #fff; border: 1px solid var(--border-1); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--teal); }
.blog-card .thumb { height: 150px; }
.blog-card.list .thumb { height: 160px; }
.blog-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-tag { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.blog-title { font-family: var(--font-head); font-size: 20px; line-height: 1.25; margin: 10px 0; letter-spacing: -.01em; }
.blog-card.list .blog-title { font-size: 21px; }
.blog-excerpt { margin: 0; font-size: 14.5px; color: var(--muted-1); }
.blog-meta { margin-top: auto; padding-top: 16px; font-size: 12.5px; color: var(--muted-4); }

.team-card { background: #fff; border: 1px solid var(--border-1); border-radius: var(--radius); overflow: hidden; }
.team-card .thumb { height: 220px; }
.team-card .body { padding: 22px; }
.team-name { font-family: var(--font-head); font-size: 18px; }
.team-role { font-size: 13.5px; color: var(--teal); margin-top: 4px; }
.team-bio { margin: 12px 0 0; font-size: 14.5px; color: var(--muted-1); }

.about-point { display: flex; gap: 14px; }
.about-point .arrow { color: var(--teal); font-weight: 900; }

.cta-band { padding: 80px 28px; background: var(--teal); color: #fff; }
.cta-band .row { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-strip { max-width: 1240px; margin: 44px auto 0; background: var(--navy); color: #dcecf1; padding: 36px; border-radius: var(--radius); display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--border-1); border-radius: var(--radius); }
.faq-q { cursor: pointer; padding: 22px 26px; display: flex; justify-content: space-between; gap: 20px; align-items: center; border: 0; background: transparent; width: 100%; text-align: left; }
.faq-q:hover { background: var(--cream); }
.faq-q strong { font-family: var(--font-head); font-size: 18.5px; font-weight: 700; color: var(--ink); }
.faq-sign { font-family: var(--font-head); font-size: 24px; color: var(--teal); line-height: 1; flex-shrink: 0; }
.faq-a { margin: 0; padding: 0 26px 24px; font-size: 16px; color: var(--muted-1); max-width: 760px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-sign { }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; font-weight: 600; }
.field input, .field select, .field textarea { border: 1px solid var(--border-2); padding: 12px; font-size: 15px; border-radius: var(--radius); font-weight: 400; background: #fff; }
.field textarea { resize: vertical; }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted-1); line-height: 1.5; }
.checkline input { margin-top: 3px; }
.form-note { margin: 14px 0 0; font-size: 12.5px; color: var(--muted-5); }
.thanks { padding: 40px 0; text-align: center; }
.thanks .big { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: var(--teal); }
.thanks p { font-size: 16px; color: var(--muted-1); margin: 14px auto 0; max-width: 420px; }

.info-card { background: #fff; border: 1px solid var(--border-1); padding: 30px; border-radius: var(--radius); }
.info-card h3 { font-family: var(--font-head); font-size: 20px; margin: 0 0 16px; }
.hours-row { display: flex; justify-content: space-between; font-size: 15px; }

/* ---------- Legal / article pages ---------- */
.legal-page { max-width: 860px; margin: 0 auto; }
.legal-page h1 { font-family: var(--font-head); font-weight: 900; font-size: 40px; letter-spacing: -.03em; margin: 0 0 10px; }
.legal-page .updated { color: var(--muted-3); margin: 0 0 34px; font-size: 14.5px; }
.legal-page h2 { font-family: var(--font-head); font-size: 23px; margin: 40px 0 10px; }
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page p { color: var(--muted-2); margin: 0 0 22px; }
.legal-card { background: #fff; border: 1px solid var(--border-1); padding: 34px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 14px; font-size: 15.5px; color: var(--muted-2); }

.article { max-width: 760px; margin: 0 auto; }
.article .back { cursor: pointer; font-size: 13.5px; font-weight: 700; color: var(--teal); }
.article .tag { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-top: 26px; }
.article h1 { font-family: var(--font-head); font-weight: 900; font-size: 42px; line-height: 1.1; letter-spacing: -.03em; margin: 12px 0 14px; }
.article .meta { font-size: 13.5px; color: var(--muted-4); padding-bottom: 26px; border-bottom: 1px solid #dde4e4; }
.article .cover { height: 300px; margin: 32px 0; }
.article .lead { font-size: 19px; line-height: 1.65; color: #22343a; font-weight: 500; }
.article h2 { font-family: var(--font-head); font-size: 26px; letter-spacing: -.02em; margin: 38px 0 12px; }
.article p { font-size: 16.5px; line-height: 1.7; color: #33474c; margin: 0 0 18px; }
.article .cta { margin-top: 44px; background: var(--navy); color: #dcecf1; padding: 32px; border-radius: var(--radius); }
.article .cta h3 { font-family: var(--font-head); font-size: 22px; margin: 0 0 10px; }
.article .cta p { margin: 0 0 20px; color: #9fc9d4; }

/* ---------- Shop ---------- */
.shop-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; align-items: center; }
.filter-chip { cursor: pointer; border: 1px solid var(--border-2); background: #fff; padding: 9px 16px; font-size: 13.5px; font-weight: 600; border-radius: var(--radius); text-decoration: none; color: var(--ink); }
.filter-chip:hover, .filter-chip[aria-current="true"] { border-color: var(--teal); color: var(--teal); text-decoration: none; }
.shop-count { margin-left: auto; font-size: 13.5px; color: var(--muted-3); }
.product-card { background: #fff; border: 1px solid var(--border-1); border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; }
.product-card:hover { border-color: var(--teal); }
.product-card .thumb { height: 200px; position: relative; }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--navy); color: #cfeaf2; font-size: 11px; font-weight: 700; letter-spacing: .1em; padding: 5px 10px; }
.product-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-cat { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-4); font-weight: 700; }
.product-name { font-family: var(--font-head); font-size: 19px; margin: 0; line-height: 1.3; }
.product-desc { margin: 0; font-size: 14px; color: var(--muted-1); }
.product-foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price { font-family: var(--font-head); font-weight: 900; font-size: 20px; }
.product-stock { font-size: 12px; color: var(--muted-5); }
.perks { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; background: #fff; border: 1px solid var(--border-1); padding: 28px; border-radius: var(--radius); font-size: 14px; }
.perks .perk-sub { color: var(--muted-3); }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 60; display: none; justify-content: flex-end; }
.cart-overlay.open { display: flex; }
.cart-scrim { position: absolute; inset: 0; background: rgba(9,22,26,.55); }
.cart-panel { position: relative; width: 430px; max-width: 92vw; background: var(--cream); height: 100%; display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(9,22,26,.25); animation: tvIn .25s ease; }
.cart-head { padding: 24px 26px; border-bottom: 1px solid var(--border-1); display: flex; justify-content: space-between; align-items: center; background: #fff; }
.cart-head strong { font-family: var(--font-head); font-size: 20px; }
.cart-close { cursor: pointer; font-size: 22px; color: var(--muted-3); line-height: 1; background: none; border: 0; }
.cart-body { flex: 1; overflow: auto; padding: 22px 26px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { padding: 30px 0; text-align: center; color: var(--muted-3); }
.cart-line { background: #fff; border: 1px solid var(--border-1); border-radius: var(--radius); padding: 16px; display: flex; gap: 14px; }
.cart-line .thumb { width: 56px; height: 56px; flex-shrink: 0; background: #eef2f2; border: 1px solid #d8dfe0; }
.cart-line .info { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.cart-line .name { font-size: 14.5px; font-weight: 600; line-height: 1.35; }
.cart-line .unit { font-size: 12.5px; color: var(--muted-5); }
.qty-ctrl { display: flex; align-items: center; border: 1px solid var(--border-2); }
.qty-ctrl button { cursor: pointer; padding: 3px 10px; font-weight: 700; color: var(--teal); background: none; border: 0; }
.qty-ctrl .qty { padding: 3px 8px; font-size: 14px; min-width: 26px; text-align: center; }
.cart-line-foot { display: flex; align-items: center; gap: 12px; }
.cart-line .total { font-family: var(--font-head); font-size: 16px; margin-left: auto; }
.cart-line .remove { cursor: pointer; font-size: 12px; color: var(--muted-4); text-decoration: underline; background: none; border: 0; }
.cart-foot { border-top: 1px solid var(--border-1); background: #fff; padding: 22px 26px; }
.cart-foot .line { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted-3); margin-bottom: 8px; }
.cart-foot .total-line { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-foot .total-line strong { font-family: var(--font-head); font-size: 24px; }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; background: var(--navy); color: #dcecf1; padding: 22px 28px; box-shadow: 0 -10px 40px rgba(9,22,26,.3); display: none; }
.cookie-banner.visible { display: block; }
.cookie-banner .row { max-width: 1240px; margin: 0 auto; display: flex; gap: 28px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-size: 14px; max-width: 720px; line-height: 1.6; }
.cookie-banner a { color: #7fd7f0; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cookie-essential { background: transparent; border: 1px solid #4c7079; color: #dcecf1; padding: 12px 20px; font-weight: 700; font-size: 13.5px; border-radius: var(--radius); }
.btn-cookie-essential:hover { border-color: #9fc9d4; }
.btn-cookie-all { background: var(--sky); border: 0; color: #062126; padding: 12px 22px; font-weight: 800; font-size: 13.5px; border-radius: var(--radius); }
.btn-cookie-all:hover { background: var(--sky-light); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #a8c2c9; padding: 64px 28px 32px; }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.footer-brand { font-family: var(--font-head); font-weight: 900; font-size: 20px; color: #fff; letter-spacing: -.02em; }
.footer-desc { margin: 14px 0 0; font-size: 14.5px; line-height: 1.65; }
.footer-contact { margin-top: 20px; font-size: 14px; line-height: 1.8; }
.footer-contact a { color: #7fd7f0; }
.footer-col-title { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: #5f7c84; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer-links a { color: #a8c2c9; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom { max-width: 1240px; margin: 44px auto 0; padding-top: 24px; border-top: 1px solid #1d3339; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: #6f8d95; }
.footer-bottom-actions { display: flex; gap: 18px; align-items: center; }
.footer-bottom-actions button { background: none; border: 0; color: #6f8d95; cursor: pointer; text-decoration: underline; font-size: 12.5px; font-family: inherit; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr !important; }
  .display { font-size: 46px; }
  .page-title { font-size: 38px; }
  .title-lg { font-size: 32px; }
}

@media (max-width: 720px) {
  .site-header .bar { flex-wrap: wrap; padding: 12px 20px; }
  .main-nav { width: 100%; order: 3; display: none; gap: 14px 18px; padding-top: 10px; border-top: 1px solid var(--border-3); margin-top: 10px; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; margin-left: auto; background: none; border: 1px solid var(--border-2); border-radius: var(--radius); padding: 9px 12px; font-size: 13px; font-weight: 700; }
  .header-actions { margin-left: auto; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .price-table .head, .price-table .row { grid-template-columns: 1.4fr 1fr 1fr 1fr; font-size: 12.5px; }
  .price-table .head > div, .price-table .row > div { padding: 10px 8px; }
  .cta-band .row, .cta-strip { flex-direction: column; align-items: flex-start; }
  .display { font-size: 36px; }
  .section, .section-tight { padding: 56px 20px; }
  .cart-panel { width: 100vw; max-width: 100vw; }
}

@media (max-width: 480px) {
  .perks { grid-template-columns: 1fr; }
}

@media print {
  .site-header, .cookie-banner, .cart-overlay, .promo-bar { display: none; }
}
