/* ===== VARIABLES ===== */
:root {
  --navy: #0a1628;
  --navy-light: #112240;
  --blue: #1a73e8;
  --blue-light: #4fa3f7;
  --cyan: #00d4ff;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --gray: #8899aa;
  --gray-light: #dce8f5;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 20px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
  --radius: 16px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section--dark {
  background: var(--navy);
}

.section--alt {
  background: var(--off-white);
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26, 115, 232, 0.10);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
}

.tag--light {
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.12);
}

.section-header {
  margin-bottom: 4rem;
}

.section-header p {
  max-width: 560px;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* ===== SCROLL ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* delay helpers */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 30px rgba(10, 22, 40, 0.08);
  padding: 0.75rem 0;
  backdrop-filter: blur(12px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar__logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  box-shadow: 0 4px 14px rgba(26, 115, 232, 0.4);
}

.navbar__logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.navbar__logo-subtitle {
  font-size: 0.64rem;
  color: var(--gray);
  font-weight: 500;
  display: block;
  letter-spacing: 0.05em;
}

.navbar__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--transition);
  border-radius: 2px;
}

.navbar__links a:hover {
  color: var(--blue);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff !important;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  box-shadow: 0 4px 14px rgba(26, 115, 232, 0.35);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.navbar__cta::after {
  display: none !important;
}

.navbar__cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.45) !important;
}

/* hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(26, 115, 232, 0.18) 100%);
}

/* animated dots grid */
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 212, 255, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: dotsDrift 18s linear infinite;
}

@keyframes dotsDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 80px 80px;
  }
}

/* floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(26, 115, 232, 0.25);
  top: -150px;
  right: -100px;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 212, 255, 0.18);
  bottom: -80px;
  left: 10%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(20px, -30px) scale(1.08);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  max-width: 680px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero__eyebrow-line {
  width: 36px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

.hero__eyebrow-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.7s both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.9s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  box-shadow: 0 6px 24px rgba(26, 115, 232, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 10px 32px rgba(26, 115, 232, 0.5);
}

.btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: fadeIn 1s ease 1.5s both;
}

.hero__scroll span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }

  50% {
    opacity: 0.4;
    transform: scaleY(0.6) translateY(10px);
  }
}

/* hero stats */
.hero__stats {
  position: absolute;
  bottom: 5rem;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  animation: fadeUp 0.8s ease 1.1s both;
}

.hero__stat {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 130px;
}

.hero__stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero__stat-num span {
  color: var(--cyan);
}

.hero__stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  border: 1.5px solid var(--gray-light);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(0, 212, 255, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  font-size: 1.6rem;
  transition: background var(--transition), transform var(--transition);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.2), rgba(0, 212, 255, 0.18));
  transform: scale(1.1) rotate(-4deg);
}

.service-card h3 {
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.93rem;
}

/* featured service */
.service-card--featured {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-color: transparent;
}

.service-card--featured h3,
.service-card--featured .service-card__icon {
  color: var(--white);
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.65);
}

.service-card--featured .service-card__icon {
  background: rgba(255, 255, 255, 0.08);
}

.service-card--featured:hover {
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.4);
}

/* ===== PROCEDURES ===== */
.procedures {
  overflow: hidden;
}

.procedures__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.procedures__media {
  position: relative;
}

.procedures__img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.procedures__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  padding: 1.2rem 1.6rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 115, 232, 0.4);
  text-align: center;
}

.procedures__badge-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.procedures__badge-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.procedures__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.proc-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  border: 1.5px solid var(--gray-light);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.proc-item:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.proc-item__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.proc-item h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
  color: var(--navy);
}

.proc-item p {
  font-size: 0.875rem;
}

/* ===== STAFF ===== */
.staff .section-header {
  text-align: center;
}

.staff .section-header p {
  margin: 1rem auto 0;
}

.staff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.doctor-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.doctor-card__img {
  width: 100%;
  aspect-ratio: 3/2.3;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.doctor-card:hover .doctor-card__img {
  transform: scale(1.04);
}

.doctor-card__body {
  padding: 1.8rem;
}

.doctor-card__spec {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.doctor-card h3 {
  margin-bottom: 0.2rem;
  color: var(--navy);
  font-size: 1.25rem;
}

.doctor-card__title {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}

.doctor-card p:last-child {
  font-size: 0.9rem;
  border-top: 1px solid var(--gray-light);
  padding-top: 0.9rem;
  margin-top: 0.6rem;
}

/* ===== FEATURE STRIP ===== */
.features-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 4.5rem 0;
}

.features-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.feature-item__icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.feature-item h4 {
  color: var(--white);
  margin-bottom: 0.3rem;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

/* ===== CONTACT ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact__info h2 {
  margin-bottom: 1rem;
}

.contact__info p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: rgba(26, 115, 232, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail__text {
  font-size: 0.95rem;
  color: var(--gray);
}

.contact-detail__text strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.1rem;
}

/* map */
.contact__map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--gray-light);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

/* ===== FORM ===== */
.contact__form {
  background: var(--off-white);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__brand .navbar__logo {
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9rem;
  max-width: 300px;
}

footer h5 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

footer ul li {
  margin-bottom: 0.6rem;
}

footer ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

footer ul li a:hover {
  color: var(--cyan);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer__social {
  display: flex;
  gap: 0.8rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

/* whatsapp fab */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fabPulse 2.8s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes fabPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    box-shadow: -8px 0 40px rgba(10, 22, 40, 0.12);
    transition: right var(--transition);
    z-index: 999;
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__links a {
    font-size: 1.1rem;
  }

  .hero__stats {
    display: none;
  }

  .procedures__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .procedures__badge {
    bottom: -15px;
    right: 15px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 600px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .features-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}