@import url('fonts.css');

:root {
  --navy: #0d1b3e;
  --navy-mid: #1a3360;
  --navy-deep: #0f2a50;
  --navy-footer: #080f1e;
  --accent: #8ab4d4;
  --accent-dark: #2a5f8f;
  --text: #1a1a2e;
  --text-muted: #5a6a7a;
  --text-light: #a0b4c8;
  --text-muted-dark: #6a8fa8;
  --bg-alt: #f5f6f8;
  --bg-soft: #f5f7fa;
  --border: #e2e6ea;
  --white: #fff;
  --container: 1180px;
  --nav-height: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-sans: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

.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;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
}

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

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus { top: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(13, 27, 62, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(138, 180, 212, 0.12);
  transition: box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(8, 15, 30, 0.35);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  line-height: 1.25;
}

.nav-logo span {
  color: var(--accent);
  font-size: 10px;
  display: block;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
  font-weight: 400;
  margin-top: 3px;
  text-transform: uppercase;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(138, 180, 212, 0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--accent);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: none;
  list-style: none;
}

.nav-links a {
  color: #b0bfd0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  outline: none;
}

.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 14px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: #b0bfd0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 0;
  font-family: inherit;
  transition: color 0.2s var(--ease);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown-toggle[aria-expanded="true"],
.nav-dropdown.is-active .nav-dropdown-toggle {
  color: var(--white);
  outline: none;
}

.nav-dropdown-chevron {
  transition: transform 0.2s var(--ease);
}

.nav-dropdown.is-open .nav-dropdown-chevron,
.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: var(--navy-mid);
  border: 1px solid rgba(138, 180, 212, 0.2);
  border-radius: var(--radius-md);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 100;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #b0bfd0;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--white);
  background: rgba(138, 180, 212, 0.08);
  outline: none;
}

.nav-dropdown-menu a[aria-current="page"] {
  color: var(--white);
  background: rgba(138, 180, 212, 0.12);
}

.nav-drawer-submenu-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(138, 180, 212, 0.08);
  color: #b0bfd0;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s var(--ease);
}

.nav-drawer-submenu-toggle:hover,
.nav-drawer-submenu-toggle:focus-visible {
  color: var(--white);
  outline: none;
}

.nav-drawer-submenu-toggle[aria-expanded="true"] {
  color: var(--white);
}

.nav-drawer-submenu-toggle[aria-expanded="true"] .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-drawer-submenu {
  list-style: none;
  padding: 4px 0 8px 12px;
}

.nav-drawer-submenu[hidden] {
  display: none !important;
}

.nav-drawer-submenu a {
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 10px 0;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }

  .nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .nav-links { gap: 24px; }
}

.nav-drawer {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(138, 180, 212, 0.15);
  padding: 20px 24px 28px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), visibility 0.25s;
  z-index: 99;
}

.nav-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer a {
  display: block;
  padding: 12px 0;
  color: #b0bfd0;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 180, 212, 0.08);
  transition: color 0.2s var(--ease);
}

.nav-drawer a:hover { color: var(--white); }

@media (min-width: 900px) {
  .nav-drawer { display: none; }
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-deep) 100%);
  padding: calc(var(--nav-height) + 64px) 0 88px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(138, 180, 212, 0.12);
  pointer-events: none;
}

.hero::before {
  right: -60px;
  top: -60px;
  width: min(420px, 80vw);
  height: min(420px, 80vw);
}

.hero::after {
  right: 20px;
  top: 40px;
  width: min(260px, 50vw);
  height: min(260px, 50vw);
  border-color: rgba(138, 180, 212, 0.08);
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: end;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
  }
}

.hero-tag {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  color: var(--text-light);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy);
}

.btn-primary:hover {
  background: #9dc4e0;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 13px 28px;
}

.btn-secondary:hover {
  background: rgba(138, 180, 212, 0.1);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(138, 180, 212, 0.15);
  border-radius: var(--radius-md);
}

