/* M & N Holidays — Coming Soon Site
   Design language: Release 1 (deep navy / ivory / premium blue & gold)
   Self-hosted fonts only. No external resources. */

/* ── Fonts ─────────────────────────────────────────────────────────────── */
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ── Design tokens ──────────────────────────────────────────────────────── */
:root {
  /* Raw palette */
  --navy:         #12385b;
  --navy-dark:    #0b2843;
  --navy-900:     #071d31;
  --navy-800:     #0a2438;
  --navy-700:     #143f63;
  --charcoal:     #26313f;
  --slate:        #52606d;
  --slate-400:    #6b7886;
  --slate-300:    #8b97a3;
  --line:         #c9d1d9;
  --line-soft:    #e6eaef;
  --soft-gray:    #f4f6f9;
  --soft-blue:    #eef4f8;
  --white:        #ffffff;

  /* Brand accent */
  --logo-blue:    #18519c;
  --logo-blue-d:  #143f7a;
  --cyan:         #079bd5;
  --cyan-d:       #0686ba;
  --cyan-l:       #38b6e6;
  --gold:         #c08a18;
  --gold-soft:    #fbf3e0;

  /* Gradients */
  --grad-brand:   linear-gradient(120deg, #18519c 0%, #079bd5 100%);
  --grad-hero:
    radial-gradient(900px 520px at 12% -8%,  rgba(7,155,213,.28), transparent 60%),
    radial-gradient(760px 620px at 96%  8%,  rgba(43,111,192,.28), transparent 62%),
    radial-gradient(700px 700px at 78% 118%, rgba(83,182,220,.14), transparent 60%),
    linear-gradient(160deg, #0e3354 0%, #0b2843 50%, #071d31 100%);

  /* Shadows */
  --shadow-sm:  0 2px 6px rgba(11,40,67,.07), 0 1px 2px rgba(11,40,67,.06);
  --shadow-md:  0 10px 28px rgba(11,40,67,.10), 0 2px 6px rgba(11,40,67,.06);
  --shadow-lg:  0 22px 48px rgba(8,30,49,.18), 0 6px 16px rgba(8,30,49,.10);

  /* Radius */
  --r-sm: 7px;  --r-md: 10px;  --r-lg: 14px;  --r-xl: 20px;  --r-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur-base: 200ms;

  /* Fonts */
  --font-display: "Sora", system-ui, sans-serif;
  --font-sans:    "Manrope", system-ui, sans-serif;

  /* ── Light mode semantic ─────────────────────────────────────────────── */
  --bg-page:      #f4f6f9;
  --bg-surface:   #ffffff;
  --bg-sunken:    #f8fafc;
  --bg-nav:       rgba(255,255,255,.92);
  --bg-hero:      var(--grad-hero);
  --bg-footer:    #071d31;

  --fg-1:   #0b2843;
  --fg-2:   #2a3744;
  --fg-3:   #52606d;
  --fg-4:   #6b7886;

  --border:       #c9d1d9;
  --border-soft:  #e6eaef;

  --link:         #18519c;
  --link-hover:   #143f7a;

  --badge-bg:     #eef4f8;
  --badge-fg:     #18519c;

  --nav-logo-filter: none;

  /* focus ring */
  --focus-ring: 0 0 0 3px rgba(7,155,213,.40);
}

/* ── Dark mode overrides ────────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg-page:      #071d31;
  --bg-surface:   #0a2438;
  --bg-sunken:    #071d31;
  --bg-nav:       rgba(7,29,49,.92);

  --fg-1:   #eaf2fb;
  --fg-2:   #c4d6e8;
  --fg-3:   #8aabcc;
  --fg-4:   #6f88a3;

  --border:       rgba(255,255,255,.12);
  --border-soft:  rgba(255,255,255,.07);

  --link:         #38b6e6;
  --link-hover:   #79d0f0;

  --badge-bg:     rgba(7,155,213,.15);
  --badge-fg:     #38b6e6;

  --shadow-sm:  0 2px 6px rgba(0,0,0,.30);
  --shadow-md:  0 10px 28px rgba(0,0,0,.40);
  --shadow-lg:  0 22px 48px rgba(0,0,0,.55);
}

/* ── Reset & base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--fg-2);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--fg-1); line-height: 1.22; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--link); text-decoration: none; transition: color var(--dur-base); }
a:hover { color: var(--link-hover); }
a:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 3px; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: .35rem; }
img, svg { display: block; max-width: 100%; }

/* ── Skip link ──────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--logo-blue);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--r-md);
  font-weight: 700;
  z-index: 9999;
  transition: top .15s;
}
.skip-link:focus { top: 16px; }

/* ── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg-nav);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--dur-base), border-color var(--dur-base);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 54px; width: auto; }
/* Theme-aware logo: colour mark on light, reversed mark on dark */
.nav-logo .logo-light-only { display: none; }
[data-theme="dark"] .nav-logo .logo-color-only { display: none; }
[data-theme="dark"] .nav-logo .logo-light-only { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: auto;
}

.nav-links li { margin: 0; }

.nav-links a {
  display: block;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--fg-2);
  white-space: nowrap;
  transition: background var(--dur-base), color var(--dur-base);
}
.nav-links a:hover { background: var(--border-soft); color: var(--fg-1); }
.nav-links a[aria-current="page"] { background: var(--badge-bg); color: var(--badge-fg); }

/* Theme toggle */
.theme-toggle {
  background: var(--border-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  width: 44px;
  height: 26px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--dur-base), border-color var(--dur-base);
  padding: 0;
}
.theme-toggle:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--logo-blue);
  transition: transform var(--dur-base) var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-theme="dark"] .theme-toggle-thumb { transform: translateX(18px); background: var(--cyan-l); }

