:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #18212f;
  --muted: #5b6574;
  --line: rgba(24, 33, 47, 0.08);
  --primary: #153e75;
  --primary-strong: #102f59;
  --accent: #dbe8ff;
  --shadow: 0 18px 45px rgba(18, 39, 70, 0.10);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(219, 232, 255, 0.95), transparent 42%),
    linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto -120px -110px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(21, 62, 117, 0.07);
  filter: blur(2px);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(21, 62, 117, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-label--light {
  background: rgba(255,255,255,0.16);
  color: #ffffff;
}

.hero h1,
.section h2 {
  margin: 18px 0 18px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.55rem);
  max-width: 13ch;
}

.hero__lead {
  margin: 0 0 16px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.hero__content p {
  margin: 0 0 14px;
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

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

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #1b4f95 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(21, 62, 117, 0.22);
}

.btn--ghost {
  border: 1px solid rgba(21, 62, 117, 0.16);
  background: rgba(255,255,255,0.72);
  color: var(--primary);
}

.btn--dark {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #ffffff;
}

.hero__card,
.card,
.feature,
.cta-box,
.quote-box {
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
}

.hero__card {
  padding: 26px;
  border-radius: 28px;
}

.hero-stats {
  display: grid;
  gap: 16px;
}

.hero-stats__item {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid var(--line);
}

.hero-stats__item strong,
.quote-box strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.35;
}

.hero-stats__item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.96rem;
}

.section {
  padding: 90px 0;
}

.section--light {
  background: var(--surface-soft);
}

.section--accent {
  background: linear-gradient(135deg, #133a6f 0%, #0f2f59 100%);
  color: #ffffff;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 32px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section--accent p,
.section--accent h2 {
  color: #ffffff;
}

.grid,
.features-grid,
.split {
  display: grid;
  gap: 22px;
}

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

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

.split {
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
}

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

.card h3,
.feature h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.28;
}

.card p,
.feature p,
.quote-box p {
  margin: 0;
  color: var(--muted);
}

.quote-box {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
}

.quote-box p,
.quote-box strong {
  color: #ffffff;
}

.cta-section {
  padding-top: 40px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #edf4ff 100%);
}

@media (max-width: 1100px) {
  .hero__inner,
  .split,
  .cta-box,
  .cards-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero { padding: 26px 0 70px; }
  .hero__inner,
  .split,
  .cta-box,
  .cards-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 72px 0;
  }
  .hero h1 {
    max-width: none;
  }
  .hero__actions,
  .cta-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
}
/* FOOTER */
.og-site-footer {
    background: #0f1720;
    color: rgba(255,255,255,0.82);
    padding: 56px 0 32px;
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.og-site-footer .og-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.og-footer-top h3 {
    margin: 0 0 14px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.og-footer-top p {
    margin: 0 0 10px;
    font-size: 0.98rem;
    line-height: 1.7;
}

.og-site-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.og-site-footer a:hover {
    opacity: 0.75;
}

.og-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin: 34px 0 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.og-footer-links a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.og-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.og-footer-bottom p {
    margin: 0 0 8px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    .og-site-footer {
        padding: 44px 0 28px;
        margin-top: 56px;
    }

    .og-footer-top h3 {
        font-size: 1.08rem;
    }

    .og-footer-top p,
    .og-footer-links a,
    .og-footer-bottom p {
        font-size: 0.92rem;
    }

    .og-footer-links {
        gap: 10px 18px;
    }
}
