/* ============================================================
   Farmacie Online Italia — shared styles
   ============================================================ */

:root {
  /* Brand */
  --green:        #0E8F4E;
  --green-700:    #0B7B43;
  --green-800:    #096537;
  --green-tint:   #F1F8F3;
  --green-tint-2: #E4F1E9;
  --teal:         #0E9C97;
  --teal-700:     #0B827E;
  --teal-tint:    #EAF6F5;

  /* Neutrals (warm-green tinted) */
  --bg:        #FFFFFF;
  --surface:   #FFFFFF;
  --soft:      #F6F9F7;
  --ink:       #16241D;
  --ink-2:     #2E4439;
  --muted:     #5E6F66;
  --muted-2:   #8A988F;
  --border:    #E5ECE7;
  --border-2:  #D6E0D9;

  /* Effects */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(16,40,28,.05), 0 4px 12px rgba(16,40,28,.04);
  --shadow:    0 2px 6px rgba(16,40,28,.05), 0 14px 34px rgba(16,40,28,.07);
  --shadow-lg: 0 10px 30px rgba(16,40,28,.10), 0 30px 60px rgba(16,40,28,.10);

  --maxw: 1200px;
  --header-h: 76px;

  --ff-head: 'Manrope', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 800;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-700);
}

.muted { color: var(--muted); }
.center { text-align: center; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(14,143,78,.26);
}
.btn-primary:hover { background: var(--green-700); box-shadow: 0 8px 22px rgba(14,143,78,.32); }
.btn-ghost {
  background: #fff;
  color: var(--green-800);
  border-color: var(--border-2);
}
.btn-ghost:hover { border-color: var(--green); background: var(--green-tint); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-700); }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-block { width: 100%; }
.btn .ext { width: 16px; height: 16px; }

/* ============================================================
   Logo / cross motif
   ============================================================ */
.cross {
  position: relative;
  display: inline-block;
  border-radius: 9px;
  background: var(--green);
  flex: none;
}
.cross::before, .cross::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cross::before { width: 50%; height: 16%; }
.cross::after  { width: 16%; height: 50%; }
.cross.lg { width: 40px; height: 40px; border-radius: 11px; }
.cross.xl { width: 64px; height: 64px; border-radius: 16px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand .cross { width: 34px; height: 34px; }
.brand-name {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.05;
}
.brand-name span { display: block; font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.main-nav a {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 9px 13px;
  border-radius: 9px;
  transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--green-tint); color: var(--green-800); }
.main-nav a.active { color: var(--green-800); background: var(--green-tint-2); }

.header-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 8px 8px 14px;
  min-width: 210px;
  transition: border-color .15s, box-shadow .15s;
}
.header-search:focus-within { border-color: var(--green); box-shadow: 0 0 0 4px rgba(14,143,78,.10); background:#fff; }
.header-search svg { width: 17px; height: 17px; color: var(--muted); flex: none; }
.header-search input {
  border: 0; background: transparent; outline: none;
  font-family: var(--ff-body); font-size: 14px; color: var(--ink);
  width: 100%; min-width: 80px;
}
.header-search .btn { padding: 8px 14px; font-size: 13px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border-radius: 11px;
  border: 1px solid var(--border-2);
  background: #fff;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; color: var(--ink); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 380px at 85% -10%, var(--teal-tint), transparent 60%),
    radial-gradient(820px 420px at 5% 0%, var(--green-tint-2), transparent 62%),
    var(--bg);
  padding: 74px 0 64px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 54px;
  align-items: center;
}
.hero h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.04; }
.hero .lead { font-size: 18px; color: var(--muted); margin-top: 18px; max-width: 33ch; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border-2);
  border-radius: 999px; padding: 7px 14px 7px 8px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(14,143,78,.18); }

/* Search bar (hero) */
.searchbar {
  margin-top: 30px;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
}
.searchbar .field {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 12px;
}
.searchbar .field:hover { background: var(--soft); }
.searchbar .field svg { width: 18px; height: 18px; color: var(--green-700); flex: none; }
.searchbar .field input, .searchbar .field select {
  border: 0; outline: none; background: transparent;
  font-family: var(--ff-body); font-size: 15px; color: var(--ink);
  width: 100%; appearance: none;
}
.searchbar .field label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted-2);
}
.searchbar .divider { width: 1px; background: var(--border); align-self: stretch; margin: 6px 0; }

