:root {
  --ink: #10282a;
  --muted: #607274;
  --paper: #f7f7f2;
  --white: #fff;
  --forest: #0b4d45;
  --forest-dark: #073a35;
  --mint: #74fbde;
  --sage: #96dd8b;
  --teal: #2eb1af;
  --line: rgba(16, 40, 42, 0.14);
  --shadow: 0 28px 70px rgba(7, 58, 53, 0.14);
  --radius: 30px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

.site-loader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 7px;
  background: var(--paper);
  color: var(--forest-dark);
  transition: opacity .42s ease, visibility .42s ease;
  animation: loader-fallback .4s ease 4s forwards;
}

.site-loader.is-finished { opacity: 0; visibility: hidden; }

.loader-trip { position: relative; width: min(320px, 84vw); height: 130px; overflow: hidden; }

.loader-trip img { position: absolute; z-index: 4; top: 30px; left: 13%; width: 112px; filter: drop-shadow(0 13px 12px rgba(7,58,53,.17)); animation: loader-bot-fly .58s ease-in-out infinite alternate; }

.loader-cloud { position: absolute; width: 54px; height: 17px; border-radius: 99px; background: #dceee9; opacity: .8; }

.loader-cloud::before, .loader-cloud::after { content: ""; position: absolute; bottom: 0; border-radius: 50%; background: inherit; }

.loader-cloud::before { left: 9px; width: 25px; height: 25px; }

.loader-cloud::after { right: 7px; width: 19px; height: 19px; }

.loader-cloud-one { z-index: 2; top: 18px; left: 110%; animation: loader-cloud-pass 2.25s linear infinite; }

.loader-cloud-two { z-index: 5; right: auto; bottom: 9px; left: 110%; transform: scale(.72); animation: loader-cloud-pass 2.8s -1.35s linear infinite; }

.loader-cloud-three { z-index: 1; top: 48px; left: 110%; transform: scale(.48); opacity: .5; animation: loader-cloud-pass 3.6s -.8s linear infinite; }

.loader-speed { position: absolute; z-index: 3; left: 4%; width: 32px; height: 2px; border-radius: 99px; background: rgba(46,177,175,.28); animation: loader-speed-pass 1.1s linear infinite; }

.loader-speed-one { top: 52px; }

.loader-speed-two { top: 83px; width: 19px; animation-delay: -.55s; }

.site-loader strong { margin-top: 8px; font-size: 19px; letter-spacing: -.02em; }

.site-loader > span { color: var(--muted); font-size: 12px; }

.loader-dots { display: flex; gap: 5px; margin-top: 4px; }

.loader-dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); animation: loader-dot 1s ease-in-out infinite; }

.loader-dots i:nth-child(2) { animation-delay: .14s; }

.loader-dots i:nth-child(3) { animation-delay: .28s; }

@keyframes loader-bot-fly { from { transform: translateY(2px) rotate(-1.5deg); } to { transform: translateY(-9px) rotate(1.5deg); } }

@keyframes loader-cloud-pass { from { left: 110%; } to { left: -24%; } }

@keyframes loader-speed-pass { from { transform: translateX(250px); opacity: 0; } 18% { opacity: 1; } to { transform: translateX(-60px); opacity: 0; } }

@keyframes loader-dot { 0%,60%,100% { transform: translateY(0); opacity: .45; } 30% { transform: translateY(-4px); opacity: 1; } }

@keyframes loader-fallback { to { opacity: 0; visibility: hidden; } }

@media (prefers-reduced-motion: reduce) {
  .loader-trip img, .loader-cloud, .loader-speed, .loader-dots i { animation: none; }
  .loader-trip img { left: 50%; transform: translateX(-50%); }
  .loader-cloud-one { left: 8%; }
  .loader-cloud-two { left: 76%; }
  .loader-cloud-three { left: 62%; }
}

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

