:root {
  --bg: #fcf9ff;
  --surface: #ffffff;
  --text: #2e2540;
  --text-soft: #74668c;
  --primary: #8b6eaa;
  --primary-soft: #efe6fb;
  --accent: #f5cedd;
  --mint: #d8f0e6;
  --line: rgba(139, 110, 170, 0.18);
  --shadow: 0 12px 32px rgba(46, 37, 64, 0.06);
  --shadow-hover: 0 20px 48px rgba(46, 37, 64, 0.12);
  --safe-top: env(safe-area-inset-top, 0);
  --safe-bottom: env(safe-area-inset-bottom, 0);
  --safe-left: env(safe-area-inset-left, 0);
  --safe-right: env(safe-area-inset-right, 0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(1400px 800px at 0% 0%, #f3ecff 0%, transparent 60%),
    radial-gradient(1000px 700px at 100% 20%, #ffeaf3 0%, transparent 50%), var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

p {
  margin: 0;
  color: var(--text-soft);
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(252, 249, 255, 0.88);
  border-bottom: 1px solid var(--line);
  padding-top: var(--safe-top);
}

.topbar-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.8;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.menu-toggle:hover {
  background: var(--primary-soft);
}

.menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(252, 249, 255, 0.98);
  backdrop-filter: blur(16px);
  padding: 16px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(46, 37, 64, 0.05);
}

.menu.open {
  display: grid;
  gap: 10px;
}

.menu a {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1.05rem;
  transition: all 0.2s;
  font-weight: 500;
}

.menu a:hover {
  background: rgba(139, 110, 170, 0.05);
}

.menu a.active {
  color: var(--primary);
  background: var(--primary-soft);
}

.hero {
  padding: 56px 0 36px;
}

.hero-card {
  background: linear-gradient(135deg, #f0ebf8 0%, #fae4ea 45%, #e8f5f0 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 36px 24px;
  position: relative;
  overflow: hidden;
}

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

.hero h1 {
  font-size: clamp(2.2rem, 11vw, 4rem);
  margin-bottom: 14px;
}

.hero .lead {
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  text-decoration: none;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--surface);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 110, 170, 0.15);
}

.btn.primary {
  background: linear-gradient(135deg, #a388c8, #8b6eaa);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(139, 110, 170, 0.2);
}

.stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 14px 8px;
  backdrop-filter: blur(8px);
}

.stat strong {
  display: block;
  font-size: 1.3rem;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
}

.stat span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.section {
  padding: 56px 0;
}

.section h2 {
  font-size: clamp(2rem, 8vw, 3.2rem);
  margin-bottom: 10px;
}

.section-head {
  margin-bottom: 18px;
}

.grid {
  display: grid;
  gap: 12px;
}

.cards-2,
.cards-3 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.card .meta {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--text);
}

.list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  border-top: 1px solid var(--line);
  padding: 9px 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.featured {
  background: linear-gradient(160deg, #a388c8, #8b6eaa);
  color: #fff;
  border: none;
  box-shadow: 0 16px 40px rgba(139, 110, 170, 0.25);
}

.featured p,
.featured .list li,
.featured .meta {
  color: rgba(255, 255, 255, 0.88);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

th,
td {
  text-align: left;
  padding: 12px 14px;
}

th {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-bottom: 1px solid var(--line);
}

td {
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.timeline {
  display: grid;
  gap: 12px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s;
}

.step:hover {
  background: var(--primary-soft);
}

.step .num {
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.step h3 {
  font-size: 1.35rem;
  margin: 6px 0;
}

.form {
  display: grid;
  gap: 10px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 110, 170, 0.1);
}

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

.cta-strip {
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px;
  background: linear-gradient(135deg, #f1e9fc 0%, #ffe9f2 100%);
  padding: 32px 24px;
  display: grid;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
}

.footer {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.82rem;
  padding: 22px 0 calc(22px + var(--safe-bottom));
}

.mobile-cta {
  position: fixed;
  z-index: 35;
  left: 12px;
  right: 12px;
  bottom: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.mobile-cta a {
  display: block;
  text-decoration: none;
  text-align: center;
  min-height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a388c8, #8b6eaa);
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px;
}

.mobile-cta-space {
  height: 84px;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel > * {
  scroll-snap-align: start;
  flex: 0 0 88%;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-btn:hover {
  background: var(--primary-soft);
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .menu {
    position: static;
    display: flex;
    padding: 0;
    gap: 8px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .menu a {
    border-radius: 999px;
    font-size: 0.78rem;
    padding: 8px 12px;
    border: 1px solid transparent;
  }

  .hero-card {
    padding: 38px;
  }

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

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

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

  .cta-strip {
    grid-template-columns: 1fr auto;
    padding: 40px 48px;
  }

  .carousel {
    display: grid;
    gap: 12px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .carousel > * {
    flex: none;
  }

  .carousel-nav,
  .mobile-cta,
  .mobile-cta-space {
    display: none;
  }
}
/* ========== ANIMATIONS & ENHANCEMENTS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.icon-box {
  width: 48px;
  height: 48px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s, background 0.3s;
}
.card:hover .icon-box {
  transform: scale(1.05) rotate(-2deg);
  background: var(--primary);
  color: #fff;
}
.icon-box svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), #c08497);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Footer */
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media(min-width: 760px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links a {
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
}

/* ========== HERO VISUAL ENHANCEMENTS ========== */
.hero-card {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .hero-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
    padding: 48px 40px;
  }
}

.hero-visual {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-visual {
    display: flex;
  }
}

.mockup-phone {
  width: 260px;
  height: 520px;
  background: rgba(255, 255, 255, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 36px;
  box-shadow: 0 24px 64px rgba(139, 110, 170, 0.2);
  position: relative;
  padding: 8px;
  backdrop-filter: blur(12px);
  transform: rotate(2deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mockup-phone:hover {
  transform: rotate(0deg) translateY(-10px);
}

.mockup-screen {
  background: linear-gradient(180deg, #fff 0%, #f9f5ff 100%);
  border-radius: 28px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.mockup-header {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(139, 110, 170, 0.1);
}

.mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #c08497);
}

.mockup-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.mockup-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 110, 170, 0.05);
  margin: 12px;
  border-radius: 16px;
  position: relative;
}

.mockup-play {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(139, 110, 170, 0.2);
  color: var(--primary);
  padding-left: 4px;
}

.mockup-play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mockup-footer {
  padding: 16px;
}

.mockup-line {
  height: 8px;
  background: rgba(139, 110, 170, 0.15);
  border-radius: 4px;
  margin-bottom: 8px;
}

.mockup-line.short {
  width: 60%;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 10px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 32px rgba(139, 110, 170, 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  animation: float 6s ease-in-out infinite;
}

.floating-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
}

.fb-1 {
  top: 60px;
  right: -40px;
  animation-delay: 0s;
}

.fb-2 {
  bottom: 80px;
  left: -50px;
  animation-delay: -3s;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Add subtle arrow to cards */
.card {
  position: relative;
}

.card::after {
  content: "→";
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 1.2rem;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
