:root {
  --bg-primary: #0b1320;
  --bg-secondary: #111b2f;
  --panel: rgba(17, 27, 47, 0.68);
  --text-main: #ffffff;
  --text-soft: #cbd5e1;
  --line: rgba(148, 163, 184, 0.25);
  --accent: #c9a227;
  --accent-cold: #2f6fe6;
  --shadow: 0 20px 50px rgba(2, 10, 24, 0.5);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 15% 15%, rgba(47, 111, 230, 0.2), transparent 40%),
    radial-gradient(circle at 88% 82%, rgba(201, 162, 39, 0.18), transparent 36%),
    linear-gradient(160deg, var(--bg-primary), var(--bg-secondary));
  min-height: 100vh;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
}

h1,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.15rem);
  line-height: 1.06;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.2rem, 3.4vw, 2rem);
  color: var(--text-main);
  max-width: 760px;
}

h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 26px;
}

h4 {
  font-size: clamp(1.06rem, 2.5vw, 1.22rem);
}

p,
li {
  color: var(--text-soft);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.lead {
  font-size: clamp(1.02rem, 2.4vw, 1.22rem);
  max-width: 720px;
  margin-bottom: 28px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-points li {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: rgba(10, 20, 36, 0.35);
  backdrop-filter: blur(3px);
  color: #dce7ff;
  font-size: 0.95rem;
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
}

.photo-frame {
  position: relative;
  width: min(420px, 100%);
  border-radius: var(--radius-lg);
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(201, 162, 39, 0.5), rgba(47, 111, 230, 0.45));
  box-shadow: var(--shadow);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.hero-photo {
  border-radius: calc(var(--radius-lg) - 6px);
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.08) contrast(1.05);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0e1b2d;
  background: linear-gradient(135deg, #d9b248, #f1d37c 55%, #bad0ff);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
  box-shadow: 0 10px 26px rgba(201, 162, 39, 0.25);
}

.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(47, 111, 230, 0.35);
  filter: brightness(1.03);
}

.wa-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.wa-btn-lg {
  font-size: 1.06rem;
  padding: 16px 32px;
}

.section-text {
  max-width: 920px;
  margin: 0 0 14px;
}

.inline-link {
  color: #d7e5ff;
  text-decoration-color: rgba(215, 229, 255, 0.5);
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: #ffffff;
}

.stats-grid {
  margin: 30px 0 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.glass-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: var(--panel);
  backdrop-filter: blur(8px);
  padding: 18px;
}

.stat-value {
  margin: 0;
  color: #ffffff;
  font-size: 1.54rem;
  font-weight: 700;
}

.stat-label {
  margin: 5px 0 0;
  color: #c7d4ea;
  font-size: 0.95rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  background: rgba(10, 21, 37, 0.52);
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.card:hover {
  border-color: rgba(201, 162, 39, 0.65);
  transform: translateY(-4px);
}

.card ul {
  margin: 0;
  padding-left: 18px;
}

.reasons {
  display: grid;
  gap: 12px;
}

.reasons p {
  margin: 0;
  border-left: 2px solid rgba(47, 111, 230, 0.65);
  padding: 10px 0 10px 14px;
  background: rgba(10, 20, 36, 0.28);
  border-radius: 0 10px 10px 0;
}

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

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 16px;
  background: rgba(12, 23, 40, 0.44);
}

.steps span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(47, 111, 230, 0.3);
  color: #dce8ff;
  font-weight: 700;
}

.steps p,
.steps h4 {
  margin: 0;
}

.case-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.cta-section {
  text-align: center;
}

.cta-section p {
  max-width: 780px;
  margin: 0 auto 24px;
}

.cta-notes {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-notes span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: #d0def7;
  font-size: 0.9rem;
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding-top: 42px;
  padding-bottom: 34px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-name {
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
}

.footer-role {
  margin: 4px 0 0;
  color: var(--text-soft);
}

.disclaimer {
  margin: 22px 0 0;
  color: #a9b8d1;
  font-size: 0.9rem;
}

.bg-orbit {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.24;
  pointer-events: none;
  z-index: -1;
}

.bg-orbit-1 {
  width: 340px;
  height: 340px;
  background: #3158a4;
  top: -90px;
  right: -50px;
}

.bg-orbit-2 {
  width: 280px;
  height: 280px;
  background: #e0b54e;
  bottom: 40px;
  left: -60px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 40px;
  }

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

  .hero-photo-wrap {
    order: -1;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 700px) {
  .section {
    padding: 52px 0;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .wa-btn,
  .wa-btn-lg {
    width: 100%;
  }

  .photo-frame {
    width: min(360px, 100%);
  }

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