/* Base reset and basics */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  color: #1f1f1f;
  background-color: #f9f6fb;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

img, svg, video, canvas { display: block; max-width: 100%; height: auto; }

.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.5px; }
.font-body { font-family: 'Inter', sans-serif; }

/* Colors */
.bg-white { background-color: #ffffff; }
.bg-mauve-50 { background-color: #f9f6fb; }
.bg-mauve-200 { background-color: #e3d8ee; }
.bg-mauve-300 { background-color: #ccb7de; }
.bg-mauve-600 { background-color: #8559b0; }
.bg-mauve-700 { background-color: #6f459a; }
.bg-mauve-800 { background-color: #59377c; }

.text-white { color: #ffffff; }
.text-neutral-600 { color: #525252; }
.text-neutral-900 { color: #1a1a1a; }
.text-mauve-700 { color: #6f459a; }
.text-mauve-800 { color: #59377c; }

.shadow-soft { box-shadow: 0 10px 30px rgba(17, 12, 34, 0.06); }
.blur-bg { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

.rounded-xl { border-radius: 1rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid #e5e5e5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 1rem;
  background-color: #8559b0; display: grid; place-items: center;
  font-size: 1.25rem; color: #fff; flex: none;
}
/* If you use an img logo, keep it tidy */
.logo img { height: 40px; width: auto; display: block; }

.brand-name { font-size: 1.5rem; color: #1a1a1a; white-space: nowrap; }

.nav {
  display: flex; gap: 1.25rem; align-items: center;
  flex-wrap: wrap;
}
.nav a {
  text-decoration: none; color: inherit; font-size: 0.95rem;
  line-height: 1;
}
.nav a:hover { color: #6f459a; }

.cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.55rem 1rem; background-color: #6f459a; color: #fff;
  border-radius: 1rem; text-decoration: none; font-size: 0.95rem; white-space: nowrap;
}
.cta:hover { background-color: #59377c; }

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0;
  background-color: #f9f6fb;
  overflow: hidden; /* prevent blobs from causing scrollbars */
}

.hero-blur {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.6; pointer-events: none;
  transform: translateZ(0);
}
.hero-blur.top-right { top: -6rem; right: -6rem; width: 18rem; height: 18rem; background-color: #e3d8ee; }
.hero-blur.bottom-left { bottom: -6rem; left: -6rem; width: 18rem; height: 18rem; background-color: #ccb7de; }

.hero-content {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero-content { grid-template-columns: 1fr 1fr; }
}

.hero-text { min-width: 0; }
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1; margin: 0 0 1rem 0;
}
.hero-paragraph { color: #525252; max-width: 650px; line-height: 1.6; margin: 0; }
.hero-buttons { margin-top: 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.button-primary {
  background-color: #6f459a; color: #fff; padding: 0.75rem 1.5rem; border-radius: 1rem;
  text-decoration: none; font-size: 0.95rem;
}
.button-primary:hover { background-color: #59377c; }
.button-outline {
  border: 1px solid #ccc; padding: 0.75rem 1.5rem; border-radius: 1rem;
  text-decoration: none; color: #1f1f1f; font-size: 0.95rem;
}
.button-outline:hover { border-color: #b292cf; color: #59377c; }

.note { margin-top: 0.75rem; font-size: 0.8rem; color: #888; }

/* Card */
.card {
  width: 100%;
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(17, 12, 34, 0.06);
  padding: 2rem;
  text-align: center;
  border: 1px solid #e5e5e5;
}
.card-title { font-size: 2rem; color: #59377c; margin: 0; }
.card-text { color: #525252; max-width: 480px; margin: 1rem auto 0; line-height: 1.6; }

/* Sections */
.section { padding: 3.5rem 0; }
.section-sm { padding: 2.5rem 0; }
.section .section-eyebrow {
  display: inline-block; font-size: 0.8rem; letter-spacing: .08em; text-transform: uppercase;
  color: #6f459a; background: #f1e9f8; padding: .4rem .7rem; border-radius: 999px; border: 1px solid #e6d7f3;
}
.section .section-title {
  margin-top: .8rem; font-size: clamp(2rem, 3.2vw, 2.5rem); line-height: 1.1; color: #1a1a1a;
}

/* Grid helpers */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* Pills and badges */
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .65rem; font-size: .8rem; border-radius: 999px;
  background: #f1e9f8; color: #59377c; border: 1px solid #e6d7f3;
}

/* Ring look */
.ring { border: 1px solid #e5e5e5; }
.ring.mauve { border-color: #e6d7f3; }

/* Service cards */
.service-card {
  background: #fff; border-radius: 1.25rem; padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(17,12,34,.06); border: 1px solid #e5e5e5;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(17,12,34,.08); }
.service-card h3 { font-size: 1.5rem; color: #59377c; margin: 0 0 .35rem 0; }
.service-card p { color: #525252; margin: 0 0 .75rem 0; }
.service-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }

/* Lists */
.ul-clean { list-style: none; padding: 0; margin: .5rem 0 0 0; }
.ul-clean li { display: flex; gap: .5rem; align-items: flex-start; color: #424242; margin: .3rem 0; }
.dot { margin-top: .45rem; width: .4rem; height: .4rem; border-radius: 50%; background: #6f459a; flex: none; }

/* Pricing cards */
.pricing { margin-top: 2rem; display: grid; gap: 1rem; }
.pricing-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 900px) { .pricing-3 { grid-template-columns: 1fr; } }

.pricing-card {
  background: #fff; border-radius: 1.25rem; padding: 1.25rem;
  border: 1px solid #e5e5e5; box-shadow: 0 10px 30px rgba(17,12,34,.06);
}
.pricing-card.featured { background: #f9f6fb; border-color: #e6d7f3; }
.pricing-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: #1a1a1a; letter-spacing: .5px;
}
.pricing-price {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: #59377c; margin: .25rem 0 .75rem;
}
.pricing-cta {
  margin-top: 1rem; display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem .9rem; border-radius: 1rem; background: #6f459a; color: #fff; text-decoration: none;
}
.pricing-cta:hover { background: #59377c; }

/* Process */
.step { background: #f9f6fb; border: 1px solid #e6d7f3; border-radius: 1.25rem; padding: 1rem; }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: #6f459a; line-height: 1; }

/* FAQ */
.faq { display: grid; gap: 1rem; }
.faq-item { background: #fff; border-radius: 1rem; padding: 1rem 1.25rem; border: 1px solid #e5e5e5; }
.faq-item h4 { margin: 0; color: #1a1a1a; }
.faq-item p { margin: .4rem 0 0; color: #525252; }

/* CTA band */
.cta-band {
  background: #59377c; color: #fff; border-radius: 1.25rem; padding: 2rem; text-align: center;
}
.cta-band .cta-invert {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem;
  padding: .7rem 1rem; border-radius: 1rem; background: #fff; color: #59377c; text-decoration: none;
}
.cta-band .cta-invert:hover { background: #f1e9f8; }

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(204,183,222,0), rgba(204,183,222,.8), rgba(204,183,222,0));
  margin: 2rem 0;
}

/* Process page extras */
.process-hero { position: relative; padding: 5rem 0 3rem; overflow: hidden; }
.process-hero .blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; pointer-events: none;
}
.process-hero .blob.a { top:-5rem; right:-5rem; width:16rem; height:16rem; background:#e3d8ee; }
.process-hero .blob.b { bottom:-5rem; left:-5rem; width:16rem; height:16rem; background:#ccb7de; }

.kpis { display:grid; gap:1rem; grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width:1000px){ .kpis{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:600px){ .kpis{ grid-template-columns: 1fr;} }
.kpi {
  background:#fff; border:1px solid #e5e5e5; border-radius:1.25rem; padding:1.25rem;
  box-shadow:0 10px 30px rgba(17,12,34,.06); text-align:center;
}
.kpi .num { font-family:'Bebas Neue',sans-serif; font-size:2.4rem; color:#59377c; }

.steps { display:grid; gap:1rem; grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width:1100px){ .steps{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:650px){ .steps{ grid-template-columns: 1fr;} }
.step-card { background:#f9f6fb; border:1px solid #e6d7f3; border-radius:1.25rem; padding:1.25rem; }
.step-tag { display:inline-block; font-size:.8rem; padding:.25rem .6rem; border-radius:999px; background:#fff; border:1px solid #e6d7f3; color:#6f459a; }
.step-num { font-family:'Bebas Neue',sans-serif; font-size:3.2rem; color:#6f459a; line-height:1; margin:.25rem 0 .25rem; }

.panel {
  background:#fff; border:1px solid #e5e5e5; border-radius:1.25rem; padding:1.25rem;
  box-shadow:0 10px 30px rgba(17,12,34,.06);
}
.panel h3 { margin:0 0 .4rem; color:#1a1a1a; }
.panel p { margin:.3rem 0 0; color:#525252; }

.process-cta { background:#59377c; color:#fff; border-radius:1.25rem; padding:2rem; text-align:center; }
.process-cta a { display:inline-flex; margin-top:1rem; padding:.7rem 1rem; border-radius:1rem; background:#fff; color:#59377c; text-decoration:none; }
.process-cta a:hover { background:#f1e9f8; }

/* Work cards */
.work-grid { display: grid; gap: 2rem; grid-template-columns: repeat(2,minmax(0,1fr)); }
@media(max-width:900px){ .work-grid{ grid-template-columns:1fr; } }

.case {
  background:#fff; border:1px solid #e5e5e5; border-radius:1.5rem;
  box-shadow:0 10px 30px rgba(17,12,34,.06); overflow:hidden;
  display:flex; flex-direction:column; transition:transform .2s ease, box-shadow .2s ease;
}
.case:hover{ transform:translateY(-6px); box-shadow:0 16px 40px rgba(17,12,34,.08); }
.case-img img{ width:100%; display:block; }
.case-body{ padding:1.5rem; }
.case-title{ font-family:'Bebas Neue',sans-serif; font-size:1.8rem; color:#59377c; margin:0; }
.case-sub{ font-size:.9rem; text-transform:uppercase; letter-spacing:.06em; color:#6f459a; margin-bottom:.4rem; }
.case-text{ color:#525252; margin:.75rem 0; line-height:1.6; }
.case-cta{ margin-top:1rem; display:inline-flex; padding:.6rem 1rem; border-radius:1rem; background:#6f459a; color:#fff; text-decoration:none; font-size:.9rem; }
.case-cta:hover{ background:#59377c; }

/* Pricing page */
.pricing-hero { position: relative; padding: 5rem 0 3rem; overflow: hidden; }
.pricing-hero .blob { position:absolute; border-radius:50%; filter:blur(70px); opacity:.55; pointer-events: none; }
.pricing-hero .blob.a { top:-6rem; right:-6rem; width:18rem; height:18rem; background:#e3d8ee; }
.pricing-hero .blob.b { bottom:-6rem; left:-6rem; width:18rem; height:18rem; background:#ccb7de; }

.toggle {
  display:inline-flex; align-items:center; gap:.25rem; padding:.35rem; border-radius:999px;
  background:#fff; border:1px solid #e6d7f3; box-shadow:0 10px 30px rgba(17,12,34,.06);
}
.toggle button {
  border:0; background:transparent; padding:.5rem .9rem; border-radius:999px; font-size:.9rem; cursor:pointer;
}
.toggle .active { background:#6f459a; color:#fff; }

.tiers { display:grid; gap:1.25rem; grid-template-columns: repeat(4,minmax(0,1fr)); }
@media(max-width:1100px){ .tiers{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:640px){ .tiers{ grid-template-columns:1fr;} }

.tier {
  position:relative; background:#fff; border:1px solid #e5e5e5; border-radius:1.25rem; padding:1.25rem;
  box-shadow:0 10px 30px rgba(17,12,34,.06); overflow:hidden;
}
.tier.featured { background:linear-gradient(180deg,#f9f6fb, #fff); border-color:#e6d7f3; }
.ribbon {
  position:absolute; top:1rem; right:1rem; font-size:.75rem; padding:.25rem .5rem; border-radius:999px;
  background:#f1e9f8; color:#59377c; border:1px solid #e6d7f3;
}
.tier-name { font-family:'Bebas Neue',sans-serif; font-size:1.8rem; color:#1a1a1a; letter-spacing:.5px; }
.tier-price { font-family:'Bebas Neue',sans-serif; font-size:2.4rem; color:#59377c; margin:.25rem 0 .75rem; }
.per { font-size:.8rem; color:#6f459a; margin-left:.25rem; }
.tier-desc { color:#525252; margin:.25rem 0 .75rem; }
.checklist { list-style:none; padding:0; margin:0; }
.checklist li { display:flex; gap:.5rem; align-items:flex-start; margin:.4rem 0; color:#424242; }
.check { width:.9rem; height:.9rem; flex:none; border-radius:4px; background:#6f459a; margin-top:.25rem; }
.tier-cta {
  margin-top:1rem; display:inline-flex; align-items:center; gap:.5rem; padding:.65rem 1rem; border-radius:1rem;
  background:#6f459a; color:#fff; text-decoration:none; font-size:.9rem;
}
.tier-cta:hover{ background:#59377c; }

.note-pill {
  display:inline-flex; align-items:center; gap:.4rem; padding:.35rem .6rem; border-radius:999px;
  background:#f1e9f8; border:1px solid #e6d7f3; color:#59377c; font-size:.8rem;
}

/* Comparison */
.compare {
  margin-top:2rem; overflow:auto; border-radius:1rem; border:1px solid #e5e5e5; background:#fff;
  box-shadow:0 10px 30px rgba(17,12,34,.06);
}
.compare table { width:100%; border-collapse:separate; border-spacing:0; }
.compare th, .compare td { padding:1rem; border-bottom:1px solid #f0eaf6; text-align:left; }
.compare thead th { background:#f9f6fb; color:#59377c; font-family:'Bebas Neue',sans-serif; letter-spacing:.5px; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom:0; }
.badge { display:inline-block; font-size:.75rem; padding:.2rem .45rem; border-radius:999px; background:#f1e9f8; color:#59377c; border:1px solid #e6d7f3; }

/* Guarantee band */
.guarantee { background:#59377c; color:#fff; border-radius:1.25rem; padding:2rem; text-align:center; }
.guarantee .cta-invert {
  display:inline-flex; margin-top:1rem; padding:.7rem 1rem; border-radius:1rem; background:#fff; color:#59377c; text-decoration:none;
}
.guarantee .cta-invert:hover{ background:#f1e9f8; }

/* Contact page */
.contact-hero { position: relative; padding: 5rem 0 3rem; overflow: hidden; }
.contact-hero .blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; pointer-events: none; }
.contact-hero .blob.a { top:-6rem; right:-6rem; width:18rem; height:18rem; background:#e3d8ee; }
.contact-hero .blob.b { bottom:-6rem; left:-6rem; width:18rem; height:18rem; background:#ccb7de; }

.contact-grid { display:grid; gap:2rem; grid-template-columns:repeat(2,minmax(0,1fr)); }
@media(max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }

.contact-card {
  background:#fff; border:1px solid #e5e5e5; border-radius:1.25rem; padding:2rem;
  box-shadow:0 10px 30px rgba(17,12,34,.06);
}
.contact-card h3 { font-family:'Bebas Neue',sans-serif; font-size:1.6rem; color:#59377c; margin:0 0 .5rem; }

.form-group { margin-bottom:1rem; }
label { display:block; font-size:.9rem; margin-bottom:.35rem; color:#424242; }
input, textarea {
  width:100%; padding:.75rem 1rem; border-radius:.75rem; border:1px solid #e5e5e5;
  font-size:.95rem; font-family:'Inter',sans-serif; background:#fff;
}
input:focus, textarea:focus { outline:none; border-color:#b292cf; box-shadow:0 0 0 2px #e3d8ee; }
textarea{ min-height:140px; resize:vertical; }

button.contact-submit {
  margin-top:.5rem; background:#6f459a; color:#fff; border:0; border-radius:1rem;
  padding:.75rem 1.25rem; font-size:.95rem; cursor:pointer;
}
button.contact-submit:hover { background:#59377c; }

.contact-meta { display:flex; flex-direction:column; gap:1.25rem; }
.meta-block { display:flex; gap:.75rem; align-items:flex-start; }
.meta-icon {
  width:2.2rem; height:2.2rem; border-radius:.75rem; background:#f1e9f8; color:#59377c;
  display:grid; place-items:center; font-size:1.1rem;
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
