/* ================================================
   RESET & BASE
================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  background-color: var(--color-off-white);
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: 'Urbanist', sans-serif;
}

/* ================================================
   CSS CUSTOM PROPERTIES
================================================ */
:root {
  --color-lavender: #d2ccfd;
  --color-plum: #3c183c;
  --color-white: #ffffff;
  --color-off-white: #f9f7ff;
  --color-text-dark: #1a0a1a;
  --color-text-muted: #7a6a7a;
  --color-text-light: #ede8fd;
}

/* ================================================
   TYPOGRAPHY
================================================ */
h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
}

h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

/* ================================================
   BUTTONS
================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  padding: 12px 28px;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
}

/* Dark-bg button: lavender fill */
.btn-primary-dark {
  background: var(--color-lavender);
  color: var(--color-plum);
  font-weight: 800;
}

.btn-primary-dark:hover {
  background: #c0b8fc;
}

/* Light-bg button: plum fill */
.btn-primary-light {
  background: var(--color-plum);
  color: var(--color-white);
}

.btn-primary-light:hover {
  background: #2a0a2a;
}

/* Ghost on dark */
.btn-ghost-dark {
  background: transparent;
  border: 1.5px solid var(--color-lavender);
  color: var(--color-lavender);
}

.btn-ghost-dark:hover {
  background: rgba(210, 204, 253, 0.1);
}

/* Ghost on light */
.btn-ghost-light {
  background: transparent;
  border: 1.5px solid var(--color-plum);
  color: var(--color-plum);
}

.btn-ghost-light:hover {
  background: rgba(60, 24, 60, 0.05);
}

/* ================================================
   SECTION LABEL
================================================ */
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

/* ================================================
   NAVIGATION
================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-plum);
  border-bottom: 1px solid rgba(210, 204, 253, 0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px 16px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.nav-center a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-light);
  transition: color 0.18s ease;
}

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

.nav-center a:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav-ghost {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 100px;
  background: transparent;
  border: 1.5px solid var(--color-lavender);
  color: var(--color-lavender);
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: 'Urbanist', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn-nav-ghost:hover {
  background: rgba(210, 204, 253, 0.1);
  transform: translateY(-2px);
}

.btn-nav-ghost:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
}

.btn-nav-filled {
  font-size: 14px;
  font-weight: 800;
  padding: 9px 22px;
  border-radius: 100px;
  background: var(--color-lavender);
  color: var(--color-plum);
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: 'Urbanist', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn-nav-filled:hover {
  background: #c0b8fc;
  transform: translateY(-2px);
}

.btn-nav-filled:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 6px;
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-lavender);
  border-radius: 2px;
  transition: all 0.2s ease;
  pointer-events: none;
}

/* Mobile nav panel */
.nav-mobile-panel {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  background: var(--color-plum);
  padding: 8px 24px 24px;
  flex-direction: column;
  z-index: 99;
  border-top: 1px solid rgba(210, 204, 253, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.nav-mobile-panel.open {
  display: flex;
}

.nav-mobile-panel .mobile-nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-light);
  padding: 16px 0;
  border-bottom: 1px solid rgba(210, 204, 253, 0.08);
  transition: color 0.18s ease;
  display: block;
}

.nav-mobile-panel .mobile-nav-link:hover {
  color: var(--color-lavender);
}

.nav-mobile-panel .mobile-nav-link:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.nav-mobile-actions a {
  text-align: center;
  justify-content: center;
}

/* ================================================
   HERO SECTION
================================================ */
.hero {
  background: var(--color-plum);
  padding: 120px 24px 100px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(210, 204, 253, 0.15);
  border: 1px solid var(--color-lavender);
  color: var(--color-lavender);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-text h1 {
  color: var(--color-white);
  margin-bottom: 24px;
}

.rotating-word {
  color: var(--color-lavender);
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.rotating-word.is-exiting {
  opacity: 0;
  transform: translateY(-10px);
}

.rotating-word.is-entering {
  opacity: 0;
  transform: translateY(12px);
  transition: none;
}

.hero-subheadline {
  color: var(--color-text-light);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid var(--color-plum);
  margin-left: -8px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.social-proof-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.3px;
}

/* Hero Visual — Image */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 204, 253, 0.45) 0%, rgba(210, 204, 253, 0) 70%);
  filter: blur(48px);
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 24px;
  display: block;
}

