:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --ink: #0b1220;
  --muted: #5a657a;
  --navy: #0b2a4a;
  --navy-2: #0e3761;
  --line: rgba(12, 30, 55, 0.12);
  --accent-indigo: #4f46e5;
  --accent-blue: #2563eb;
  --accent-emerald: #059669;
  --accent-orange: #f97316;
  --accent-cyan: #0891b2;
  --accent-violet: #6d28d9;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --shadow-sm: 0 10px 25px rgba(10, 25, 45, 0.08);
  --shadow-md: 0 18px 50px rgba(10, 25, 45, 0.14);
  --shadow-xl: 0 28px 80px rgba(10, 25, 45, 0.18);
}

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap");

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 800px at 30% -20%, rgba(20, 98, 190, 0.20), transparent 60%),
    radial-gradient(1200px 800px at 90% 30%, rgba(79, 70, 229, 0.14), transparent 55%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 25, 45, 0.08);
}

.site-header .container {
  width: min(1480px, calc(100% - 12px));
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr minmax(46px, 320px);
  align-items: center;
  gap: 12px;
  height: 108px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  border-radius: 999px;
  transition: transform 200ms ease, background 200ms ease;
  justify-self: start;
  margin-left: -18px;
}

.brand:hover {
  transform: translateY(-1px);
  background: rgba(11, 42, 74, 0.05);
}

.brand-logo {
  width: 310px;
  height: 94px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
}

.nav-link {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: rgba(11, 18, 32, 0.86);
  transition: background 200ms ease, transform 200ms ease, color 200ms ease;
}

.nav-link:hover {
  background: rgba(11, 42, 74, 0.06);
  transform: translateY(-1px);
  color: var(--navy);
}

.nav-item { position: relative; }
.nav-item--dropdown:hover .dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-item--dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 2px);
  height: 14px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 280px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 25, 45, 0.10);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown--right {
  left: auto;
  right: 0;
  width: 100%;
  padding: 0;
}

.dropdown--right .dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: transparent;
}

.dropdown--right .dropdown-link:hover {
  background: transparent;
}

.dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  color: rgba(11, 18, 32, 0.86);
  transition: background 180ms ease, transform 180ms ease;
}

.dropdown-link:hover { background: rgba(11, 42, 74, 0.07); transform: translateX(2px); }

.lang-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(10, 25, 45, 0.14);
  background: transparent;
  padding: 10px 14px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(11, 18, 32, 0.88);
  box-shadow: 0 10px 24px rgba(10, 25, 45, 0.08);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
  user-select: none;
}

.lang-trigger:hover {
  transform: translateY(-1px);
  background: transparent;
  box-shadow: 0 14px 28px rgba(10, 25, 45, 0.12);
}

.lang-pill-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.lang-pill-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.lang-trigger-label {
  font-size: 14px;
  font-weight: 700;
}

.lang-trigger-caret {
  font-size: 12px;
  line-height: 1;
  opacity: 0.8;
}

.dropdown-link.is-active {
  background: rgba(11, 42, 74, 0.08);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(10, 25, 45, 0.14);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 10px;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: rgba(11, 18, 32, 0.78);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

.site-main { min-height: calc(100vh - 108px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  line-height: 1;
  user-select: none;
}

.btn--primary {
  background: linear-gradient(135deg, #0b2a4a, #0d4a87);
  color: white;
  box-shadow: 0 14px 40px rgba(11, 42, 74, 0.25);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 60px rgba(11, 42, 74, 0.32); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--ghost:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.18); }

.btn--soft {
  background: rgba(11, 42, 74, 0.06);
  color: var(--navy);
  border-color: rgba(11, 42, 74, 0.10);
}

.btn--soft:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); background: rgba(11, 42, 74, 0.08); }

.btn--mini { padding: 10px 14px; font-size: 14px; }

.hero-slider {
  position: relative;
  height: 640px;
  min-height: 560px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 550ms ease, transform 900ms ease;
}

.hero-slide.is-active { opacity: 1; transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 32, 0.78), rgba(11, 18, 32, 0.46), rgba(11, 18, 32, 0.22));
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  color: white;
  padding-top: 50px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  opacity: 0.84;
}

