:root {
  --primary: #C2185B;
  --secondary: #7B1FA2;
  --accent: #E91E63;
  --cta: #22C55E;
  --bg: #FFFFFF;
  --bg-soft: #F8F5FB;
  --surface: #FFFFFF;
  --text: #111827;
  --muted: #667085;
  --radius: 16px;
  --shadow: 0 14px 32px rgba(17, 24, 39, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(194, 24, 91, 0.08), transparent 28%),
    radial-gradient(circle at top left, rgba(123, 31, 162, 0.08), transparent 32%),
    var(--bg);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.section { padding: clamp(3.4rem, 6vw, 5.2rem) 0; }
.soft, .social-proof { background: var(--bg-soft); }
h1, h2, h3, h4 { line-height: 1.25; margin-top: 0; }
h1 { font-size: clamp(2rem, 3.4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.15rem); }

.hero-heading {
  margin: .35rem 0 1rem;
  font-size: clamp(2.05rem, 4.6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.hero-heading .hero-line {
  display: block;
}
.hero-heading .hero-line + .hero-line {
  margin-top: .25rem;
}
.hero-heading .hero-emphasis {
  color: var(--primary);
}
@media (max-width: 760px) {
  .hero-heading {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
    line-height: 1.12;
    max-width: 100%;
  }
}

.eyebrow { color: var(--secondary); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .8rem; }
.topbar { background: linear-gradient(90deg, var(--secondary), var(--primary)); color: #fff; text-align: center; padding: .5rem; font-size: .89rem; }
.topbar a { text-decoration: underline; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.92); border-bottom: 1px solid #f1e6f2; backdrop-filter: blur(10px); }
.navbar { display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .65rem; font-weight: 800; }
.brand img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.nav-wrap { display: flex; align-items: center; gap: 1.2rem; }
.nav-wrap ul { display: flex; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.nav-link { color: #475467; font-weight: 600; border-radius: 999px; padding: .4rem .75rem; }
.nav-link.active, .nav-link:hover { background: linear-gradient(135deg, var(--secondary), var(--primary)); color: #fff; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; border-radius: 999px; padding: .8rem 1.2rem; font-weight: 700; border: 2px solid transparent; cursor: pointer; transition: .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-cta { background: var(--cta); color: #fff; }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.menu-toggle { display: none; background: transparent; border: 0; }
.menu-toggle span { display: block; width: 24px; height: 3px; background: var(--text); margin: 4px 0; border-radius: 4px; }

.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center; }
.dashboard-placeholder {
  min-height: 320px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #475467;
  background: linear-gradient(145deg, #fff, #f5edf9);
  box-shadow: var(--shadow);
}
.hero-visual { position: relative; }
.float-card { position: absolute; background: #fff; border: 1px solid #f4e5f1; border-radius: 12px; box-shadow: var(--shadow); padding: .68rem .86rem; font-weight: 700; }
.fc1 { top: -14px; right: 14px; }
.fc2 { bottom: 90px; left: -12px; }
.fc3 { bottom: -14px; right: 24px; }

.icon-title { color: var(--primary); margin-right: .45rem; }
.check-list, .work-style { padding-left: 1.2rem; }
.cta-row { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.2rem 0; }
.micro-cta { color: var(--muted); font-size: .95rem; }
.logo-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin: 1rem 0 1.4rem; }
.logo-row span { background: #fff; border: 1px solid #efe7f4; border-radius: 12px; text-align: center; padding: .86rem; font-weight: 600; color: #475467; }

.stats-grid, .grid { display: grid; gap: 1rem; }
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.stats-grid article, .card, .service-block, .testimonial {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.15rem;
  border: 1px solid #f1e9f2;
}
.stats-grid strong { font-size: 1.8rem; display: block; background: linear-gradient(135deg, var(--secondary), var(--primary)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-5 { grid-template-columns: repeat(5, 1fr); }
.section-sub { color: var(--muted); margin-bottom: 1.4rem; }
.text-link { color: var(--primary); font-weight: 700; }

.quote-card form, .contact-form { display: grid; gap: .72rem; }
label { font-size: .92rem; color: #344054; font-weight: 600; }
input, select, textarea {
  width: 100%;
  margin-top: .35rem;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  padding: .7rem .8rem;
  font: inherit;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(194,24,91,.18); border-color: var(--primary); }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }
.field-note { margin: .2rem 0 0; font-size: .84rem; color: #667085; }
.error { color: #b42318; font-size: .84rem; margin-top: .2rem; }

blockquote { border-left: 4px solid var(--primary); margin: 1rem 0 0; padding: .7rem 1rem; background: #fff; border-radius: 10px; }
.testimonial { display: none; }
.testimonial.active { display: block; }
.rating { color: #f59e0b; margin: 0 0 .35rem; display: flex; gap: .2rem; }
.slider-controls { margin-top: .85rem; display: flex; gap: .6rem; }
.slider-btn { border: 1px solid #ddd; background: #fff; border-radius: 999px; width: 40px; height: 40px; cursor: pointer; }
.faq-list details { background: #fff; border-radius: 12px; padding: .8rem 1rem; margin-bottom: .8rem; box-shadow: var(--shadow); border: 1px solid #f1e9f2; }
.faq-list summary { font-weight: 700; cursor: pointer; }
.final-cta { background: linear-gradient(135deg, rgba(194,24,91,.1), rgba(123,31,162,.1)); }

.site-footer { background: #0f172a; color: #d5d8e0; padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 1.2rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .4rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 1.4rem; padding: 1rem 0; }
.support-note { color: #9ee3b8; font-weight: 600; }

.back-to-top, .whatsapp-float {
  position: fixed;
  right: 1rem;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.back-to-top { bottom: 1rem; background: linear-gradient(135deg, var(--secondary), var(--primary)); display: none; }
.back-to-top.show { display: grid; }
.whatsapp-float { bottom: 4.3rem; background: #16a34a; z-index: 999; }

.reveal { opacity: 0; transform: translateY(18px); transition: .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.small { max-width: 760px; }

@media (max-width: 1024px) {
  .cards-5, .cards-4 { grid-template-columns: repeat(2,1fr); }
  .hero-grid, .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav-wrap { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-top: 1px solid #eee; padding: 1rem; flex-direction: column; align-items: stretch; }
  .nav-wrap.open { display: flex; }
  .nav-wrap ul { flex-direction: column; }
  .stats-grid, .cards-3, .cards-2, .logo-row { grid-template-columns: 1fr; }
}

