:root {
  --bg: #ffffff;
  --text: #231f33;
  --muted: #6c6780;
  --line: #ece7f6;
  --pink: #ff5fa2;
  --rose: #ff88b6;
  --purple: #7a56ff;
  --violet-soft: #f6efff;
  --peach: #ffe7d9;
  --gold: #ffd36e;
  --shadow: 0 20px 50px rgba(122, 86, 255, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.blob,
.spark {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
}

.blob-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 136, 182, 0.22), rgba(255,255,255,0));
  top: -60px;
  right: -40px;
}

.blob-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(122, 86, 255, 0.16), rgba(255,255,255,0));
  left: -80px;
  top: 28%;
}

.blob-3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 211, 110, 0.16), rgba(255,255,255,0));
  right: 10%;
  bottom: -100px;
}

.spark {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  opacity: .5;
}
.spark-1 { left: 12%; top: 18%; }
.spark-2 { right: 18%; top: 40%; }
.spark-3 { left: 20%; bottom: 18%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(236, 231, 246, 0.9);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 800;
  letter-spacing: .03em;
}

.nav {
  display: flex;
  gap: 1.4rem;
  color: var(--muted);
  font-weight: 600;
}

.nav a:hover { color: var(--purple); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(122, 86, 255, 0.2);
  border: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(122, 86, 255, 0.24);
}

.btn-small { padding: .75rem 1.05rem; font-size: .95rem; }

.btn-secondary {
  background: white;
  color: var(--purple);
  border: 1px solid rgba(122, 86, 255, 0.18);
  box-shadow: none;
}

.hero {
  padding: 4.6rem 0 3rem;
}

.hero-grid,
.highlight-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(236, 231, 246, 0.95);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.glass {
  position: relative;
  overflow: hidden;
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-copy {
  padding: 2.4rem;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--pink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.15;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.4rem 0;
}

.hero-points span,
.pill,
.mini-card {
  display: inline-flex;
  align-items: center;
  padding: .65rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero-points span {
  background: linear-gradient(135deg, rgba(255, 95, 162, 0.12), rgba(122, 86, 255, 0.12));
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin: 1.6rem 0 1rem;
}

.contact-inline {
  margin-top: 1rem;
  color: var(--purple);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.showcase-card {
  position: absolute;
  inset: 0;
  padding: 1.2rem;
  border-radius: 34px;
  background: linear-gradient(180deg, #fff, #fff8fd);
  border: 1px solid rgba(236, 231, 246, 0.95);
  box-shadow: var(--shadow);
}

.showcase-top,
.showcase-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.showcase-top { justify-content: space-between; }
.showcase-bottom { margin-top: 1.2rem; }

.pill {
  background: linear-gradient(135deg, rgba(255, 211, 110, 0.24), rgba(255, 136, 182, 0.18));
}

.mini-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(35, 31, 51, 0.06);
}

.cake-art {
  position: relative;
  height: 320px;
  margin: 1.8rem auto 0;
  width: min(100%, 360px);
}

.cake-layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}

.layer-top {
  width: 150px;
  height: 60px;
  top: 54px;
  background: linear-gradient(180deg, #fff6fc, #ffd5e7);
}

.layer-mid {
  width: 220px;
  height: 76px;
  top: 118px;
  background: linear-gradient(180deg, #fff6fa, #ffc5dc);
}

.layer-base {
  width: 290px;
  height: 92px;
  top: 194px;
  background: linear-gradient(180deg, #fff6f7, #ffb1d2);
}

.cake-drip {
  position: absolute;
  left: 50%;
  top: 180px;
  transform: translateX(-50%);
  width: 260px;
  height: 38px;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, #fff2a8, #ffd36e);
}

.cake-topper {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  font-size: 3rem;
}

.floating-badge {
  position: absolute;
  background: white;
  border: 1px solid rgba(236, 231, 246, 0.95);
  box-shadow: 0 16px 28px rgba(35, 31, 51, 0.08);
  border-radius: 999px;
  padding: .8rem 1rem;
  font-weight: 800;
}

.badge-a { top: 20px; right: -10px; }
.badge-b { bottom: 70px; left: -10px; }

.section {
  padding: 2.2rem 0 4rem;
}

.centered { text-align: center; }
.section-heading {
  margin-bottom: 1.6rem;
}
.section-heading p:last-child {
  max-width: 720px;
  color: var(--muted);
  margin-left: auto;
  margin-right: auto;
}

.services-grid,
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card,
.strength-card {
  padding: 1.5rem;
  height: 100%;
}

.icon,
.strength-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 95, 162, 0.12), rgba(122, 86, 255, 0.12));
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.service-card p { color: var(--muted); }

.highlight-copy p,
.highlight-panel,
.contact-box p,
.footer p { color: var(--muted); }

.highlight-panel {
  padding: 2rem;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #fff7fb, #f9f5ff);
}

.ribbon {
  display: inline-flex;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 800;
  margin-bottom: 1rem;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  color: var(--text);
}

.strength-card {
  text-align: center;
}

.strength-icon {
  margin-left: auto;
  margin-right: auto;
}

.contact-box {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, #fff, #fff8fd);
}

.contact-number {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: var(--purple);
  font-weight: 800;
  margin: .4rem 0 0;
}

.footer {
  padding: 1.6rem 0 4rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.footer h3 { margin-bottom: .3rem; }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #12b34f);
  color: white;
  font-size: 1.45rem;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
  z-index: 60;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .highlight-grid,
  .services-grid,
  .strengths-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 2rem;
  }

  .hero-grid,
  .highlight-grid,
  .services-grid,
  .strengths-grid,
  .contact-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-copy,
  .contact-box,
  .service-card,
  .strength-card,
  .highlight-panel {
    padding: 1.5rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .showcase-card {
    position: relative;
  }

  .badge-a,
  .badge-b {
    display: none;
  }

  .footer-inner,
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn,
  .btn-secondary,
  .btn-small {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }
}
