:root {
  --p: #3b1f5e;
  --pm: #5c3b8a;
  --pl: #ede8f5;
  --o: #f47b20;
  --ol: #fef0e6;
  --cream: #fdfaf6;
  --dark: #1a1118;
  --gray: #6b6475;
  --w: #fff;
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  background: var(--cream);
  color: var(--dark);
  opacity: 0;
  overflow-x: hidden;
  transition: opacity 0.3s ease;
}

.r{opacity:0;transform:translateY(22px);transition:opacity .65s ease,transform .65s ease}
.r.on{opacity:1;transform:translateY(0)}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  padding: 120px 52px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.bl1 {
  top: -220px;
  right: -220px;
  width: 680px;
  height: 680px;
  background: radial-gradient(
    circle,
    rgba(244, 123, 32, 0.14),
    transparent 70%
  );
}

.bl2 {
  bottom: -100px;
  left: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(59, 31, 94, 0.07), transparent 70%);
}

.hl {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ol);
  border: 1px solid rgba(244, 123, 32, 0.28);
  border-radius: 100px;
  padding: 7px 16px;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--o);
  margin-bottom: 22px;
  animation: fu 0.5s ease both;
}

.bdot {
  width: 7px;
  height: 7px;
  background: var(--o);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

h1 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--p);
  margin-bottom: 16px;
  animation: fu 0.5s 0.08s ease both;
}

h1 em {
  font-style: normal;
  color: var(--o);
  position: relative;
}

h1 em::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--o);
  opacity: 0.2;
  border-radius: 3px;
}

.pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fu 0.5s 0.14s ease both;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 100px;
  padding: 7px 14px;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.pill.pp {
  background: var(--p);
  color: var(--w);
}

.pill.po {
  background: var(--o);
  color: var(--w);
}

.hsub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray);
  max-width: 450px;
  margin-bottom: 32px;
  animation: fu 0.5s 0.2s ease both;
}

.hsub strong {
  color: var(--dark);
  font-weight: 600;
}

.hform {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
  animation: fu 0.5s 0.28s ease both;
}

.inp {
  flex: 1;
  min-width: 170px;
  padding: 14px 18px;
  border: 2px solid rgba(59, 31, 94, 0.13);
  border-radius: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  background: var(--w);
  color: var(--dark);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.inp:focus {
  border-color: var(--p);
  box-shadow: 0 0 0 4px rgba(59, 31, 94, 0.08);
}

.inp::placeholder {
  color: #b5adbe;
}

.inp.city {
  max-width: 140px;
  min-width: 120px;
}

.btn {
  padding: 14px 28px;
  background: var(--p);
  color: var(--w);
  border: none;
  border-radius: 14px;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}

.btn:hover:not(.loading) {
  background: var(--o);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(244, 123, 32, 0.35);
}

.btn.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
  cursor: wait;
}

.btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HERO RIGHT ── */
.hr {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.ostage {
  position: relative;
  width: 500px;
  height: 540px;
}

.oback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 390px;
  height: 390px;
  background: radial-gradient(
    circle at 38% 38%,
    rgba(244, 123, 32, 0.17),
    rgba(59, 31, 94, 0.07)
  );
  border-radius: 50%;
  animation: breathe 4s ease-in-out infinite;
}

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

  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.ohero {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-47%);
  height: 488px;
  width: auto;
  object-fit: contain;
  animation: float 3.2s ease-in-out infinite;
  filter: drop-shadow(0 20px 48px rgba(59, 31, 94, 0.16));
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-47%) translateY(0);
  }

  50% {
    transform: translateX(-47%) translateY(-14px);
  }
}

.bub {
  position: absolute;
  background: var(--w);
  border-radius: 100px;
  padding: 9px 15px;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--p);
  box-shadow: 0 8px 24px rgba(59, 31, 94, 0.12);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.bub span {
  font-size: 15px;
}

.b1 {
  top: 40px;
  left: 60px;
  animation: bub 4s ease-in-out infinite;
}

.b2 {
  top: 120px;
  right: 0px;
  animation: bub 4s 0.8s ease-in-out infinite;
}

.b3 {
  top: 320px;
  left: -20px;
  animation: bub 4s 2.4s ease-in-out infinite;
}

.b4 {
  top: 220px;
  left: 10px;
  animation: bub 4s 2.4s ease-in-out infinite;
}

.b5 {
  top: 120px;
  left: 0px;
  animation: bub 4s 3.2s ease-in-out infinite;
}

.b6 {
  top: 40px;
  right: 60px;
  animation: bub 4s 4s ease-in-out infinite;
}

.b7 {
  top: 220px;
  right: 0px;
  animation: bub 4s 0.8s ease-in-out infinite;
}

@keyframes bub {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.conf {
  position: absolute;
  bottom: 54px;
  left: 0;
  background: #1b6b3a;
  color: white;
  border-radius: 100px;
  padding: 10px 20px;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(27, 107, 58, 0.3);
  animation: pop 0.5s 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  white-space: nowrap;
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.3);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── SECTION BASICS ── */
.lbl {
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 12px;
  display: block;
}

.meetO {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 12px;
  display: block;
}

h2 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--p);
  line-height: 1.1;
  margin-bottom: 12px;
}

.sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 48px;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 96px 52px;
  background: var(--w);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(59, 31, 94, 0.08);
  border-radius: 22px;
  overflow: hidden;
}

.step {
  background: var(--cream);
  padding: 32px 26px;
  position: relative;
  transition: background 0.25s;
}

.step:hover {
  background: var(--pl);
}

.sn {
  font-family: "Nunito", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(59, 31, 94, 0.07);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.si {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}

.step h3 {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--p);
  margin-bottom: 7px;
}

.step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

.sa {
  position: absolute;
  top: 38px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: var(--o);
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 800;
}

.step:last-child .sa {
  display: none;
}

/* ── RESEARCH STRIP ── */
.research {
  margin: 40px 52px;
  border-radius: var(--radius);
  background: var(--pl);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.res-icon {
  font-size: 44px;
  flex-shrink: 0;
}

.res-text h3 {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--p);
  letter-spacing: -0.3px;
  margin-bottom: 7px;
}

.res-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 620px;
}

.res-text p strong {
  color: var(--p);
}