.hero-stats { display: flex; gap: 30px; margin-top: 30px; }
.hero-stats .stat .n { font-family: var(--ff-head); font-weight: 800; font-size: 26px; color: var(--green-800); }
.hero-stats .stat .l { font-size: 13px; color: var(--muted); }

/* Hero visual card */
.hero-visual {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
}
.hero-visual .mini-map {
  border-radius: 16px;
  height: 240px;
  background:
    linear-gradient(transparent 23px, rgba(14,143,78,.07) 24px) 0 0 / 100% 24px,
    linear-gradient(90deg, transparent 23px, rgba(14,143,78,.07) 24px) 0 0 / 24px 100%,
    var(--green-tint);
  position: relative;
  border: 1px solid var(--border);
}
.map-pin {
  position: absolute; width: 26px; height: 26px; border-radius: 50% 50% 50% 2px;
  background: var(--green); transform: rotate(45deg) translate(-50%,-50%);
  box-shadow: 0 6px 14px rgba(14,143,78,.4);
}
.map-pin::after { content:""; position:absolute; inset: 7px; background:#fff; border-radius:50%; }
.hero-visual .vrow { display: flex; align-items: center; gap: 12px; padding: 14px 4px 4px; }
.hero-visual .vrow .cross { width: 38px; height: 38px; }
.hero-visual .vrow .t { font-family: var(--ff-head); font-weight: 700; font-size: 15px; }
.hero-visual .vrow .s { font-size: 13px; color: var(--muted); }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 72px 0; }
.section.soft { background: var(--soft); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section-head .sub { color: var(--muted); margin-top: 10px; font-size: 16px; max-width: 52ch; }
.section-head .link { font-family: var(--ff-head); font-weight: 700; color: var(--green-700); display: inline-flex; align-items: center; gap: 6px; }
.section-head .link svg { width: 16px; height: 16px; }

/* ============================================================
   Region grid
   ============================================================ */
.region-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.region-tile {
  display: flex; flex-direction: column; gap: 4px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 16px 14px;
  transition: transform .16s, box-shadow .2s, border-color .2s;
}
.region-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-tint-2); }
.region-tile .rn { font-family: var(--ff-head); font-weight: 700; font-size: 15px; color: var(--ink); }
.region-tile .rc { font-size: 13px; color: var(--muted); }
.region-tile .bar { height: 3px; border-radius: 3px; background: var(--green-tint-2); margin-top: 8px; overflow: hidden; }
.region-tile .bar i { display: block; height: 100%; background: var(--green); border-radius: 3px; }

/* ============================================================
   Pharmacy cards
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pharm-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 22px; transition: transform .16s, box-shadow .2s, border-color .2s;
}
.pharm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-tint-2); }
.pharm-card .pc-top { display: flex; align-items: flex-start; gap: 13px; }
.pharm-card .pc-top .cross { width: 44px; height: 44px; }
.pharm-card .pc-name { font-family: var(--ff-head); font-weight: 800; font-size: 18.5px; line-height: 1.2; }
.pharm-card .pc-loc {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13.5px; color: var(--green-700); font-weight: 600; margin-top: 3px;
}
.pharm-card .pc-loc svg { width: 14px; height: 14px; }
.pharm-card .pc-desc { color: var(--muted); font-size: 14.5px; margin-top: 14px; flex: 1; }
.pharm-card .pc-addr {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--ink-2); margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.pharm-card .pc-addr svg { width: 15px; height: 15px; color: var(--muted-2); flex: none; margin-top: 2px; }
.pharm-card .pc-actions { display: flex; gap: 9px; margin-top: 16px; }
.pharm-card .pc-actions .btn { flex: 1; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-tint); color: var(--teal-700);
  font-family: var(--ff-head); font-weight: 700; font-size: 11.5px;
  letter-spacing: .03em; padding: 4px 10px; border-radius: 999px;
  margin-left: auto;
}

/* ============================================================
   Filters (catalogo)
   ============================================================ */