@media (min-width: 600px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

.stat-num {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.1;
}

.stat-lab {
  color: var(--text-muted-dark);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 400;
  line-height: 1.4;
}

/* ── Sections ── */
.section {
  padding: 80px 0;
}

.section-alt { background: var(--bg-alt); }

.section-dark {
  background: var(--navy);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(138, 180, 212, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.section-header {
  margin-bottom: 48px;
}

.section-tag {
  color: var(--accent-dark);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}

.section-tag-light { color: var(--accent); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-title-light { color: var(--white); }

.section-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 620px;
  font-weight: 400;
}

.section-sub-light { color: var(--text-light); }

.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0 0;
}

.section-2col {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .section-2col {
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
  }
}

.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #d0dae4;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4a6a88;
  margin: 0 8px 8px 0;
  font-weight: 400;
  background: var(--white);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.tag-pill:hover {
  border-color: var(--accent);
  color: var(--navy);
}

.reg-box {
  background: #f0f3f7;
  border-left: 3px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-top: 28px;
}

.reg-box h4 {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 600;
}

.reg-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 400;
}

/* Alcance */
.alcance-grid {
  display: grid;
  gap: 14px;
}

.alcance-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-md);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.alcance-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(13, 27, 62, 0.06);
}

.alcance-num {
  background: var(--navy);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 7px 11px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  white-space: nowrap;
  border-radius: var(--radius-sm);
}

.alcance-title {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}

.alcance-text {
  font-size: 13px;
  color: #7a8a98;
  font-weight: 400;
  line-height: 1.65;
}

.callout-box {
  margin-top: 20px;
  padding: 22px 24px;
  background: var(--bg-soft);
  border: 1px solid #e0e5ea;
  border-radius: var(--radius-md);
}

.callout-box p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 400;
}

.callout-box strong {
  color: var(--navy);
  font-weight: 600;
}

/* Services */
.services {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .services { grid-template-columns: repeat(3, 1fr); }
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-md);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.svc-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 27, 62, 0.08);
}

.svc-num {
  font-family: var(--font-serif);
  font-size: 44px;
  color: #e8edf2;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
}

.svc-icon {
  width: 28px;
  height: 28px;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.svc-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.svc-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 400;
  flex: 1;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}

.svc-link:hover {
  color: var(--navy);
  gap: 10px;
}

/* Explain / flow */
.explain {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 900px) {
  .explain { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.explain-visual {
  background: var(--navy);
  padding: 36px 32px;
  border: 1px solid rgba(138, 180, 212, 0.12);
  border-radius: var(--radius-md);
}

.flow-section-label {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 400;
}

.flow-divider {
  border: none;
  border-top: 1px solid rgba(138, 180, 212, 0.2);
  margin: 24px 0;
}

.flow-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.flow-item:last-child { margin-bottom: 0; }

.flow-dot {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

.flow-dot.alt {
  background: var(--navy-mid);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.flow-label {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.flow-sublabel {
  color: var(--text-muted-dark);
  font-size: 12px;
  margin-top: 4px;
  font-weight: 400;
  line-height: 1.5;
}

.explain-text h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.explain-text h3 + h3,
.explain-text .faq-gap { margin-top: 28px; }

.faq-list { margin: 0; }

.faq-item {
  margin-bottom: 28px;
}

.faq-item:last-child { margin-bottom: 0; }

.faq-list dt {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.faq-list dd { margin: 0; }

.faq-list dd p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 14px;
}

.faq-list dd p:last-child { margin-bottom: 0; }

.explain-text p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 14px;
}

.explain-text p:last-child { margin-bottom: 0; }

/* Markets */
.markets {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .markets { grid-template-columns: repeat(3, 1fr); }
}

.mkt-card {
  padding: 28px 24px;
  border: 1px solid rgba(138, 180, 212, 0.25);
  background: rgba(138, 180, 212, 0.05);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
}

.mkt-card:hover {
  border-color: rgba(138, 180, 212, 0.45);
  background: rgba(138, 180, 212, 0.09);
}

.mkt-name {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 400;
}

.mkt-price {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
}

.mkt-unit {
  color: var(--text-muted-dark);
  font-size: 12px;
  margin-top: 4px;
}

.mkt-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  background: rgba(138, 180, 212, 0.15);
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.mkt-desc {
  margin-top: 16px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 400;
  line-height: 1.7;
  flex: 1;
}

/* Invest */
.invest {
  background: var(--white);
  margin-top: 8px;
  padding: 40px 36px;
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(13, 27, 62, 0.06);
}

.invest h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 24px);
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.invest p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 10px;
}

.invest-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

@media (min-width: 600px) {
  .invest-data { grid-template-columns: repeat(4, 1fr); }
}

.invest-kpi span:first-child {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

.invest-kpi span:last-child {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #8a9aa8;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 4px;
  display: block;
}

/* Why us */
.why-grid {
  display: grid;
  gap: 28px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 40px; }
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-title {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--font-sans);
}

.why-text {
  color: #7a8fa0;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 400;
}

/* CTA */
.cta-wrap {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(138, 180, 212, 0.1);
  pointer-events: none;
}

.cta-wrap h2 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 14px;
  font-weight: 700;
  position: relative;
}

.cta-wrap p {
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 400;
  position: relative;
}

.contact-info {
  color: var(--text-light);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
}

.contact-info a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-info a:hover { color: var(--accent); }

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Footer */
.site-footer {
  background: var(--navy-footer);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
}

.footer-logo span {
  color: #4a6a7a;
  font-size: 10px;
  display: block;
  letter-spacing: 0.06em;
  margin-top: 4px;
  font-family: var(--font-sans);
  font-weight: 400;
  text-transform: uppercase;
}

.footer-legal {
  font-size: 11px;
  color: #3a4a5a;
  line-height: 2;
}

@media (min-width: 768px) {
  .footer-legal { text-align: right; }
}

.footer-legal a {
  color: #4a6a7a;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.footer-legal a:hover { color: var(--accent); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

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

/* Legal pages */
.legal-page {
  padding: calc(var(--nav-height) + 48px) 0 80px;
  background: var(--bg-alt);
  min-height: calc(100vh - var(--nav-height));
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
}

@media (min-width: 768px) {
  .legal-content { padding: 56px 64px; }
}

.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 36px);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 28px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin: 36px 0 14px;
  line-height: 1.35;
}