.hero-title {
  font-family: Sora, Manrope, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 56px);
  line-height: 1.08;
  margin: 0;
}

.hero-title-soft { font-weight: 600; opacity: 0.86; }
.hero-body { margin: 0; font-size: 16px; line-height: 1.75; max-width: 760px; opacity: 0.92; }

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

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 4;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.16);
}

.hero-arrow span {
  font-size: 34px;
  line-height: 1;
  margin-top: -2px;
}

.hero-arrow--left { left: 18px; }
.hero-arrow--right { right: 18px; }

.hero-arrow:hover {
  transform: translateY(-50%) translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.hero-arrow:active {
  transform: translateY(-50%);
}

.hero-controls {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, width 180ms ease;
}

.hero-dot.is-active { width: 22px; background: rgba(255, 255, 255, 0.72); }
.hero-dot:hover { transform: scale(1.08); }

.section { padding: 88px 0; }
.section--tight { padding: 70px 0; }
.section-head { margin-bottom: 28px; }
.section-title { font-family: Sora, Manrope, sans-serif; font-size: 34px; margin: 0 0 10px; line-height: 1.2; }
.section-subtitle { margin: 0; color: var(--muted); max-width: 760px; line-height: 1.7; }
.section-kicker { color: rgba(11, 42, 74, 0.85); font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; font-size: 12px; margin-bottom: 12px; }
.section-body { color: rgba(11, 18, 32, 0.78); line-height: 1.75; margin: 0 0 14px; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 34px; align-items: center; }
.split--reverse { grid-template-columns: 0.95fr 1.05fr; }
.split--reverse .split-media { order: 2; }
.split--reverse .split-content { order: 1; }

.media-frame {
  border-radius: var(--radius-lg);
  background: #0d1b2f;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-xl);
  height: 420px;
  position: relative;
  overflow: hidden;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(800px 420px at 30% 30%, rgba(52, 211, 153, 0.18), transparent 60%),
    radial-gradient(700px 420px at 80% 40%, rgba(99, 102, 241, 0.20), transparent 55%);
  mix-blend-mode: overlay;
  opacity: 0.62;
  pointer-events: none;
}

.media-frame--tall { height: 520px; }

.checklist { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.checklist li {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(10, 25, 45, 0.10);
  border-radius: 14px;
  padding: 12px 14px 12px 42px;
  position: relative;
  box-shadow: 0 8px 24px rgba(10, 25, 45, 0.06);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 11px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.18);
  color: #0f5a4a;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
}

.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 25, 45, 0.12);
  box-shadow: 0 14px 40px rgba(10, 25, 45, 0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  transition: transform 220ms ease, box-shadow 220ms ease;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 380px at 30% 20%, rgba(99, 102, 241, 0.16), transparent 60%),
    radial-gradient(500px 380px at 80% 40%, rgba(59, 130, 246, 0.12), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.card-top { padding: 22px 22px 12px; display: flex; gap: 14px; align-items: center; position: relative; z-index: 1; }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(11, 42, 74, 0.06);
  border: 1px solid rgba(11, 42, 74, 0.12);
}
.card-title { font-family: Sora, Manrope, sans-serif; font-size: 20px; font-weight: 700; line-height: 1.2; }
.card-body { padding: 0 22px 18px; position: relative; z-index: 1; }
.card-desc { margin: 0 0 14px; color: rgba(11, 18, 32, 0.76); line-height: 1.7; }
.card-mini-title { font-weight: 800; font-size: 13px; letter-spacing: 0.6px; color: rgba(11, 42, 74, 0.86); text-transform: uppercase; margin: 12px 0 8px; }
.card-list { margin: 0; padding-left: 18px; color: rgba(11, 18, 32, 0.74); line-height: 1.8; }
.card-actions { margin-top: auto; padding: 0 22px 22px; position: relative; z-index: 1; }

.card--indigo .card-icon { background: rgba(79, 70, 229, 0.12); border-color: rgba(79, 70, 229, 0.22); }
.card--blue .card-icon { background: rgba(59, 130, 246, 0.12); border-color: rgba(59, 130, 246, 0.22); }
.card--emerald .card-icon { background: rgba(16, 185, 129, 0.12); border-color: rgba(16, 185, 129, 0.22); }

