:root {
  --ink: #0f172a;
  --ink-soft: #2b3553;
  --muted: #6b7280;
  --bg: #f6f4f1;
  --surface: #ffffff;
  --peach: #ffb347;
  --coral: #ff6f3d;
  --rose: #ff3d6b;
  --navy: #0e1526;
  --sky: #c9d9ff;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --transition: 220ms ease;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 244, 241, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: -4vw;
}

.brand img {
  width: 214px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(14, 21, 38, 0.18));
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(15, 23, 42, 0.07);
}

.nav-cta {
  padding: 10px 18px;
  background: linear-gradient(120deg, var(--peach), var(--coral), var(--rose));
  color: white;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(255, 111, 61, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--ink);
}

.hero {
  position: relative;
  padding: 72px 0 90px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.5;
  z-index: 0;
}

.hero::before {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.45), transparent 70%);
  top: -120px;
  left: -120px;
}

.hero::after {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(201, 217, 255, 0.7), transparent 70%);
  right: -160px;
  bottom: -120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 3.6vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--navy);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(14, 21, 38, 0.25);
}

.btn-ghost {
  border: 1px solid rgba(14, 21, 38, 0.15);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  gap: 20px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.hero-metrics div {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-metrics strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
}

.hero-strip {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.hero-strip .pill {
  background: rgba(14, 21, 38, 0.06);
  border: 1px dashed rgba(14, 21, 38, 0.14);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  color: var(--ink-soft);
}

.hero-card .stat {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--ink-soft);
}

.hero-card .video-preview {
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(255, 179, 71, 0.2), rgba(255, 61, 107, 0.2));
  padding: 18px;
  display: grid;
  gap: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 179, 71, 0.18);
  color: var(--ink-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.section {
  padding: 70px 0;
}

.section-title {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--ink-soft);
  max-width: 640px;
}

.cards {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 36px;
}

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.card h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.2rem;
}

.card p {
  color: var(--ink-soft);
}

.pricing {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 40px;
}

.price-card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border: 2px solid rgba(255, 111, 61, 0.6);
}

.price-card h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.price-card .price {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--navy);
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  color: var(--ink-soft);
}

.price-card li::before {
  content: "●";
  color: var(--coral);
  margin-right: 10px;
}

.split {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.highlight {
  background: var(--navy);
  color: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(14, 21, 38, 0.4);
}

.highlight h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
  margin-bottom: 12px;
}

.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  padding: 50px 0 40px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #f2efea;
}

.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer p,
.footer a {
  color: var(--ink-soft);
}

.footer img {
  width: 190px;
  height: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 8px 18px rgba(14, 21, 38, 0.2));
}

.footer-note {
  width: min(92%, var(--max-width));
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 500ms ease;
}

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

.page-hero {
  padding: 64px 0 40px;
}

.page-hero h1 {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
}

.page-hero p {
  color: var(--ink-soft);
  max-width: 620px;
  margin-top: 14px;
}

.contact-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.contact-card a {
  color: var(--navy);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.form-field {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-family: inherit;
  font-size: 0.98rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form .btn {
  align-self: flex-start;
}

.form-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 4%;
    background: var(--surface);
    padding: 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .brand {
    margin-left: -2vw;
  }

  .brand img {
    width: 176px;
  }

  .hero {
    padding: 60px 0 70px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
