:root {
  --canvas: #C0D9F0;
  --canvas-deep: #A8C5E0;
  --surface: rgba(255, 255, 255, 0.95);
  --surface-muted: rgba(255, 255, 255, 0.70);
  --ink: #1C3248;
  --ink-muted: #3A5870;
  --accent: #4A95D6;
  --accent-strong: #1B5F99;
  --accent-soft: rgba(74, 149, 214, 0.18);
  --border: rgba(104, 151, 191, 0.40);
  --border-strong: rgba(88, 130, 166, 0.60);
  --success: #2F9F77;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 12px;
  --sp-lg: 20px;
  --sp-xl: 28px;
  --sp-xxl: 40px;
  --shadow-sm: 0 1px 2px rgba(28, 50, 72, 0.06), 0 2px 8px rgba(28, 50, 72, 0.05);
  --shadow-md: 0 6px 20px rgba(28, 50, 72, 0.10), 0 2px 6px rgba(28, 50, 72, 0.06);
  --shadow-lg: 0 20px 50px rgba(28, 50, 72, 0.18);
  --grad-hero: radial-gradient(1200px 600px at 85% -10%, rgba(74, 149, 214, 0.55), transparent 60%),
               radial-gradient(900px 500px at 10% 10%, rgba(255, 255, 255, 0.75), transparent 65%),
               linear-gradient(180deg, #C0D9F0 0%, #A8C5E0 100%);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; border: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 var(--sp-md); letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 var(--sp-md); color: var(--ink-muted); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--sp-sm);
  background: var(--accent-strong);
  color: #fff;
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-sm);
  z-index: 100;
}
.skip-link:focus { left: var(--sp-sm); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); text-decoration: none; color: #fff; }
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { border-color: var(--border-strong); text-decoration: none; transform: translateY(-1px); }
.btn-disabled {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-muted);
  border: 1px dashed var(--border-strong);
  cursor: not-allowed;
  box-shadow: none;
}
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ========== Navbar ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(192, 217, 240, 0.85);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  padding: 14px 0;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.nav-brand:hover { text-decoration: none; }
.nav-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.nav-links {
  display: none;
  gap: var(--sp-lg);
  margin-left: var(--sp-lg);
  flex: 1;
}
.nav-links a { color: var(--ink-muted); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent-strong); text-decoration: none; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-left: auto;
  flex-shrink: 0;
}
@media (max-width: 899px) {
  .nav {
    flex-wrap: wrap;
    row-gap: var(--sp-sm);
    min-width: 0;
    overflow-x: clip;
  }
  .nav-brand {
    flex: 1 1 100%;
    min-width: 0;
  }
  .nav-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    width: 100%;
    margin-left: 0;
    gap: var(--sp-sm);
    min-width: 0;
  }
  .nav-actions > * {
    min-width: 0;
  }
  .lang-switch {
    min-width: 0;
  }
  .lang-select {
    width: 100%;
    max-width: 100%;
  }
  #nav-cta {
    max-width: min(44vw, 164px);
    min-width: 0;
    overflow: hidden;
  }
  #nav-cta .btn-label {
    display: inline-block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .menu-toggle {
    justify-self: end;
    width: 40px;
    flex: 0 0 40px;
    min-width: 40px;
  }
  .nav-links,
  .desktop-links {
    display: none !important;
  }
}
.lang-switch {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 36px 8px 14px;
  cursor: pointer;
  max-width: min(168px, 44vw);
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231B5F99' stroke-width='1.8' stroke-linecap='round' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
}
.lang-select:hover {
  border-color: var(--border-strong);
}
.lang-select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  color: var(--ink);
}

.mobile-nav {
  display: none;
  padding: var(--sp-md) 0 var(--sp-lg);
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  flex-direction: column;
  gap: var(--sp-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px var(--sp-lg); color: var(--ink); font-weight: 500; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

@media (max-width: 420px) {
  .nav {
    padding: 12px 0;
  }
  .nav-brand {
    font-size: 1.1rem;
  }
  .nav-logo-mark {
    width: 28px;
    height: 28px;
  }
  .lang-select {
    font-size: 0.78rem;
    padding: 7px 30px 7px 10px;
    background-position: right 10px center;
  }
  .nav-actions .btn-sm {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    min-width: 38px;
  }
}

@media (max-width: 339px) {
  .nav-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 92px) 38px;
    gap: 6px;
  }
  #nav-cta {
    max-width: 92px;
  }
  .nav-actions .btn-sm {
    padding: 7px 10px;
    font-size: 0.74rem;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 112px);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  top: -120px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(74, 149, 214, 0.55), transparent 70%);
}
.hero::after {
  bottom: -140px; left: -100px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65), transparent 70%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xxl);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  color: var(--accent-strong);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}
