@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

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

:root {
  --navy:      #0F1C2E;
  --slate:     #2C3E55;
  --silver:    #8A9BB0;
  --light:     #E3E8EF;
  --bg:        #F6F7F9;
  --white:     #FFFFFF;
  --accent:    #3A6EA8;
  --accent2:   #1E4D7B;
  --text:      #1A2535;
  --muted:     #5A6D82;
  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 12px rgba(15,28,46,0.08);
  --shadow-lg: 0 8px 40px rgba(15,28,46,0.13);
  --transition:0.22s ease;
  --max-w:     1160px;
  --nav-h:     72px;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent2); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: 'Inter', sans-serif; }
p  { color: var(--muted); }

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

.section { padding: 88px 0; }
.section--alt { background: var(--white); }
.section--dark { background: var(--navy); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section-title { margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; max-width: 600px; margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  line-height: 1;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover {
  background: var(--accent2);
  border-color: var(--accent2);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(58,110,168,0.3);
}
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-wrap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.nav-logo-wrap img {
  width: 38px;
  height: 38px;
  display: block;
}
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav-name-footer { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  padding: 7px 13px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: rgba(58,110,168,0.07);
}

.nav-cta { display: flex; align-items: center; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius);
  transition: background var(--transition);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--light); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--light);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--slate);
  padding: 11px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--accent);
  background: rgba(58,110,168,0.07);
}
.nav-mobile-divider { height: 1px; background: var(--light); margin: 10px 0; }
.nav-mobile .btn { justify-content: center; margin-top: 4px; }

.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80&auto=format') center/cover no-repeat;
  opacity: 0.1;
}
.hero .container { position: relative; z-index: 1; }
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.72); }
.hero-desc { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.hero-badge-text strong { display: block; font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1; }
.hero-badge-text span { font-size: 0.74rem; color: var(--muted); }

.stats-bar { background: var(--white); border-bottom: 1px solid var(--light); padding: 40px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cards-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  border-color: rgba(58,110,168,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(58,110,168,0.1), rgba(58,110,168,0.04));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p  { font-size: 0.9rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 16px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; color: var(--accent2); }

.article-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.article-card-img { aspect-ratio: 16/9; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-body { padding: 28px; }
.article-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.article-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }

.page-header {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(58,110,168,0.25) 0%, transparent 60%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 580px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); font-size: 0.7rem; }

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-layout.reverse .split-visual { order: -1; }
.split-content { min-width: 0; }
.split-visual { position: relative; min-width: 0; }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--light);
}
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -28px; top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-item h4 { color: var(--navy); margin-bottom: 5px; }
.timeline-item p { font-size: 0.875rem; }

.data-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--light); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table thead { background: var(--navy); }
.data-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.data-table tbody tr { border-bottom: 1px solid var(--light); transition: background var(--transition); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(58,110,168,0.03); }
.data-table td { padding: 14px 18px; color: var(--text); vertical-align: top; }
.data-table td:first-child { font-weight: 500; color: var(--navy); }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.badge-green { background: rgba(34,197,94,0.1); color: #166534; }
.badge-blue  { background: rgba(58,110,168,0.1); color: var(--accent2); }
.badge-gray  { background: var(--light); color: var(--muted); }

.chart-box {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.chart-box h4 { margin-bottom: 6px; }
.chart-subtitle { font-size: 0.83rem; color: var(--muted); margin-bottom: 24px; }
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-label { font-size: 0.8rem; font-weight: 500; color: var(--slate); min-width: 60px; flex-shrink: 0; }
.bar-track { flex: 1; height: 10px; background: var(--light); border-radius: 100px; overflow: hidden; }
.bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.bar-value { font-size: 0.8rem; font-weight: 600; color: var(--navy); min-width: 42px; text-align: right; flex-shrink: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--light);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(58,110,168,0.1), rgba(58,110,168,0.04));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: 2px; font-size: 0.9rem; }
.contact-info-text span,
.contact-info-text a { font-size: 0.875rem; color: var(--muted); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group label .req { color: var(--accent); }
.form-control {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58,110,168,0.12);
}
.form-control::placeholder { color: var(--silver); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type=checkbox] {
  width: 17px; height: 17px;
  accent-color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
  cursor: pointer;
}
.form-check label { font-size: 0.83rem; color: var(--muted); font-weight: 400; cursor: pointer; line-height: 1.5; }

.form-success {
  display: none;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #166534;
  font-size: 0.875rem;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.form-success.visible { display: flex; }

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-brand { margin-bottom: 20px; display: inline-flex; }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.38); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom-links { display: flex; gap: 20px; }

.disclaimer-bar {
  background: rgba(58,110,168,0.07);
  border-top: 1px solid rgba(58,110,168,0.14);
  border-bottom: 1px solid rgba(58,110,168,0.14);
  padding: 14px 0;
}
.disclaimer-bar .container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.disclaimer-bar .di-icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; }

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--light);
  box-shadow: 0 -6px 30px rgba(15,28,46,0.1);
  z-index: 9999;
  padding: 18px 0;
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; font-size: 0.86rem; color: var(--muted); min-width: 200px; }
.cookie-banner-text a { color: var(--accent); font-weight: 500; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

.policy-content { max-width: 760px; margin: 0 auto; }
.policy-content h2 { font-size: 1.45rem; margin: 48px 0 14px; color: var(--navy); }
.policy-content h3 { font-size: 1rem; margin: 24px 0 8px; color: var(--slate); font-family: 'Inter', sans-serif; font-weight: 600; }
.policy-content p { margin-bottom: 14px; font-size: 0.95rem; }
.policy-content ul, .policy-content ol { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.policy-content ul li, .policy-content ol li { color: var(--muted); margin-bottom: 7px; font-size: 0.9rem; }
.policy-meta { font-size: 0.8rem; color: var(--silver); padding-bottom: 28px; border-bottom: 1px solid var(--light); margin-bottom: 8px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.team-card-img { aspect-ratio: 1/1; overflow: hidden; background: var(--light); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 22px 18px; }
.team-card-body h4 { color: var(--navy); margin-bottom: 4px; }
.team-card-role { font-size: 0.8rem; color: var(--accent); font-weight: 500; margin-bottom: 10px; display: block; }
.team-card-body p { font-size: 0.83rem; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.value-item:hover { border-color: rgba(58,110,168,0.25); box-shadow: var(--shadow); }
.value-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(58,110,168,0.1), rgba(58,110,168,0.04));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.value-text h4 { color: var(--navy); margin-bottom: 6px; }
.value-text p { font-size: 0.86rem; }

.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--slate));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(58,110,168,0.28) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(58,110,168,0.18) 0%, transparent 50%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.62); max-width: 520px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.icon-inline {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

svg.icon {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .section { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .split-layout { grid-template-columns: 1fr; gap: 36px; }
  .split-layout.reverse .split-visual { order: unset; }
  .split-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 64px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cookie-banner .container { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-banner-actions { display: flex; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 260px; justify-content: center; }
}

@media (max-width: 480px) {
  .cards-grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; text-align: left; }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
