:root {
  --bg: #f3f7ff;
  --surface: #ffffff;
  --surface-soft: #eaf1ff;
  --text: #14203d;
  --muted: #5f6f92;
  --primary: #252a85;
  --primary-dark: #1a1f65;
  --accent: #b6d300;
  --border: rgba(37, 42, 133, 0.12);
  --shadow: 0 20px 60px rgba(21, 31, 75, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(182, 211, 0, 0.14), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(247, 250, 255, 0.82);
  border-bottom: 1px solid rgba(37, 42, 133, 0.08);
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.brand img {
  width: min(220px, 42vw);
}

.main-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--primary);
}

.header-cta {
  min-height: 46px;
  padding: 0 18px;
  white-space: nowrap;
}

.hero {
  padding: 64px 0 32px;
}

.hero-grid,
.feature-grid,
.contact-box,
.footer-inner {
  display: grid;
  gap: 32px;
}

.hero-grid,
.feature-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.hero-text,
.section-heading p,
.feature-copy p,
.contact-box p,
.info-card p,
.panel-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #3942c6 100%);
  box-shadow: 0 18px 30px rgba(37, 42, 133, 0.24);
}

.button-primary:hover {
  box-shadow: 0 22px 36px rgba(37, 42, 133, 0.3);
}

.button-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(37, 42, 133, 0.16);
}

.hero-points,
.info-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li,
.info-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.hero-points li::before,
.info-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #d6ef47);
  box-shadow: 0 0 0 5px rgba(182, 211, 0, 0.18);
}

.hero-card,
.stat-card,
.info-card,
.feature-panel,
.contact-box,
.panel-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 36px;
}

.hero-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 26px;
}

.hero-badge {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: grid;
  gap: 6px;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(20, 32, 61, 0.8);
  color: #fff;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 38px 0;
}

.section-alt {
  padding: 70px 0;
}

.stats-grid,
.cards-grid {
  display: grid;
  gap: 20px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 22px;
}

.stat-card strong {
  color: var(--primary);
  font-size: 2rem;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

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

.info-card {
  padding: 28px;
  border-radius: var(--radius);
}

.accent-card {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), #3641c8);
}

.accent-card p,
.accent-card h3 {
  color: #fff;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
}

.feature-copy {
  max-width: 560px;
}

.check-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.check-list div {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 42, 133, 0.1);
}

.check-list strong {
  display: block;
  margin-bottom: 6px;
}

.check-list span {
  color: var(--muted);
  line-height: 1.6;
}

.feature-panel {
  overflow: hidden;
  border-radius: 32px;
}

.feature-panel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.panel-card {
  display: grid;
  gap: 2px;
  margin: 18px;
  padding: 22px;
  border-radius: 24px;
}

.panel-title {
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-card a {
  margin-top: 10px;
  color: var(--primary);
  font-weight: 700;
}

.contact-box {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
}

.site-footer {
  padding: 14px 0 34px;
}

.footer-inner {
  grid-template-columns: 1fr 1fr;
  padding-top: 10px;
  border-top: 1px solid rgba(37, 42, 133, 0.08);
}

.footer-inner p:last-child {
  text-align: right;
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-grid,
  .contact-box,
  .footer-inner,
  .stats-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-card img {
    min-height: 320px;
  }

  .footer-inner p:last-child {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .header-actions {
    justify-content: center;
  }

  h1 {
    font-size: 2.4rem;
  }

  .hero-badge {
    right: 24px;
    left: 24px;
    bottom: 24px;
    max-width: none;
  }

  .contact-box,
  .hero-card,
  .info-card,
  .panel-card,
  .stat-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-card {
    padding: 12px;
  }
}