.hero h1 { margin-bottom: var(--sp-lg); }
.hero-subtitle { font-size: 1.1rem; max-width: 560px; color: var(--ink-muted); margin-bottom: var(--sp-xl); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-md); margin-bottom: var(--sp-lg); }
.platform-line {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.platform-line .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(47, 159, 119, 0.2); }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  margin-top: var(--sp-xl);
  padding-bottom: var(--sp-sm);
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 149, 214, 0.45), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.phone-frame {
  position: relative;
  z-index: 1;
  width: min(240px, 84vw);
  aspect-ratio: 323 / 737;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(160deg, #243246 0%, #0F2338 55%, #1C3248 100%);
  box-shadow:
    0 30px 70px rgba(15, 35, 55, 0.35),
    0 10px 25px rgba(27, 95, 153, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 42px;
  padding: 1.5px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 20px;
  border-radius: 12px;
  background: #0A1624;
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.phone-notch::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3A5870, #0A1624);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.phone-screen {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
  background: #C0D9F0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
}

@media (min-width: 700px) {
  .phone-frame { width: min(280px, 48vw); }
}

@media (min-width: 900px) {
  .hero-visual {
    margin-top: 0;
    min-height: 420px;
    padding-bottom: 0;
  }
  .phone-frame { width: min(280px, 34vw); }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .hero-subtitle { font-size: 1.2rem; }
}

/* ========== Section layout ========== */
section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head { max-width: 720px; margin-bottom: var(--sp-xl); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ========== Services strip ========== */
.services-strip {
  padding: var(--sp-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-muted);
}
.services-title {
  text-align: center;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin-bottom: var(--sp-lg);
  font-weight: 600;
}
.services-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-sm) var(--sp-md);
  list-style: none;
  margin: 0;
  padding: 0;
}
.services-pills li {
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ========== Two-column (for clients / providers) ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xxl);
  align-items: center;
}
.two-col.reverse .col-visual { order: -1; }
.col-visual {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.85) 0%, rgba(192, 217, 240, 0.6) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xxl);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.col-visual::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 149, 214, 0.45), transparent 70%);
  top: -40px; right: -40px;
  filter: blur(20px);
}
.col-visual svg { position: relative; z-index: 1; }
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-md); }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  color: var(--ink);
  font-weight: 500;
}
.check-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  width: 22px; height: 22px;
  padding: 3px;
  background: rgba(47, 159, 119, 0.12);
  border-radius: 50%;
  color: var(--success);
}

@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col.reverse .col-visual { order: 0; }
}

/* ========== How it works ========== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-lg);
  counter-reset: step;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: var(--sp-md);
  box-shadow: var(--shadow-sm);
}

/* ========== Features ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-lg);
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-xl);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
}
.feature-icon svg { width: 22px; height: 22px; }

/* ========== Mobile App showcase ========== */
.app-showcase {
  text-align: center;
  background: linear-gradient(180deg, var(--canvas) 0%, rgba(192, 217, 240, 0.5) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px) var(--sp-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.app-showcase::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(600px 300px at 50% 0%, rgba(74, 149, 214, 0.35), transparent 60%);
  pointer-events: none;
}
.app-showcase > * { position: relative; }
.badges {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}
.app-badge {
  min-width: 200px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-weight: 700;
}
.app-badge svg { width: 22px; height: 22px; }
.disclaimer {
  margin-top: var(--sp-xl);
  font-size: 0.88rem;
  color: var(--ink-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== Trust ========== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-lg);
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-sm);
}
.trust-card h3 { margin-bottom: var(--sp-sm); }

/* ========== FAQ ========== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-md) var(--sp-lg);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-md);
  font-size: 1.02rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent-strong);
  font-weight: 300;
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 8px 0 var(--sp-sm); }

/* ========== CTA banner ========== */
.cta-banner {
  margin: 0 auto;
  background: var(--grad-hero);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 20% 0%, rgba(74, 149, 214, 0.35), transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner p { max-width: 560px; margin-left: auto; margin-right: auto; margin-bottom: var(--sp-xl); color: var(--ink); }
.cta-banner .cta-actions { display: inline-flex; flex-wrap: wrap; gap: var(--sp-md); justify-content: center; }

/* ========== Footer ========== */
.site-footer {
  background: #0F2338;
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(48px, 6vw, 72px) 0 var(--sp-xl);
  margin-top: var(--sp-xxl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}
.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: var(--sp-md);
}
.footer-brand p { color: rgba(255, 255, 255, 0.7); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer-links a { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: var(--sp-xxl);
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ========== Visual SVG illustrations inside col-visual ========== */
.illus {
  width: 100%;
  max-width: 360px;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
