:root {
  --bg:          #fffbf7;
  --bg-warm:     #fff5ee;
  --surface:     #fdf2f8;
  --surface-2:   #fce7f3;
  --ink:         #2a1b3d;
  --ink-2:       #4c3b5c;
  --ink-3:       #7e6e91;
  --line-1:      #fbcfe8;
  --line-2:      #f9a8d4;
  --primary:     #ec4899;
  --primary-2:   #db2777;
  --primary-soft:#fce7f3;
  --lavender:    #a78bfa;
  --lavender-soft:#ede9fe;
  --peach:       #fb923c;
  --peach-soft:  #ffedd5;
  --mint:        #34d399;
  --mint-soft:   #d1fae5;
  --sun:         #fbbf24;
  --sun-soft:    #fef3c7;
  --rose:        #f472b6;
  --rose-soft:   #fce7f3;
  --coral:       #f87171;
  --coral-soft:  #fee2e2;
  --wa:          #25d366;
  --wa-deep:     #128c3e;
  --wa-ink:      #052e15;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --ease:        cubic-bezier(.22, 1, .36, 1);
  --shadow-sm:   0 1px 2px rgba(42, 27, 61, 0.04);
  --shadow:      0 8px 24px -8px rgba(236, 72, 153, 0.18);
  --shadow-lg:   0 28px 60px -28px rgba(236, 72, 153, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'cv11', 'kern';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  min-height: 100dvh;
  background:
    radial-gradient(1000px 600px at 0% -10%, var(--lavender-soft), transparent 60%),
    radial-gradient(900px 600px at 100% 10%, var(--surface), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, var(--peach-soft), transparent 60%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
strong { font-weight: 600; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.skip {
  position: absolute; left: -1000px; top: 0;
  background: var(--ink); color: #fff;
  padding: 10px 14px;
  border-radius: 0 0 6px 0;
  z-index: 100;
}
.skip:focus { left: 0; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-2);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 20px;
  border: 1px solid var(--line-1);
}
.pill--light {
  background: var(--lavender-soft);
  color: #6d28d9;
  border-color: rgba(167, 139, 250, 0.3);
}

/* ──────────── topbar ──────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 251, 247, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-1);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--lavender) 100%);
  flex-shrink: 0;
  box-shadow: 0 6px 16px -6px rgba(236, 72, 153, 0.5);
}
.brand__name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar__nav {
  display: none;
  gap: 28px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.topbar__nav a {
  position: relative;
  padding: 6px 0;
  font-weight: 500;
  transition: color .2s var(--ease);
}
.topbar__nav a:hover { color: var(--primary); }
@media (min-width: 880px) { .topbar__nav { display: inline-flex; } }

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--wa);
  color: var(--wa-ink);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  box-shadow: 0 6px 14px -4px rgba(37, 211, 102, 0.45);
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.topbar__cta:hover { background: #1ec25a; box-shadow: 0 8px 18px -4px rgba(37, 211, 102, 0.6); }
.topbar__cta:active { transform: translateY(1px); }
.topbar__cta .wa-glyph { width: 18px; height: 18px; fill: var(--wa-ink); }
.topbar__cta span { display: none; }
@media (min-width: 520px) { .topbar__cta span { display: inline; } }

/* ──────────── hero ──────────── */
.hero {
  padding: 40px 0 56px;
  position: relative;
}
@media (min-width: 960px) { .hero { padding: 64px 0 80px; } }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.15fr 0.95fr; gap: 64px; }
}

.hero__title {
  margin: 0 0 18px;
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  font-weight: 700;
  color: var(--ink);
}
.hero__title em,
.hero__title-em {
  font-style: italic;
  background: linear-gradient(120deg, var(--primary) 0%, var(--lavender) 50%, var(--peach) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.hero__lede {
  margin: 0 0 32px;
  font-size: clamp(16px, 1.4vw, 18.5px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 58ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--lg { height: 58px; padding: 0 28px; font-size: 16px; }

.btn--wa {
  background: var(--wa);
  color: var(--wa-ink);
  box-shadow: 0 14px 28px -10px rgba(37, 211, 102, 0.5);
}
.btn--wa:hover { background: #1ec25a; box-shadow: 0 18px 34px -10px rgba(37, 211, 102, 0.65); }
.btn--wa .wa-glyph { width: 22px; height: 22px; fill: var(--wa-ink); }

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-1);
  box-shadow: 0 2px 8px -4px rgba(236, 72, 153, 0.15);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary-2); }
.btn--ghost .ic { width: 18px; height: 18px; color: var(--ink-2); }
.btn--ghost:hover .ic { color: var(--primary); }

.trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.trust li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  font-weight: 500;
}
.trust li:nth-child(1) svg { background: var(--mint-soft); color: #059669; }
.trust li:nth-child(2) svg { background: var(--lavender-soft); color: #7c3aed; }
.trust li:nth-child(3) svg { background: var(--peach-soft); color: #c2410c; }
.trust svg {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
}

/* hero card — mirrors the original business card */
.hero__card {
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%);
  pointer-events: none;
}
.hero__card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--lavender-soft) 0%, transparent 70%);
  pointer-events: none;
}
.hero__card > * { position: relative; }
.hero__card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.hero__card-name {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.024em;
  color: var(--ink);
  line-height: 1.15;
}
.hero__card-sub {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.hero__card-sub span { color: var(--ink-3); }
.hero__card-bird {
  width: 72px;
  height: 72px;
  color: var(--primary);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--lavender-soft) 100%);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 8px 20px -8px rgba(236, 72, 153, 0.4);
}
.hero__card-italic {
  margin: 0 0 22px;
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  text-align: center;
  padding: 16px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px dashed var(--line-1);
}
.hero__card-email {
  display: block;
  text-align: center;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line-1);
  padding-bottom: 22px;
  word-break: break-all;
}
.hero__card-email:hover { text-decoration: underline; color: var(--primary-2); }
.hero__card-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.hero__card-foot p { margin: 0; }
.hero__card-foot a { color: var(--ink); font-weight: 700; }
.hero__card-foot a:hover { color: var(--primary); }

