/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', sans-serif; 
  overflow-x: hidden;
  color: #1A0A2E;
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== KEYFRAMES ===== */
@keyframes float {
  0%, 100% { transform: translateY(-8px); }
  50%      { transform: translateY(8px); }
}

@keyframes floatSmall {
  0%, 100% { transform: translateY(-5px); }
  50%      { transform: translateY(5px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pawPulse {
  0%, 100% { opacity: 0.12; }
  50%      { opacity: 0.25; }
}

@keyframes bubblePulse {
  0%, 100% { transform: translate(25%, -25%) scale(1); }
  50%      { transform: translate(25%, -25%) scale(1.08); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #2D1B69 0%, #4A2D8F 40%, #6B3FA0 70%, #8B5CB8 100%);
  font-family: 'Nunito', sans-serif; 
}

.hero__blob-purple {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
  background: radial-gradient(circle, #A855F7 0%, transparent 70%);
  transform: translate(30%, -30%);
}

.hero__blob-orange {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
  background: radial-gradient(circle, #FF6B35 0%, transparent 70%);
  transform: translate(-30%, 30%);
}

/* Paw prints decoration */
.hero__paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__paw {
  position: absolute;
  color: white;
  animation: pawPulse 3s ease-in-out infinite;
}

.hero__paw:nth-child(1) { top: 10%; left: 5%; width: 36px; height: 36px; transform: rotate(-20deg); animation-duration: 3s; }
.hero__paw:nth-child(2) { top: 25%; left: 2%; width: 24px; height: 24px; transform: rotate(10deg); animation-duration: 3.5s; }
.hero__paw:nth-child(3) { top: 70%; left: 8%; width: 20px; height: 20px; transform: rotate(-15deg); animation-duration: 4s; }
.hero__paw:nth-child(4) { top: 85%; left: 3%; width: 30px; height: 30px; transform: rotate(5deg); animation-duration: 4.5s; }
.hero__paw:nth-child(5) { top: 15%; right: 5%; width: 28px; height: 28px; transform: rotate(30deg); animation-duration: 5s; }
.hero__paw:nth-child(6) { top: 50%; right: 2%; width: 22px; height: 22px; transform: rotate(-10deg); animation-duration: 5.5s; }
.hero__paw:nth-child(7) { top: 80%; right: 6%; width: 18px; height: 18px; transform: rotate(20deg); animation-duration: 6s; }

/* Navbar */
.hero__nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 8px;
  animation: fadeInLeft 0.6s ease-out;
}

.hero__logo {
  height: 40px;
  object-fit: contain;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 24px 20px;
}

.hero__grid {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* Text side */
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__badge-kz {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  color: white;
  background: rgba(255, 107, 53, 0.25);
  border: 1px solid rgba(255, 107, 53, 0.4);
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(34.5px, 4.32vw, 55.7px);
  line-height: 1.15;
  font-weight: 900; 
  color: white;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero__title span {
  color: #FF6B35;
  text-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
}

.hero__subtitle {
  color: #C4B5FD;
  font-size: clamp(14px, 1.8vw, 19px);
  line-height: 1.6;
  max-width: 520px;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero__subtitle strong {
  color: white;
  font-weight: 700; 
}

/* Feature badges */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 9999px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 600; 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* CTA buttons */
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 9999px;
  color: white;
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 6px 32px rgba(255, 107, 53, 0.45);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(255, 107, 53, 0.55);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 9999px;
  color: white;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.03);
}

/* Hero package image (mobile) */
.hero__package-mobile {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out 0.7s both;
}

.hero__package-mobile img {
  width: 100%;
  max-width: 390px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.3));
  animation: floatSmall 3.5s ease-in-out infinite;
}

/* Mascot side */
.hero__mascot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__mascot-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Speech bubble */
.hero__bubble {
  display: none;
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  background: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 4px;
  right: 0;
  z-index: 20;
  max-width: 240px;
  font-size: 17px;
  font-weight: 700;
  color: #2D1B69;
  line-height: 1.4;
  animation: fadeInScale 0.5s ease-out 1s both;
}

.hero__bubble-tail {
  position: absolute;
  bottom: -12px;
  left: 36px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid white;
}

/* Mascot glow */
.hero__mascot-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 256px;
  height: 64px;
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.8) 0%, transparent 70%);
  filter: blur(20px);
}

.hero__mascot-img {
  display: none;
  width: clamp(260px, 40vw, 460px);
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
  animation: float 4s ease-in-out infinite;
}

/* Desktop stats near mascot */
.hero__stats-desktop {
  display: none;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  bottom: 16px;
  left: -16px;
  animation: fadeInLeft 0.6s ease-out 0.9s both;
}

.hero__stat-card {
  padding: 12px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat-value {
  color: white;
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.hero__stat-label {
  color: #C4B5FD;
  font-size: 12px;
}

/* Wave divider */
.hero__wave {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: -1px;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
  background: white;
}

.benefits__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='30' cy='38' rx='14' ry='12' fill='%237B5EA7'/%3E%3Cellipse cx='12' cy='24' rx='7' ry='8' fill='%237B5EA7'/%3E%3Cellipse cx='48' cy='24' rx='7' ry='8' fill='%237B5EA7'/%3E%3Cellipse cx='20' cy='14' rx='6' ry='7' fill='%237B5EA7'/%3E%3Cellipse cx='40' cy='14' rx='6' ry='7' fill='%237B5EA7'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 80px 80px;
}

.container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  animation: fadeInUp 0.6s ease-out both;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
  background: #F5F0FF;
  color: #7B5EA7;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #D9C8F0;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 900;
  color: #2D1B69;
  line-height: 1.2;
}

.section-title span {
  color: #FF6B35;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.benefit-card {
  border-radius: 24px;
  padding: 24px;
  cursor: default;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 0.5s ease-out both;
}

.benefit-card:nth-child(1) { animation-delay: 0s; }
.benefit-card:nth-child(2) { animation-delay: 0.1s; }
.benefit-card:nth-child(3) { animation-delay: 0.2s; }
.benefit-card:nth-child(4) { animation-delay: 0.3s; }
.benefit-card:nth-child(5) { animation-delay: 0.4s; }
.benefit-card:nth-child(6) { animation-delay: 0.5s; }

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.benefit-card__text {
  flex: 1;
  min-width: 0;
}

.benefit-card__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.benefit-card__title .dark {
  color: #2D1B69;
}

.benefit-card__desc {
  margin-top: 8px;
  font-size: 14px;
  color: #5B6475;
  line-height: 1.6;
}

/* Card theme colors */
.benefit-card--purple   { background: #F5F0FF; border: 1.5px solid #D9C8F0; }
.benefit-card--purple:hover { box-shadow: 0 16px 48px rgba(123,94,167,0.13); }
.benefit-card--purple .benefit-card__icon { background: rgba(123,94,167,0.09); }
.benefit-card--purple .benefit-card__title { color: #7B5EA7; }

.benefit-card--orange   { background: #FFF5F1; border: 1.5px solid #FFD5C2; }
.benefit-card--orange:hover { box-shadow: 0 16px 48px rgba(255,107,53,0.13); }
.benefit-card--orange .benefit-card__icon { background: rgba(255,107,53,0.09); }
.benefit-card--orange .benefit-card__title { color: #FF6B35; }

.benefit-card--green    { background: #F0FDF4; border: 1.5px solid #C2F0DA; }
.benefit-card--green:hover { box-shadow: 0 16px 48px rgba(16,185,129,0.13); }
.benefit-card--green .benefit-card__icon { background: rgba(16,185,129,0.09); }
.benefit-card--green .benefit-card__title { color: #10B981; }

.benefit-card--emerald  { background: #ECFDF5; border: 1.5px solid #A7F3D0; }
.benefit-card--emerald:hover { box-shadow: 0 16px 48px rgba(5,150,105,0.13); }
.benefit-card--emerald .benefit-card__icon { background: rgba(5,150,105,0.09); }
.benefit-card--emerald .benefit-card__title { color: #059669; }

.benefit-card--amber    { background: #FFFBEB; border: 1.5px solid #FDE68A; }
.benefit-card--amber:hover { box-shadow: 0 16px 48px rgba(245,158,11,0.13); }
.benefit-card--amber .benefit-card__icon { background: rgba(245,158,11,0.09); }
.benefit-card--amber .benefit-card__title { color: #F59E0B; }

.benefit-card--deep     { background: #F5F0FF; border: 1.5px solid #C4A8E0; }
.benefit-card--deep:hover { box-shadow: 0 16px 48px rgba(45,27,105,0.13); }
.benefit-card--deep .benefit-card__icon { background: rgba(45,27,105,0.09); }
.benefit-card--deep .benefit-card__title { color: #2D1B69; }

/* ===== TRUST SECTION ===== */
.trust {
  position: relative;
  overflow: hidden;
  padding: 64px 0 80px;
  background: linear-gradient(160deg, #F5F0FF 0%, #EDE6FF 50%, #F0E8FF 100%);
}

.trust__blob-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(123, 94, 167, 0.12) 0%, transparent 70%);
  transform: translate(30%, -30%);
}

.trust__blob-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 288px;
  height: 288px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  transform: translate(-20%, 20%);
}

.section-subtitle {
  margin-top: 16px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: #5B3E8A;
  max-width: 560px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

/* Trust stats */
.trust__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.trust__stat {
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  background: white;
  box-shadow: 0 4px 24px rgba(123, 94, 167, 0.12);
  border: 1.5px solid rgba(123, 94, 167, 0.12);
  animation: fadeInScale 0.5s ease-out both;
}

.trust__stat:nth-child(1) { animation-delay: 0s; }
.trust__stat:nth-child(2) { animation-delay: 0.1s; }
.trust__stat:nth-child(3) { animation-delay: 0.2s; }
.trust__stat:nth-child(4) { animation-delay: 0.3s; }

.trust__stat-value {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: #7B5EA7;
  line-height: 1;
}

.trust__stat-label {
  margin-top: 8px;
  font-size: 13px;
  color: #8B7BAD;
  font-weight: 600;
}

/* Trust quality grid */
.trust__quality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.trust__qualities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.quality-card {
  border-radius: 16px;
  padding: 20px;
  background: white;
  border: 1.5px solid rgba(123, 94, 167, 0.15);
  box-shadow: 0 2px 16px rgba(123, 94, 167, 0.08);
  animation: fadeInLeft 0.5s ease-out both;
}

.quality-card:nth-child(1) { animation-delay: 0s; }
.quality-card:nth-child(2) { animation-delay: 0.1s; }
.quality-card:nth-child(3) { animation-delay: 0.2s; }
.quality-card:nth-child(4) { animation-delay: 0.3s; }

.quality-card__icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.quality-card__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #2D1B69;
  line-height: 1.3;
  margin-bottom: 8px;
}

.quality-card__text {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.6;
}

/* Mascot quote card */
.trust__mascot-card {
  position: relative;
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 384px;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(135deg, #2D1B69 0%, #5B3E8A 100%);
  box-shadow: 0 16px 64px rgba(45, 27, 105, 0.3);
  animation: fadeInRight 0.7s ease-out both;
}

.trust__mascot-card-blob1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.2;
  background: radial-gradient(circle, #A855F7, transparent);
  transform: translate(30%, -30%);
}

.trust__mascot-card-blob2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  opacity: 0.15;
  background: radial-gradient(circle, #FF6B35, transparent);
  transform: translate(-20%, 20%);
}

.trust__mascot-inner {
  position: relative;
  z-index: 10;
  text-align: center;
}

.trust__mascot-label {
  color: white;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.trust__mascot-quote {
  color: white;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 24px;
}

.trust__mascot-img {
  width: 192px;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
  animation: floatSmall 3.5s ease-in-out infinite;
}

.trust__mascot-kz {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.4);
  margin-top: 16px;
}

.trust__mascot-kz span {
  color: #FFB347;
  font-size: 14px;
  font-weight: 700;
}

/* Trust tags */
.trust__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  animation: fadeInUp 0.5s ease-out 0.3s both;
}

.trust__tag {
  padding: 8px 16px;
  border-radius: 9999px;
  background: white;
  border: 1.5px solid #D9C8F0;
  color: #7B5EA7;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(123, 94, 167, 0.1);
}

/* ===== LEAD FORM SECTION ===== */
.lead-form-section {
  position: relative;
  overflow: hidden;
  padding: 48px 0 80px;
  background: linear-gradient(135deg, #FF6B35 0%, #E85D2B 30%, #2D1B69 70%, #1A0A2E 100%);
}

.lead-form-section__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.lead-form-section__blob {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
  transform: translate(30%, 30%);
}

/* Paw pattern */
.lead-form-section__paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
}

.lead-form-section__paw-icon {
  position: absolute;
  color: white;
  font-size: 24px;
}

.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

/* Left side — text + mascot */
.lead-form__left {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: fadeInLeft 0.7s ease-out both;
}

.lead-form__tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  font-weight: 700;
}

.lead-form__heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.lead-form__heading span {
  color: #FFD97A;
}

.lead-form__mascot-wrap {
  position: relative;
  align-self: center;
  margin-top: 8px;
  animation: floatSmall 3.5s ease-in-out infinite;
}

.lead-form__mascot-img {
  width: clamp(180px, 55vw, 340px);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.3));
  display: block;
}

.lead-form__mascot-bubble {
  position: absolute;
  top: 8px;
  right: 0;
  transform: translate(25%, -25%);
  animation: bubblePulse 2s ease-in-out infinite;
}

.lead-form__mascot-bubble-inner {
  padding: 8px 12px;
  border-radius: 12px;
  background: white;
  color: #2D1B69;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

/* Form card */
.lead-form__card {
  border-radius: 24px;
  padding: 32px;
  background: white;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  animation: fadeInRight 0.7s ease-out 0.15s both;
}

.lead-form__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-form__form-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #2D1B69;
  line-height: 1.3;
  margin-bottom: 6px;
}

.lead-form__form-subtitle {
  font-size: 14px;
  color: #8B7BAD;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #2D1B69;
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid #E5E7EB;
  font-size: 15px;
  color: #1A0A2E;
  background: #F9FAFB;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #7B5EA7;
  background: #FDFCFF;
}

.form-group input.error,
.form-group select.error {
  border-color: #EF4444;
  background: #FFF5F5;
}

.form-group .input-wrap {
  position: relative;
}

.form-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  pointer-events: none;
}

.form-group .input-icon + input,
.form-group .input-icon + select {
  padding-left: 44px;
}

.form-group .select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #9CA3AF;
  font-size: 12px;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.form-error {
  font-size: 12px;
  color: #EF4444;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, #FF6B35, #E85D2B);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 6px 28px rgba(255, 107, 53, 0.4);
  cursor: pointer;
  border: none;
  font-family: 'Nunito', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 36px rgba(255, 107, 53, 0.5);
}

.btn-submit:active {
  transform: scale(0.98);
}

.btn-submit:disabled {
  background: #9CA3AF;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn-submit .spinner {
  display: inline-block;
  animation: spin 0.8s linear infinite;
}

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.5;
}

/* Success state */
.lead-form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 0;
  gap: 20px;
}

.lead-form__success.visible {
  display: flex;
  animation: fadeInScale 0.5s ease-out;
}

.lead-form__success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: #F0FDF4;
  border: 3px solid #10B981;
}

.lead-form__success h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #2D1B69;
}

.lead-form__success p {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
}

.lead-form__success img {
  width: 120px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.15));
}

.btn-again {
  padding: 10px 24px;
  border-radius: 9999px;
  border: 2px solid #7B5EA7;
  color: #7B5EA7;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: all 0.2s;
}

.btn-again:hover {
  background: #7B5EA7;
  color: white;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: #1A0A2E;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer__logo {
  height: 32px;
  object-fit: contain;
  opacity: 0.9;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer__copy {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  text-align: center;
}

/* ===== RESPONSIVE ===== */

/* SM: 640px+ */
@media (min-width: 640px) {
  .hero__cta {
    flex-direction: row;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__qualities {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__package-mobile {
    margin-left: 0;
    margin-right: 0;
  }
}

/* MD: 768px+ */
@media (min-width: 768px) {
  .hero__nav {
    padding: 24px 48px 16px;
  }

  .hero__logo {
    height: 48px;
  }

  .hero__content {
    padding: 40px 48px;
  }

  .hero__text {
    gap: 24px;
  }

  .hero__badge {
    padding: 8px 16px;
  }

  .hero__cta {
    gap: 16px;
    margin-top: 8px;
  }

  .hero__package-mobile {
    margin-top: 32px;
  }

  .benefits {
    padding: 112px 0 96px;
  }

  .container {
    padding: 0 48px;
  }

  .trust {
    padding: 96px 0 112px;
  }

  .trust__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .lead-form-section {
    padding: 80px 0 112px;
  }

  .lead-form__grid {
    gap: 48px;
  }

  .lead-form__tag {
    margin-bottom: 24px;
  }

  .lead-form__card {
    padding: 40px;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* LG: 1024px+ */
@media (min-width: 1024px) {
  .hero__nav {
    padding: 24px 64px 16px;
  }

  .hero__content {
    padding: 40px 64px;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__package-mobile {
    display: none;
  }

  .hero__mascot-img {
    display: block;
  }

  .hero__bubble {
    display: block;
  }

  .hero__stats-desktop {
    display: flex;
  }

  .hero__mascot-inner {
    align-items: center;
  }

  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust__quality-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-form__mascot-wrap {
    align-self: flex-start;
  }

  .container {
    padding: 0 64px;
  }
}