/* ================================================
   HOW IT WORKS SECTION
================================================ */
.how-it-works {
  background: var(--color-off-white);
  padding: 100px 24px;
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.how-header h2 {
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.how-header .section-label {
  color: var(--color-text-muted);
  text-align: center;
}

.how-header p {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Host card (dark) */
.host-card {
  background: var(--color-plum);
  border-radius: 24px;
  padding: 40px;
}

.host-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(237, 232, 253, 0.45);
  margin-bottom: 8px;
}

.host-card h3 {
  font-size: 22px;
  color: var(--color-lavender);
  margin-bottom: 32px;
  line-height: 1.3;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-lavender);
  color: var(--color-plum);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.step-text {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Guest cards */
.guest-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guest-card {
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid rgba(210, 204, 253, 0.3);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.2s ease;
}

.guest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(60, 24, 60, 0.12);
}

.guest-card:first-child {
  background: rgba(210, 204, 253, 0.12);
}

.guest-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(210, 204, 253, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guest-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-plum);
  color: var(--color-plum);
}

.guest-card:first-child .guest-card-icon {
  background: rgba(60, 24, 60, 0.08);
}

.guest-card-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.guest-card-content p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ================================================
   FEATURES SECTION
================================================ */
.features {
  background: var(--color-plum);
  padding: 100px 24px;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .section-label {
  color: var(--color-lavender);
  text-align: center;
}

.features-header h2 {
  color: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-tile {
  background: #2a0a2a;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(210, 204, 253, 0.1);
  transition: all 0.2s ease;
}

.feature-tile:hover {
  border-color: rgba(210, 204, 253, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.feature-tile.highlight {
  background: var(--color-lavender);
  border-color: var(--color-lavender);
}

.feature-tile.highlight:hover {
  border-color: var(--color-lavender);
  box-shadow: 0 12px 40px rgba(210, 204, 253, 0.25);
}

.feature-tile.highlight h3,
.feature-tile.highlight p {
  color: var(--color-plum);
}

.feature-icon {
  margin-bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(210, 204, 253, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-text-light);
  color: var(--color-text-light);
}

.feature-tile.highlight .feature-icon {
  background: rgba(60, 24, 60, 0.12);
}

.feature-tile.highlight .feature-icon svg {
  stroke: var(--color-plum);
  color: var(--color-plum);
}

.feature-tile h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.feature-tile p {
  font-size: 14px;
  color: rgba(237, 232, 253, 0.6);
  line-height: 1.65;
}

/* ================================================
   PRICING SECTION
================================================ */
.pricing {
  background: var(--color-off-white);
  padding: 100px 24px;
}

.pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-header .section-label {
  color: var(--color-text-muted);
  text-align: center;
}

.pricing-header h2 {
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.pricing-header p {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.pricing-card {
  background: var(--color-white);
  border-radius: 24px;
  border: 1.5px solid rgba(60, 24, 60, 0.08);
  padding: 36px 32px;
  transition: all 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(60, 24, 60, 0.12);
}

.pricing-card.featured {
  border: 2px solid var(--color-plum);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-plum);
  color: var(--color-lavender);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.plan-price {
  font-family: 'Urbanist', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--color-plum);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-billing {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.plan-guests {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 14px;
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.plan-features li::before {
  content: '✓';
  color: #7b6ef6;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Urbanist', sans-serif;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
}

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

.btn-plan:focus-visible {
  outline: 2px solid var(--color-plum);
  outline-offset: 3px;
}

.btn-plan-outline {
  border: 1.5px solid var(--color-plum);
  background: transparent;
  color: var(--color-plum);
}

.btn-plan-outline:hover {
  background: rgba(60, 24, 60, 0.05);
}

.btn-plan-featured {
  background: var(--color-plum);
  color: var(--color-lavender);
  font-weight: 800;
  border: none;
}

.btn-plan-featured:hover {
  background: #2a0a2a;
}

.btn-plan-dark {
  background: var(--color-plum);
  color: var(--color-white);
  border: none;
}

.btn-plan-dark:hover {
  background: #2a0a2a;
}

/* ================================================
   FAQ SECTION
================================================ */
.faq {
  background: var(--color-off-white);
  padding-top: 0;
  padding-bottom: 100px;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  color: var(--color-text-dark);
}

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

.faq-item {
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid rgba(60, 24, 60, 0.07);
  padding: 28px 32px;
  transition: all 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(60, 24, 60, 0.12);
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ================================================
   FINAL CTA SECTION
================================================ */
.final-cta {
  background: var(--color-plum);
  padding: 120px 24px;
  text-align: center;
}

.final-cta h2 {
  font-size: 60px;
  color: var(--color-white);
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.08;
}

.final-cta-sub {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.cta-btn-lg {
  font-size: 17px;
  padding: 16px 40px;
  font-weight: 800;
}

.cta-reassurance {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(237, 232, 253, 0.45);
  letter-spacing: 0.3px;
}

/* ================================================
   FOOTER
================================================ */
.footer {
  background: #1a001a;
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 0;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(210, 204, 253, 0.15);
  color: rgba(237, 232, 253, 0.45);
  transition: all 0.18s ease;
}

.footer-social-link:hover {
  color: var(--color-lavender);
  border-color: rgba(210, 204, 253, 0.4);
  background: rgba(210, 204, 253, 0.07);
}

.footer-social-link:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-lavender);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(237, 232, 253, 0.55);
  transition: color 0.18s ease;
}

.footer-col ul li a:hover {
  color: var(--color-lavender);
}

.footer-col ul li a:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(210, 204, 253, 0.1);
  padding-top: 28px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(237, 232, 253, 0.3);
  font-weight: 400;
  line-height: 1.5;
}

/* ================================================
   INNER PAGES — SHARED
================================================ */

.page-hero {
  background: var(--color-plum);
  padding: 100px 24px 80px;
  text-align: center;
}

.page-hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-lavender);
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: 56px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.page-section {
  background: var(--color-off-white);
  padding: 80px 24px;
}

.page-inner {
  max-width: 820px;
  margin: 0 auto;
}

.page-inner-wide {
  max-width: 1100px;
  margin: 0 auto;
}

/* Prose (legal pages) */
.prose h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 48px;
  margin-bottom: 12px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 15px;
}

.prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.prose ul li {
  color: var(--color-text-muted);
  margin-bottom: 8px;
  line-height: 1.65;
  font-size: 15px;
}

.prose a {
  color: var(--color-plum);
  text-decoration: underline;
}

.prose-meta {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(60, 24, 60, 0.08);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 28px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 36px;
  line-height: 1.65;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(60, 24, 60, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-plum);
}

.contact-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 14px;
  color: var(--color-text-muted);
}

.contact-form-card {
  background: var(--color-white);
  border-radius: 24px;
  border: 1.5px solid rgba(60, 24, 60, 0.08);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(60, 24, 60, 0.12);
  background: var(--color-off-white);
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  color: var(--color-text-dark);
  transition: border-color 0.18s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-plum);
  background: var(--color-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

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

.blog-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(60, 24, 60, 0.07);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(60, 24, 60, 0.12);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6c5ce7;
  background: rgba(210, 204, 253, 0.25);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.blog-card-meta {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.blog-read-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-plum);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.18s ease;
}

.blog-read-more:hover {
  gap: 8px;
}

/* About page */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.about-mission-img {
  border-radius: 24px;
  width: 100%;
  height: auto;
  display: block;
}

.about-mission-text h2 {
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.about-mission-text p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(60, 24, 60, 0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 72px;
}

.about-stat {
  background: var(--color-white);
  padding: 40px 24px;
  text-align: center;
}

.about-stat-number {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--color-plum);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.value-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(60, 24, 60, 0.07);
}

.value-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(60, 24, 60, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-plum);
}

.value-card h3 {
  font-size: 18px;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Form feedback states */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 12px;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(60, 24, 60, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.form-success-icon svg {
  stroke: var(--color-plum);
}

.form-success h3 {
  font-size: 22px;
  color: var(--color-text-dark);
}

.form-success p {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.form-error {
  font-size: 13px;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.18);
  border-radius: 10px;
  padding: 12px 16px;
  line-height: 1.55;
}

.form-error a {
  color: #c0392b;
  font-weight: 600;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive inner pages */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .page-hero {
    padding: 72px 24px 56px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 24px;
  }

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

  .about-mission {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   SCROLL ANIMATIONS
================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ================================================
   RESPONSIVE — TABLET (≤ 1024px)
================================================ */
@media (max-width: 1024px) {
  h1 {
    font-size: 48px;
    letter-spacing: -1.5px;
  }

  h2 {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .hero-inner {
    gap: 48px;
  }

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

  .final-cta h2 {
    font-size: 44px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ================================================
   RESPONSIVE — MOBILE (≤ 768px)
================================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  /* Nav */
  .nav-center {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 72px 24px 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  /* How it works */
  .how-it-works {
    padding: 64px 24px;
  }

  .how-header {
    margin-bottom: 40px;
  }

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

  /* Features */
  .features {
    padding: 64px 24px;
  }

  .features-header {
    margin-bottom: 40px;
  }

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

  /* Pricing */
  .pricing {
    padding: 64px 24px;
  }

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

  .pricing-card.featured {
    margin-top: 14px;
  }

  /* FAQ */
  .faq {
    padding-bottom: 64px;
  }

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

  /* Final CTA */
  .final-cta {
    padding: 80px 24px;
  }

  .final-cta h2 {
    font-size: 32px;
  }

  .final-cta-sub {
    font-size: 16px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
================================================ */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .faq-item {
    padding: 22px 20px;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .host-card {
    padding: 28px 24px;
  }
}
