:root {
  --bg: #fbfaf7;
  --bg-alt: #f3f1ec;
  --bg-warm: #f7eee1;
  --dot-pattern: radial-gradient(circle at 1px 1px, rgba(14, 23, 38, 0.045) 1px, transparent 0);
  --ink: #0e1726;
  --ink-2: #2b3447;
  --muted: #5b6577;
  --line: #e6e2d8;
  --line-2: #d8d3c5;
  --accent: #d97742;
  --accent-dark: #b95d2c;
  --accent-soft: #fff1e3;
  --primary: #0e1726;
  --primary-2: #1c2538;
  --slate-grad-1: #0e1726;
  --slate-grad-2: #1a2540;
  --slate-grad-3: #2a3556;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(14, 23, 38, 0.04), 0 1px 1px rgba(14, 23, 38, 0.03);
  --shadow-md: 0 6px 24px rgba(14, 23, 38, 0.06), 0 2px 6px rgba(14, 23, 38, 0.04);
  --shadow-lg: 0 24px 60px rgba(14, 23, 38, 0.12), 0 8px 20px rgba(14, 23, 38, 0.06);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Offset hash-anchor scrolls so the fixed 72px nav doesn't sit on top of section headers
     when arriving via links like index.html#pricing from another page. */
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
code { font-family: 'SF Mono', Menlo, Consolas, monospace; font-size: 0.88em; background: rgba(14,23,38,0.06); padding: 1px 6px; border-radius: 4px; color: var(--ink); }

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); line-height: 1.08; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); line-height: 1.18; }
h3 { font-size: 1.18rem; line-height: 1.3; font-weight: 600; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 250, 247, 0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
}
.logo-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-sm { padding: 10px 16px; font-size: 0.88rem; }
.btn-lg { padding: 17px 30px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-2); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 6px 16px rgba(217, 119, 66, 0.28);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 10px 22px rgba(217, 119, 66, 0.34); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-outline:hover { border-color: var(--ink); background: #fff; }

.btn-link {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 4px;
}
.btn-link span { transition: transform .2s ease; }
.btn-link:hover span { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(217, 119, 66, 0.10), transparent 60%),
    radial-gradient(40% 60% at 0% 30%, rgba(99, 122, 173, 0.10), transparent 65%),
    linear-gradient(180deg, #fbfaf7 0%, #f6f3ed 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,23,38,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,23,38,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
}
.hero-inner { max-width: 820px; }
.hero-split {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero-copy { max-width: 580px; }
.hero-visual {
  position: relative;
}
.hero-graphic {
  display: block;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
}
.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 18px;
}
.eyebrow-light { color: rgba(255,255,255,0.85); }
.accent-underline {
  background-image: linear-gradient(transparent 70%, rgba(217, 119, 66, 0.28) 70%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 4px;
}
.lede {
  margin-top: 22px;
  font-size: 1.18rem;
  color: var(--ink-2);
  max-width: 640px;
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 28px;
  font-size: 0.86rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ---------- Trust bar ---------- */
.trust {
  background: var(--ink);
  color: #f3f1ec;
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.trust-item { text-align: center; }
.trust-number {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-label {
  margin-top: 8px;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  color: #b9b3a6;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* ---------- Sections ---------- */
section { padding: 110px 0; }

.section-head {
  max-width: 740px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head .eyebrow { color: var(--accent-dark); }
.section-head h2 { margin-bottom: 14px; }
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}
.section-head-light .eyebrow { color: var(--accent); }
.section-head-light h2 { color: #fff; }
.section-head-light .section-sub { color: #b9b3a6; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ---------- Testimonials ---------- */
.quote-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.quote-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.quote-mark { color: var(--accent); opacity: 0.7; margin-bottom: 12px; }
.quote-card blockquote {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  flex: 1;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.quote-card figcaption img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.quote-name { font-weight: 600; color: var(--ink); font-size: 0.94rem; }
.quote-role { color: var(--muted); font-size: 0.85rem; }

/* ---------- Services & Pricing ---------- */
.services { background: var(--bg-alt); }
.services .section-head a { color: var(--accent-dark); border-bottom: 1px solid currentColor; }
.services .section-head a:hover { color: var(--ink); }

/* ---------- Vertical tier cards ---------- */
.tier-cards {
  display: grid;
  gap: 18px;
  margin-top: 44px;
  padding-top: 18px;
  align-items: stretch;
}
.tier-cards-3 { grid-template-columns: repeat(3, 1fr); margin-top: 0; padding-top: 0; }

.tier-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tier-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}

.tier-card-popular-tag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 1;
}

.tier-card-recommended {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--accent);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 18px rgba(217, 119, 66, 0.4);
  transition: opacity .3s ease, transform .3s ease;
}
.tier-card-recommended::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--accent);
  width: 0;
  height: 0;
}
.tier-card.is-recommended .tier-card-recommended {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.tier-card.is-recommended {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), 0 14px 32px rgba(217, 119, 66, 0.22);
  transform: translateY(-4px);
}
.tier-card.is-recommended:hover { transform: translateY(-6px); }

.tier-card.tier-card-most-popular {
  /* keep most-popular base styling neutral so is-recommended can stack */
  border-color: var(--line-2);
}

.tier-card-head h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0;
}
.tier-card-range {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 6px 0 0;
  font-weight: 500;
}

.tier-card-price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 22px 0 6px;
  font-variant-numeric: tabular-nums;
}
.tier-card-delivery {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.tier-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier-card-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.4;
}
.tier-card-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23b95d2c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5 7.5 6 10 10.5 4.5'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
}

.tier-card-quote {
  flex: 1;
  display: flex;
  align-items: flex-end;
  font-size: 0.93rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.55;
  margin: 18px 0 22px;
}
.tier-card-quote em { font-style: italic; }

.tier-card-cta { margin-top: auto; }

/* ---------- Three-tier pricing restructure ---------- */
.tier-cards.pricing-tiers {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  padding-top: 24px;
}
.tier-card-tagline {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 14px 0 2px;
}
.tier-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(217, 119, 66, 0.35);
}
.tier-card-popular { border-color: var(--accent); }

