/* ═══════════════════════════════════════
   HOSPIZONE — STYLESHEET
   ═══════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --blue:       #0E4DA4;
  --blue-dark:  #0A3A80;
  --blue-light: #E8F0FD;
  --teal:       #00B4A6;
  --teal-light: #E0F7F5;
  --navy:       #0A1628;
  --navy-mid:   #132038;
  --ice:        #F0F7FF;
  --white:      #FFFFFF;
  --text:       #1A2B4A;
  --text-2:     #4A5E7A;
  --text-3:     #8899AA;
  --border:     #DDE8F5;
  --shadow-sm:  0 1px 3px rgba(14,77,164,.08);
  --shadow-md:  0 4px 20px rgba(14,77,164,.12);
  --shadow-lg:  0 16px 48px rgba(14,77,164,.18);
  --radius:     16px;
  --radius-sm:  10px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── Helpers ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-size: 14px;
  font-weight: 600; cursor: pointer; transition: all .22s ease;
  border: 2px solid transparent; white-space: nowrap;
}
.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(14,77,164,.3); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--nav { background: var(--blue); color: var(--white); padding: 10px 22px; font-size: 13px; }
.btn--nav:hover { background: var(--blue-dark); }
.btn--full { width: 100%; justify-content: center; padding: 15px; }

.section-head { text-align: center; margin-bottom: 60px; }
.section-eye { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.section-eye--light { color: rgba(0,180,166,.8); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.15; color: var(--text); }
.section-title--light { color: var(--white); }
.section-sub { font-size: 16px; color: var(--text-2); margin-top: 16px; line-height: 1.7; max-width: 560px; margin-left: auto; margin-right: auto; }
.section-sub--light { color: rgba(255,255,255,.7); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px; transition: all .3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm); padding: 0 24px;
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-icon { display: flex; }
.nav__logo-text { font-size: 20px; font-weight: 700; color: var(--white); transition: color .3s; }
.nav.scrolled .nav__logo-text { color: var(--navy); }
.nav__links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav__link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); padding: 6px 12px; border-radius: 8px; transition: all .2s; }
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav.scrolled .nav__link { color: var(--text-2); }
.nav.scrolled .nav__link:hover { color: var(--blue); background: var(--blue-light); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.nav.scrolled .nav__burger span { background: var(--navy); }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .45;
}
.hero__orb--1 {
  width: 600px; height: 600px; top: -100px; left: -100px;
  background: radial-gradient(circle, #1565D8 0%, transparent 70%);
}
.hero__orb--2 {
  width: 500px; height: 500px; bottom: -100px; right: -50px;
  background: radial-gradient(circle, #00B4A6 0%, transparent 70%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero__inner {
  max-width: 1200px; margin: 0 auto; padding: 120px 24px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; flex: 1;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
  background: rgba(0,180,166,.12); padding: 6px 14px; border-radius: 50px;
  border: 1px solid rgba(0,180,166,.25); margin-bottom: 24px;
}
.hero__dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 68px); font-weight: 700;
  line-height: 1.1; color: var(--white); margin-bottom: 20px;
}
.hero__title em { font-style: italic; color: var(--teal); }
.hero__sub { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 36px; max-width: 460px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__trust { display: flex; gap: 20px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; }
.hero__trust-item svg { color: var(--teal); }

/* ── MEMBER CARD ── */
.hero__card-wrap { position: relative; }
.hero__card {
  background: linear-gradient(135deg, #0E4DA4 0%, #1565D8 50%, #00B4A6 100%);
  border-radius: 24px; padding: 28px; color: var(--white);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  position: relative; z-index: 2;
  transform: rotate(-2deg);
  transition: transform .4s ease;
}
.hero__card:hover { transform: rotate(0deg) translateY(-4px); }
.hero__card-glow {
  position: absolute; inset: -1px; border-radius: 25px;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  pointer-events: none; z-index: 3;
}
.card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.card__logo { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; }
.card__type { font-size: 10px; font-weight: 700; letter-spacing: 2px; opacity: .7; }
.card__member { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding: 14px; background: rgba(255,255,255,.12); border-radius: 14px; }
.card__avatar { width: 46px; height: 46px; background: rgba(255,255,255,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; }
.card__name { font-size: 18px; font-weight: 700; }
.card__id { font-size: 11px; font-family: 'DM Mono', monospace; opacity: .7; margin-top: 2px; }
.card__body { margin-bottom: 20px; }
.card__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.card__field { background: rgba(255,255,255,.1); border-radius: 10px; padding: 12px 14px; }
.card__label { font-size: 10px; font-weight: 600; letter-spacing: 1px; opacity: .65; text-transform: uppercase; margin-bottom: 4px; }
.card__value { font-size: 14px; font-weight: 700; font-family: 'DM Mono', monospace; }
.card__family { background: rgba(255,255,255,.1); border-radius: 10px; padding: 12px 14px; }
.card__chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.chip { background: rgba(255,255,255,.2); padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.card__footer { border-top: 1px solid rgba(255,255,255,.15); padding-top: 14px; }
.card__network { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; opacity: .75; }

/* ── HERO BADGES ── */
.hero__badge {
  position: absolute; background: var(--white);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); z-index: 4;
  animation: float 4s ease-in-out infinite;
}
.hero__badge--1 { bottom: 30px; left: -40px; animation-delay: 0s; }
.hero__badge--2 { top: 20px; right: -30px; animation-delay: 2s; }
.hero__badge span { font-size: 11px; font-weight: 600; color: var(--text-2); display: block; }
.hero__badge strong { font-size: 18px; font-weight: 800; color: var(--text); display: block; line-height: 1.2; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero__scroll { display: flex; align-items: center; gap: 12px; justify-content: center; padding: 24px; color: rgba(255,255,255,.3); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.hero__scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,.2); }

/* ── STATS ── */
.stats { background: var(--blue); padding: 48px 24px; }
.stats__inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.stats__item { text-align: center; }
.stats__num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--white); display: inline; }
.stats__plus { font-size: 32px; font-weight: 700; color: var(--teal); display: inline; }
.stats__label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.6); margin-top: 4px; }
.stats__div { width: 1px; height: 60px; background: rgba(255,255,255,.15); }