a { color: inherit; text-decoration: none; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

button, select { font: inherit; }

.shell { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--forest);
  color: var(--white);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(16, 40, 42, 0.08);
  background: rgba(247, 247, 242, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }

.brand-mark {
  width: 50px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img { width: 100%; height: auto; }

.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }

.brand-copy strong { font-size: 18px; letter-spacing: -0.02em; }

.brand-copy span { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }

.site-nav a { color: #435b5d; font-size: 14px; font-weight: 650; transition: color 180ms ease; }

.site-nav a:hover { color: var(--forest); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.language-control select {
  height: 42px;
  padding: 0 30px 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.menu-button { display: none; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-weight: 750;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 26px rgba(11, 77, 69, 0.2);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); background: var(--forest-dark); box-shadow: 0 14px 32px rgba(11, 77, 69, 0.27); }

.button-small { min-height: 42px; padding: 0 18px; font-size: 13px; }

.button-light { border-color: var(--white); background: var(--white); color: var(--forest-dark); box-shadow: none; }

.button-light:hover { background: var(--mint); color: var(--forest-dark); }

.hero { position: relative; overflow: hidden; padding: 88px 0 82px; background: linear-gradient(145deg, #073a35 0%, #0b4d45 62%, #0e5d52 100%); color: var(--white); }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .82fr; align-items: center; gap: 74px; }

.hero-glow { position: absolute; border-radius: 50%; filter: blur(5px); pointer-events: none; }

.hero-glow-one { width: 520px; height: 520px; top: -240px; left: -180px; background: radial-gradient(circle, rgba(116,251,222,.2), transparent 68%); }

.hero-glow-two { width: 420px; height: 420px; right: -140px; bottom: -240px; background: radial-gradient(circle, rgba(150,221,139,.18), transparent 70%); }

.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero .eyebrow { color: var(--mint); }

.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 6px rgba(46,177,175,.12); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 630px;
  margin: 24px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6vw, 88px);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 500;
}

h1 em { color: var(--mint); font-weight: 500; }

.hero-lead { max-width: 620px; margin-bottom: 32px; color: rgba(255,255,255,.7); font-size: 19px; line-height: 1.7; }

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }

.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--mint); font-weight: 750; border-bottom: 1px solid rgba(116,251,222,.45); }

.text-link span:last-child { font-size: 20px; transition: transform 180ms ease; }

.text-link:hover span:last-child { transform: translate(3px, 3px); }

.hero-notes { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 36px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 650; }

.hero-notes > span { display: inline-flex; align-items: center; gap: 7px; }

.hero-notes i { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: rgba(116,251,222,.13); color: var(--mint); font-size: 11px; font-style: normal; }

