:root {
  --color-primary: #FF5FA2;
  --color-primary-dark: #FF3D8F;
  --color-primary-hover: #E14A8C;
  --color-text: #201E28;
  --color-text-body: #4A4550;
  --color-text-muted: #605A66;
  --color-text-faint: #9A9298;
  --font-body: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #FFFFFF;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-hover);
}

.page {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* Buttons */

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 95, 162, .38);
}

.wa-btn:active {
  transform: translateY(0);
}

.wa-btn-nav {
  gap: 8px;
  background: #1F2A1F;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  box-shadow: 0 10px 24px rgba(32, 30, 40, .18);
}

.wa-btn-hero,
.wa-btn-cta {
  font-size: 18px;
  padding: 18px 34px;
}

.wa-btn-hero {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 16px 32px rgba(255, 95, 162, .4);
}

.wa-btn-cta {
  color: var(--color-primary-hover);
  background: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .15);
}

/* Header */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  position: relative;
  z-index: 5;
}

.brand-name {
  font-weight: 800;
  font-size: 22px;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.brand-accent {
  color: var(--color-primary);
}

/* Hero */

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 56px 100px;
  min-height: 520px;
}

.decor-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.decor-blob--blue {
  top: -40px;
  right: 120px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 32% 28%, #FFFFFF, #54D9FF 45%, #2FB8E0 100%);
  box-shadow: 0 30px 50px rgba(84, 217, 255, .35);
  opacity: .9;
}

.decor-blob--green {
  bottom: 20px;
  left: 80px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 25%, #FFFFFF, #5EEB8A 50%, #2ECB69 100%);
  box-shadow: 0 24px 40px rgba(94, 235, 138, .35);
}

.decor-blob--yellow {
  top: 70%;
  right: 100px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 30% 25%, #FFFFFF, #FFD84D 55%, #F0B900 100%);
  box-shadow: 0 20px 34px rgba(255, 216, 77, .35);
}

.decor-blob--ribbon {
  top: 6%;
  left: -80px;
  width: 280px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--color-primary), #FF8FC0);
  transform: rotate(-18deg);
  box-shadow: 0 18px 30px rgba(255, 95, 162, .3);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF0F6;
  color: var(--color-primary-hover);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.08;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--color-text-body);
  margin: 0 auto 36px;
  max-width: 520px;
}

/* Why choose us */

.why-section {
  padding: 80px 56px 90px;
  position: relative;
}

.why-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.why-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.why-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 12px 28px rgba(32, 20, 40, .06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(32, 20, 40, .12);
}

.feature-card--pink { background: #FFF7FA; }
.feature-card--green { background: #F1FCF6; }
.feature-card--blue { background: #EFFAFF; }
.feature-card--yellow { background: #FFFBEF; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.feature-card--pink .feature-icon {
  background: linear-gradient(135deg, #FF8FC0, var(--color-primary));
  box-shadow: 0 10px 20px rgba(255, 95, 162, .3);
}

.feature-card--green .feature-icon {
  background: linear-gradient(135deg, #8FF3B5, #5EEB8A);
  box-shadow: 0 10px 20px rgba(94, 235, 138, .3);
}

.feature-card--blue .feature-icon {
  background: linear-gradient(135deg, #8FE8FF, #54D9FF);
  box-shadow: 0 10px 20px rgba(84, 217, 255, .3);
}

.feature-card--yellow .feature-icon {
  background: linear-gradient(135deg, #FFE785, #FFD84D);
  box-shadow: 0 10px 20px rgba(255, 216, 77, .3);
}

.feature-label {
  font-weight: 600;
  font-size: 17px;
  color: var(--color-text);
}

/* Closing CTA */

.cta-section {
  position: relative;
  margin: 0 56px 56px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 80px 56px;
  text-align: center;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
}

.cta-glow--top {
  top: -50px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .6), rgba(255, 255, 255, 0) 70%);
}

.cta-glow--bottom {
  bottom: -60px;
  right: -30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0) 70%);
}

.cta-content {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.cta-lead {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.4;
}

.cta-body {
  font-size: 19px;
  font-weight: 300;
  color: #FFE4EF;
  margin: 0 0 12px;
  line-height: 1.6;
}

.cta-body--last {
  margin-bottom: 40px;
}

/* Footer */

.site-footer {
  text-align: center;
  padding: 0 56px 48px;
  color: var(--color-text-faint);
  font-size: 13px;
  font-weight: 300;
}

/* Responsive */

@media (max-width: 860px) {
  .site-header { padding: 20px 24px; }
  .brand-name { font-size: 19px; }
  .wa-btn-nav .wa-label { display: none; }
  .hero-section { padding: 40px 24px 72px; min-height: auto; }
  .hero-title { font-size: 34px; }
  .hero-sub { font-size: 16px; }
  .why-section { padding: 56px 24px 64px; }
  .why-title { font-size: 28px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cta-section { margin: 0 24px 40px; padding: 48px 24px; }
  .cta-lead { font-size: 20px; }
  .cta-body { font-size: 16px; }
  .decor-blob { display: none; }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; }
}
