@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --coral: #6C5CE7;
  --ink: #1B1B2F;
  --gold: #00B894;
  --sand: #F5F3FF;
  --white: #ffffff;
  --radius: 16px;
  --cta-radius: 12px;
  --shadow: 0 24px 80px rgba(30, 42, 46, 0.18);
  --shadow-soft: 0 14px 36px rgba(30, 42, 46, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

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

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

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(249, 115, 96, 0.12);
  color: var(--coral);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 233, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 42, 46, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--coral);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--cta-radius);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 0.3s ease;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr 0.7fr;
  gap: 32px;
  align-items: center;
}

.hero-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(30, 42, 46, 0.55);
}

.hero-main {
  background: var(--white);
  padding: 36px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-main h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 18px 0 12px;
  letter-spacing: -0.02em;
}

.hero-main p {
  margin: 0 0 24px;
  color: rgba(30, 42, 46, 0.72);
}

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

.btn-primary {
  background: var(--coral);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--cta-radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(30, 42, 46, 0.2);
  padding: 14px 22px;
  border-radius: var(--cta-radius);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-card {
  background: var(--white);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.hero-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(30, 42, 46, 0.7);
}

.section {
  padding: 60px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  margin: 0;
}

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

.card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.media-frame {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.step {
  background: rgba(30, 42, 46, 0.04);
  border-radius: 20px;
  padding: 20px;
}

.step span {
  font-weight: 700;
  color: var(--coral);
}

.cta-band {
  background: linear-gradient(120deg, rgba(249, 115, 96, 0.18), rgba(245, 183, 75, 0.2));
  border-radius: 28px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band h3 {
  font-size: 1.8rem;
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
}

.cta-dark {
  background: #111;
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--cta-radius);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

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

.blog-card {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-card h4 {
  margin: 0;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(30, 42, 46, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  max-width: 780px;
  width: 100%;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

footer {
  padding: 40px 0;
  border-top: 1px solid rgba(30, 42, 46, 0.1);
  background: var(--sand);
}

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

.footer-grid h5 {
  margin: 0 0 12px;
}

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

  .hero-label {
    writing-mode: horizontal-tb;
  }

  .grid-3,
  .steps,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    right: 4vw;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    gap: 14px;
    width: 220px;
  }

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

  .nav-toggle {
    display: inline-block;
  }

  .grid-3,
  .steps,
  .blog-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