.icon-sun, .icon-moon {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fg-3);
  pointer-events: none;
}
.icon-sun { left: 6px; }
.icon-moon { right: 6px; }

/* Mobile nav toggle */
.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 6px 9px;
  cursor: pointer;
  color: var(--fg-2);
  margin-left: auto;
}
.nav-hamburger svg { display: block; }

/* ── Layout helpers ─────────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  background: var(--grad-hero);
  color: #fff;
  padding: 96px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(7,155,213,.12), transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7,155,213,.18);
  border: 1px solid rgba(7,155,213,.35);
  color: #38b6e6;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38b6e6;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: #fff;
  max-width: 820px;
  margin: 0 auto 24px;
}
.hero-title span {
  background: linear-gradient(120deg, #38b6e6 0%, #079bd5 50%, #c9aa71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(234,242,251,.78);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-meta-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(234,242,251,.5);
}
.hero-meta-value {
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 700;
  color: #eaf2fb;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r-lg);
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.btn-primary {
  background: linear-gradient(120deg, #18519c 0%, #079bd5 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(7,155,213,.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(7,155,213,.45); color: #fff; }

.btn-outline-light {
  background: rgba(255,255,255,.08);
  color: #eaf2fb;
  border-color: rgba(255,255,255,.25);
}
.btn-outline-light:hover { background: rgba(255,255,255,.14); color: #fff; }

.btn-outline {
  background: var(--bg-surface);
  color: var(--fg-2);
  border-color: var(--border);
}
.btn-outline:hover { background: var(--border-soft); border-color: var(--border); color: var(--fg-1); }

/* ── Cards & panels ─────────────────────────────────────────────────────── */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base), border-color var(--dur-base), background var(--dur-base);
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--border); }

.card-sm {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: background var(--dur-base), border-color var(--dur-base);
}

/* ── Section headers ────────────────────────────────────────────────────── */
.section-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-d);
  margin-bottom: 10px;
}
[data-theme="dark"] .section-eyebrow { color: var(--cyan-l); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--fg-1);
  margin-bottom: 14px;
  letter-spacing: -.015em;
}
.section-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg-3);
  max-width: 580px;
}

/* ── Grid systems ───────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Service categories ─────────────────────────────────────────────────── */
.services-section { background: var(--bg-sunken); }

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-base) var(--ease-out);
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--border); transform: translateY(-2px); }

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(24,81,156,.12), rgba(7,155,213,.10));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.25rem;
}
[data-theme="dark"] .service-icon {
  background: linear-gradient(135deg, rgba(24,81,156,.25), rgba(7,155,213,.20));
}

.service-title {
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--fg-1);
  margin-bottom: 6px;
}
.service-desc { font-size: .8125rem; color: var(--fg-3); line-height: 1.55; margin: 0; }

