:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #f5f5f6;
  --surface: #ffffff;
  --surface-strong: #eef1f7;
  --text: #0b1f44;
  --text-muted: #47525f;
  --border: #d9dbe2;
  --accent: #e4003a;
  --accent-dark: #c9002f;
  --shadow: 0 24px 80px rgba(8, 27, 58, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f6 100%);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

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

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

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* logo used in header and footer */
.site-logo {
  max-height: 56px;
  width: auto;
  display: inline-block;
}

.footer-site-logo {
  max-height: 50px;
}

.brand-mark-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-main,
.brand-sub {
  display: block;
  line-height: 1.1;
}

.brand-main {
  font-weight: 700;
  color: var(--text);
}

.brand-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.site-nav {
  display: none;
  gap: 1.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(11,31,68,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-toggle:hover {
  background: rgba(11,31,68,0.06);
  border-color: rgba(11,31,68,0.25);
}

.lang-toggle:active {
  transform: scale(0.98);
}

.lang-current {
  color: var(--text);
  font-weight: 700;
}

.lang-slash {
  opacity: 0.5;
}

.lang-other {
  color: var(--text-muted);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 22px 60px rgba(228,0,58,0.2);
}

.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  /* full-bleed hero background while inner content stays constrained */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  padding: 2rem 0 2.5rem;
}

.hero-content {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  padding: 0 1.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

h1, h2, h3 {
  margin: 0;
  color: var(--text);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05;
  max-width: 13ch;
}

h2 {
  font-size: clamp(2rem, 2.6vw, 3.2rem);
}

h3 {
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
}

.hero-text,
.section-head p {
  color: var(--text-muted);
  max-width: 72ch;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.9rem;
}

.hero-list li {
  padding-left: 2rem;
  position: relative;
  color: var(--text-muted);
}

.hero-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.35rem;
  font-size: 0.95rem;
  color: var(--accent);
}

.hero-buttons {
  display: grid;
  gap: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.stat-card {
  padding: 1rem 1.15rem;
  border-radius: 22px;
  background: rgba(11,31,68,0.08);
  border: 1px solid rgba(11,31,68,0.12);
  display: grid;
  gap: 0.35rem;
}

.stat-card strong {
  font-size: 1rem;
  color: var(--accent);
  display: block;
}

..stat-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.stat-card {
  position: relative;
}

.hero-stats .stat-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 10px 24px rgba(11,31,68,0.08);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.hero-stats .stat-card:nth-child(1)::before {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23e4003a" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M17 21v-2a4 4 0 0 0-4-4h-2a4 4 0 0 0-4 4v2"/%3E%3Ccircle cx="12" cy="7" r="4"/%3E%3Cpath d="M6 8a4 4 0 0 1 8 0"/%3E%3C/svg%3E');
}

.hero-stats .stat-card:nth-child(2)::before {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23e4003a" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"%3E%3Crect x="8" y="3" width="8" height="18" rx="2"/%3E%3Cline x1="12" y1="17" x2="12.01" y2="17"/%3E%3C/svg%3E');
}

.hero-stats .stat-card:nth-child(3)::before {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23e4003a" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"%3E%3Crect x="6" y="11" width="12" height="8" rx="2"/%3E%3Cpath d="M9 11V8a3 3 0 0 1 6 0v3"/%3E%3C/svg%3E');
}

.hero-visual {
  display: grid;
  place-items: center;
}

.visual-card {
  width: auto;
  max-width: 560px;
  border-radius: 32px;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.visual-phone {
  display: grid;
  place-items: center;
}

.phone-screen {
  width: 100%;
  max-width: 320px;
  border-radius: 34px;
  border: 1px solid rgba(11,31,68,0.12);
  overflow: hidden;
  background: linear-gradient(180deg, #0b1f44 0%, #112d63 100%);
  color: #fff;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  font-size: 0.9rem;
  opacity: 0.88;
}

.balance-block {
  padding: 1.5rem 1rem;
  display: grid;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
}

.balance-block strong {
  font-size: 1.6rem;
}

.transactions {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.transaction {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  opacity: 0.95;
}

.visual-info {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-mockup,
.aba-card-mockup {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
  box-shadow: none;
}

.hero-visual,
.phone-showcase {
  display: grid;
  justify-items: center;
  align-items: center;
}

.hero-visual .visual-card,
.phone-showcase img {
  margin: 0 auto;
}

.phone-showcase {
  padding-top: 0.5rem;
}

.hero-mockup {
  max-width: 300px;
}

.aba-card-mockup {
  max-width: 480px;
}
}

.notice-bar {
  /* full-bleed notice bar */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  background: #fff3f5;
  border-top: 1px solid rgba(228,0,58,0.12);
  border-bottom: 1px solid rgba(228,0,58,0.12);
}

.notice-inner {
  max-width: 1350px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  color: var(--text);
  font-weight: 600;
}

.section {
  /* full-bleed section background */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  padding: 3rem 0;
  background: #f7fbff;
}

/* Ensure section children are constrained and centered */
.section > * {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.section > .button {
  display: flex;
  margin: 2rem auto 0;
  width: max-content;
}

.section-alt {
  background: #eef4fb;
}

#why-aba {
  background: #f7fbff;
}

#aba-mobile {
  background: #f6faf1;
}

#for-whom {
  background: #eef4fb;
}

#requirements {
  background: #fff7f5;
}

#visa-e {
  background: #eef4fb;
}

#process {
  background: #f7fbff;
}

