:root {
  --blue: #1B4FD8;
  --blue-light: #EEF2FF;
  --blue-mid: #3B6FEF;
  --orange: #F97316;
  --orange-light: #FFF7ED;
  --dark: #0B1120;
  --dark-mid: #1E293B;
  --mid: #475569;
  --light: #F8FAFC;
  --border: #E2E8F0;
  --green: #10B981;
  --green-light: #D1FAE5;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--dark);
  text-decoration: none;
}

.nav-logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-cta {
  background: var(--orange);
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity .2s;
}

.nav-cta:hover {
  opacity: 0.9;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 120px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(27, 79, 216, 0.12);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: 30%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.07);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--orange);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.trust-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 600;
}

/* HERO FORM */
.hero-form-wrap {
  position: relative;
  z-index: 1;
}

.form-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.form-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.form-card p {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: white;
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 79, 216, 0.08);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.consult-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--orange-light);
  border: 1.5px solid rgba(249, 115, 22, 0.2);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 14px;
  cursor: pointer;
}

.consult-check input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--orange);
  flex-shrink: 0;
  cursor: pointer;
}

.consult-check-label {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.5;
  cursor: pointer;
}

.consult-check-label strong {
  color: var(--orange);
}

.form-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}

.form-submit:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
}

.form-note {
  font-size: 11px;
  color: var(--mid);
  text-align: center;
  margin-top: 10px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
}

.form-success h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-success p {
  font-size: 13px;
  color: var(--mid);
}

/* SUCCESS STATE */
.form-success {
  display: none;
  text-align: center;
  padding: 8px 4px;
  animation: fadeUp 0.4s ease forwards;
}

.success-animation {
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
  position: relative;
}

.success-ring {
  animation: ripple 1.2s ease-out forwards;
  transform-origin: center;
}

.success-check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.5s 0.2s ease forwards;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.form-success h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.success-main {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

.success-what-next {
  background: var(--light);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.success-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--dark);
  padding: 6px 0;
}

.success-step:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.success-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.success-wa-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: opacity .2s;
  width: 100%;
}

.success-wa-btn:hover {
  opacity: 0.9;
}

.success-note {
  font-size: 11px;
  color: var(--mid);
}

/* TRUST STRIP */
.trust-strip {
  background: var(--blue);
  padding: 16px 5%;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 13px;
  font-weight: 500;
}

.trust-strip-item span {
  opacity: 0.7;
}

/* SECTIONS COMMON */
section {
  padding: 80px 5%;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 520px;
}

/* HOW IT WORKS */
.how {
  background: var(--light);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.how-step {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.how-step::before {
  content: attr(data-num);
  position: absolute;
  top: -10px;
  right: 12px;
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
}

.how-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.how-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.how-step p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* SAVINGS */
.savings {
  background: var(--dark);
}

.savings .section-title {
  color: white;
}

.savings .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.savings-table {
  margin-top: 48px;
  background: var(--dark-mid);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.savings-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.savings-header span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.savings-header span:last-child {
  color: var(--green);
}

.savings-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
  transition: background .2s;
}

.savings-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.savings-row:last-child {
  border-bottom: none;
}

.savings-row .test-name {
  font-size: 14px;
  font-weight: 500;
  color: white;
}

.savings-row .test-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.savings-row .us-price {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.savings-row .in-price {
  font-size: 14px;
  color: white;
  font-weight: 500;
}

.savings-row .saving-pill {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

/* PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pkg-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.pkg-card.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(27, 79, 216, 0.15);
}

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.pkg-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}

.pkg-price {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 2px;
}

.pkg-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.pkg-us {
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 16px;
}

.pkg-us s {
  color: #EF4444;
}

.pkg-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.pkg-tests {
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 14px;
}

.pkg-list {
  list-style: none;
  margin-bottom: 20px;
}

.pkg-list li {
  font-size: 13px;
  color: var(--dark);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pkg-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}

.pkg-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
  border: 1.5px solid var(--blue);
}

.pkg-btn.primary {
  background: var(--blue);
  color: white;
}

.pkg-btn.primary:hover {
  background: var(--blue-mid);
}

.pkg-btn.outline {
  background: transparent;
  color: var(--blue);
}

.pkg-btn.outline:hover {
  background: var(--blue-light);
}

/* TELECONSULT */
.teleconsult {
  background: var(--orange-light);
}

.consult-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.consult-visual {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.consult-avatar-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.consult-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.consult-doc-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.consult-doc-sub {
  font-size: 12px;
  color: var(--mid);
}

.consult-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.consult-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 500;
}

.consult-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light);
  border-radius: 10px;
  padding: 12px 16px;
}

.consult-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Fraunces', serif;
}

.consult-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* WHY DOCYFI */
.why {
  background: var(--light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.why-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testi-card {
  background: var(--light);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}

.testi-stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 12px;
}

.testi-text {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.testi-loc {
  font-size: 11px;
  color: var(--mid);
}

/* CITIES */
.cities {
  background: white;
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.city-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: all .2s;
  cursor: default;
}

.city-pill.active {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}

.city-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.city-pill.soon {
  opacity: 0.5;
  border-style: dashed;
}

.city-pill.soon .dot {
  background: var(--mid);
}

/* FAQ */
.faq {
  background: var(--light);
}

.faq-list {
  margin-top: 40px;
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  gap: 12px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-a {
  display: none;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  padding-bottom: 16px;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: white;
}

/* FINAL CTA */
.final-cta {
  background: var(--dark);
  text-align: center;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(27, 79, 216, 0.1);
  pointer-events: none;
}

.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -1px;
  position: relative;
}

.final-cta h2 em {
  color: var(--orange);
  font-style: normal;
}

.final-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  position: relative;
}

.final-cta-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
  position: relative;
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

/* FOOTER */
footer {
  background: var(--dark-mid);
  padding: 48px 5% 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.footer-logo span {
  color: var(--orange);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color .2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-nabl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-nabl::before {
  content: '🏥';
  font-size: 14px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.hero-left>* {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

.hero-left>*:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-left>*:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-left>*:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-left>*:nth-child(4) {
  animation-delay: 0.4s;
}

.hero-form-wrap {
  animation: fadeUp 0.6s 0.3s ease forwards;
  opacity: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

  .how-grid,
  .packages-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .consult-inner {
    grid-template-columns: 1fr;
  }

  .savings-header,
  .savings-row {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .savings-header span:nth-child(3),
  .savings-row .in-price {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}