/* ── BENEFITS ── */
.benefits { padding: 100px 24px; background: var(--ice); }
.benefits__inner { max-width: 1200px; margin: 0 auto; }
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border);
  transition: all .3s ease; position: relative;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.benefit-card--featured {
  grid-column: 1; grid-row: 1 / 3;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent; color: var(--white);
}
.benefit-card--featured h3 { color: var(--white); }
.benefit-card--featured p { color: rgba(255,255,255,.65); }
.benefit-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.benefit-card--featured .benefit-card__icon { background: rgba(255,255,255,.12); color: var(--teal); }
.benefit-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.benefit-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.benefit-card__tag {
  display: inline-block; margin-top: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--teal); background: rgba(0,180,166,.15); padding: 5px 12px; border-radius: 20px;
}

/* ── HOW IT WORKS ── */
.how { padding: 100px 24px; background: var(--navy); }
.how__inner { max-width: 1100px; margin: 0 auto; }
.how__steps { display: flex; align-items: center; gap: 24px; margin-top: 60px; }
.how__step {
  flex: 1; background: rgba(255,255,255,.05); border-radius: var(--radius);
  padding: 36px 28px; border: 1px solid rgba(255,255,255,.08);
  transition: all .3s; position: relative;
}
.how__step:hover { background: rgba(255,255,255,.08); border-color: rgba(0,180,166,.3); }
.how__num { font-family: 'DM Mono', monospace; font-size: 48px; font-weight: 500; color: rgba(255,255,255,.08); margin-bottom: 16px; line-height: 1; }
.how__content h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.how__content p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }
.how__icon { position: absolute; top: 28px; right: 28px; color: var(--teal); opacity: .6; }
.how__arrow { flex-shrink: 0; }