#what-you-get {
  background: #fff7f5;
}

#packages {
  background: #f6faf1;
}

#cambodia-advantage {
  background: #eef4fb;
}

#mistakes {
  background: #fff7f5;
}

#faq {
  background: #f7fbff;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-head .eyebrow,
.section-head h2,
.section-head p {
  margin-left: auto;
  margin-right: auto;
}

.section-head .eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  margin-bottom: 1.2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 2.6vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.section-head p {
  font-size: 1.05rem;
  line-height: 1.85;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 1.5rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(11,31,68,0.08);
  box-shadow: 0 18px 45px rgba(11,31,68,0.05);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.card p {
  color: var(--text-muted);
}

.split {
  display: grid;
  gap: 2rem;
}

.for-whom-split {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.split-reverse {
  align-items: center;
}

.phone-showcase {
  display: grid;
  justify-items: center;
}

.phone-frame {
  width: min(100%, 340px);
  border-radius: 44px;
  background: linear-gradient(180deg, #081b3a, #0b1f44);
  padding: 1rem;
  box-shadow: 0 30px 80px rgba(8, 27, 58, 0.15);
}

.phone-body {
  background: #0b1f44;
  border-radius: 28px;
  padding: 1.5rem;
  color: #fff;
}

.phone-card {
  background: rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.phone-balance {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.phone-balance small {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

.phone-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 0.75rem;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.phone-actions div {
  background: rgba(255,255,255,0.12);
  padding: 0.75rem 0;
  border-radius: 14px;
  text-align: center;
  font-size: 0.9rem;
}

.phone-list {
  display: grid;
  gap: 0.75rem;
}

.phone-list-item {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  font-size: 0.95rem;
}

.checklist ul,
.callout ul,
.info-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.checklist li,
.callout li,
.info-box li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-muted);
}

.checklist li::before,
.callout li::before,
.info-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.callout,
.note-box,
.info-box {
  padding: 1.75rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(11,31,68,0.08);
}

.callout h3 {
  margin-bottom: 1rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.req-card {
  padding: 1.35rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(11,31,68,0.08);
}

.req-card strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1rem;
}

.note-box {
  color: var(--text-muted);
}

.timeline {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.timeline-step {
  position: relative;
  padding: 1.6rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(11,31,68,0.08);
  display: grid;
  gap: 0.85rem;
  box-shadow: 0 24px 65px rgba(8, 27, 58, 0.08);
}

.timeline-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(228,0,58,0.03), transparent 40%);
  opacity: 0.7;
  pointer-events: none;
}

.timeline-step > * {
  position: relative;
  z-index: 1;
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(228,0,58,0.14);
  color: var(--accent);
  font-weight: 700;
}

.timeline-step h3 {
  font-size: 1.05rem;
  margin: 0;
}

.timeline-step p {
  margin: 0;
  color: var(--text-muted);
}

.package-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 460px));
  justify-content: center;
  justify-items: center;
}

.package-card {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 520px;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(11,31,68,0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  min-height: 340px;
  box-shadow: 0 32px 80px rgba(8, 27, 58, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(228,0,58,0.16), transparent 60%);
  pointer-events: none;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 110px rgba(8, 27, 58, 0.14);
}

.package-premium {
  background: linear-gradient(180deg, #fdf2f5 0%, #ffffff 100%);
  border-color: rgba(228,0,58,0.15);
}

.package-card h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.package-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(228,0,58,0.1);
  width: fit-content;
}

.package-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--text);
  font-size: 1.15rem;
}

.package-price strong {
  color: var(--accent);
}

.package-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.package-feature-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-muted);
}

.package-feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.95rem;
  color: var(--accent);
}

.package-card p {
  color: var(--text-muted);
  margin: 0;
}