.tier-card-rush {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--ink-2);
  line-height: 1.35;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.tier-card-rush:hover { border-color: var(--line-2); }
.tier-card-rush:has(input:checked) {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-dark);
}
.tier-card-rush input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
  border: 1.5px solid var(--line-2);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: background .15s ease, border-color .15s ease;
}
.tier-card-rush input:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.tier-card-rush input:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.size-surcharge-note {
  margin: 38px auto 0;
  max-width: 680px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.size-surcharge-note strong {
  color: var(--accent-dark);
  font-weight: 700;
}
.size-surcharge-note a {
  color: var(--accent-dark);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.size-surcharge-note a:hover { color: var(--ink); }

/* ---------- Unified pricing additions ---------- */
.tier-card-capacity {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin: 8px 0 0;
}
.custom-quote-note {
  margin: 36px auto 0;
  max-width: 620px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.custom-quote-note a {
  color: var(--accent-dark);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.custom-quote-note a:hover { color: var(--ink); }
.order-helper {
  font-size: 0.85rem;
  color: var(--muted);
  margin: -4px 0 14px;
}
.order-helper a { color: var(--accent-dark); border-bottom: 1px solid currentColor; }
.order-helper a:hover { color: var(--ink); }

/* ---------- Evernote export guide page ---------- */
.how-steps.guide-grid { grid-template-columns: repeat(3, 1fr); }
.how-steps.guide-grid::before { display: none; }
.guide-grid .how-step { padding: 32px 26px; text-align: left; }
.guide-grid .how-num { margin: 0 0 18px; }
.guide-grid .how-icon { margin-bottom: 18px; }
.guide-grid .how-step h3 { margin-bottom: 12px; font-size: 1.18rem; }
.guide-grid .how-step p { font-size: 0.94rem; line-height: 1.55; margin-bottom: 10px; }
.guide-grid .how-step p:last-child { margin-bottom: 0; }
.guide-grid .how-step code {
  font-size: 0.86em;
}
.guide-tip {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 500;
}

.guide-cta-section { padding: 80px 0 110px; background: var(--bg); }
.guide-cta {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.guide-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 14px;
}
.guide-cta p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.guide-cta p a {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.guide-cta p a:hover { color: var(--ink); }

@media (max-width: 860px) {
  .how-steps.guide-grid { grid-template-columns: 1fr; }
  .guide-cta { padding: 36px 28px; }
}


.services .destinations-row {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

/* ---------- Order panel (checkout) ---------- */
.order-head { margin-bottom: 40px; }
.final-cta .order-head .eyebrow { color: rgba(255, 255, 255, 0.85); }
.final-cta .order-head h2 { color: #fff; }
.final-cta .order-head p { color: rgba(255, 255, 255, 0.92); }

.order-panel {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(14, 23, 38, 0.24);
  overflow: hidden;
}
.order-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}
.order-fields { padding: 36px; }
.order-block { margin-bottom: 26px; }
.order-block:last-child { margin-bottom: 0; }
.order-block-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.order-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.order-plans { display: flex; flex-direction: column; gap: 10px; }
.plan-option {
  display: block;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.plan-option:hover { border-color: var(--line-2); }
.plan-option input { position: absolute; opacity: 0; pointer-events: none; }
.plan-option:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.plan-option-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.plan-option-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
.plan-option-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  vertical-align: middle;
}
.plan-option-price {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  white-space: nowrap;
}
.plan-option-desc {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--muted);
}

.order-dests { display: flex; flex-wrap: wrap; gap: 8px; }
.dest-option { position: relative; cursor: pointer; }
.dest-option input { position: absolute; opacity: 0; pointer-events: none; }
.dest-option span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  background: #fff;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.dest-option:hover span { border-color: var(--line-2); }
.dest-option:has(input:checked) span {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.dest-option input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.order-identity { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.order-summary {
  background: var(--bg-alt);
  border-left: 1px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.order-summary-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.order-summary-lines { display: flex; flex-direction: column; gap: 12px; }
.order-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
}
.order-summary-key { color: var(--muted); }
.order-summary-val { color: var(--ink); font-weight: 600; text-align: right; }
.order-summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 20px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.order-summary-amount {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.order-pay { margin-top: 4px; }
.order-trust {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.order-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  color: var(--ink-2);
}
.order-trust svg { color: var(--accent-dark); flex-shrink: 0; }
.order-note {
  margin: 16px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}
.order-summary .form-success {
  margin-top: 16px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid rgba(217, 119, 66, 0.3);
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .order-grid { grid-template-columns: 1fr; }
  .order-summary { border-left: 0; border-top: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .order-fields { padding: 26px 22px; }
  .order-summary { padding: 26px 22px; }
  .order-identity { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .tier-cards-4 { grid-template-columns: repeat(2, 1fr); }
  .tier-cards-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .tier-cards-4, .tier-cards-3 { grid-template-columns: 1fr; }
  .tier-card.is-recommended { transform: none; }
  .tier-card.is-recommended:hover { transform: translateY(-3px); }
  .tier-card-recommended { top: -30px; }
}

.tier-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tier-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.tier-card header h4 {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0;
}
.tier-card .price-amount {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: block;
  margin: 16px 0 4px;
}
.tier-meta {
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tier-meta > div {
  font-size: 0.86rem;
  color: var(--ink-2);
  line-height: 1.45;
}
.tier-meta strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.tier-extra {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 12px 0 0;
  font-style: italic;
}
.tier-card .btn { margin-top: 18px; }

.tier-card-featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #d9d4c5;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tier-card-featured:hover { transform: translateY(-9px); }
.tier-card-featured header h4 { color: var(--accent); }
.tier-card-featured .price-amount { color: #fff; }
.tier-card-featured .tier-meta { border-top-color: rgba(255,255,255,0.1); }
.tier-card-featured .tier-meta > div { color: #d9d4c5; }
.tier-card-featured .tier-meta strong { color: #8e8778; }

.rush-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin-top: 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(217, 119, 66, 0.25);
  border-radius: 8px;
  font-size: 0.84rem;
  color: var(--accent-dark);
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.rush-toggle:hover { background: #ffe6cc; border-color: rgba(217, 119, 66, 0.5); }
.rush-toggle input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1.5px solid var(--accent-dark);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin: 0;
}
.rush-toggle input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.rush-toggle input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 4px; height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.tier-card-featured .rush-toggle {
  background: rgba(217, 119, 66, 0.18);
  border-color: rgba(217, 119, 66, 0.4);
  color: #ffe1c8;
}
.tier-card-featured .rush-toggle:hover { background: rgba(217, 119, 66, 0.28); }
.tier-card-featured .rush-toggle input[type="checkbox"] { border-color: var(--accent); background: transparent; }

.destinations-row {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.destinations-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.destinations-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.destinations-chips li a,
.destinations-chips li span {
  display: inline-block;
  padding: 7px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .15s, color .15s, border-color .15s;
}
.destinations-chips li a:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.dest-mini-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.dest-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 14px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: border-color .15s, background .15s, transform .15s, box-shadow .15s;
  min-width: 0;
}
.dest-mini:hover {
  border-color: var(--ink);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.dest-mini-logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dest-mini-logo svg,
.dest-mini-logo img { display: block; width: 48px; height: 48px; object-fit: contain; }
.dest-mini-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.services-footnote {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.96rem;
  color: var(--ink-2);
  line-height: 1.55;
  padding: 18px 24px;
  background: var(--accent-soft);
  border: 1px solid rgba(217, 119, 66, 0.25);
  border-radius: 12px;
}

/* Legacy pricing classes (kept for backward compat with destination subpages) */
.pricing { background: var(--bg-alt); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card header h3 { font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 600; color: var(--accent-dark); }
.price-desc { color: var(--muted); font-size: 0.93rem; margin-top: 6px; }
.price { margin: 22px 0 8px; }
.price-amount { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }

.price-meta {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-meta > div {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.price-meta strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.price-card .btn { margin-top: 24px; }

.price-card-featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #d9d4c5;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card-featured:hover { transform: translateY(-9px); }
.price-card-featured header h3 { color: var(--accent); }
.price-card-featured .price-desc { color: #b9b3a6; }
.price-card-featured .price-amount { color: #fff; }
.price-card-featured .price-meta { border-top-color: rgba(255,255,255,0.08); }
.price-card-featured .price-meta > div { color: #d9d4c5; }
.price-card-featured .price-meta strong { color: #8e8778; }

.badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.pricing-note {
  margin: 48px auto 0;
  max-width: 580px;
  text-align: center;
  color: var(--ink-2);
  font-size: 0.96rem;
}
.pricing-note a { color: var(--accent-dark); font-weight: 600; border-bottom: 1px solid currentColor; }
.pricing-note a:hover { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq-inner { max-width: 820px; }
.faq-inner .section-head { margin-bottom: 48px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.faq-item[open] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent);
  transition: transform .2s ease;
  line-height: 1;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---------- Final CTA + Quote form ---------- */
.final-cta {
  background: linear-gradient(135deg, #b95d2c 0%, #d97742 50%, #e89466 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 50% at 20% 30%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(40% 60% at 80% 70%, rgba(14,23,38,0.18), transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: 720px; margin: 0 auto; text-align: center; }
.final-cta h2 {
  color: #fff;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 2.6rem);
}
.final-cta > .container > p,
.final-cta-inner > p {
  color: rgba(255,255,255,0.92);
  font-size: 1.08rem;
  margin-bottom: 40px;
}

.quote-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
  box-shadow: 0 30px 60px rgba(14,23,38,0.24);
  color: var(--ink-2);
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field .optional { color: var(--muted); font-weight: 400; }
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 11px 14px;
  outline: 0;
  transition: border-color .15s, box-shadow .15s, background .15s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(217, 119, 66, 0.14);
  background: #fff;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%235b6577' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 6 8 10 12 6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-success {
  grid-column: 1 / -1;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid rgba(217, 119, 66, 0.3);
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #b9b3a6;
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logo-footer .logo-text { color: #fff; }
.logo-footer .logo-mark { background: transparent; width: 34px; height: 34px; }
.copyright { font-size: 0.88rem; color: #7a7567; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: #b9b3a6; font-size: 0.88rem; }
.footer-links a:hover { color: #fff; }

/* ---------- How it works (5 customer steps) ---------- */
.how { background: var(--bg); }
.how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
  counter-reset: step;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 15%, var(--line-2) 85%, transparent);
  z-index: 0;
}
.how-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.how-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.how-num {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.how-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.how-step h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 600;
}
.how-step p { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.how-note {
  margin: 48px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.6;
  padding: 18px 24px;
  background: #fff;
  border: 1px dashed var(--line-2);
  border-radius: 12px;
}
.how-note strong { color: var(--ink); }

/* ---------- Why file size ---------- */
.why-size {
  padding: 90px 0;
  background: var(--bg-warm);
}
.why-size-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: flex-start;
  max-width: 920px;
  margin: 0 auto;
  padding: 44px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.why-size-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  flex-shrink: 0;
}
.why-size-card h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin: 8px 0 14px;
}
.why-size-card p {
  color: var(--ink-2);
  font-size: 0.99rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.why-size-card p:last-child { margin-bottom: 0; }
.why-size-card strong { color: var(--ink); }

/* ---------- Data safety ---------- */
.data-safety {
  padding: 110px 0;
  background-color: var(--bg-warm);
  background-image: var(--dot-pattern);
  background-size: 26px 26px;
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.safety-point {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.safety-point:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.safety-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.safety-point h3 {
  font-size: 1.02rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin: 0 0 6px;
}
.safety-point p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }

/* ---------- Export walkthrough ---------- */
.walkthrough { background: var(--bg-alt); }
.walk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.walk-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.walk-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.walk-mock {
  background: linear-gradient(180deg, #fbfaf7 0%, #f3f1ec 100%);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 20px;
}
.walk-mock svg { display: block; width: 100%; height: auto; }
.walk-step h3 {
  font-size: 1.04rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 6px;
}
.walk-step p { color: var(--muted); font-size: 0.91rem; line-height: 1.5; }
.walkthrough-note {
  margin: 48px auto 0;
  max-width: 560px;
  text-align: center;
  color: var(--ink-2);
  font-size: 0.96rem;
}

/* ---------- Destination subpage ---------- */
.dest-hero {
  position: relative;
  padding: 168px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.dest-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.dest-hero h1 { max-width: 760px; }
.dest-hero .lede { max-width: 660px; }
.breadcrumb {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--ink); margin-left: 4px; }

.preserve {
  padding: 110px 0;
  background: var(--bg-alt);
}
.preserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.preserve-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.preserve-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.preserve-item h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-sans);
}
.preserve-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.why-section { padding: 110px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  text-align: left;
}
.why-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 { margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card-featured { transform: none; }
  .tier-card-featured { transform: none; }
  .tier-card-featured:hover { transform: translateY(-3px); }
  .how-steps { grid-template-columns: repeat(3, 1fr); }
  .how-steps::before { display: none; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-mini-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: none; }
  .hero-graphic { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 980px) {
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .walk-grid { grid-template-columns: repeat(2, 1fr); }
  .why-size-card { grid-template-columns: 1fr; gap: 24px; padding: 36px 32px; }
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .timeline::before { display: none; }
  .preserve-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  section { padding: 80px 0; }
  .hero, .dest-hero { padding: 130px 0 70px; }
  .preserve, .why-section { padding: 70px 0; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s, transform .18s;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 12px 8px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .trust-divider { display: none; }
  .security-grid { grid-template-columns: 1fr; }
  .walk-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .dest-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .why-size { padding: 70px 0; }
  .service-panel { padding: 28px 22px; }
  .quote-form { grid-template-columns: 1fr; padding: 26px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* Legal pages (privacy / terms) */
.legal { padding: 60px 0 100px; background: var(--bg); }
.legal-body { max-width: 720px; margin: 0 auto; color: var(--ink); }
.legal-body h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; line-height: 1.25; margin: 48px 0 16px; letter-spacing: -0.01em; }
.legal-body h2:first-of-type { margin-top: 16px; }
.legal-body p, .legal-body li { color: var(--muted); font-size: 1rem; line-height: 1.65; }
.legal-body p { margin: 0 0 14px; }
.legal-body ul { margin: 0 0 18px; padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--accent-dark); }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body code { background: var(--bg-alt); padding: 1px 6px; border-radius: 4px; font-size: 0.92em; color: var(--ink); }
.legal-meta { color: var(--muted); font-size: 0.9rem; padding-bottom: 22px; margin-bottom: 8px; border-bottom: 1px solid var(--border, #e6e2d8); }
@media (max-width: 640px) {
  .legal { padding: 40px 0 70px; }
  .legal-body h2 { font-size: 1.3rem; margin-top: 36px; }
}

/* Destinations comparison table */
.dest-table-section { padding: 96px 0; background: var(--bg-alt); }
.dest-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(14, 23, 38, 0.06);
  margin-top: 44px;
  -webkit-overflow-scrolling: touch;
}
.dest-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
  table-layout: fixed;
}
.dest-table colgroup col.dest-col-w { width: 22%; }
.dest-table colgroup col.feat-col-w { width: 13%; }
.dest-table th,
.dest-table td {
  padding: 18px 12px;
  text-align: center;
  font-size: 0.95rem;
  vertical-align: middle;
}
.dest-table thead {
  background: #fafaf5;
}
.dest-table thead th {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--ink);
  white-space: nowrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.dest-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.12s ease;
}
.dest-table tbody tr:last-child { border-bottom: none; }
.dest-table tbody tr:hover { background: var(--bg); }
.dest-table tbody td { border-right: 1px solid var(--line); }
.dest-table tbody td:last-child { border-right: none; }
.dest-table thead th { border-right: 1px solid var(--line); }
.dest-table thead th:last-child { border-right: none; }

.dest-table .dest-col-h,
.dest-table .dest-col {
  text-align: left;
  padding-left: 22px;
  padding-right: 14px;
}
.dest-table .dest-col {
  background: #fcfaf4;
}
.dest-table tbody tr:hover .dest-col {
  background: var(--bg);
}
.dest-table .dest-col a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  transition: color 0.15s ease;
}
.dest-table .dest-col img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.dest-table .dest-col a:hover { color: var(--accent-dark); }

/* Checkmark badges — subtle pill style */
.dt-yes, .dt-partial, .dt-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  cursor: help;
}
.dt-yes    { color: #2d6a31; background: #e6f3e7; }
.dt-partial{ color: #a06a1d; background: #fdedd1; }
.dt-no     { color: #8a8f9a; background: #ececf1; }

.dest-table-legend {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--ink);
}
.dest-table-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dest-table-legend b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.85rem;
}
.dest-table-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 14px;
}
@media (max-width: 760px) {
  .dest-table-section { padding: 64px 0; }
  .dest-table-wrap { border-radius: 12px; margin-top: 30px; }
  .dest-table th, .dest-table td { padding: 14px 10px; }
  .dest-table-legend { gap: 16px; font-size: 0.86rem; }
}

