﻿:root {
  --bg: #fff9fc;
  --surface: #ffffff;
  --surface-soft: #fff4fa;
  --ink: #2d2942;
  --muted: #6f6783;
  --brand-blue: #4f8fc8;
  --brand-teal: #74c9c0;
  --brand-pink: #de79ab;
  --brand-rose: #f5d7e7;
  --brand-navy: #3b4968;
  --border-soft: rgba(87, 77, 116, 0.18);
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow: 0 18px 45px rgba(60, 47, 83, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 10%, rgba(222, 121, 171, 0.18), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(116, 201, 192, 0.2), transparent 38%),
    linear-gradient(180deg, #fffafd 0%, #f8fcff 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(85px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.24;
}

.bg-glow-1 {
  width: 360px;
  height: 360px;
  top: -90px;
  left: -70px;
  background: radial-gradient(circle, var(--brand-pink), transparent 70%);
}

.bg-glow-2 {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 240px;
  background: radial-gradient(circle, var(--brand-teal), transparent 68%);
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 44px 0;
}

.light {
  background: linear-gradient(180deg, rgba(255, 250, 253, 0.88), rgba(247, 253, 255, 0.84));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: #6a5f84;
  font-weight: 700;
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  color: #312b47;
}

h1 {
  font-size: clamp(2.15rem, 4.3vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.75rem);
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px min(4vw, 40px);
  background: linear-gradient(95deg, #4f8fc8 0%, #5fa8c8 46%, #77c9be 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.top-bar p {
  margin: 0;
  color: #f9fcff;
  font-weight: 600;
}

.top-bar a {
  color: #2e2a45;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-weight: 700;
}

.nav-wrap {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(87, 77, 116, 0.1);
  padding: 10px min(4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.brand {
  width: min(320px, 52vw);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(60, 47, 83, 0.13);
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #443b60;
}

.main-nav a:not(.button):hover {
  color: #2f5f9a;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--brand-navy);
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(125deg, #d978aa 0%, #e58db8 44%, #7da8cb 100%);
  box-shadow: 0 10px 26px rgba(144, 107, 146, 0.25);
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

.button.small {
  padding: 10px 16px;
  font-size: 0.72rem;
}

.hero {
  padding-top: 98px;
}

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

.hero-copy h1 {
  max-width: 18ch;
}

.lead {
  font-size: 1.06rem;
  max-width: 58ch;
  color: #645d79;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.text-link {
  font-weight: 700;
  color: #4f678f;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.hero-points li {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--brand-pink);
  border-radius: 12px;
  padding: 10px 14px;
  color: #3f3958;
  font-weight: 600;
}

.hero-card {
  position: relative;
  background: linear-gradient(160deg, #ffffff, #fff1f9);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 14px;
  box-shadow: var(--shadow);
}

.hero-card img {
  border-radius: calc(var(--radius-lg) - 6px);
  min-height: 320px;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  background: rgba(47, 42, 68, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 14px;
  color: #fff;
  display: grid;
  gap: 4px;
}

.hero-card-badge span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.trust-strip {
  border-top: 1px solid rgba(87, 77, 116, 0.1);
  border-bottom: 1px solid rgba(87, 77, 116, 0.1);
  background: rgba(255, 255, 255, 0.65);
}

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

.trust-grid article {
  border: 1px solid var(--border-soft);
  background: linear-gradient(150deg, #ffffff, #fff5fa 42%, #f5fbff 100%);
  border-radius: var(--radius-md);
  padding: 16px;
}

.trust-grid h2 {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
  display: grid;
  gap: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(60, 47, 83, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(60, 47, 83, 0.15);
  border-color: rgba(222, 121, 171, 0.5);
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  background: linear-gradient(140deg, #f9edf4, #edf8fb);
}

.product-card h3 {
  font-size: 1.4rem;
  padding: 14px 14px 6px;
}

.product-card p {
  padding: 0 14px 16px;
  font-size: 0.9rem;
}

.product-card code {
  color: #475b84;
  font-weight: 700;
}

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

.step {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 22px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, #dc7aa9, #7eb9cf);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.step h3 {
  margin-bottom: 8px;
}

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

.benefit {
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(160deg, #ffffff, #fff7fb);
}

.benefit h3 {
  margin-bottom: 10px;
}

.benefit a {
  color: #4f678f;
  font-weight: 700;
}

.faq-wrap {
  max-width: 880px;
}

.faq {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.faq[open] {
  border-color: rgba(222, 121, 171, 0.45);
  box-shadow: 0 10px 24px rgba(114, 87, 123, 0.12);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #3c3558;
}

.faq p {
  margin-top: 10px;
}

.cta-banner {
  border-radius: 28px;
  padding: clamp(22px, 4vw, 36px);
  background: linear-gradient(130deg, #fff4fa 0%, #f3fbff 55%, #e8f7f4 100%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-banner h2 {
  margin-bottom: 10px;
}

.cta-banner p,
.cta-banner .eyebrow {
  color: #5f5876;
}

.cta-banner a {
  color: #3f5f92;
}

.cta-banner .button {
  color: #fff;
}

.site-footer {
  padding: 46px 0 24px;
  background: linear-gradient(160deg, #2f2b45, #3a3657 52%, #36556f 100%);
  color: #dce5f1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-grid a {
  display: block;
  text-decoration: none;
  margin-bottom: 7px;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.copyright {
  width: min(1180px, 92vw);
  margin: 22px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  font-size: 0.9rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .hero-grid,
  .product-grid,
  .steps-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    align-items: start;
  }

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

@media (max-width: 760px) {
  .top-bar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 10px 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(87, 77, 116, 0.2);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    overflow: hidden;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(87, 77, 116, 0.12);
  }

  .main-nav a:last-child {
    border-bottom: 0;
    border-radius: 0;
  }

  .hero,
  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .product-grid,
  .steps-grid,
  .benefits-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand {
    width: min(240px, 58vw);
  }
}