/* ── NETWORK ── */
.network { padding: 100px 24px; background: var(--white); }
.network__inner { max-width: 1100px; margin: 0 auto; }
.network__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.network__card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; text-align: center; transition: all .3s;
}
.network__card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.network__card-icon {
  width: 72px; height: 72px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.network__card-icon--blue { background: var(--blue-light); color: var(--blue); }
.network__card-icon--teal { background: var(--teal-light); color: var(--teal); }
.network__card-icon--purple { background: #F0EDFD; color: #6B4EFF; }
.network__num { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--text); }
.network__name { font-size: 16px; font-weight: 700; color: var(--text); margin: 4px 0 8px; }
.network__desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.network__cities { text-align: center; }
.network__cities-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.network__cities-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.network__cities-list span {
  background: var(--ice); color: var(--text-2); font-size: 13px; font-weight: 500;
  padding: 6px 16px; border-radius: 50px; border: 1px solid var(--border);
}
.network__cities-list span.more { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ── PARTNERS ── */
.partners { padding: 80px 24px; background: var(--ice); }
.partners__inner { max-width: 1100px; margin: 0 auto; }
.partners__logos { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 48px; }
.partner-logo {
  width: 160px; height: 80px;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.partner-logo:hover { box-shadow: var(--shadow-md); border-color: var(--blue); transform: translateY(-2px); }
.partner-logo__inner { font-weight: 700; font-size: 14px; color: var(--text); text-align: center; line-height: 1.3; }
.partner-logo__inner small { font-weight: 400; font-size: 11px; color: var(--text-3); display: block; }
.partners__note { text-align: center; font-size: 13px; color: var(--text-3); margin-top: 24px; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 24px; background: var(--navy); }
.testimonials__inner { max-width: 1100px; margin: 0 auto; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.testimonial {
  background: rgba(255,255,255,.05); border-radius: var(--radius);
  padding: 32px; border: 1px solid rgba(255,255,255,.08);
  transition: all .3s;
}
.testimonial:hover { border-color: rgba(0,180,166,.3); transform: translateY(-3px); }
.testimonial--featured {
  background: rgba(0,180,166,.1); border-color: rgba(0,180,166,.25);
  transform: scale(1.02);
}
.testimonial--featured:hover { transform: scale(1.02) translateY(-3px); }
.testimonial__stars { color: #FFB800; font-size: 16px; margin-bottom: 14px; }
.testimonial__text { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 24px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 42px; height: 42px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testimonial__name { font-size: 14px; font-weight: 700; color: var(--white); }
.testimonial__city { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ── REGISTER ── */
.register { padding: 100px 24px; background: linear-gradient(135deg, var(--blue) 0%, #1A73E8 50%, var(--teal) 100%); }
.register__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.register__features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.register__feature { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); }
.register__form-wrap { }
.register__form {
  background: var(--white); border-radius: 24px; padding: 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,.2);
}
.register__form h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.register__form > p { font-size: 14px; color: var(--text-2); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text);
  background: var(--ice); outline: none; transition: border-color .2s;
  resize: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); background: var(--white); }
.form-note { font-size: 12px; color: var(--text-3); text-align: center; margin-top: 12px; }

/* ── CONTACT ── */
.contact { background: var(--ice); padding: 60px 24px; }
.contact__inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.contact__item { display: flex; align-items: flex-start; gap: 16px; }
.contact__icon { width: 48px; height: 48px; background: var(--blue-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.contact__label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.contact__value { font-size: 16px; font-weight: 700; color: var(--text); }
.contact__note { font-size: 12px; color: var(--text-2); margin-top: 2px; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 60px 24px 0; }
.footer__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1.5fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.5); margin: 12px 0 8px; }
.footer__disclaimer { font-size: 11px; color: rgba(255,255,255,.3); line-height: 1.6; max-width: 280px; }
.footer__links { display: flex; gap: 48px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer__col a:hover { color: var(--white); }
.footer__brand .nav__logo-text { color: var(--white) !important; }
.footer__bottom { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 12px; color: rgba(255,255,255,.3); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; padding: 100px 24px 60px; }
  .hero__card-wrap { display: flex; justify-content: center; }
  .hero__card { max-width: 400px; width: 100%; }
  .hero__badge--1 { left: -10px; }
  .hero__badge--2 { right: -10px; }
  .benefits__grid { grid-template-columns: 1fr 1fr; }
  .benefit-card--featured { grid-column: 1 / 3; grid-row: auto; }
  .how__steps { flex-direction: column; }
  .how__arrow { transform: rotate(90deg); }
  .register__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 4px; box-shadow: var(--shadow-md); }
  .nav__links.open { display: flex; }
  .nav__link { color: var(--text-2) !important; padding: 12px 16px; }
  .nav .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .benefits__grid { grid-template-columns: 1fr; }
  .benefit-card--featured { grid-column: 1; }
  .network__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .stats__inner { justify-content: center; gap: 24px; }
  .stats__div { display: none; }
  .hero__badge { display: none; }
  .register__features { grid-template-columns: 1fr; }
  .footer__links { flex-direction: column; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact__inner { flex-direction: column; gap: 24px; }
  .partners__logos { gap: 12px; }
  .partner-logo { width: 130px; height: 65px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 38px; }
  .hero__actions { flex-direction: column; }
  .hero__trust { flex-direction: column; gap: 10px; }
  .register__form { padding: 28px 20px; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