.hero-technical-map { position: relative; min-height: 690px; overflow: hidden; border: 1px solid rgba(255,255,255,.26); border-radius: 36px; background: radial-gradient(circle at 84% 12%,rgba(116,251,222,.22),transparent 28%),linear-gradient(155deg,#fbfdfb,#e5f0eb); color: var(--forest-dark); box-shadow: 0 36px 90px rgba(0,0,0,.28); isolation: isolate; }

.hero-technical-map::after { content: ""; position: absolute; z-index: 0; width: 260px; height: 260px; right: -105px; bottom: -105px; border-radius: 50%; background: rgba(46,177,175,.11); filter: blur(2px); }

.tech-map-grid { position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(11,77,69,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(11,77,69,.08) 1px,transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to bottom,#000,transparent 94%); }

.tech-map-brand { position: absolute; z-index: 4; top: 24px; left: 24px; display: flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px; border: 1px solid rgba(11,77,69,.1); border-radius: 999px; background: rgba(255,255,255,.72); box-shadow: 0 12px 30px rgba(7,58,53,.08); backdrop-filter: blur(14px); }

.tech-map-brand img { width: 62px; height: 40px; object-fit: contain; }

.tech-map-brand span { display: flex; flex-direction: column; line-height: 1.15; }

.tech-map-brand strong { font-size: 14px; }

.tech-map-brand small { margin-top: 3px; color: var(--muted); font-size: 7px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.tech-route { position: absolute; z-index: 1; inset: 62px 16px 18px; width: calc(100% - 32px); height: calc(100% - 80px); overflow: visible; }

.tech-route path { fill: none; stroke: var(--teal); stroke-width: 2.5; stroke-dasharray: 4 10; stroke-linecap: round; }

.tech-route circle { fill: var(--white); stroke: var(--teal); stroke-width: 4; filter: drop-shadow(0 4px 5px rgba(7,58,53,.18)); }

.tech-node { position: absolute; z-index: 3; width: 192px; min-height: 94px; display: grid; grid-template-columns: 54px minmax(0,1fr); align-items: center; gap: 12px; padding: 13px; border: 1px solid rgba(11,77,69,.13); border-radius: 21px; background: rgba(255,255,255,.88); box-shadow: 0 18px 42px rgba(7,58,53,.11),inset 0 1px 0 rgba(255,255,255,.9); backdrop-filter: blur(16px); }

.tech-node-airport { top: 105px; left: 22px; }

.tech-node-transfer { top: 245px; right: 22px; }

.tech-node-stay { top: 390px; left: 22px; }

.tech-node-hospital { right: 22px; bottom: 62px; }

.tech-icon { position: relative; width: 54px; height: 54px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(116,251,222,.24); border-radius: 17px; background: linear-gradient(145deg,#0d665b,#073a35); color: var(--mint); box-shadow: 0 12px 24px rgba(7,58,53,.2),inset 0 1px 0 rgba(255,255,255,.12); }

.tech-icon::after { content: ""; position: absolute; width: 34px; height: 34px; top: -18px; right: -12px; border-radius: 50%; background: rgba(255,255,255,.12); }

.tech-icon svg { position: relative; z-index: 1; width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.tech-node > span:last-child { display: flex; flex-direction: column; }

.tech-node small { color: var(--teal); font-size: 8px; font-weight: 850; letter-spacing: .11em; }

.tech-node strong { margin-top: 5px; font-size: 12px; line-height: 1.3; }

.tech-map-status { position: absolute; z-index: 4; right: 22px; bottom: 18px; display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 8px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }

.tech-map-status i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #25c46c; box-shadow: 0 0 0 4px rgba(37,196,108,.12); }

.clarity-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.45); }

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

.clarity-grid > div { display: flex; align-items: center; gap: 18px; min-height: 110px; padding: 0 34px; border-right: 1px solid var(--line); }

.clarity-grid > div:first-child { padding-left: 0; }

.clarity-grid > div:last-child { border: 0; }

.clarity-number { font-family: Georgia, serif; color: var(--teal); font-size: 28px; font-style: italic; }

.clarity-grid p { margin: 0; font-size: 14px; font-weight: 750; }

.section { padding: 118px 0; }

.partner-section { background: #eef3ed; }

.partner-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 72px; align-items: center; }

.partner-visual { position: relative; min-height: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }

.partner-photo { aspect-ratio: 1122 / 1402; margin: 0; background: #c8c5bd; }

.partner-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }

.partner-photo:hover > img { transform: scale(1.025); }

.partner-photo-shade { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 58%,rgba(4,34,31,.4) 100%); pointer-events: none; }

.partner-badge { position: absolute; left: 24px; bottom: 24px; padding: 11px 16px; border: 1px solid rgba(255,255,255,.75); border-radius: 999px; background: rgba(255,255,255,.91); color: var(--forest-dark); font-size: 12px; font-weight: 800; box-shadow: 0 10px 28px rgba(7,58,53,.14); backdrop-filter: blur(12px); }

.partner-copy h2 { font-size: clamp(38px, 3.7vw, 58px); }

.partner-copy > p { margin: 25px 0 0; color: var(--muted); font-size: 16px; }

.partner-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 32px 0 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }

.partner-facts > div { padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.55); }

.partner-facts dt { color: var(--forest); font-family: Georgia, serif; font-size: 32px; line-height: 1; }

.partner-facts dd { margin: 7px 0 0; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

.partner-copy .source-note { margin-top: 14px; font-size: 11px; }

.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 52px; }

h2 { margin: 15px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 4.3vw, 66px); line-height: 1.02; letter-spacing: -.045em; font-weight: 500; }

.section-heading p, .support-copy p, .faq-heading p { margin: 0; color: var(--muted); font-size: 17px; }

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

.care-card { min-height: 310px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.7); transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease; }

.care-card:hover { transform: translateY(-6px); background: var(--white); box-shadow: 0 20px 50px rgba(16,40,42,.09); }

.care-icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 17px; background: #e1f4ec; color: var(--forest); }

.care-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 2.15; stroke-linecap: round; stroke-linejoin: round; }

