:root {
  --bg: #fff8fb;
  --bg-2: #f7fbff;
  --text: #211827;
  --muted: #746a7a;
  --white: rgba(255, 255, 255, 0.78);
  --glass: rgba(255, 255, 255, 0.58);
  --line: rgba(103, 67, 112, 0.14);
  --pink: #ff78b8;
  --pink-dark: #ef4e9a;
  --purple: #9b8cff;
  --cyan: #66e7ff;
  --yellow: #ffdf75;
  --shadow: 0 24px 70px rgba(72, 42, 92, 0.16);
  --shadow-soft: 0 14px 40px rgba(72, 42, 92, 0.10);
  --radius: 30px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 120, 184, 0.20), transparent 24rem),
    radial-gradient(circle at 90% 10%, rgba(102, 231, 255, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(155, 140, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 120, 184, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 78%);
}

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

button,
input,
textarea {
  font: inherit;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.22;
  z-index: -2;
  pointer-events: none;
}

.ambient-one {
  width: 330px;
  height: 330px;
  top: 170px;
  left: -120px;
  background: var(--pink);
}

.ambient-two {
  width: 360px;
  height: 360px;
  right: -130px;
  top: 380px;
  background: var(--cyan);
}

.ambient-three {
  width: 260px;
  height: 260px;
  left: 48%;
  bottom: 8%;
  background: var(--purple);
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 251, 0.76);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: white;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,0.7), transparent 30%),
    linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 16px 34px rgba(255, 120, 184, 0.28);
  font-size: 22px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  transition: 0.22s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.82);
}

.nav-cta {
  color: white !important;
  background: linear-gradient(135deg, var(--pink), var(--purple)) !important;
  box-shadow: 0 14px 28px rgba(255, 120, 184, 0.24);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 16px;
  background: rgba(255,255,255,0.7);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--text);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 54px;
  padding: 76px 0 86px;
}

.top-pill,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--pink-dark);
  background: rgba(255, 120, 184, 0.10);
  border: 1px solid rgba(255, 120, 184, 0.18);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(102, 231, 255, 0.68);
  animation: pulse 1.8s infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 22px 0;
  max-width: 780px;
  font-size: clamp(3.1rem, 7.7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.07rem, 1.7vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 24px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--pink-dark), var(--purple));
  box-shadow: 0 16px 34px rgba(255, 120, 184, 0.30);
}

.button-soft {
  color: var(--text);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: var(--shadow-soft);
}

.info-strip {
  max-width: 700px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.info-strip div {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
}

.info-strip span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-strip strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.hero-visual {
  min-height: 590px;
  position: relative;
  display: grid;
  place-items: center;
}

.halo {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 223, 117, 0.45), transparent 33%),
    radial-gradient(circle, rgba(255, 120, 184, 0.24), transparent 58%),
    radial-gradient(circle, rgba(102, 231, 255, 0.18), transparent 72%);
  animation: float 7s ease-in-out infinite;
}

.halo::before,
.halo::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: inherit;
}

.halo::after {
  inset: 86px;
  border-color: rgba(255,120,184,0.28);
}

.phone-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 28px;
  border-radius: 38px;
  overflow: hidden;
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(255,255,255,0.86), transparent 25%),
    radial-gradient(circle at 88% 20%, rgba(102,231,255,0.22), transparent 25%);
  pointer-events: none;
}

.card-header,
.angel-circle,
.phone-card h2,
.phone-card p,
.care-grid {
  position: relative;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spark {
  color: var(--pink-dark);
}

.angel-circle {
  width: 140px;
  height: 140px;
  margin: 36px auto 22px;
  display: grid;
  place-items: center;
  border-radius: 40px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.84), transparent 28%),
    linear-gradient(135deg, var(--yellow), #ffc6df, var(--purple));
  box-shadow: 0 22px 45px rgba(255, 120, 184, 0.28);
  font-size: 70px;
}

.phone-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
  text-align: center;
}