.mini-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 25, 45, 0.10);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 36px rgba(10, 25, 45, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  position: relative;
  overflow: hidden;
}

.mini-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(320px 200px at 20% 20%, rgba(59, 130, 246, 0.12), transparent 55%),
    radial-gradient(320px 200px at 90% 30%, rgba(79, 70, 229, 0.12), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: rgba(255, 255, 255, 0.92); }
.mini-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(10, 25, 45, 0.12);
  background: rgba(11, 42, 74, 0.06);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: var(--navy);
  position: relative;
  z-index: 1;
}
.mini-card-icon svg { width: 22px; height: 22px; display: block; }
.mini-card-title { font-family: Sora, Manrope, sans-serif; font-weight: 700; line-height: 1.2; margin-bottom: 10px; position: relative; z-index: 1; }
.mini-card-desc { color: rgba(11, 18, 32, 0.72); line-height: 1.6; margin-bottom: 12px; position: relative; z-index: 1; }
.mini-card-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy); position: relative; z-index: 1; }
.mini-card-arrow { transition: transform 180ms ease; }
.mini-card:hover .mini-card-arrow { transform: translateX(3px); }

.mini-card--indigo .mini-card-title,
.mini-card--indigo .mini-card-link,
.mini-card--indigo .mini-card-icon { color: var(--accent-indigo); }
.mini-card--blue .mini-card-title,
.mini-card--blue .mini-card-link,
.mini-card--blue .mini-card-icon { color: var(--accent-blue); }
.mini-card--emerald .mini-card-title,
.mini-card--emerald .mini-card-link,
.mini-card--emerald .mini-card-icon { color: var(--accent-emerald); }
.mini-card--orange .mini-card-title,
.mini-card--orange .mini-card-link,
.mini-card--orange .mini-card-icon { color: var(--accent-orange); }
.mini-card--cyan .mini-card-title,
.mini-card--cyan .mini-card-link,
.mini-card--cyan .mini-card-icon { color: var(--accent-cyan); }

.mini-card--indigo .mini-card-icon { background: rgba(79, 70, 229, 0.10); border-color: rgba(79, 70, 229, 0.22); }
.mini-card--blue .mini-card-icon { background: rgba(37, 99, 235, 0.10); border-color: rgba(37, 99, 235, 0.22); }
.mini-card--emerald .mini-card-icon { background: rgba(5, 150, 105, 0.10); border-color: rgba(5, 150, 105, 0.22); }
.mini-card--orange .mini-card-icon { background: rgba(249, 115, 22, 0.10); border-color: rgba(249, 115, 22, 0.22); }
.mini-card--cyan .mini-card-icon { background: rgba(8, 145, 178, 0.10); border-color: rgba(8, 145, 178, 0.22); }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.section--assessment .pill-row { margin-top: 30px; }
.section--assessment .split-actions { margin-top: 26px; }
.pill {
  background: rgba(11, 42, 74, 0.06);
  border: 1px solid rgba(11, 42, 74, 0.10);
  color: rgba(11, 42, 74, 0.9);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.page-hero {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 32, 0.74), rgba(11, 18, 32, 0.44), rgba(11, 18, 32, 0.20));
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: white;
}
.page-hero-title { font-family: Sora, Manrope, sans-serif; font-size: 44px; font-weight: 700; line-height: 1.1; }
.page-hero-subtitle { opacity: 0.86; font-weight: 600; }
.page-hero-breadcrumbs { font-size: 13px; opacity: 0.86; display: flex; gap: 10px; flex-wrap: wrap; }
.crumb-sep { opacity: 0.6; }

.contact-section { padding: 88px 0; background: rgba(255, 255, 255, 0.22); border-top: 1px solid rgba(10, 25, 45, 0.08); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 22px; align-items: stretch; }
.contact-visual {
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.contact-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(11, 42, 74, 0.76), rgba(11, 42, 74, 0.48), rgba(11, 42, 74, 0.24));
}
.contact-visual-inner { position: relative; z-index: 1; padding: 26px; color: white; display: grid; gap: 10px; }
.contact-visual-title { font-family: Sora, Manrope, sans-serif; font-size: 34px; font-weight: 700; }
.contact-visual-body { opacity: 0.92; line-height: 1.7; }