/* ──────────── section heading ──────────── */
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section__head h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.028em;
  font-weight: 700;
}
.section__lede {
  margin: 0;
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.6;
}

/* ──────────── services ──────────── */
.services {
  padding: 56px 0;
  position: relative;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.cards > .card { flex: 0 1 100%; }
@media (min-width: 640px) {
  .cards > .card { flex-basis: calc(50% - 9px); }
}
@media (min-width: 960px) {
  .cards { gap: 22px; }
  .cards > .card { flex-basis: calc((100% - 44px) / 3); }
}

.card {
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--lavender));
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.card:hover::before { opacity: 1; }
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  transition: transform .25s var(--ease);
}
.card:hover .card__icon { transform: scale(1.05) rotate(-3deg); }
.card__icon svg { width: 26px; height: 26px; }
.card:nth-child(1) .card__icon { background: var(--primary-soft);   color: var(--primary-2); }
.card:nth-child(2) .card__icon { background: var(--lavender-soft);  color: #7c3aed; }
.card:nth-child(3) .card__icon { background: var(--peach-soft);     color: #c2410c; }
.card:nth-child(4) .card__icon { background: var(--mint-soft);      color: #059669; }
.card:nth-child(5) .card__icon { background: var(--sun-soft);       color: #b45309; }
.card:nth-child(6) .card__icon { background: var(--rose-soft);      color: var(--primary-2); }
.card:nth-child(7) .card__icon { background: var(--coral-soft);     color: #b91c1c; }
.card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-3);
}

/* ──────────── why ──────────── */
.why { padding: 56px 0; }
.reasons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) { .reasons { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.reasons li {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.reasons li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.reasons li:nth-child(1) { border-top: 3px solid var(--primary); }
.reasons li:nth-child(2) { border-top: 3px solid var(--lavender); }
.reasons li:nth-child(3) { border-top: 3px solid var(--peach); }
.reasons h3 {
  margin: 0 0 10px;
  font-size: 18.5px;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.reasons p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-3);
}

/* ──────────── testimonials ──────────── */
.tmnls { padding: 0 0 56px; }
.tmnls__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 760px) { .tmnls__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

.tmnl {
  position: relative;
  margin: 0;
  padding: 36px 32px 32px;
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.tmnl:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.tmnl:nth-child(1) { border-top: 3px solid var(--primary); }
.tmnl:nth-child(2) { border-top: 3px solid var(--lavender); }

.tmnl__quote {
  width: 36px;
  height: 36px;
}
.tmnl:nth-child(1) .tmnl__quote { color: var(--primary); }
.tmnl:nth-child(2) .tmnl__quote { color: var(--lavender); }

.tmnl__quote-body { margin: 0; }
.tmnl__quote-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}

.tmnl__cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line-1);
  font-style: normal;
}
.tmnl__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.tmnl__co {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ──────────── cta banner ──────────── */
.cta-banner { padding: 0 0 56px; }
.cta-banner__inner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--lavender) 60%, var(--peach) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  color: #fff;
  box-shadow: 0 30px 70px -28px rgba(236, 72, 153, 0.5);
  position: relative;
  overflow: hidden;
}
.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
  pointer-events: none;
}
.cta-banner__inner > * { position: relative; }
.cta-banner__inner h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.024em;
  font-weight: 700;
  color: #fff;
}
.cta-banner__inner p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.cta-banner__inner .btn--wa {
  background: #fff;
  color: var(--primary-2);
  box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.25);
}
.cta-banner__inner .btn--wa:hover { background: #fff5fa; }
.cta-banner__inner .btn--wa .wa-glyph { fill: var(--wa-deep); }
@media (min-width: 760px) {
  .cta-banner__inner {
    grid-template-columns: 1fr auto;
    padding: 56px 56px;
    gap: 32px;
  }
}

/* ──────────── contact ──────────── */
.contact { padding: 56px 0 72px; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .contact__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .contact__grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

.contact__card {
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
a.contact__card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__card:nth-child(1) .contact__icon { background: rgba(37, 211, 102, 0.12); color: var(--wa-deep); }
.contact__card:nth-child(1) .contact__icon svg { fill: var(--wa-deep); }
.contact__card:nth-child(2) .contact__icon { background: var(--primary-soft);  color: var(--primary-2); }
.contact__card:nth-child(3) .contact__icon { background: var(--lavender-soft); color: #7c3aed; }
.contact__card:nth-child(4) .contact__icon { background: var(--peach-soft);    color: #c2410c; }
.contact__card:nth-child(5) .contact__icon { background: var(--sun-soft);      color: #b45309; }
.contact__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
}
.contact__value {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.005em;
  word-break: break-word;
}

/* ──────────── footer ──────────── */
.foot {
  padding: 36px 0 calc(36px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--line-1);
}
.foot__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.foot__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.foot__meta {
  margin: 0;
  font-size: 13px;
  color: var(--ink-3);
}
.foot__powered {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}
.foot__powered a {
  font-weight: 600;
  background: linear-gradient(120deg, var(--primary) 0%, var(--lavender) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.foot__powered a:hover { border-bottom-color: var(--primary); }
@media (min-width: 640px) {
  .foot__inner { flex-direction: row; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
  .foot__powered { margin-left: auto; }
}

/* ──────────── floating WhatsApp ──────────── */
.fab {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  height: 58px;
  padding: 0 22px 0 18px;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 36px -12px rgba(18, 140, 62, 0.55);
  z-index: 50;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease);
}
.fab svg { width: 26px; height: 26px; fill: #fff; flex-shrink: 0; }
.fab__label { display: inline; }
.fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px -12px rgba(18, 140, 62, 0.7);
}
@media (max-width: 480px) {
  .fab { padding: 0; width: 58px; height: 58px; justify-content: center; }
  .fab__label { display: none; }
}
@media (min-width: 720px) {
  .fab { right: 28px; bottom: calc(28px + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

::selection { background: var(--primary); color: #fff; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 6px; }
