@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #f8f6f2;
  --bg-alt: #f5f7fb;
  --text: #1b2b40;
  --muted: #516076;
  --brand: #d59b32;
  --brand-dark: #c48828;
  --border: rgba(27, 43, 64, 0.12);
  --shadow: 0 24px 48px rgba(16, 26, 40, 0.15);
  --layout-gap: 64px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #f3f7ff 0%, var(--bg) 48%, #fbfaf7 100%);
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 500;
}

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

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

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 32px;
}

.site-header {
  background: rgba(253, 252, 249, 0.9);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.header-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  padding: 14px 0;
  column-gap: var(--layout-gap);
  position: relative;
}

.brand-logo {
  height: 36px;
  margin-left: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: var(--text);
  justify-self: end;
  margin-right: 30px;
}

.main-nav a {
  font-size: 0.95rem;
  line-height: 1;
  padding: 6px 0;
}

.main-nav .btn {
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 10px;
}
.link-muted {
  color: var(--muted);
}

.hero {
  padding: 88px 0 110px;
  background: linear-gradient(180deg, rgba(235, 241, 250, 0.85) 0%, rgba(248, 246, 242, 0.9) 55%, rgba(248, 246, 242, 1) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 32px;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 4.1vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  font-weight: 700;
}

.hero-copy p:not(.hero-disclaimer) {
  font-size: 1.04rem;
  color: var(--muted);
  margin: 0 0 28px;
}

.hero-disclaimer {
  margin: 8px 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #9aa5b1;
  max-width: 480px;
}

.hero-copy {
  max-width: 520px;
}

.hero-copy p:not(.hero-disclaimer) {
  max-width: 480px;
}

.hero-image {
  justify-self: end;
  margin-top: -4px;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: none;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #e6b356 0%, #d59a36 100%);
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(213, 155, 50, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(213, 155, 50, 0.22);
}

.btn-cta {
  padding: 18px 34px;
  font-size: 1.12rem;
  border-radius: 10px;
}

.how {
  padding: 80px 0 95px;
  background: var(--bg-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.how h2 {
  text-align: center;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0 0 48px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.step {
  background: white;
  border-radius: 24px;
  padding: 28px 24px 30px;
  text-align: center;
  border: 1px solid rgba(27, 43, 64, 0.08);
  box-shadow: 0 18px 35px rgba(18, 28, 44, 0.08);
}

.step-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(213, 155, 50, 0.15);
  color: #9e6f1f;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.step p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.98rem;
}

.step img {
  margin: 0 auto;
  max-width: 220px;
}

.step-arrow {
  width: 34px;
  height: auto;
  opacity: 0.7;
}

.why {
  padding: 80px 0 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f6f2 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.why h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.why p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.03rem;
}

.why blockquote {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  background: rgba(213, 155, 50, 0.08);
  color: var(--text);
  font-weight: 600;
  border-radius: 8px;
}

.why blockquote span {
  display: block;
  margin-top: 8px;
  font-weight: 500;
  color: var(--muted);
}

.cta {
  padding: 70px 0 85px;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px 48px;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), #f6f2e8);
  box-shadow: 0 24px 48px rgba(21, 26, 35, 0.08);
  border: 1px solid rgba(27, 43, 64, 0.08);
}

.cta-content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cta-content p {
  margin: 0;
  color: var(--muted);
}

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

  .hero-image {
    order: -1;
    justify-self: center;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

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

  .step-arrow {
    display: none;
  }

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

@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }

  .header-content {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
  }

  .main-nav {
    display: flex;
    gap: 0;
  }

  .main-nav a:not(.link-muted) {
    display: none;
  }

  .hero {
    padding: 0 0 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-disclaimer {
    margin-inline: auto;
    max-width: 100%;
  }

  .hero-image {
    margin-bottom: 24px;
    margin-top: 0;
  }

  .hero-image img {
    max-width: none;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }

  .btn {
    justify-content: center;
  }

  .btn-cta {
    width: 100%;
    margin: 0;
    padding: 20px 26px;
    font-size: 1.12rem;
  }

  .cta-content {
    padding: 32px 24px;
  }
}