.care-card h3 { margin-bottom: 11px; font-family: Georgia, serif; font-size: 25px; line-height: 1.15; font-weight: 500; }

.care-card p { margin-bottom: 24px; color: var(--muted); font-size: 14px; }

.care-card > span { margin-top: auto; color: var(--forest); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.scope-note { max-width: 760px; margin: 36px auto 0; color: var(--muted); text-align: center; font-size: 13px; }

.journey-section { overflow: hidden; background: var(--forest-dark); color: var(--white); }

.journey-layout { display: block; }

.kicker-light { color: var(--mint); }

.journey-intro { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 70px; align-items: end; }

.journey-intro h2 { max-width: 550px; }

.journey-intro > p { max-width: 650px; margin: 24px 0 0; color: rgba(255,255,255,.7); }

.bot-orbit { position: relative; grid-column: 2; grid-row: 1 / 4; width: 100%; min-height: 190px; display: flex; align-items: center; margin-top: 0; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 95px 28px 28px 95px; background: rgba(255,255,255,.06); }

.bot-orbit img { position: relative; z-index: 2; width: 170px; filter: drop-shadow(0 20px 28px rgba(0,0,0,.22)); animation: float 4s ease-in-out infinite; }

.bot-halo { position: absolute; left: 24px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(116,251,222,.24), transparent 68%); }

.bot-message { position: relative; z-index: 2; max-width: 140px; margin-left: 16px; font-size: 13px; line-height: 1.45; font-weight: 700; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.journey-steps { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin: 76px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.24); list-style: none; }

.journey-steps li { position: relative; display: block; padding: 35px 18px 0; border: 0; }

.journey-steps li:first-child { padding-top: 35px; padding-left: 0; }

.journey-steps li::before { content: ""; position: absolute; top: -7px; left: 18px; width: 13px; height: 13px; border: 3px solid var(--forest-dark); border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 1px rgba(116,251,222,.55); }

.journey-steps li:first-child::before { left: 0; }

.journey-steps li > span { color: var(--mint); font-family: Georgia, serif; font-size: 23px; font-style: italic; }

.journey-steps h3 { margin: 10px 0 8px; font-size: 17px; line-height: 1.25; }

.journey-steps p { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.55; }

.support-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }

.support-copy { position: sticky; top: 130px; align-self: start; }

.support-copy p { margin-top: 24px; }

.support-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }

.support-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 4px 18px; padding: 25px 0; border-top: 1px solid var(--line); }

.support-list > div > span { grid-row: 1 / 3; color: var(--teal); font-family: Georgia, serif; font-size: 22px; font-style: italic; }

.support-list strong { font-size: 15px; }

.support-list small { color: var(--muted); font-size: 13px; line-height: 1.5; }

.principles-section { padding-top: 0; }

.principles-grid { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }

.principles-panel { min-height: 470px; display: flex; flex-direction: column; justify-content: flex-end; padding: 52px; background: linear-gradient(145deg, #173f3b, #092f2b); color: var(--white); }

.principles-copy { display: flex; flex-direction: column; justify-content: center; padding: 52px; background: var(--white); }

.principles-copy > p { color: var(--muted); font-size: 17px; }

.principles-copy ul { display: grid; gap: 13px; margin: 22px 0 0; padding: 0; list-style: none; }

.principles-copy li { position: relative; padding-left: 29px; font-size: 14px; font-weight: 700; }

.principles-copy li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); }

