/* ===================================================================
   City Pharmacy — Shared Stylesheet
   Brand palette: #45bb12 (green), #203555 (navy), #f5841f (orange accent)
   =================================================================== */

:root {
  --green: #45bb12;
  --green-dark: #379a0c;
  --green-soft: #eaf7e2;
  --navy: #203555;
  --navy-dark: #16243b;
  --navy-soft: #eef2f8;
  --orange: #f5841f;
  --orange-dark: #db6f0c;
  --orange-soft: #fff2e4;
  --ink: #21303f;
  --muted: #5d6b7a;
  --line: #e3e8ef;
  --bg: #ffffff;
  --bg-alt: #f6f9fc;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(32, 53, 85, 0.06);
  --shadow: 0 14px 40px rgba(32, 53, 85, 0.12);
  --maxw: 1180px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--green); }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.18; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

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

.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green); margin-bottom: .65rem;
}
.eyebrow.orange { color: var(--orange); }

.section { padding: 128px 0; }
.section.tight { padding: 84px 0; }
.section.alt { background: var(--bg-alt); }
.section.navy { background: var(--navy); }
.section.navy h1, .section.navy h2, .section.navy h3 { color: #fff; }
.section.navy p { color: #c7d2e2; }
.section-head { max-width: 680px; margin: 0 auto 76px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; cursor: pointer;
  font-weight: 700; font-size: 1rem; padding: 13px 26px; border-radius: 999px;
  border: 2px solid transparent; transition: .18s ease; text-align: center; line-height: 1.1;
}
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: #fff; color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.topbar { background: var(--navy); color: #dfe7f2; font-size: .85rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 7px; padding-bottom: 7px; flex-wrap: wrap; }
.topbar a { color: #dfe7f2; }
.topbar a:hover { color: var(--green); }
.topbar .tb-group { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.topbar .tb-group span { display: inline-flex; align-items: center; gap: 6px; }

.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 18px; }
.brand { display: flex; align-items: center; }
.brand svg, .brand img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 600; color: var(--navy); font-size: .98rem; position: relative; }
.nav-links a.active, .nav-links a:hover { color: var(--green); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 3px; background: var(--green); border-radius: 3px; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 3px; transition: .2s; }
.lang-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; font-family: inherit; font-weight: 700; font-size: .88rem; padding: 9px 14px; border-radius: 999px; border: 2px solid var(--green); background: var(--green-soft); color: var(--green-dark); transition: .18s; white-space: nowrap; }
.lang-toggle:hover { background: var(--green); color: #fff; }
@media (max-width: 720px) { .lang-toggle { padding: 7px 11px; font-size: .8rem; } }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(160deg, #eef2f8 0%, #eaf7e2 100%); position: relative; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; padding-top: 116px; padding-bottom: 116px; }
.hero-copy h1 { margin-bottom: .35em; }
.hero-copy h1 .accent { color: var(--green); }
.hero-copy .lead { font-size: 1.15rem; color: var(--muted); max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; color: var(--muted); font-size: .95rem; }
.hero-trust strong { color: var(--navy); font-size: 1.4rem; }
.hero-art { position: relative; }
.hero-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 30px; border: 1px solid var(--line);
}
.hero-card h3 { color: var(--navy); }
.hero-card .row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.hero-card .row:last-child { border-bottom: 0; }
.hero-card .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: none; }
.hero-card .ico.orange { background: var(--orange-soft); color: var(--orange); }
.hero-card .ico.navy { background: var(--navy-soft); color: var(--navy); }

/* ---------- Page banner (interior pages) ---------- */
.page-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; padding: 60px 0; }
.page-banner h1 { color: #fff; margin-bottom: .3em; }
.page-banner p { color: #c7d2e2; max-width: 640px; margin: 0; }
.crumbs { font-size: .9rem; color: #9fb1cc; margin-bottom: 14px; }
.crumbs a { color: #9fb1cc; }
.crumbs a:hover { color: var(--green); }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 38px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px;
  box-shadow: var(--shadow-sm); transition: .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d6deea; }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px; background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; margin-bottom: 16px;
}
.card .ico.orange { background: var(--orange-soft); color: var(--orange); }
.card .ico.navy { background: var(--navy-soft); color: var(--navy); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin-bottom: .6rem; font-size: .98rem; }
.card .more { font-weight: 700; color: var(--green); font-size: .95rem; }
.card.accent-top { border-top: 4px solid var(--green); }
.card.accent-top.orange { border-top-color: var(--orange); }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.checklist { list-style: none; padding: 0; margin: 24px 0 0; }
.checklist li { display: flex; gap: 12px; padding: 12px 0; color: var(--ink); }
.checklist li svg { flex: none; color: var(--green); margin-top: 3px; }

/* ---------- Icon-card (illustrative media block) ---------- */
.media-illus {
  background: linear-gradient(150deg, var(--green-soft), var(--navy-soft));
  border-radius: var(--radius-lg); padding: 40px; display: grid; place-items: center; min-height: 320px; border: 1px solid var(--line);
}
.media-illus svg { width: 100%; max-width: 340px; height: auto; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats .stat strong { display: block; font-size: 2.2rem; color: #fff; font-weight: 800; }
.stats .stat span { color: #b9c6da; font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #eafbe0; max-width: 620px; margin: 0 auto 24px; }
.cta-band .btn-orange:hover { background: #fff; color: var(--orange-dark); border-color: #fff; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; color: var(--navy); }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font: inherit; color: var(--ink);
  background: #fcfdff; transition: .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.field textarea { min-height: 110px; resize: vertical; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e0463a; box-shadow: 0 0 0 3px #fbe3e1; }
.field .err { display: none; color: #d23a2c; font-size: .82rem; margin-top: 5px; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.consent input { width: auto; margin-top: 4px; flex: none; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 14px; }
.form-success {
  display: none; background: var(--green-soft); border: 1px solid var(--green); color: var(--navy);
  border-radius: 12px; padding: 18px 20px; margin-bottom: 18px; font-weight: 500;
}
.form-success.show { display: block; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; overflow: hidden; }

/* ---------- Destination selector ---------- */
.selector { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.selector h3 { margin-bottom: 6px; }
.step-label { font-weight: 700; color: var(--green); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin: 18px 0 10px; }
.continent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.continent-btn {
  border: 1.5px solid var(--line); background: #fcfdff; border-radius: 12px; padding: 16px 12px; cursor: pointer;
  font-weight: 700; color: var(--navy); font-size: .95rem; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: .15s;
}
.continent-btn:hover { border-color: var(--green); background: var(--green-soft); }
.continent-btn.active { border-color: var(--green); background: var(--green); color: #fff; }
.continent-btn .emoji { font-size: 1.5rem; }
.country-panel { margin-top: 22px; padding-top: 22px; border-top: 1px dashed var(--line); display: none; }
.country-panel.show { display: block; }
.country-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.country-chip {
  border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 16px; cursor: pointer;
  font-weight: 600; font-size: .9rem; color: var(--navy); transition: .15s;
}
.country-chip:hover { border-color: var(--orange); color: var(--orange); }
.country-chip.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.guidance-out { margin-top: 22px; display: none; }
.guidance-out.show { display: block; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table.data { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
table.data th { background: var(--navy); color: #fff; text-align: left; padding: 14px 18px; font-size: .9rem; font-weight: 700; }
table.data td { padding: 14px 18px; border-top: 1px solid var(--line); color: var(--ink); font-size: .95rem; vertical-align: top; }
table.data tr:nth-child(even) td { background: var(--bg-alt); }
table.data td:first-child { font-weight: 700; color: var(--navy); }

/* ---------- Notice / disclaimer ---------- */
.notice { border-radius: 12px; padding: 18px 22px; font-size: .95rem; }
.notice.green { background: var(--green-soft); border: 1px solid #bfe6a9; color: #2c5417; }
.notice.orange { background: var(--orange-soft); border: 1px solid #f5cd9e; color: #8a4a0a; }
.notice.navy { background: var(--navy-soft); border: 1px solid #cdd9ec; color: var(--navy); }
.notice strong { display: block; margin-bottom: 3px; }

/* ---------- Steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; position: relative; box-shadow: var(--shadow-sm); }
.step .num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 800;
  display: grid; place-items: center; margin-bottom: 14px; font-size: 1.1rem;
}
.step:nth-child(2) .num { background: var(--orange); }
.step:nth-child(3) .num { background: var(--navy); }
.step:nth-child(4) .num { background: var(--green-dark); }
.step h3 { font-size: 1.08rem; }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Info / contact tiles ---------- */
.info-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.info-tile .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin-bottom: 14px; }
.info-tile .ico.orange { background: var(--orange-soft); color: var(--orange); }
.info-tile .ico.navy { background: var(--navy-soft); color: var(--navy); }
.info-tile h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.info-tile p, .info-tile a { color: var(--muted); font-size: .95rem; margin: 0; }
.info-tile a:hover { color: var(--green); }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span:first-child { color: var(--navy); font-weight: 600; }
.hours-list li span:last-child { color: var(--muted); }
.hours-list li.closed span:last-child { color: var(--orange); font-weight: 600; }

.map-embed { border: 0; width: 100%; height: 100%; min-height: 320px; border-radius: var(--radius); }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 18px 22px; font-weight: 700; color: var(--navy); cursor: pointer; font-size: 1rem; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.faq-q .chev { transition: .2s; color: var(--green); flex: none; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 22px 18px; color: var(--muted); font-size: .96rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #b9c6da; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-logo { background: #fff; border-radius: 12px; padding: 14px 16px; display: inline-block; margin-bottom: 16px; }
.footer-logo svg, .footer-logo img { height: 40px; width: auto; display: block; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #b9c6da; font-size: .94rem; }
.site-footer a:hover { color: var(--green); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; }
.footer-contact svg { flex: none; margin-top: 3px; color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: .86rem; color: #8a99b3; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-disclaimer { font-size: .82rem; color: #7d8da8; padding-bottom: 18px; line-height: 1.55; }

/* ---------- Floating call button ---------- */
.float-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 60; background: var(--green); color: #fff;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow);
  transition: .2s;
}
.float-call:hover { background: var(--green-dark); color: #fff; transform: scale(1.06); }

/* ---------- Images / media ---------- */
.media-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.media-img img, .media-img > svg { display: block; width: 100%; height: auto; }
.media-img.hoverable img { transition: transform .6s ease; }
.media-img.hoverable:hover img { transform: scale(1.04); }
/* decorative blob behind illustrations */
.illus-wrap { position: relative; }
.illus-wrap::before { content: ""; position: absolute; inset: auto -18px -18px auto; width: 62%; height: 62%; background: var(--orange-soft); border-radius: var(--radius-lg); z-index: 0; }
.illus-wrap::after { content: ""; position: absolute; inset: -16px auto auto -16px; width: 40%; height: 40%; background: var(--green-soft); border-radius: 50%; z-index: 0; }
.illus-wrap > * { position: relative; z-index: 1; }
.badge-float {
  position: absolute; z-index: 2; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); font-size: .92rem;
}
.badge-float .dot { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--green-soft); color: var(--green); font-size: 1.1rem; }
.badge-float.tl { top: 18px; left: -22px; }
.badge-float.br { bottom: 22px; right: -22px; }
.badge-float small { display: block; font-weight: 500; color: var(--muted); font-size: .78rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; } .reveal.d2 { transition-delay: .18s; } .reveal.d3 { transition-delay: .27s; }
.reveal.zoom { transform: scale(.94); } .reveal.zoom.in { transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Animated stats band ---------- */
.stats-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; }
.stats-band .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-band .stat { padding: 8px; }
.stats-band .stat strong { display: block; font-size: 2.6rem; color: #fff; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.stats-band .stat .suffix { color: var(--green); }
.stats-band .stat span { display: block; color: #b9c6da; font-size: .96rem; margin-top: 8px; }

/* ---------- Testimonials carousel ---------- */
.testi { position: relative; max-width: 860px; margin: 0 auto; }
.testi-track { position: relative; min-height: 220px; }
.testi-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px 44px; text-align: center; pointer-events: none;
}
.testi-slide.active { opacity: 1; transform: none; pointer-events: auto; }
.testi-stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 14px; font-size: 1.1rem; }
.testi-quote { font-size: 1.18rem; color: var(--ink); line-height: 1.6; margin-bottom: 22px; }
.testi-who { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testi-ava { width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 800; }
.testi-name { font-weight: 700; color: var(--navy); }
.testi-role { color: var(--muted); font-size: .88rem; }
.testi-dots { display: flex; gap: 9px; justify-content: center; margin-top: 26px; }
.testi-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: #cdd6e2; cursor: pointer; padding: 0; transition: .2s; }
.testi-dots button.active { background: var(--green); width: 26px; border-radius: 6px; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 18px; bottom: 86px; z-index: 60; width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy); color: #fff; border: 0; cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); pointer-events: none; transition: .25s;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--navy-dark); }

/* ---------- Parallax photo bands (decorative, no text) ---------- */
.photo-band {
  position: relative; width: 100%; overflow: hidden;
  height: clamp(260px, 34vw, 440px);
  background: linear-gradient(120deg, var(--navy) 0%, var(--green-dark) 100%);
}
.photo-band .pb-img {
  position: absolute; inset: -4%; background-size: cover; background-position: center;
  animation: kenburns 26s ease-in-out infinite alternate; will-change: transform;
}
.photo-band .pb-tint {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(32,53,85,.58) 0%, rgba(55,154,12,.42) 100%);
}
.photo-band.light .pb-tint { background: linear-gradient(120deg, rgba(32,53,85,.40) 0%, rgba(245,132,31,.30) 100%); }
@keyframes kenburns { from { transform: scale(1.05) translate(0,0); } to { transform: scale(1.16) translate(-2.5%,-2%); } }
@media (prefers-reduced-motion: reduce) { .photo-band .pb-img { animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-tiles { grid-template-columns: 1fr; }
  .continent-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-band .stats { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .badge-float.tl { left: 8px; } .badge-float.br { right: 8px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 18px 22px; gap: 14px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav-links.open a.active::after { display: none; }
  .site-header { position: relative; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .continent-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section.tight { padding: 48px 0; }
  .cta-band, .form-card { padding: 28px 22px; }
  .topbar .tb-group.secondary { display: none; }
  .stats-band .stats { grid-template-columns: repeat(2, 1fr); }
  .testi-slide { padding: 28px 22px; }
  .badge-float { display: none; }
}
