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

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep:          #26215C;
  --purple:        #534AB7;
  --purple-mid:    #7F77DD;
  --purple-light:  #EEEDFE;
  --purple-border: #AFA9EC;
  --text:          #1e1a3a;
  --muted:         #6b6490;
  --border:        #dddaf5;
  --white:         #ffffff;
  --bg:            #f7f6fc;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Navigation ── */
nav {
  background: var(--deep);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(38, 33, 92, 0.25);
}

.nav-brand { padding: 0.9rem 0; }
.nav-brand .n1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
}
.nav-brand .n2 {
  color: #a89ed8;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  margin-top: 1px;
  display: block;
}

.nav-links { display: flex; gap: 0.2rem; }
.nav-links a {
  color: #c0b8f0;
  font-size: 0.87rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }

.nav-cta {
  background: var(--purple-mid);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-size: 0.87rem;
  font-weight: 700;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--purple); }

/* ── Hero ── */
.hero {
  background: var(--deep);
  color: #fff;
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 28px,
    rgba(255,255,255,0.8) 28px,
    rgba(255,255,255,0.8) 30px
  );
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(127,119,221,0.25);
  border: 1px solid rgba(175,169,236,0.5);
  color: #c0b8f0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: 2.9rem;
  color: #fff;
  margin-bottom: 0.7rem;
}
.hero h1 span { color: #c0b8f0; }

.hero p {
  font-size: 1.05rem;
  color: #a89ed8;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--purple-mid);
  color: #fff;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--purple); }

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.15s;
  border: 2px solid rgba(175,169,236,0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #c0b8f0;
  display: block;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: #7b6eb0;
  margin-top: 2px;
  display: block;
}

/* ── Ribbon ── */
.ribbon {
  background: var(--purple);
  padding: 0.65rem 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ribbon-item {
  color: #e0dcf8;
  font-size: 0.84rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ribbon-item svg { color: #c0b8f0; }

/* ── Sections ── */
.section { padding: 4rem 2rem; }
.section.alt { background: #fff; }
.section-inner { max-width: 1000px; margin: 0 auto; }

.section-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 0.4rem;
}
.section-title {
  font-size: 1.9rem;
  color: var(--deep);
  margin-bottom: 0.4rem;
}
.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 540px;
  margin-bottom: 2.25rem;
}

/* ── Products ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem;
}
.product-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1.1rem;
  text-align: center;
  transition: box-shadow 0.15s, transform 0.15s;
}
.product-card:hover {
  box-shadow: 0 6px 20px rgba(83,74,183,0.1);
  transform: translateY(-3px);
}
.product-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
  color: var(--purple);
}
.product-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--deep);
  margin-bottom: 0.35rem;
}
.product-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ── How it works ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 1.25rem;
}
.step {
  text-align: center;
  padding: 1.4rem 1rem;
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--deep);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.step h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--deep);
  margin-bottom: 0.25rem;
}
.step p { font-size: 0.81rem; color: var(--muted); }

/* ── Why us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.why-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.why-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--purple-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
}
.why-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-item h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.15rem;
}
.why-item p { font-size: 0.83rem; color: var(--muted); }

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.1rem;
}
.review-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-left: 4px solid var(--purple-mid);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.4rem;
}
.stars { color: var(--purple-mid); font-size: 0.85rem; margin-bottom: 0.5rem; letter-spacing: 2px; }
.review-text { font-size: 0.88rem; color: var(--text); line-height: 1.6; margin-bottom: 0.6rem; font-style: italic; }
.reviewer { font-size: 0.78rem; font-weight: 700; color: var(--deep); }
.rev-date { font-size: 0.73rem; color: var(--muted); }

/* ── Contact ── */
.contact-section {
  background: var(--deep);
  color: #fff;
  padding: 4rem 2rem;
}
.contact-inner { max-width: 800px; margin: 0 auto; }
.contact-inner h2 { font-size: 1.8rem; color: #fff; margin-bottom: 0.6rem; }
.contact-inner > p {
  color: #a89ed8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  max-width: 500px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.contact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(175,169,236,0.2);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-card-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(127,119,221,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0b8f0;
}
.contact-card-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-card-body .label {
  font-size: 0.72rem;
  color: #7b6eb0;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.contact-card-body .value { color: #e0dcf8; font-size: 0.9rem; font-weight: 600; line-height: 1.6; }
.contact-card-body a { color: #c0b8f0; }
.contact-card-body a:hover { color: #fff; }

.free-call-banner {
  background: rgba(127,119,221,0.2);
  border: 1px solid rgba(175,169,236,0.3);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.free-call-banner svg { width: 28px; height: 28px; min-width: 28px; stroke: #c0b8f0; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.free-call-banner p { color: #c0b8f0; font-size: 0.88rem; line-height: 1.5; }
.free-call-banner strong { color: #fff; }

.social-row { display: flex; gap: 0.75rem; margin-top: 1.75rem; flex-wrap: wrap; }
.social-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(175,169,236,0.25);
  color: #c0b8f0;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.social-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }
.social-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ── Footer ── */
footer {
  background: #160f3a;
  color: #5a4e8a;
  padding: 1.4rem 2rem;
  text-align: center;
  font-size: 0.8rem;
}
footer a { color: #5a4e8a; }
footer a:hover { color: #a89ed8; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .nav-links { display: none; }
  .hero-stats { gap: 1.2rem; }
  nav { padding: 0 1rem; }
  .section { padding: 3rem 1rem; }
  .ribbon { gap: 0.75rem; padding: 0.65rem 1rem; }
}
