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

:root {
  --bg: #f8fafc;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --blue: #2563eb;
  --cyan: #38bdf8;
  --cyan-soft: #bae6fd;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(15, 23, 42, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 84%);
  margin: auto;
}

.site-header {
  background: rgba(15, 23, 42, 0.96);
  color: white;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.navbar {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.logo img {
    width: 320px;
    height: auto;
    display: block;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  color: #e0f2fe;
  transition: 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

.hero {
  min-height: calc(100vh - 76px);
  color: white;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.93), rgba(30, 64, 175, 0.84)),
    url("https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 90px 0;
}

.hero-content {
  max-width: 820px;
}

.badge {
  display: inline-block;
  background: rgba(125, 211, 252, 0.14);
  color: var(--cyan-soft);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(186, 230, 253, 0.25);
  margin-bottom: 22px;
  font-size: 14px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero p,
.page-hero p {
  font-size: 20px;
  color: #dbeafe;
  max-width: 680px;
  margin-bottom: 34px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  background: var(--cyan);
  color: #082f49;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s;
  margin: 6px 8px 6px 0;
}

.btn:hover {
  background: #7dd3fc;
  transform: translateY(-3px);
}

.btn.secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.10);
}

section {
  padding: 88px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-title.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #e0f2fe;
  color: #075985;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.card h3 {
  color: #1e40af;
  font-size: 22px;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.dark-section {
  background: var(--dark);
  color: white;
}

.dark-section .section-title p,
.dark-section .card p {
  color: #cbd5e1;
}

.dark-section .card {
  background: var(--dark-2);
  border-color: rgba(255,255,255,0.08);
}

.meeting-box {
  background: linear-gradient(135deg, #1e40af, #0f172a);
  color: white;
  border-radius: 34px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
  align-items: center;
  box-shadow: 0 30px 75px rgba(15, 23, 42, 0.24);
}

.meeting-box h2 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.meeting-details {
  background: rgba(255,255,255,0.10);
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.16);
}

.detail {
  margin-bottom: 18px;
}

.detail:last-child {
  margin-bottom: 0;
}

.detail strong {
  display: block;
  color: var(--cyan);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.page-hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
  padding: 96px 0;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 68px);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.panel h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.panel p,
.panel li {
  color: var(--muted);
}

.panel ul {
  padding-left: 20px;
  margin-top: 14px;
}

.meta {
  display: inline-block;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
}

.cta {
  background: linear-gradient(135deg, #2563eb, #0f172a);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 16px;
}

.cta p {
  color: #dbeafe;
  max-width: 690px;
  margin: 0 auto 26px;
  font-size: 18px;
}

.footer {
  background: #020617;
  color: #94a3b8;
  padding: 34px 0;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 860px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    gap: 14px;
  }

  .meeting-box,
  .split {
    grid-template-columns: 1fr;
  }

  .meeting-box {
    padding: 32px;
  }
}