.legal-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-mid);
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover { color: var(--navy); }

.legal-content code {
  font-size: 0.9em;
  background: var(--bg-soft);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.legal-list {
  margin: 0 0 16px 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}

.legal-list li { margin-bottom: 6px; }

.legal-table-wrap {
  overflow-x: auto;
  margin: 16px 0 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.55;
}

.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.legal-table th {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--navy);
}

.legal-table tr:last-child th,
.legal-table tr:last-child td { border-bottom: none; }

.footer-logo {
  text-decoration: none;
}

/* ── Service pages ── */

.service-hero {
  padding: calc(var(--nav-height) + 56px) 0 56px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}

.service-hero-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.service-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 720px;
  margin-bottom: 20px;
}

.service-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: #b0bfd0;
  max-width: 640px;
}

.service-body { padding-top: 64px; padding-bottom: 64px; }

.service-layout {
  display: grid;
  gap: 48px;
}

@media (min-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr 300px;
    gap: 64px;
    align-items: start;
  }
}

.service-main h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-main h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-mid);
  margin: 32px 0 12px;
}

.service-main p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 14px;
}

.service-list {
  margin: 0 0 16px 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}

.service-list li { margin-bottom: 10px; }

.service-list-ordered { list-style: decimal; }

.service-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-aside-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.service-aside-card h3 {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 14px;
  font-weight: 600;
}

.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags li {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
}

.service-related {
  list-style: none;
}

.service-related li { margin-bottom: 8px; }

.service-related a {
  font-size: 14px;
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.service-related a:hover { color: var(--navy); }

.service-aside-highlight {
  background: var(--navy);
  border-color: var(--navy);
}

.service-aside-highlight .service-price {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.service-aside-highlight .service-price-label {
  font-size: 13px;
  color: #b0bfd0;
  margin-top: 8px;
  line-height: 1.5;
}

.service-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-kpis dt {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.service-kpis dd {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

/* ── Contact page ── */

.contact-body { padding-top: 64px; padding-bottom: 80px; }

.contact-layout {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.contact-details h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.contact-details > p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 32px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-list dt {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-list dd {
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  margin: 0;
}

.contact-list a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.contact-list a:hover { color: var(--navy); }

.contact-btns {
  justify-content: flex-start;
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.map-embed--blocked {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
}

.map-placeholder {
  text-align: center;
  padding: 32px 24px;
  max-width: 360px;
}

.map-placeholder p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.map-placeholder .btn {
  margin-bottom: 14px;
}

.map-placeholder a {
  font-size: 13px;
  color: var(--accent-dark);
  text-decoration: none;
}

.map-placeholder a:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* ── Cookie banner ── */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(13, 27, 62, 0.97);
  border-top: 1px solid rgba(138, 180, 212, 0.2);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

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

.cookie-banner-inner {
  display: grid;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 767px) {
  .cookie-banner-inner.container {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (min-width: 768px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
  }
}

.cookie-banner-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}

.cookie-banner-text h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.cookie-banner-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #b0bfd0;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
  color: var(--white);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner-actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
}

.footer-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 11px;
  color: #4a6a7a;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.footer-cookie-btn:hover {
  color: var(--accent);
}

.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;
}