.service-note {
  margin-top: 40px;
  padding: 18px 22px;
  background: var(--badge-bg);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--cyan);
  border-radius: var(--r-md);
  font-size: .875rem;
  color: var(--fg-3);
  line-height: 1.6;
}
[data-theme="dark"] .service-note {
  background: rgba(7,155,213,.08);
  border-color: rgba(7,155,213,.2);
  border-left-color: var(--cyan);
}

/* ── Trust panel ────────────────────────────────────────────────────────── */
.trust-section {
  background: var(--bg-hero);
  color: #fff;
}
.trust-section .section-eyebrow { color: #38b6e6; }
.trust-section .section-title { color: #eaf2fb; }
.trust-section .section-desc { color: rgba(234,242,251,.7); }

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }

.trust-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--dur-base);
}
.trust-card:hover { background: rgba(255,255,255,.08); }

.trust-card-icon { font-size: 1.75rem; margin-bottom: 14px; }
.trust-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #eaf2fb; margin-bottom: 8px; }
.trust-card-body { font-size: .875rem; color: rgba(234,242,251,.65); line-height: 1.6; margin: 0; }

/* ── Business identity card ─────────────────────────────────────────────── */
.identity-section { background: var(--bg-page); }

.identity-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.identity-card-header {
  background: linear-gradient(120deg, #18519c 0%, #0b2843 100%);
  padding: 28px 32px 24px;
}
.identity-card-header h3 { color: #fff; font-size: 1.0625rem; font-weight: 700; margin-bottom: 4px; }
.identity-card-header p { color: rgba(234,242,251,.65); font-size: .875rem; margin: 0; }

.identity-body { padding: 28px 32px; }
.identity-row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: .875rem;
}
.identity-row:last-child { border-bottom: none; }
.identity-label { color: var(--fg-4); font-weight: 600; min-width: 170px; flex-shrink: 0; }
.identity-value { color: var(--fg-1); font-weight: 500; word-break: break-word; }
.identity-value a { color: var(--link); }
.identity-value a:hover { color: var(--link-hover); }

/* ── Refund highlight ───────────────────────────────────────────────────── */
.refund-section { background: var(--bg-sunken); }

.refund-highlight {
  background: var(--bg-surface);
  border: 2px solid var(--cyan);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: 0 0 0 4px rgba(7,155,213,.08), var(--shadow-md);
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
[data-theme="dark"] .refund-highlight {
  border-color: var(--cyan-l);
  box-shadow: 0 0 0 4px rgba(56,182,230,.10), var(--shadow-md);
}
.refund-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--logo-blue);
  line-height: 1;
  margin-bottom: 4px;
}
[data-theme="dark"] .refund-number { color: var(--cyan-l); }
.refund-unit { font-size: 1rem; font-weight: 600; color: var(--fg-3); margin-bottom: 14px; }
.refund-desc { font-size: .875rem; color: var(--fg-3); line-height: 1.65; margin: 0; }

/* ── Contact section ────────────────────────────────────────────────────── */
.contact-section { background: var(--bg-page); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(24,81,156,.10), rgba(7,155,213,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
[data-theme="dark"] .contact-item-icon {
  background: linear-gradient(135deg, rgba(24,81,156,.25), rgba(7,155,213,.18));
}
.contact-item-label { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-4); margin-bottom: 4px; }
.contact-item-value { font-size: .9375rem; font-weight: 600; color: var(--fg-1); }
.contact-item-value a { color: var(--link); }
.contact-item-value a:hover { color: var(--link-hover); }

/* ── Timeline / platform note ───────────────────────────────────────────── */
.timeline-section { background: var(--bg-sunken); }

.timeline-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #18519c 0%, #079bd5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(7,155,213,.3);
}
.timeline-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg-1);
  margin-bottom: 10px;
}
.timeline-content p { font-size: .9375rem; color: var(--fg-3); line-height: 1.65; margin-bottom: 12px; }
.timeline-content p:last-child { margin-bottom: 0; }

/* ── Legal quick-links ──────────────────────────────────────────────────── */
.legal-links-section { background: var(--bg-page); }