.pricing-summary {
  margin-top: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(4, 28, 66, 0.06);
  border: 1px solid rgba(11,31,68,0.08);
  color: var(--text-muted);
  font-size: 0.96rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 1.5rem;
}

.contact-card {
  display: grid;
  gap: 1.2rem;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(180deg, #0b1f44, #122f5f);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 34px 90px rgba(8, 27, 58, 0.18);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -50px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(228,0,58,0.18), transparent 55%);
  pointer-events: none;
}

.contact-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card h3 {
  color: #fff;
}

.contact-card-primary {
  background: linear-gradient(180deg, #081b3a 0%, #0f2e5f 100%);
}

.contact-card-secondary {
  background: linear-gradient(180deg, rgba(228,0,58,0.16), rgba(11,31,68,0.14));
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.95rem;
}

.contact-card-primary .contact-pill,
.contact-card-secondary .contact-pill {
  color: #fff;
}

.contact-card-secondary .button-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.95);
}

.contact-card-secondary .button-secondary:hover {
  background: #f2f3f5;
}

.mistakes-list {
  display: grid;
  gap: 0.9rem;
}

.mistakes-list div {
  padding: 1.1rem 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(11,31,68,0.08);
  color: var(--text-muted);
}

.faq-accordion {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(11,31,68,0.08);
  border-radius: 18px;
  background: #fff;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
}

.faq-item span {
  display: block;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item[aria-expanded="true"] .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 1rem;
}

.section-cta {
  background: linear-gradient(180deg, #081b3a 0%, #0b1f44 100%);
  color: #fff;
}

.section-cta .section-head h2,
.section-cta .section-head .eyebrow {
  color: #fff;
}

.section-cta .section-head p {
  color: rgba(255,255,255,0.8);
}

.section-cta .contact-grid {
  justify-content: center;
  justify-items: center;
  max-width: 980px;
  margin: 2rem auto 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
}

.section-cta .contact-card {
  width: 100%;
  max-width: 420px;
}

.cta-cards {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
}

.contact-details {
  display: grid;
  gap: 0.65rem;
  color: rgba(255,255,255,0.85);
}

.site-footer {
  background: #f5f5f6;
  color: #0b1f44;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-inner {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  padding: 3rem 1.5rem 1rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
}

.footer-logo .brand-mark {
  background: var(--accent);
}

.footer-brand p {
  max-width: 44ch;
  color: var(--text-muted);
}

.footer-contact {
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
}

.footer-contact a {
  color: var(--text);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-links h3 {
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.footer-bottom {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.footer-disclaimer {
  display: none;
}

.legal-hero {
  padding: 5rem 1.25rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.legal-hero-inner {
  max-width: 980px;
  margin: 0 auto;
}

.legal-hero h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

.legal-updated {
  color: var(--text-muted);
  font-weight: 700;
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
}

.legal-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 4vw, 3rem);
}

.legal-card h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.2;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.legal-card ul {
  margin: 0.5rem 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.legal-card li {
  margin-bottom: 0.45rem;
}

.legal-card a {
  color: var(--accent);
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-list div {
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #f8fafc;
}

.contact-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
  padding: 0.95rem 1.6rem;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(11,31,68,0.15);
  padding: 0.95rem 1.6rem;
}

.button-secondary:hover {
  background: #f2f3f5;
}

.mobile-bottom-bar {
  display: none;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr minmax(280px, 420px);
    align-items: center;
  }

  .site-nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .hero-buttons {
    grid-auto-flow: column;
    align-items: start;
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 1.25rem 2rem;
  }

  .section {
    padding: 4rem 2rem;
  }

  .section-alt {
    padding: 4rem 2rem;
  }
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
    display: none;
    padding: 1.1rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);
  }

  .site-nav.open {
    display: flex;
  }

  .lang-toggle {
    order: 2;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  .header-cta {
    width: 100%;
    order: 3;
    margin-top: 0.75rem;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero-list {
    gap: 0.75rem;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .visual-card {
    padding: 1.5rem;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .timeline {
    display: grid;
  }

  .package-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .button {
    width: 100%;
  }

  .cta-cards {
    width: 100%;
  }

  .site-footer {
    padding-top: 1rem;
  }

  .footer-inner {
    padding: 1.5rem 1rem 1rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .mobile-bottom-bar {
    display: grid;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(11,31,68,0.08);
    padding: 0.5rem;
    z-index: 60;
  }

  .mobile-bottom-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: #081b3a;
    color: #fff;
    font-weight: 600;
    text-align: center;
  }

  body {
    padding-bottom: 4.5rem;
  }
}
