:root {
  /* Lavender palette */
  --lavender-pale: #F5EFF8;
  --lavender-light: #E8D6F0;
  --lavender: #C8A2D6;
  --lavender-mid: #B48AC9;
  --lavender-deep: #9B6EB8;
  /* Neutrals */
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --ink: #1C1C1C;
  --ink-light: #555555;
  --white: #FFFFFF;
  /* Accent */
  --gold: #C9A96E;
  --gold-light: #D9BF8E;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid rgba(155, 110, 184, 0.12);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lavender-deep);
  letter-spacing: -0.01em;
}

.nav-tag {
  font-size: 0.8rem;
  color: var(--ink-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 5rem 3rem 4rem;
  background: var(--cream);
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--lavender-deep);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 480px;
}

/* DEVICE FRAME */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.device-frame {
  width: 320px;
  background: var(--white);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(155, 110, 184, 0.15), 0 4px 16px rgba(155, 110, 184, 0.1);
}

.device-screen {
  background: var(--cream);
  border-radius: 12px;
  padding: 16px;
  min-height: 420px;
}

.screen-nav {
  height: 8px;
  background: var(--lavender-deep);
  border-radius: 4px;
  margin-bottom: 16px;
  width: 60%;
  opacity: 0.4;
}

.screen-hero-text {
  height: 28px;
  background: var(--lavender-deep);
  border-radius: 4px;
  margin-bottom: 10px;
  width: 85%;
  opacity: 0.6;
}

.screen-card {
  background: var(--white);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(155,110,184,0.08);
}

.sc-line {
  height: 7px;
  background: var(--cream-dark);
  border-radius: 3px;
  margin-bottom: 8px;
}
.sc-line--short { width: 40%; }
.sc-line--medium { width: 70%; }

.sc-btn {
  height: 24px;
  background: var(--lavender-deep);
  border-radius: 6px;
  margin-top: 4px;
  opacity: 0.7;
}

.screen-cards-row {
  display: flex;
  gap: 8px;
}

.screen-mini-card {
  flex: 1;
  height: 60px;
  background: var(--cream-dark);
  border-radius: 8px;
  border: 1px solid rgba(155,110,184,0.1);
}

.hero-price-tag {
  position: absolute;
  bottom: -16px;
  right: -20px;
  background: var(--lavender-deep);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(155,110,184,0.25);
}

.price-from {
  font-size: 0.7rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

/* PROOF BAR */
.proof {
  background: var(--lavender-deep);
  color: var(--white);
  padding: 2.5rem 3rem;
}

.proof-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.proof-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.proof-label {
  font-size: 0.8rem;
  opacity: 0.75;
  text-align: center;
  letter-spacing: 0.03em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* SECTION STYLES */
.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lavender-mid);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--lavender-deep);
  margin-bottom: 3rem;
  line-height: 1.2;
}

/* SERVICES */
.services {
  padding: 5rem 3rem;
  background: var(--cream);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid rgba(155, 110, 184, 0.1);
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(155, 110, 184, 0.12);
}

.service-icon {
  color: var(--lavender-mid);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lavender-deep);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 5rem 3rem;
  background: var(--cream-dark);
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.25rem;
  position: relative;
}

.pricing-card--main {
  border: 2px solid var(--lavender-mid);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--lavender-mid);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
}

.pricing-tier {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lavender-deep);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-range {
  font-size: 1.5rem;
  opacity: 0.6;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--ink);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--lavender-mid);
  border-radius: 50%;
  opacity: 0.5;
}

.pricing-card--addons {
  border: 1px solid rgba(155,110,184,0.15);
}

.pricing-addon-note {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-bottom: 1.25rem;
}

/* PROCESS */
.process {
  padding: 5rem 3rem;
  background: var(--cream);
}

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

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(45,74,62,0.08);
}

.process-step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 60px;
}

.step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--lavender-deep);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.925rem;
  color: var(--ink-light);
  max-width: 500px;
}

/* CLOSING */
.closing {
  background: var(--lavender-deep);
  padding: 5rem 3rem;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.closing-body {
  font-size: 1.1rem;
  color: var(--lavender-light);
  opacity: 0.9;
}

/* FOOTER */
.footer {
  background: var(--lavender-pale);
  padding: 2.5rem 3rem;
  border-top: 1px solid rgba(155,110,184,0.1);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lavender-deep);
  margin-bottom: 0.25rem;
}

.footer-tag {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--ink-light);
  opacity: 0.6;
}

/* RHINESTONE BUTTON */
.btn-rhinestone {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--lavender-deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(155, 110, 184, 0.25);
}

/* Clear crystal rhinestones — top edge */
.btn-rhinestone::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 10%;
  right: 10%;
  height: 10px;
  background:
    radial-gradient(circle at 12% 50%, rgba(255,255,255,0.95) 35%, transparent 35%) 0 0 / 18% 100% no-repeat,
    radial-gradient(circle at 28% 50%, rgba(255,255,255,0.9) 35%, transparent 35%) 16% 0 / 18% 100% no-repeat,
    radial-gradient(circle at 44% 50%, rgba(255,255,255,0.95) 35%, transparent 35%) 32% 0 / 18% 100% no-repeat,
    radial-gradient(circle at 60% 50%, rgba(255,255,255,0.9) 35%, transparent 35%) 48% 0 / 18% 100% no-repeat,
    radial-gradient(circle at 76% 50%, rgba(255,255,255,0.95) 35%, transparent 35%) 64% 0 / 18% 100% no-repeat,
    radial-gradient(circle at 92% 50%, rgba(255,255,255,0.9) 35%, transparent 35%) 80% 0 / 20% 100% no-repeat;
  pointer-events: none;
}

/* Light refraction shimmer on top-left of button */
.btn-rhinestone::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 20px;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.7) 30%,
    rgba(200,220,255,0.5) 60%,
    rgba(255,255,255,0) 100%);
  border-radius: 2px;
  pointer-events: none;
}

.btn-rhinestone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(155, 110, 184, 0.35);
}

.btn-rhinestone:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(155, 110, 184, 0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

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

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

@media (max-width: 600px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-tag { display: none; }

  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-headline { font-size: 2.5rem; }

  .services, .pricing, .process, .closing {
    padding: 3.5rem 1.5rem;
  }

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

  .proof {
    padding: 2rem 1.5rem;
  }

  .proof-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .proof-divider {
    width: 40px;
    height: 1px;
  }

  .proof-item {
    flex-direction: row;
    gap: 1rem;
    align-items: baseline;
  }

  .proof-stat { font-size: 1.75rem; }
  .proof-label { text-align: left; }
}