.legal-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.legal-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
  box-shadow: var(--shadow-sm);
}
.legal-link-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(7,155,213,.12), var(--shadow-md);
  transform: translateY(-1px);
}
.legal-link-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(24,81,156,.10), rgba(7,155,213,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
[data-theme="dark"] .legal-link-icon {
  background: linear-gradient(135deg, rgba(24,81,156,.22), rgba(7,155,213,.18));
}
.legal-link-text strong { display: block; font-size: .875rem; font-weight: 700; color: var(--fg-1); margin-bottom: 2px; }
.legal-link-text span { font-size: .8125rem; color: var(--fg-3); }

/* ── Legal page layout ──────────────────────────────────────────────────── */
.legal-hero {
  background: var(--grad-hero);
  padding: 56px 32px 48px;
  color: #fff;
}
.legal-hero-inner { max-width: 860px; margin: 0 auto; }
.legal-hero-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #38b6e6;
  margin-bottom: 12px;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.legal-meta { display: flex; flex-wrap: wrap; gap: 20px; }
.legal-meta-item { font-size: .875rem; color: rgba(234,242,251,.65); }
.legal-meta-item strong { color: rgba(234,242,251,.9); font-weight: 600; }

.legal-download-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
}
.legal-download-bar .container-narrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.legal-download-bar span { font-size: .875rem; color: var(--fg-3); }
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: var(--badge-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--logo-blue);
  text-decoration: none;
  transition: all var(--dur-base);
}
.btn-download:hover { background: var(--border-soft); border-color: var(--border); color: var(--logo-blue-d); }
[data-theme="dark"] .btn-download { color: var(--cyan-l); border-color: var(--border); }
[data-theme="dark"] .btn-download:hover { background: rgba(7,155,213,.10); }

.legal-body {
  padding: 48px 0 80px;
}

.legal-toc {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.legal-toc h2 { font-size: 1rem; font-weight: 700; color: var(--fg-1); margin-bottom: 14px; }
.legal-toc ol { padding-left: 1.25rem; }
.legal-toc li { margin-bottom: 6px; }
.legal-toc a { font-size: .875rem; color: var(--link); }
.legal-toc a:hover { color: var(--link-hover); }

.legal-section { margin-bottom: 44px; }
.legal-section:last-child { margin-bottom: 0; }

.legal-section h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg-1);
  margin-bottom: 14px;
  padding-top: 8px;
  border-top: 2px solid var(--border-soft);
  padding-top: 16px;
}
.legal-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg-1);
  margin-bottom: 10px;
  margin-top: 20px;
}
.legal-section p { font-size: .9375rem; color: var(--fg-2); line-height: 1.7; margin-bottom: 12px; }
.legal-section ul, .legal-section ol { padding-left: 1.5rem; margin-bottom: 12px; }
.legal-section li { font-size: .9375rem; color: var(--fg-2); line-height: 1.6; margin-bottom: 6px; }

.business-id-box {
  background: var(--bg-sunken);
  border: 1px solid var(--border);
  border-left: 3px solid var(--logo-blue);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-bottom: 24px;
  font-size: .875rem;
  line-height: 1.8;
  color: var(--fg-2);
}
[data-theme="dark"] .business-id-box { border-left-color: var(--cyan-l); }

.legal-highlight {
  background: rgba(7,155,213,.06);
  border: 1px solid rgba(7,155,213,.2);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: .875rem;
  color: var(--fg-2);
  line-height: 1.65;
}
[data-theme="dark"] .legal-highlight { background: rgba(7,155,213,.08); }

/* ── Footer ─────────────────────────────────────────────────────────────── */
/* Premium separation: footer is its own elevated dark surface — distinct tone
   from the page body (critical in dark mode where the body is also navy),
   a brand gradient hairline + glow at the seam, and three clearly bordered
   zones (columns · payment · copyright). */
.footer {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(150% 95% at 50% 0%, rgba(7,155,213,.12), transparent 56%),
    linear-gradient(180deg, #0c2f4d 0%, #08233c 44%, #061a2c 100%);
  color: rgba(234,242,251,.7);
  padding: 0 0 0;
  margin-top: 10px;
  border-top: 1px solid rgba(120,180,230,.16);
}
.footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent, rgba(7,155,213,.5) 20%, rgba(56,182,230,.9) 50%, rgba(7,155,213,.5) 80%, transparent);
}
.footer .container { padding-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 8px;
  padding-bottom: 36px;
}
.footer-brand {}
.footer-logo { margin-bottom: 20px; }
.footer-tagline { font-size: .875rem; line-height: 1.65; color: rgba(234,242,251,.55); margin-bottom: 20px; }
.footer-reg { font-size: .8125rem; line-height: 1.8; color: rgba(234,242,251,.45); }

