/* =========================================================================
   ShiptUS — marketing site styles
   Brand: dark teal/navy primary + green accent (from the ShiptUS logo)
   ========================================================================= */

/* ------------------------------------------------------------ Design tokens */
:root {
  /* Brand */
  --teal-900: #0a3a38;
  --teal-800: #0e4b49;   /* primary dark teal */
  --teal-700: #135e5b;
  --teal-600: #1a716d;
  --green-600: #1f8f43;
  --green-500: #2ca24c;  /* accent green */
  --green-400: #45b866;
  --green-050: #e9f6ee;

  /* Neutrals */
  --ink: #17252a;
  --body: #46555a;
  --muted: #6b787d;
  --line: #e3e8e9;
  --line-soft: #eef2f2;
  --bg: #ffffff;
  --bg-soft: #f6f9f9;
  --bg-tint: #eef5f4;
  --white: #ffffff;

  /* System */
  --primary: var(--teal-800);
  --accent: var(--green-500);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(14, 75, 73, 0.06), 0 1px 3px rgba(14, 75, 73, 0.05);
  --shadow-md: 0 6px 20px rgba(14, 75, 73, 0.08);
  --shadow-lg: 0 18px 44px rgba(14, 75, 73, 0.14);
  --container: 1160px;
  --gap: 24px;
  --section-y: 88px;
  --header-h: 76px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --------------------------------------------------------------- Base reset */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--teal-700); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--green-600); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--green-400); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--primary); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* -------------------------------------------------------------- Layout util */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

.section { padding: var(--section-y) 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--bg-soft); }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; }
.section-lead { font-size: 1.075rem; color: var(--muted); margin: 0; }
.section-actions { display: flex; justify-content: center; margin-top: 44px; }

.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--green-600); margin-bottom: 14px;
}

.icon { width: 24px; height: 24px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; }

/* ----------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: .98rem; font-weight: 600; line-height: 1;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .18s var(--ease); white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 10px 16px; font-size: .9rem; }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }

.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-900); color: #fff; box-shadow: var(--shadow-md); }

.btn-accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--green-600); color: #fff; box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--teal-800); border-color: var(--line); }
.btn-outline:hover { border-color: var(--teal-800); color: var(--teal-900); background: var(--bg-tint); }

.btn-ghost { background: transparent; color: var(--teal-800); border-color: transparent; }
.btn-ghost:hover { color: var(--green-600); background: var(--bg-tint); }

.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); color: #fff; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 600;
  color: var(--green-600); font-size: .96rem;
}
.link-arrow .icon { transition: transform .18s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ------------------------------------------------------------------ Header */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .2s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.brand { display: flex; align-items: center; line-height: 0; }
.brand-logo { display: block; height: 46px; width: auto; }

.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: block; padding: 8px 14px; border-radius: 8px; font-weight: 500;
  color: var(--body); font-size: .97rem;
}
.nav-link:hover { color: var(--teal-800); background: var(--bg-tint); }
.nav-link.is-active { color: var(--teal-800); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch { display: flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang-link {
  padding: 5px 10px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  color: var(--muted); letter-spacing: .03em;
}
.lang-link:hover { color: var(--teal-800); }
.lang-link.is-active { background: var(--primary); color: #fff; }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: transparent; border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer; padding: 0;
}
.nav-toggle-bar { display: block; width: 20px; height: 2px; background: var(--ink); margin: 0 auto; border-radius: 2px; transition: all .22s var(--ease); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; border-top: 1px solid var(--line-soft); background: #fff; }
.mobile-nav-list { padding: 12px 0; }
.mobile-nav-link { display: block; padding: 13px 24px; font-weight: 500; color: var(--ink); font-size: 1.05rem; }
.mobile-nav-link:hover, .mobile-nav-link.is-active { background: var(--bg-tint); color: var(--teal-800); }
.mobile-nav-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 24px; border-top: 1px solid var(--line-soft); }
.mobile-nav-footer .btn { flex: 1; }

/* -------------------------------------------------------------------- Hero */
.hero { background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%); padding: 72px 0 80px; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-title { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; color: var(--teal-900); }
.hero-subtitle { font-size: 1.18rem; color: var(--body); max-width: 34ch; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-panel {
  background: var(--primary); color: #fff; border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.hero-panel::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(44,162,76,.35), transparent 70%); border-radius: 50%;
}
.hero-stat { border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 22px; margin-bottom: 22px; }
.hero-stat-num { display: block; font-size: 2.6rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hero-stat-label { color: rgba(255,255,255,.75); font-size: .95rem; }
.hero-steps { display: grid; gap: 14px; position: relative; z-index: 1; }
.hero-steps li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.92); font-weight: 500; }
.hero-step-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-400); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(69,184,102,.2); }

