:root {
  --color-primary: #0e123e;
  --color-primary-strong: #1a2066;
  --color-accent: #00a991;
  --color-accent-soft: #e5faf6;
  --color-surface: #ffffff;
  --color-surface-muted: #f5f0e8;
  --color-background: #f7f8fc;
  --color-border: #dfe5ef;
  --color-text: #1e2448;
  --color-text-muted: #667089;
  --shadow-lg: 0 20px 50px rgba(14, 18, 62, 0.12);
  --shadow-md: 0 12px 30px rgba(14, 18, 62, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(0, 169, 145, 0.12), transparent 28%),
    linear-gradient(180deg, #fdfefe 0%, var(--color-background) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(223, 229, 239, 0.75);
}

.site-header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  box-shadow: 0 10px 24px rgba(26, 32, 102, 0.25);
}

.brand-copy small,
.eyebrow,
.meta-label {
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small,
.eyebrow {
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 600;
}

.brand-copy span {
  display: block;
  font-size: 1.15rem;
  color: var(--color-primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--color-text-muted);
  font-weight: 500;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-primary);
  background: rgba(14, 18, 62, 0.06);
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  box-shadow: 0 14px 28px rgba(26, 32, 102, 0.22);
}

.btn-secondary {
  color: var(--color-primary);
  background: #fff;
  border-color: var(--color-border);
}

.btn:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.hero,
.page-hero {
  padding: 88px 0 42px;
}

.hero-grid,
.two-column {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1.04;
  color: var(--color-primary);
}

.hero-copy p,
.page-hero p,
.section-lead,
.card p,
.policy-content p,
.policy-content li,
.contact-detail p,
.footer-copy {
  color: var(--color-text-muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.stats-grid,
.cards-grid,
.contact-grid,
.policy-grid,
.footer-links {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.stat-card,
.card,
.contact-card,
.policy-card,
.glass-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(223, 229, 239, 0.95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.stat-card,
.card,
.contact-card,
.policy-card {
  padding: 24px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(14, 18, 62, 0.98), rgba(26, 32, 102, 0.92)),
    var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 169, 145, 0.16);
}

.hero-panel .mini-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #b7ffef;
  font-size: 0.88rem;
}

.hero-panel h2 {
  margin: 18px 0 10px;
  font-size: 1.7rem;
}

.hero-list,
.policy-list,
.plain-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.hero-list li,
.policy-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.hero-list li::before,
.policy-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(0, 169, 145, 0.12);
}

section {
  padding: 42px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-heading h2,
.policy-content h2,
.contact-card h2 {
  margin: 10px 0 0;
  color: var(--color-primary);
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--color-primary);
  background: linear-gradient(180deg, #f6f8ff, var(--color-surface-muted));
}

.card h3,
.contact-card h3,
.policy-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  color: var(--color-primary);
}

.policy-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 100px;
}

.policy-sidebar .policy-card {
  margin-bottom: 18px;
}

.policy-content {
  padding: 30px;
}

.policy-content h2 {
  margin-top: 0;
}

.policy-content h3 {
  margin: 26px 0 10px;
  color: var(--color-primary);
  font-size: 1.15rem;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-detail {
  display: flex;
  align-items: start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--color-accent);
  background: var(--color-accent-soft);
}

.meta-label {
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 500;
  color: var(--color-primary);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #fff;
  padding: 15px 16px;
  font: inherit;
  color: var(--color-text);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-note,
.policy-note,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.contact-note,
.policy-note {
  color: var(--color-primary);
  background: rgba(14, 18, 62, 0.06);
}

.badge {
  color: var(--color-accent);
  background: rgba(0, 169, 145, 0.1);
  font-weight: 600;
}

.cta-section {
  padding-bottom: 84px;
}

.glass-panel {
  padding: 32px;
}

.site-footer {
  border-top: 1px solid rgba(223, 229, 239, 0.8);
  background: #fff;
}

.footer-links {
  grid-template-columns: repeat(3, auto);
  justify-content: end;
}

.footer-links a {
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-primary);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .contact-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
  }

  .section-heading,
  .site-header-inner,
  .footer-inner {
    align-items: start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero {
    padding-top: 60px;
  }

  .brand-copy small {
    font-size: 0.68rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.1rem;
  }

  .stat-card,
  .card,
  .contact-card,
  .policy-card,
  .policy-content,
  .glass-panel,
  .hero-panel {
    padding: 22px;
  }

  .container {
    width: min(var(--container-width), calc(100% - 20px));
  }
}