.contact-form {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 25, 45, 0.10);
  box-shadow: var(--shadow-xl);
  padding: 24px;
}
.form-title { font-family: Sora, Manrope, sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field { display: grid; gap: 8px; }
.field span { font-weight: 700; font-size: 13px; color: rgba(11, 18, 32, 0.70); }
.field input, .field textarea {
  border-radius: 14px;
  border: 1px solid rgba(10, 25, 45, 0.14);
  padding: 12px 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.85);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(13, 74, 135, 0.55);
  box-shadow: 0 0 0 4px rgba(13, 74, 135, 0.12);
  transform: translateY(-1px);
}
.field--full { grid-column: 1 / -1; }
.form-actions { margin-top: 16px; display: flex; justify-content: flex-start; }

.site-footer { margin-top: 0; background: rgba(248, 250, 252, 0.90); border-top: 1px solid rgba(10, 25, 45, 0.08); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.6fr 0.6fr 0.8fr; gap: 22px; padding: 50px 0; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 240px; height: 84px; object-fit: contain; object-position: left center; }
.footer-tagline { margin: 14px 0 16px; color: rgba(11, 18, 32, 0.74); line-height: 1.6; max-width: 360px; }
.footer-col-title { font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase; font-size: 12px; color: rgba(11, 42, 74, 0.82); margin-bottom: 12px; }
.footer-link { display: block; padding: 8px 0; color: rgba(11, 18, 32, 0.72); font-weight: 700; }
.footer-link:hover { color: var(--navy); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background-color: rgba(11, 42, 74, 0.06);
  border: 1px solid rgba(11, 42, 74, 0.10);
  font-weight: 900;
}
.social-btn svg { width: 18px; height: 18px; display: block; }
.social-btn:hover { background-color: rgba(11, 42, 74, 0.10); transform: translateY(-1px); }

.social-btn--linkedin {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: url("/images/linkedin-logo.png") center / cover no-repeat;
  border: none;
}
.social-btn--linkedin:hover { background-image: url("/images/linkedin-logo.png"); filter: brightness(0.92); }

.footer-contact { display: grid; gap: 10px; }
.footer-contact-row { display: grid; gap: 4px; }
.footer-contact-label { font-size: 12px; font-weight: 800; color: rgba(11, 18, 32, 0.64); }

.footer-bottom { border-top: 1px solid rgba(10, 25, 45, 0.08); padding: 14px 0; font-size: 13px; color: rgba(11, 18, 32, 0.68); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a:hover { color: var(--navy); }

.section--dark { background: linear-gradient(135deg, rgba(11, 42, 74, 0.94), rgba(11, 42, 74, 0.80)); color: white; }
.section-head--light .section-title { color: white; }
.section-head--light .section-subtitle { color: rgba(255, 255, 255, 0.78); }
.dark-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
  transition: transform 220ms ease, background 220ms ease;
}
.dark-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.09); }
.dark-card-title { font-family: Sora, Manrope, sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.dark-card-body { line-height: 1.7; color: rgba(255, 255, 255, 0.84); }

.stat-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.stat {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 25, 45, 0.10);
  padding: 14px 16px;
  min-width: 160px;
  box-shadow: 0 12px 34px rgba(10, 25, 45, 0.08);
}
.stat-num { font-family: Sora, Manrope, sans-serif; font-weight: 700; font-size: 26px; color: var(--navy); }
.stat-label { color: rgba(11, 18, 32, 0.72); font-weight: 700; font-size: 13px; margin-top: 4px; }

.section--resources { padding: 70px 0 96px; }
.resources-layout { display: grid; grid-template-columns: 1fr 0.38fr; gap: 22px; align-items: start; }
.search-bar { display: flex; gap: 10px; margin-bottom: 18px; }
.search-bar input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(10, 25, 45, 0.14);
  padding: 12px 14px;
  font: inherit;
  background: rgba(255, 255, 255, 0.86);
}
.search-bar input:focus { outline: none; box-shadow: 0 0 0 4px rgba(13, 74, 135, 0.12); border-color: rgba(13, 74, 135, 0.55); }
.resource-list { display: grid; gap: 18px; }
.resource-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  border: 1px solid rgba(10, 25, 45, 0.10);
  box-shadow: 0 14px 42px rgba(10, 25, 45, 0.10);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.resource-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.resource-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; background: rgba(245, 247, 251, 0.8); }