/* -------------------------------------------------------------- Valueprops */
.valueprops { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.valueprop {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.valueprop:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.valueprop-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px; background: var(--green-050); color: var(--green-600); margin-bottom: 16px;
}
.valueprop-title { font-size: 1.08rem; margin-bottom: 6px; }
.valueprop-text { color: var(--muted); font-size: .95rem; margin: 0; }

/* --------------------------------------------------------------- Card grid */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.service-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px;
  border-radius: 14px; background: var(--bg-tint); color: var(--teal-700); margin-bottom: 20px;
}
.service-icon .icon { width: 28px; height: 28px; }
.service-card-title { font-size: 1.22rem; margin-bottom: 10px; }
.service-card-text { color: var(--muted); font-size: .97rem; flex-grow: 1; margin-bottom: 18px; }

/* ------------------------------------------------------------- Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 40px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 12px; background: #fff; border: 1px solid var(--line); color: var(--green-600); flex-shrink: 0;
}
.feature-title { font-size: 1.14rem; margin-bottom: 4px; }
.feature-text { color: var(--muted); margin: 0; font-size: .98rem; }

/* --------------------------------------------------------------- Steps flow */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.step { position: relative; padding: 28px 24px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); }
.step-num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--green-500); margin-bottom: 12px; letter-spacing: .02em; }
.step-title { font-size: 1.1rem; margin-bottom: 6px; }
.step-text { color: var(--muted); font-size: .94rem; margin: 0; }

/* -------------------------------------------------------------- Split block */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-copy .section-title { text-align: left; }
.split-list { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }

.check-list { display: grid; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--body); }
.check-mark {
  color: var(--green-600); background: var(--green-050); border-radius: 50%;
  padding: 4px; width: 26px; height: 26px; flex-shrink: 0; margin-top: 1px;
}

/* ---------------------------------------------------------------- Teasers */
.teasers { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.teaser {
  background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 40px; transition: box-shadow .2s var(--ease);
}
.teaser:hover { box-shadow: var(--shadow-md); }
.teaser-title { font-size: 1.5rem; margin-bottom: 10px; letter-spacing: -.01em; }
.teaser-text { color: var(--muted); margin-bottom: 18px; }

/* -------------------------------------------------------------- CTA band */
.cta-band {
  background: var(--primary); color: #fff; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; left: -80px; bottom: -100px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(44,162,76,.28), transparent 68%); border-radius: 50%;
}
.cta-inner {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding: 64px 24px; flex-wrap: wrap;
}
.cta-copy { max-width: 620px; }
.cta-title { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 800; margin-bottom: 10px; }
.cta-subtitle { color: rgba(255,255,255,.82); margin: 0; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* -------------------------------------------------------------- Page hero */
.page-hero {
  background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%);
  padding: 64px 0 52px; text-align: center;
}
.page-title { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; letter-spacing: -.03em; color: var(--teal-900); }
.page-lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; margin: 0 auto; }

/* --------------------------------------------------------- Services page */
.service-list { display: grid; gap: 28px; }
.service-block {
  scroll-margin-top: calc(var(--header-h) + 20px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px 48px; align-items: start;
}
.service-block-head { grid-column: 1 / -1; max-width: 720px; }
.service-icon-lg { width: 60px; height: 60px; border-radius: 16px; margin-bottom: 18px; }
.service-icon-lg .icon { width: 30px; height: 30px; }
.service-block-title { font-size: 1.6rem; letter-spacing: -.01em; margin-bottom: 8px; }
.service-block-summary { color: var(--body); font-size: 1.05rem; margin: 0; }
.service-block-body { grid-column: 1 / -1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.service-subheading { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 16px; }
.service-benefit {
  background: var(--bg-tint); border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
}
.service-benefit-text { color: var(--teal-900); font-weight: 500; margin: 0; }

/* ---------------------------------------------------------- Pricing page */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm);
}
.price-card-featured { border-color: var(--green-500); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green-500); color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.price-name { font-size: 1.4rem; margin-bottom: 4px; }
.price-for { color: var(--muted); font-size: .93rem; margin: 0 0 20px; min-height: 2.6em; }
.price-value { display: flex; align-items: baseline; gap: 3px; margin-bottom: 6px; }
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--teal-800); }
.price-amount { font-size: 3rem; font-weight: 800; color: var(--teal-900); letter-spacing: -.03em; line-height: 1; }
.price-amount-custom { font-size: 2.2rem; }
.price-unit { color: var(--muted); font-size: .95rem; margin-left: 4px; }
.price-volume { color: var(--green-600); font-weight: 600; font-size: .95rem; margin-bottom: 24px; }
.price-features-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 16px; }
.price-features { margin-bottom: 28px; }
.price-features li { font-size: .95rem; }
.price-cta { margin-top: auto; width: 100%; }

