@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #eef3f8;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --surface-dark: #0a2239;
  --surface-dark-2: #14324f;
  --text: #162536;
  --text-soft: #5b6a79;
  --line: #d7dee6;
  --accent: #b88a4a;
  --accent-strong: #9f7137;
  --shadow-lg: 0 26px 56px rgba(11, 28, 45, 0.12);
  --shadow-md: 0 14px 30px rgba(11, 28, 45, 0.08);
  --container: min(1140px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f9fc 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 222, 230, 0.92);
  backdrop-filter: blur(12px);
}

.header-bar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  text-decoration: none;
}

.brand-name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.9;
  color: var(--surface-dark);
}

.brand-name span {
  color: var(--accent-strong);
}

.brand-meta {
  display: block;
  margin-top: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--surface-dark) 0%, var(--surface-dark-2) 100%);
  box-shadow: 0 14px 24px rgba(10, 34, 57, 0.16);
}

.btn-secondary {
  color: var(--surface-dark);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(10, 34, 57, 0.14);
}

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

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 24px;
  border: 1px solid rgba(215, 222, 230, 0.96);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--surface-dark);
}

.title em {
  font-style: italic;
  color: var(--accent-strong);
}

.lead {
  margin: 22px 0 0;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-soft);
}

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

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.stat {
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--surface-soft);
  border: 1px solid rgba(215, 222, 230, 0.96);
}

.stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.05rem;
  line-height: 0.9;
  color: var(--surface-dark);
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.hero-panel {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--surface-dark) 0%, var(--surface-dark-2) 100%);
  color: #ffffff;
}

.hero-panel h2 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-panel ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-panel li {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  line-height: 1.7;
}

.section {
  padding: 0 0 80px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
}

.card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(215, 222, 230, 0.96);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.98;
  color: var(--surface-dark);
}

.section-copy {
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.list li {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(215, 222, 230, 0.92);
  background: var(--surface-soft);
  line-height: 1.72;
  color: var(--text-soft);
}

.list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--surface-dark);
}

.mini-title {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.step-list {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.step-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #eff4f8;
  color: var(--surface-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.step h3 {
  margin: 4px 0 6px;
  font-size: 1rem;
  color: var(--surface-dark);
}

.step p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.cta {
  padding: 0 0 32px;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 18px;
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, #123150 0%, #0a2239 100%);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.cta-shell .section-title,
.cta-shell .section-title em {
  color: #ffffff;
}

.cta-shell .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel {
  display: grid;
  gap: 14px;
}

.cta-box {
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.cta-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.cta-box span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

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

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .hero-shell,
  .section-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-bar {
    min-height: 74px;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-shell,
  .card,
  .cta-shell {
    padding: 22px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
  }

  .step-badge {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