.resource-preview img { border-radius: 14px; border: 1px solid rgba(10, 25, 45, 0.12); background: white; }
.resource-meta { padding: 16px 18px 20px; display: grid; gap: 10px; }
.resource-title { font-family: Sora, Manrope, sans-serif; font-weight: 700; font-size: 18px; }
.resource-date { color: rgba(11, 18, 32, 0.64); font-weight: 700; font-size: 13px; }
.pager { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }
.pager-btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(10, 25, 45, 0.12);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}
.pager-btn:hover { transform: translateY(-1px); background: rgba(255, 255, 255, 0.92); }
.pager-btn.is-disabled { opacity: 0.4; pointer-events: none; }
.pager-info { font-weight: 800; color: rgba(11, 18, 32, 0.68); }

.side-card {
  position: sticky;
  top: 96px;
  border-radius: 22px;
  border: 1px solid rgba(10, 25, 45, 0.10);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 44px rgba(10, 25, 45, 0.10);
  padding: 18px;
  display: grid;
  gap: 12px;
}
.side-title { font-family: Sora, Manrope, sans-serif; font-weight: 700; font-size: 18px; }
.side-body { color: rgba(11, 18, 32, 0.72); line-height: 1.65; }

.empty-state {
  border-radius: 22px;
  border: 1px dashed rgba(10, 25, 45, 0.18);
  padding: 26px;
  background: rgba(255, 255, 255, 0.6);
  color: rgba(11, 18, 32, 0.70);
  font-weight: 700;
}

.section--legal { padding: 70px 0 96px; }
.legal {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 25, 45, 0.10);
  border-radius: 26px;
  box-shadow: var(--shadow-xl);
  padding: 26px;
}
.legal h2 { font-family: Sora, Manrope, sans-serif; margin-top: 26px; margin-bottom: 10px; font-size: 20px; }
.legal p { margin: 0 0 12px; color: rgba(11, 18, 32, 0.76); line-height: 1.75; }
.legal ul { margin: 0 0 12px; color: rgba(11, 18, 32, 0.74); line-height: 1.75; }
.legal a { color: var(--navy); font-weight: 800; }
.legal-muted { color: rgba(11, 18, 32, 0.60); font-weight: 700; margin-bottom: 16px; }

.section--unsubscribe { padding: 70px 0 96px; }
.unsubscribe-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 25, 45, 0.10);
  border-radius: 26px;
  box-shadow: var(--shadow-xl);
  padding: 26px;
}
.unsubscribe-title { font-family: Sora, Manrope, sans-serif; font-weight: 700; font-size: 28px; margin-bottom: 10px; }
.unsubscribe-body { color: rgba(11, 18, 32, 0.74); line-height: 1.7; margin-bottom: 18px; }
.unsubscribe-form .form-actions { margin-top: 18px; }