.addon-table { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.addon-row { display: grid; grid-template-columns: 1fr 1.6fr auto; gap: 20px; align-items: center; padding: 20px 26px; border-bottom: 1px solid var(--line-soft); }
.addon-row:last-child { border-bottom: none; }
.addon-name { font-weight: 700; color: var(--ink); }
.addon-desc { color: var(--muted); font-size: .95rem; }
.addon-price { font-weight: 700; color: var(--green-600); white-space: nowrap; text-align: right; }
.pricing-disclaimer { margin-top: 22px; color: var(--muted); font-size: .88rem; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------- Pricing value band */
.price-band {
  position: relative; overflow: hidden; color: #fff;
  background: var(--primary); border-radius: var(--radius-lg);
  padding: 52px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center;
}
.price-band::before {
  content: ""; position: absolute; right: -90px; top: -90px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(44,162,76,.32), transparent 70%); border-radius: 50%;
}
.price-band > * { position: relative; z-index: 1; }
.price-band-title { color: #fff; font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.price-band-subtitle { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 26px; }

.price-band-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-bottom: 28px; }
.price-band-stat { display: flex; flex-direction: column; }
.price-band-stat-value { font-size: 1.55rem; font-weight: 800; color: var(--green-400); letter-spacing: -.01em; line-height: 1.1; }
.price-band-stat-label { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: 2px; }

.price-band-regions { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 22px; }
.price-band-flags { font-size: 1.35rem; line-height: 1.4; letter-spacing: 3px; }
.price-band-regions-label { font-size: .9rem; color: rgba(255,255,255,.7); }

.price-band-features { display: grid; gap: 22px; }
.price-band-feature { display: flex; gap: 16px; align-items: flex-start; }
.price-band-feature-icon {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(69,184,102,.14); color: var(--green-400); border: 1px solid rgba(69,184,102,.25);
}
.price-band-feature-title { color: #fff; font-size: 1.12rem; margin-bottom: 4px; }
.price-band-feature-text { color: rgba(255,255,255,.7); font-size: .96rem; margin: 0; }

/* ---------------------------------------------------------- Countries we serve */
.country-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  max-width: 900px; margin: 0 auto;
}
.country-chip {
  flex: 1 1 240px; max-width: 288px;
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.country-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }
.country-flag { font-size: 1.7rem; line-height: 1; flex-shrink: 0; }
.country-name { font-weight: 600; color: var(--ink); font-size: 1rem; }
.country-note {
  display: block; font-weight: 500; font-size: .82rem; color: var(--green-600); margin-top: 1px;
}

/* Contact page — served countries list */
.location-countries { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(20,80,78,.12); }
.location-countries-title { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 14px; }
.country-flags-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.country-flags-list li { display: flex; align-items: center; gap: 8px; font-size: .93rem; color: var(--ink); font-weight: 500; }
.country-flag-sm { font-size: 1.15rem; line-height: 1; }

/* -------------------------------------------------------------- Accordion */
.accordion { display: grid; gap: 14px; }
.accordion-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: box-shadow .18s var(--ease), border-color .18s var(--ease); }
.accordion-item.is-open { border-color: var(--teal-700); box-shadow: var(--shadow-sm); }
.accordion-heading { margin: 0; }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; background: transparent; border: none; cursor: pointer;
  font-family: inherit; font-size: 1.08rem; font-weight: 600; color: var(--ink); text-align: left;
}
.accordion-trigger:hover { color: var(--teal-800); }
.accordion-chevron { color: var(--muted); transition: transform .25s var(--ease); flex-shrink: 0; display: inline-flex; }
.accordion-item.is-open .accordion-chevron { transform: rotate(180deg); color: var(--green-600); }
.accordion-panel { padding: 0 26px; }
.accordion-panel:not([hidden]) { padding-bottom: 24px; }
.accordion-a { color: var(--body); margin: 0; }