.toolbar {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 18px; margin-bottom: 26px;
}
.toolbar .row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.search-input {
  display: flex; align-items: center; gap: 10px; flex: 1; min-width: 220px;
  background: var(--soft); border: 1px solid var(--border);
  border-radius: 12px; padding: 11px 15px;
}
.search-input:focus-within { border-color: var(--green); background:#fff; box-shadow: 0 0 0 4px rgba(14,143,78,.10); }
.search-input svg { width: 18px; height: 18px; color: var(--muted); flex: none; }
.search-input input { border: 0; outline: none; background: transparent; width: 100%; font-size: 15px; font-family: var(--ff-body); color: var(--ink); }
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none; font-family: var(--ff-head); font-weight: 600; font-size: 14px;
  color: var(--ink); background: var(--soft); border: 1px solid var(--border);
  border-radius: 12px; padding: 11px 38px 11px 15px; cursor: pointer;
}
.select-wrap::after { content: ""; position: absolute; right: 15px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-65%) rotate(45deg); pointer-events: none; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip {
  font-family: var(--ff-head); font-weight: 600; font-size: 13px;
  color: var(--ink-2); background: #fff; border: 1px solid var(--border-2);
  border-radius: 999px; padding: 7px 14px; transition: all .14s;
}
.chip:hover { border-color: var(--green); color: var(--green-800); }
.chip.active { background: var(--green); border-color: var(--green); color: #fff; }
.chip .ct { opacity: .65; margin-left: 5px; font-weight: 700; }

.az-bar { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 14px; }
.az {
  font-family: var(--ff-head); font-weight: 700; font-size: 13px;
  width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; color: var(--ink-2); border: 1px solid transparent;
}
.az:hover { background: var(--green-tint); }
.az.active { background: var(--green); color: #fff; }
.az:disabled { color: var(--border-2); cursor: default; }

.result-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.result-meta .count { font-family: var(--ff-head); font-weight: 700; color: var(--ink-2); }
.empty {
  text-align: center; padding: 60px 20px; color: var(--muted);
  background: #fff; border: 1px dashed var(--border-2); border-radius: var(--radius);
}

/* ============================================================
   Page hero (sub pages)
   ============================================================ */
.page-hero {
  background:
    radial-gradient(700px 300px at 90% -20%, var(--teal-tint), transparent 60%),
    var(--green-tint);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb .sep { color: var(--border-2); }
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); }
.page-hero .lead { color: var(--muted); margin-top: 12px; font-size: 17px; max-width: 60ch; }

/* ============================================================
   Detail page
   ============================================================ */
.detail-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
.detail-main h1 { font-size: clamp(30px, 4vw, 44px); }
.detail-loc { display: inline-flex; align-items: center; gap: 7px; color: var(--green-700); font-weight: 700; font-family: var(--ff-head); margin-top: 12px; }
.detail-loc svg { width: 17px; height: 17px; }
.detail-desc { font-size: 17px; color: var(--ink-2); margin-top: 22px; line-height: 1.75; }
.detail-block { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-top: 24px; box-shadow: var(--shadow-sm); }
.detail-block h3 { font-size: 18px; margin-bottom: 14px; }
.info-row { display: flex; align-items: flex-start; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--green-tint); display: flex; align-items: center; justify-content: center; flex: none; }
.info-row .ic svg { width: 19px; height: 19px; color: var(--green-700); }
.info-row .k { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--muted-2); }
.info-row .v { font-size: 15.5px; color: var(--ink); font-weight: 500; margin-top: 1px; }
.info-row .v a:hover { color: var(--green-700); }

.detail-side { position: sticky; top: calc(var(--header-h) + 22px); }
.cta-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }
.cta-card .cross { width: 52px; height: 52px; margin-bottom: 16px; }
.cta-card h3 { font-size: 20px; }
.cta-card p { color: var(--muted); font-size: 14.5px; margin: 10px 0 18px; }