.faq-section { background: #eef3ed; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }

.faq-heading p { margin-top: 22px; }

.faq-list details { border-top: 1px solid var(--line); }

.faq-list details:last-child { border-bottom: 1px solid var(--line); }

.faq-list summary { position: relative; padding: 24px 48px 24px 0; cursor: pointer; list-style: none; font-family: Georgia, serif; font-size: 21px; line-height: 1.35; }

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after { content: "+"; position: absolute; top: 21px; right: 4px; color: var(--teal); font-family: Inter, sans-serif; font-size: 26px; font-weight: 400; }

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p { max-width: 680px; margin: -3px 48px 24px 0; color: var(--muted); font-size: 14px; }

.final-cta { padding: 78px 0; border-top: 1px solid var(--line); background: #f1f3ee; }

.final-cta-inner { position: relative; display: grid; grid-template-columns: 122px minmax(0, 1fr) auto; align-items: center; gap: 34px; overflow: hidden; padding: 38px; border: 1px solid rgba(16,40,42,.1); border-radius: 30px; background: var(--white); box-shadow: 0 24px 64px rgba(7,58,53,.1); }

.final-cta-inner::after { position: absolute; z-index: 0; top: -85px; right: -65px; width: 210px; height: 210px; border: 44px solid rgba(37,211,102,.07); border-radius: 50%; content: ""; }

.final-cta-inner > * { position: relative; z-index: 1; }

.final-cta h2 { max-width: 820px; color: var(--forest-dark); font-size: clamp(35px, 3.7vw, 54px); }

.final-cta p { max-width: 650px; margin: 16px 0 0; color: var(--muted); font-weight: 600; }

.final-cta .kicker-light { color: #128c4a; }

.final-share-bot { width: 122px; height: 122px; display: grid; place-items: center; border: 1px solid #dce8e3; border-radius: 50%; background: #f7faf8; box-shadow: inset 0 0 0 9px var(--white); }

.final-share-bot img { width: 102px; }

.whatsapp-button { min-width: 236px; min-height: 68px; display: inline-flex; align-items: center; gap: 12px; padding: 0 18px; border-radius: 18px; background: #20bd5a; color: var(--white); box-shadow: 0 15px 32px rgba(20,158,72,.22); transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease; }

.whatsapp-button:hover { transform: translateY(-2px); background: #18a94e; box-shadow: 0 18px 38px rgba(20,158,72,.28); }

.whatsapp-icon { width: 34px; height: 34px; display: grid; flex: 0 0 34px; place-items: center; }

.whatsapp-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

.whatsapp-icon svg path:last-child { fill: currentColor; stroke: none; }

.whatsapp-label { display: flex; flex-direction: column; line-height: 1.15; }

.whatsapp-label small { color: rgba(255,255,255,.72); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.whatsapp-button strong { margin-top: 4px; font-size: 13px; }

.whatsapp-arrow { margin-left: auto; font-size: 17px; }

.site-footer { padding: 64px 0 24px; background: #092f2b; color: var(--white); }

.footer-grid { display: grid; grid-template-columns: .8fr 1.5fr .7fr; gap: 64px; align-items: start; }

.footer-brand .brand-copy span { color: rgba(255,255,255,.55); }

.footer-disclaimer { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; }

.footer-links { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; font-size: 13px; font-weight: 700; }

.footer-links a:hover { color: var(--mint); }

.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }

.reveal-delay { transition-delay: .12s; }

.reveal.is-visible { opacity: 1; transform: translateY(0); }

[dir="rtl"] .text-link span:last-child { transform: scaleX(-1); }
[dir="rtl"] .principles-copy li { padding-left: 0; padding-right: 29px; }
[dir="rtl"] .principles-copy li::before { left: auto; right: 0; }
[dir="rtl"] .faq-list summary { padding-right: 0; padding-left: 48px; }
[dir="rtl"] .faq-list summary::after { right: auto; left: 4px; }
[dir="rtl"] .language-control select { direction: ltr; }

@media (max-width: 1020px) {
  .header-inner { gap: 16px; }
  .brand-copy span { display: none; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 13px; }
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-copy { max-width: 760px; }
  .hero-technical-map { width: min(560px, 100%); min-height: 620px; margin: 0 auto; }
  .partner-grid { gap: 42px; }
  .care-grid { grid-template-columns: 1fr 1fr; }
  .journey-intro { display: block; }
  .bot-orbit { width: min(390px, 100%); margin-top: 38px; }
  .journey-steps { display: block; margin: 58px 0 0 7px; border-top: 0; }
  .journey-steps li, .journey-steps li:first-child { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 0 0 34px 28px; border-left: 1px solid rgba(255,255,255,.24); }
  .journey-steps li::before, .journey-steps li:first-child::before { top: 5px; left: -7px; }
  .journey-steps h3 { margin-top: 3px; font-size: 19px; }
  .journey-steps p { font-size: 13px; }
  .support-grid, .faq-grid { gap: 54px; }
  .footer-grid { grid-template-columns: 1fr 1.6fr; }
  .footer-links { grid-column: 1 / -1; flex-direction: row; align-items: center; }
}

@media (max-width: 780px) {
  .shell { width: min(100% - 30px, 680px); }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 44px; height: 36px; }
  .menu-button { width: 42px; height: 42px; display: grid; align-content: center; gap: 5px; margin-left: auto; padding: 0 10px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); }
  .menu-button > span:not(.sr-only) { display: block; height: 1.5px; background: var(--ink); }
  .site-nav { position: fixed; inset: 72px 0 auto 0; display: grid; gap: 0; padding: 16px 22px 24px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 16px 30px rgba(16,40,42,.1); transform: translateY(-140%); opacity: 0; visibility: hidden; pointer-events: none; transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease; }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .header-actions .button { display: none; }
  .hero { padding: 48px 0 44px; }
  .hero-grid { gap: 36px; }
  h1 { font-size: clamp(48px, 14vw, 66px); }
  .hero-lead { font-size: 17px; }
  .hero-technical-map { min-height: 540px; border-radius: 28px; }
  .clarity-grid { grid-template-columns: 1fr; }
  .clarity-grid > div { min-height: 76px; padding: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 70px 0; }
  .section-heading, .partner-grid, .support-grid, .principles-grid, .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .partner-visual { height: auto; }
  .journey-intro, .support-copy { position: static; }
  .principles-panel { min-height: 340px; padding: 34px; }
  .principles-copy { padding: 34px; }
  .final-cta { padding: 54px 0; }
  .final-cta-inner { grid-template-columns: 76px minmax(0, 1fr); align-items: center; gap: 18px; padding: 24px 20px; border-radius: 24px; }
  .final-share-bot { width: 76px; height: 76px; }
  .final-share-bot img { width: 64px; }
  .whatsapp-button { grid-column: 1 / -1; width: 100%; justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { grid-column: auto; align-items: flex-start; }
}

@media (max-width: 540px) {
  .header-actions { gap: 6px; }
  .language-control select { width: 62px; padding: 0 10px; appearance: none; text-align: center; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-notes { align-items: flex-start; flex-direction: column; }
  .hero-technical-map { height: clamp(470px, 134vw, 520px); min-height: 0; }
  .tech-map-brand { top: 14px; left: 14px; }
  .tech-map-brand img { width: 52px; height: 34px; }
  .tech-node { width: calc(50% - 20px); min-height: 76px; grid-template-columns: 40px minmax(0,1fr); gap: 8px; padding: 9px; border-radius: 16px; }
  .tech-node-airport { top: 79px; left: 10px; }
  .tech-node-transfer { top: 181px; right: 10px; }
  .tech-node-stay { top: 284px; left: 10px; }
  .tech-node-hospital { right: 10px; bottom: 47px; }
  .tech-icon { width: 40px; height: 40px; border-radius: 13px; }
  .tech-icon svg { width: 23px; height: 23px; }
  .tech-node strong { font-size: 9px; }
  .tech-node small { font-size: 7px; }
  .tech-map-status { right: 10px; bottom: 13px; max-width: 62%; text-align: right; }
  .care-grid, .support-list { grid-template-columns: 1fr; }
  .care-card { min-height: 240px; padding: 24px; }
  .care-icon { margin-bottom: 25px; }
  .partner-badge { left: 14px; bottom: 14px; }
  .partner-facts > div { padding: 16px; }
  .bot-orbit { padding: 22px 18px; }
  .bot-orbit img { width: 135px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 360px) {
  .shell { width: calc(100% - 24px); }
  .header-inner { gap: 8px; }
  .brand { gap: 7px; }
  .brand-mark { width: 40px; }
  .brand-copy strong { font-size: 16px; }
  .menu-button { width: 40px; height: 40px; }
  .language-control select { width: 54px; padding: 0 6px; }
  .hero { padding-top: 40px; }
  h1 { font-size: 44px; }
  h2 { font-size: 38px; }
  .hero-lead { font-size: 16px; }
  .hero-technical-map { height: 465px; }
  .partner-facts dt { font-size: 27px; }
  .partner-facts dd { font-size: 9px; }
  .principles-panel, .principles-copy { padding: 26px; }
  .bot-orbit { min-height: 195px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