/* ---------------------------------------------------------- Contact page */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.contact-form-title { font-size: 1.5rem; margin-bottom: 6px; }
.contact-form-subtitle { color: var(--muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-field label { font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 8px; }
.req { color: var(--green-600); }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--bg-soft);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 13px 15px; width: 100%;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal-700); background: #fff; box-shadow: 0 0 0 3px rgba(19,94,91,.12);
}
.form-field input.is-invalid, .form-field textarea.is-invalid { border-color: #d64545; background: #fdf3f3; }

.form-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
.form-submit { min-width: 170px; }
.form-status { margin: 0; font-weight: 500; font-size: .96rem; padding: 12px 16px; border-radius: var(--radius-sm); flex: 1; min-width: 220px; }
.form-status.is-success { background: var(--green-050); color: var(--green-600); }
.form-status.is-error { background: #fdf3f3; color: #c53030; }

.contact-quote-hint { margin: -6px 0 24px; font-size: .92rem; color: var(--muted); }
.contact-quote-hint a { font-weight: 600; color: var(--teal-700); }
.contact-quote-hint a:hover { color: var(--green-600); }

/* ------------------------------------------------------------ Quote page */
.quote-form-wrap { max-width: 760px; margin: 0 auto; }

/* Phone field: dialling-code select + number input */
.phone-group { display: flex; gap: 8px; }
.phone-group .phone-code { flex: 0 0 auto; width: auto; min-width: 96px; padding: 13px 8px 13px 12px; }
.phone-group input { flex: 1 1 auto; width: auto; }

/* Country multi-select rendered as toggle pills */
.pill-select { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { position: relative; display: inline-flex; cursor: pointer; }
.pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.pill-label {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  border: 1.5px solid var(--line); border-radius: 999px; background: var(--bg-soft);
  font-size: .95rem; font-weight: 500; color: var(--ink);
  transition: border-color .15s var(--ease), background .15s var(--ease), color .15s var(--ease);
}
.pill:hover .pill-label { border-color: var(--teal-600); }
.pill input:checked + .pill-label { background: var(--green-050); border-color: var(--green-500); color: var(--teal-800); font-weight: 600; }
.pill input:focus-visible + .pill-label { outline: none; box-shadow: 0 0 0 3px rgba(19,94,91,.12); }
.pill-select.is-invalid .pill-label { border-color: #d64545; }
.pill-flag { font-size: 1.05rem; line-height: 1; }

/* Consent / marketing checkboxes */
.form-checks { display: grid; gap: 14px; margin: 4px 0 26px; }
.form-check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: .9rem; color: var(--body); line-height: 1.5; }
.form-check input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green-600); cursor: pointer; }
.form-check input.is-invalid { outline: 2px solid #d64545; outline-offset: 2px; border-radius: 3px; }
.form-check-text { flex: 1; }

.contact-aside { display: grid; gap: 20px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.info-title { font-size: 1.2rem; margin-bottom: 6px; }
.info-subtitle { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.info-list { display: grid; gap: 20px; }
.info-list li { display: flex; align-items: flex-start; gap: 14px; }
.info-icon { color: var(--green-600); flex-shrink: 0; margin-top: 2px; }
.info-icon-lg .icon { width: 30px; height: 30px; }
.info-label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 2px; }
.info-card-location { background: var(--bg-tint); border-color: transparent; }
.info-address { font-style: normal; color: var(--ink); font-weight: 500; line-height: 1.7; margin: 14px 0; }
.info-note { color: var(--muted); font-size: .9rem; margin: 0; }

/* ------------------------------------------------------------------ Footer */
.site-footer { background: var(--teal-900); color: rgba(255,255,255,.72); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 48px; padding: 64px 24px 44px; }
.footer-logo { height: 48px; width: auto; margin-bottom: 16px; }
.footer-tagline { color: var(--green-400); font-weight: 600; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.footer-about { color: rgba(255,255,255,.6); font-size: .95rem; max-width: 42ch; }
.footer-social-label { color: rgba(255,255,255,.5); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin: 26px 0 12px; }
.footer-social { display: flex; align-items: center; gap: 12px; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.72); transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease); }
.social-link:hover { background: var(--green-500); border-color: var(--green-500); color: #fff; transform: translateY(-2px); }
.footer-title { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .96rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 14px; margin-bottom: 22px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.footer-contact .icon { color: var(--green-400); }
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: #fff; }
.footer-lang { display: flex; align-items: center; gap: 6px; }
.footer-lang-label { font-size: .85rem; color: rgba(255,255,255,.5); margin-right: 4px; }
.footer-lang .lang-link { color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); }
.footer-lang .lang-link.is-active { background: var(--green-500); border-color: var(--green-500); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { padding: 22px 24px; }
.footer-bottom-inner p { margin: 0; font-size: .88rem; color: rgba(255,255,255,.5); }

/* ============================================================== Responsive */
@media (max-width: 1024px) {
  :root { --section-y: 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-subtitle { max-width: none; }
  .valueprops { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav:not([hidden]) { display: block; }
  .header-actions > .lang-switch { display: none; }
  .header-actions { gap: 10px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card-featured { transform: none; }
  .price-band { grid-template-columns: 1fr; gap: 36px; padding: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .teasers { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-block-body { grid-template-columns: 1fr; gap: 26px; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; padding: 48px 24px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  :root { --section-y: 56px; }
  .container { padding: 0 18px; }
  .valueprops { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 56px; }
  .hero-actions .btn, .cta-actions .btn { flex: 1; }
  .service-block { padding: 28px 22px; }
  .price-band { padding: 28px 22px; }
  .price-band-stats { gap: 20px; }
  .country-flags-list { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .addon-row { grid-template-columns: 1fr; gap: 6px; text-align: left; }
  .addon-price { text-align: left; }
  .cta-actions { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