.map-box {
  height: 280px; border-radius: 14px; margin-top: 16px; position: relative; overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(transparent 31px, rgba(14,143,78,.06) 32px) 0 0 / 100% 32px,
    linear-gradient(90deg, transparent 31px, rgba(14,143,78,.06) 32px) 0 0 / 32px 100%,
    var(--green-tint);
}
.map-box .road { position: absolute; background: #fff; box-shadow: 0 0 0 1px var(--border); }
.map-box .pin-wrap { position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%); text-align: center; }
.map-box .pin-wrap .map-pin { position: static; display: inline-block; }
.map-box .map-cap {
  position: absolute; left: 12px; bottom: 12px; right: 12px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: 10px; padding: 9px 12px;
  font-size: 12.5px; color: var(--ink-2); display: flex; align-items: center; gap: 8px;
}
.map-box .map-cap svg { width: 14px; height: 14px; color: var(--green-700); flex: none; }

/* ============================================================
   "Come funziona" strip
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.step .num { font-family: var(--ff-head); font-weight: 800; font-size: 14px; color: #fff; background: var(--green); width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 18px; margin-top: 16px; }
.step p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }

/* ============================================================
   Generic prose (legal / chi siamo)
   ============================================================ */
.prose { max-width: 760px; }
.prose h2 { font-size: 24px; margin: 38px 0 12px; }
.prose h3 { font-size: 18px; margin: 26px 0 8px; }
.prose p { color: var(--ink-2); margin-bottom: 14px; line-height: 1.75; }
.prose ul { color: var(--ink-2); padding-left: 20px; margin-bottom: 14px; }
.prose li { margin-bottom: 7px; }
.callout {
  background: var(--green-tint); border: 1px solid var(--green-tint-2);
  border-radius: var(--radius); padding: 20px 22px; display: flex; gap: 14px; align-items: flex-start;
}
.callout svg { width: 22px; height: 22px; color: var(--green-700); flex: none; margin-top: 2px; }
.callout .t { font-family: var(--ff-head); font-weight: 700; margin-bottom: 4px; }
.callout p { font-size: 14px; color: var(--ink-2); margin: 0; }

.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value { background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.value .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--teal-tint); display:flex; align-items:center; justify-content:center; margin-bottom: 14px; }
.value .ic svg { width: 22px; height: 22px; color: var(--teal-700); }
.value h3 { font-size: 17px; }
.value p { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-family: var(--ff-head); font-weight: 700; font-size: 13.5px; margin-bottom: 7px; }
.form-field input, .form-field textarea {
  width: 100%; font-family: var(--ff-body); font-size: 15px; color: var(--ink);
  border: 1px solid var(--border-2); border-radius: 12px; padding: 12px 14px; outline: none;
  background: var(--soft); transition: border-color .15s, box-shadow .15s, background .15s;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--green); background:#fff; box-shadow: 0 0 0 4px rgba(14,143,78,.10); }
.form-field textarea { resize: vertical; min-height: 130px; }
.contact-info .info-row { border-color: var(--border); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #0C1A13; color: #C7D4CC; padding: 60px 0 30px; margin-top: 20px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name span { color: #7E9388; }
.footer-brand p { color: #93A89C; font-size: 14px; margin-top: 14px; max-width: 34ch; }
.footer-col h4 { font-family: var(--ff-head); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; font-size: 14px; color: #A9BBB1; margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-regions { columns: 2; column-gap: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12.5px; color: #7E9388; max-width: 70ch; line-height: 1.6; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: #A9BBB1; }
.footer-legal a:hover { color: #fff; }
.footer-disclaimer { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 14px 16px; margin-top: 24px; font-size: 12.5px; color: #93A89C; line-height: 1.6; display:flex; gap:10px; align-items:flex-start; }
.footer-disclaimer svg { width: 16px; height: 16px; color: #93A89C; flex:none; margin-top:2px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .region-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .main-nav, .header-search { display: none; }
  .nav-toggle { display: flex; }
  .header-search.show, .main-nav.show { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 460px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-side { position: static; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* mobile dropdown nav */
  .main-nav.show {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 12px 24px 18px; box-shadow: var(--shadow);
  }
}
@media (max-width: 720px) {
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .searchbar { grid-template-columns: 1fr; }
  .searchbar .divider { display: none; }
  .steps, .values { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .hero { padding: 48px 0 44px; }
  .hero-stats { gap: 22px; }
}
@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 18px; }
  .footer-top { grid-template-columns: 1fr; }
}