.footer-col-title {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 700;
  color: rgba(234,242,251,.9);
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: .875rem; color: rgba(234,242,251,.55); transition: color var(--dur-base); }
.footer-links a:hover { color: rgba(234,242,251,.9); }

/* hr is retained in markup but the zone borders carry the separation now */
.footer-divider { display: none; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-copyright { font-size: .8125rem; color: rgba(234,242,251,.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8125rem; color: rgba(234,242,251,.45); transition: color var(--dur-base); }
.footer-bottom-links a:hover { color: rgba(234,242,251,.85); }

/* ── About page ─────────────────────────────────────────────────────────── */
.about-intro { background: var(--bg-page); }

.principle-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 18px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.principle-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #18519c 0%, #079bd5 100%);
  color: #fff;
  font-size: .875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.principle-content h4 { font-size: .9375rem; font-weight: 700; color: var(--fg-1); margin-bottom: 4px; }
.principle-content p { font-size: .875rem; color: var(--fg-3); margin: 0; line-height: 1.6; }

/* ── Utilities ──────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 36px 0; }

  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; position: fixed; inset: 64px 0 0; background: var(--bg-nav); flex-direction: column; align-items: flex-start; padding: 20px; gap: 4px; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border-soft); }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .nav-hamburger { display: flex; align-items: center; }

  .hero { padding: 64px 20px 56px; }
  .hero-meta { gap: 20px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-links-grid { grid-template-columns: 1fr; }

  .timeline-card { flex-direction: column; gap: 20px; padding: 24px; }
  .identity-body { padding: 20px; }
  .identity-card-header { padding: 20px; }
  .identity-row { flex-direction: column; gap: 4px; }
  .identity-label { min-width: unset; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .legal-download-bar .container-narrow { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.375rem; }
  .refund-number { font-size: 2.25rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .refund-highlight { padding: 24px 20px; }
  .card { padding: 20px; }
  .legal-toc { padding: 18px 20px; }
  .business-id-box { padding: 16px 18px; }
}

/* ── Logo rendering ──────────────────────────────────────────────────────── */
/* The footer always sits on dark navy, so it uses the reversed (white) logo
   variant directly — no brightness filter. logo-light.svg is authored
   white + cyan for dark surfaces, so it stays crisp and premium. */
.footer-logo img { height: 66px; width: auto; }

/* ── Payment banner — premium zone ──────────────────────────────────────── */
.payment-banner-wrap {
  margin-top: 4px;
  padding: 22px 0 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.payment-banner-img {
  display: block;
  width: 100%;
  min-width: 720px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 12px 32px rgba(0,0,0,.30), 0 2px 6px rgba(0,0,0,.16);
}

/* ── Footer contact number + icons ──────────────────────────────────────── */
.footer-contact-number-row {
  display: flex !important;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-phone-text {
  font-size: .875rem;
  color: rgba(234,242,251,.75);
  font-weight: 700;
  letter-spacing: .03em;
}
.footer-contact-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}
.footer-contact-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(234,242,251,.75);
  transition: all var(--dur-base);
  text-decoration: none;
  flex-shrink: 0;
}
.footer-contact-icon-btn:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
  border-color: rgba(255,255,255,.35);
  transform: translateY(-1px);
}
.footer-contact-icon-btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.footer-contact-icon-wa:hover  { background: rgba(37,211,102,.28); border-color: rgba(37,211,102,.55); }
.footer-contact-icon-tg:hover  { background: rgba(42,171,238,.28); border-color: rgba(42,171,238,.55); }

/* ── Print basic reset ───────────────────────────────────────────────────── */
@media print {
  .nav, .theme-toggle, .nav-hamburger, .hero-cta-group, .legal-download-bar { display: none; }
  body { background: #fff; color: #000; }
  .legal-section h2 { page-break-before: auto; }
}