.week-card {
  --week-accent: var(--navy);
  --week-accent-bg: rgba(11, 42, 74, 0.06);
  --week-accent-border: rgba(10, 25, 45, 0.12);
  --week-top-height: 72px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(10, 25, 45, 0.10);
  box-shadow: 0 16px 52px rgba(10, 25, 45, 0.10);
  padding: 18px;
  transition: transform 220ms ease, box-shadow 220ms ease;
  display: grid;
  grid-template-rows: var(--week-top-height) auto auto auto;
  gap: 16px;
  align-content: start;
  position: relative;
  overflow: hidden;
}
.week-card--indigo {
  --week-accent: var(--accent-indigo);
  --week-accent-bg: rgba(79, 70, 229, 0.10);
  --week-accent-border: rgba(79, 70, 229, 0.22);
}
.week-card--blue {
  --week-accent: var(--accent-blue);
  --week-accent-bg: rgba(37, 99, 235, 0.10);
  --week-accent-border: rgba(37, 99, 235, 0.22);
}
.week-card--emerald {
  --week-accent: var(--accent-emerald);
  --week-accent-bg: rgba(5, 150, 105, 0.10);
  --week-accent-border: rgba(5, 150, 105, 0.22);
}
.week-card--violet {
  --week-accent: var(--accent-violet);
  --week-accent-bg: rgba(109, 40, 217, 0.10);
  --week-accent-border: rgba(109, 40, 217, 0.22);
}
.week-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(480px 280px at 30% 20%, rgba(99, 102, 241, 0.14), transparent 60%),
    radial-gradient(480px 280px at 90% 30%, rgba(16, 185, 129, 0.10), transparent 60%);
  opacity: 0.85;
  pointer-events: none;
}
.week-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.week-card-top { display: flex; gap: 12px; align-items: flex-start; height: 100%; min-height: 0; position: relative; z-index: 1; }
.week-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--week-accent-border);
  background: var(--week-accent-bg);
  color: var(--week-accent);
  display: grid;
  place-items: center;
}
.week-icon svg { width: 22px; height: 22px; display: block; }
.week-title {
  font-family: Sora, Manrope, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--week-accent);
  overflow-wrap: anywhere;
}
.week-block {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  align-content: start;
  align-items: start;
}
.week-block-title { font-weight: 900; font-size: 12px; letter-spacing: 1.1px; text-transform: uppercase; color: var(--week-accent); margin: 0; }
.week-block-body { color: rgba(11, 18, 32, 0.76); line-height: 1.6; overflow-wrap: anywhere; }
.week-list { margin: 0; padding-left: 18px; color: rgba(11, 18, 32, 0.74); line-height: 1.65; }
.week-list li { overflow-wrap: anywhere; }
.week-list--outputs li { font-weight: 400; }

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 18px; }
.modal-overlay { position: absolute; inset: 0; background: rgba(11, 18, 32, 0.62); backdrop-filter: blur(6px); }
.modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 25, 45, 0.12);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.22);
  padding: 22px;
}
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 14px; border: 1px solid rgba(10, 25, 45, 0.12); background: rgba(255, 255, 255, 0.8); cursor: pointer; font-size: 20px; }
.modal-title { font-family: Sora, Manrope, sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 6px; }
.modal-body { color: rgba(11, 18, 32, 0.74); line-height: 1.6; margin-bottom: 14px; }
.modal-actions { margin-top: 12px; display: flex; justify-content: flex-start; }

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}
.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}
.toast-inner {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 25, 45, 0.12);
  box-shadow: 0 18px 60px rgba(10, 25, 45, 0.20);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  color: rgba(11, 18, 32, 0.78);
}

@media (max-width: 980px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .resources-layout { grid-template-columns: 1fr; }
  .resources-side { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: calc(100% - 32px); }
  .site-header .container { width: calc(100% - 20px); }
  .header-inner {
    grid-template-columns: minmax(140px, 1fr) auto;
    height: 92px;
  }
  .site-main { min-height: calc(100vh - 92px); }
  .brand { margin-left: -8px; }
  .brand-logo { width: 236px; height: 72px; }
  .footer-logo { width: 190px; height: 66px; }
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; }
  .nav {
    position: fixed;
    top: 92px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(10, 25, 45, 0.12);
    border-radius: 22px;
    box-shadow: var(--shadow-xl);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
    justify-self: stretch;
  }
  .lang-trigger-label { display: none; }
  .nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-link { border-radius: 16px; }
  .nav-item--dropdown .dropdown { position: static; width: auto; opacity: 1; transform: none; pointer-events: auto; box-shadow: none; background: transparent; border: none; padding: 0 0 0 8px; }
  .nav-item--dropdown::after { display: none; }
  .nav-item--dropdown .dropdown-link { background: rgba(11, 42, 74, 0.04); margin: 4px 0; }
  .hero-slider { height: 720px; }
  .hero-arrow { width: 48px; height: 48px; border-radius: 16px; }
  .hero-arrow span { font-size: 30px; }
  .hero-arrow--left { left: 10px; }
  .hero-arrow--right { right: 10px; }
  .resource-preview { grid-template-columns: 1fr; }
  .grid--6 { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
}