.phone-card p {
  color: var(--muted);
  text-align: center;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.care-grid div {
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 13px 7px;
  border-radius: 18px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(255,255,255,0.86);
}

.care-grid span {
  font-size: 24px;
}

.care-grid strong {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.float-card {
  position: absolute;
  z-index: 3;
  width: 200px;
  padding: 16px;
  border-radius: 22px;
  animation: float 6s ease-in-out infinite;
}

.float-card span {
  display: block;
  color: var(--pink-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.float-card strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
}

.float-card-one {
  left: 0;
  top: 120px;
}

.float-card-two {
  right: 0;
  bottom: 120px;
  animation-delay: -2.2s;
}

.section {
  padding: 82px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head h2,
.language-panel h2,
.contact-copy h2 {
  margin: 14px 0 14px;
  font-size: clamp(2.25rem, 5vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.section-head p,
.language-panel p,
.contact-copy p,
.card p,
.program p {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 18px;
}

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

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

.card,
.program,
.contact-panel {
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 28px;
  border-radius: var(--radius);
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 120, 184, 0.16), rgba(102, 231, 255, 0.16));
  font-size: 28px;
}

.card h3,
.program h3 {
  margin-bottom: 9px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.card p,
.program p {
  margin-bottom: 0;
}

.card.compact {
  min-height: 165px;
}

.section-tint {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 120, 184, 0.15), transparent 28rem),
    radial-gradient(circle at 88% 38%, rgba(102, 231, 255, 0.12), transparent 26rem),
    rgba(255, 255, 255, 0.36);
  border-block: 1px solid rgba(103, 67, 112, 0.08);
}

.program-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program {
  position: relative;
  min-height: 290px;
  padding: 28px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.program::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -55px;
  top: -55px;
  border-radius: 999px;
  background: rgba(155, 140, 255, 0.13);
}

.program.active {
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.84), transparent 24%),
    linear-gradient(135deg, rgba(255, 120, 184, 0.30), rgba(102, 231, 255, 0.22)),
    rgba(255,255,255,0.68);
}

.number {
  position: absolute;
  top: 25px;
  left: 28px;
  color: var(--pink-dark);
  font-weight: 950;
  font-size: 13px;
  letter-spacing: 0.11em;
}

.language-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
  align-items: center;
  border-radius: 38px;
  padding: clamp(28px, 5vw, 48px);
}

.language-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.language-tags span {
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
  font-weight: 950;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  padding: clamp(24px, 5vw, 48px);
  border-radius: 40px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border-radius: 21px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.86);
  overflow-wrap: anywhere;
}

.contact-list span {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.contact-list strong {
  font-size: 0.98rem;
}

.contact-form {
  display: grid;
  gap: 14px;
  border-radius: 30px;
  padding: 24px;
}

.hidden {
  display: none;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 950;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(103, 67, 112, 0.16);
  border-radius: 17px;
  background: rgba(255,255,255,0.75);
  padding: 14px 15px;
  color: var(--text);
  outline: 0;
  transition: 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #9b909f;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 120, 184, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 120, 184, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  padding: 30px 0 38px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--pink-dark);
  font-weight: 950;
}

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

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

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

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(102, 231, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(102, 231, 255, 0); }
}

@media (max-width: 980px) {
  .hero,
  .language-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

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

  .cards.three,
  .cards.four,
  .program-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .float-card-one {
    left: 16px;
  }

  .float-card-two {
    right: 16px;
  }
}

@media (max-width: 740px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 26px;
    background: rgba(255,248,251,0.94);
    backdrop-filter: blur(18px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .info-strip,
  .cards.three,
  .cards.four,
  .program-row,
  .care-grid {
    grid-template-columns: 1fr;
  }

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

  .halo {
    width: 390px;
    height: 390px;
  }

  .float-card {
    display: none;
  }

  .angel-circle {
    width: 120px;
    height: 120px;
    font-size: 58px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .shell,
  .nav {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.45rem);
  }

  .brand small {
    font-size: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .phone-card,
  .contact-panel,
  .contact-form {
    padding: 20px;
    border-radius: 28px;
  }
}
