:root {
  --bg: #fff8f5;
  --bg-soft: #fff1ec;
  --text: #22151a;
  --muted: #715f66;
  --primary: #8f2348;
  --primary-dark: #6f1735;
  --secondary: #f6d8ce;
  --card: rgba(255, 255, 255, 0.74);
  --border: rgba(143, 35, 72, 0.16);
  --shadow: 0 24px 80px rgba(86, 31, 52, 0.14);
  --radius: 28px;
}

* {
  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:
    radial-gradient(circle at top left, rgba(255, 195, 179, 0.55), transparent 34rem),
    radial-gradient(circle at top right, rgba(143, 35, 72, 0.13), transparent 28rem),
    var(--bg);
  line-height: 1.6;
}

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

.site-header {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--primary), #d96f78);
  box-shadow: 0 10px 30px rgba(143, 35, 72, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.nav-cta {
  color: white !important;
  background: var(--primary);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 54px auto 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 54px;
  align-items: center;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.05em;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  max-width: 850px;
}

h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
}

h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.hero-text {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

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

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

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

.primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), #c55363);
  box-shadow: 0 14px 36px rgba(143, 35, 72, 0.28);
}

.primary:hover {
  box-shadow: 0 18px 44px rgba(143, 35, 72, 0.36);
}

.secondary {
  color: var(--primary-dark);
  background: white;
  border: 1px solid var(--border);
}

.large {
  min-height: 56px;
  padding: 0 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.58);
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.84), rgba(255,241,236,0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(1deg);
}

.profile-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  margin-bottom: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.82);
}

.profile-preview strong,
.profile-preview span {
  display: block;
}

.profile-preview span {
  color: var(--muted);
  font-size: 0.92rem;
}

.avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7c8bb, #8f2348);
  box-shadow: inset 0 -10px 18px rgba(0,0,0,0.08);
}

.avatar-two {
  background: linear-gradient(135deg, #efd3bd, #4e2d2f);
}

.avatar-three {
  background: linear-gradient(135deg, #f4b7c2, #944661);
}

.card-note {
  margin: 22px 6px 4px;
  color: var(--muted);
  font-weight: 500;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 64px;
  border-top: 1px solid var(--border);
}

.text-block {
  color: var(--muted);
  font-size: 1.08rem;
}

.text-block p:first-child {
  margin-top: 0;
}

.center {
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.features article,
.guide-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 16px 42px rgba(86, 31, 52, 0.08);
}

.features p,
.guide-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.quote-section {
  margin: 28px auto;
  width: min(1040px, calc(100% - 32px));
  padding: 62px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-dark), #a83355);
  color: white;
  box-shadow: var(--shadow);
}

blockquote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
  white-space: nowrap;
}

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

.guide-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--primary);
  font-weight: 800;
}

.cta-section {
  width: min(920px, calc(100% - 32px));
  margin: 20px auto 90px;
  text-align: center;
  padding: 66px 28px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.72), transparent 24rem),
    var(--bg-soft);
  border: 1px solid var(--border);
}

.cta-section p {
  color: var(--muted);
  max-width: 680px;
  margin: 20px auto 30px;
}

.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 44px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer div {
  display: flex;
  gap: 18px;
}

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

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
  }

  .nav {
    display: none;
  }

  .hero,
  .split,
  .features,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 28px;
    gap: 34px;
  }

  .hero-card {
    transform: none;
  }

  .section,
  .split {
    padding: 58px 0;
  }

  .section-head,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-section {
    padding: 38px 28px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }
}
