/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --primary: #2E7D32;
  --primary-dark: #1B5E20;
  --primary-light: #4CAF50;
  --primary-surface: #E8F5E9;
  --accent: #FFB300;
  --accent-hover: #FFA000;
  --accent-light: #FFF8E1;
  --text: #1A1A1A;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --bg: #FAFAF9;
  --bg-alt: #FFFFFF;
  --bg-dark: #064E3B;
  --border: #E5E7EB;
  --radius: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.05), 0 2px 4px -1px rgba(0,0,0,.03);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,.05), 0 4px 6px -2px rgba(0,0,0,.025);
  --shadow-xl: 0 20px 40px -5px rgba(0,0,0,.1);
  --shadow-glow: 0 0 24px rgba(46,125,50,0.15);
  --shadow-accent: 0 8px 24px rgba(255,179,0,0.3);
  --transition: .4s cubic-bezier(.16, 1, .3, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .price-amount, .navbar-logo {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BACKGROUND BLOBS (Premium effect) ===== */
.bg-blob {
  position: absolute; border-radius: 50%; filter: blur(100px);
  z-index: 0; opacity: 0.6; pointer-events: none;
  animation: floatBlob 12s infinite alternate ease-in-out;
}
.blob-1 { top: -10%; left: -10%; width: 600px; height: 600px; background: rgba(46,125,50,.12); }
.blob-2 { top: 30%; right: -10%; width: 500px; height: 500px; background: rgba(255,179,0,.1); animation-delay: -4s; }
.blob-3 { bottom: 10%; left: 10%; width: 700px; height: 700px; background: rgba(76,175,80,.08); animation-delay: -8s; }

@keyframes floatBlob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
  100% { transform: translate(-20px, 40px) scale(0.95); }
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 80px 0; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
  background: var(--primary-surface); padding: 6px 16px; border-radius: 100px;
}
.section-label svg { width: 18px; height: 18px; }
.section-title {
  font-size: 32px; font-weight: 800; line-height: 1.15;
  color: var(--text); margin-bottom: 20px; letter-spacing: -0.5px;
}
.section-subtitle { font-size: 18px; color: var(--text-secondary); max-width: 600px; line-height: 1.6; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.5); transition: var(--transition);
}
.admin-bar .navbar { top: 32px; }
.navbar.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.9); border-bottom-color: rgba(0,0,0,0.05); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 24px; font-weight: 800; color: var(--primary); letter-spacing: -0.5px;
}
.navbar-logo svg { width: 32px; height: 32px; }
.navbar-links { display: flex; align-items: center; gap: 24px; }
.navbar-links a {
  font-size: 15px; font-weight: 600; color: var(--text-secondary);
  transition: var(--transition); position: relative;
}
.navbar-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: var(--transition); border-radius: 2px;
}
.navbar-links a:hover { color: var(--text); }
.navbar-links a:hover::after { width: 100%; }

.navbar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; background: var(--text); color: #FFF;
  font-size: 15px; font-weight: 600; border-radius: 8px;
  transition: var(--transition); border: none; cursor: pointer;
}
.navbar-cta:hover { background: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 6px 0; transition: var(--transition); border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px; background: linear-gradient(135deg, var(--accent), #FFC107);
  color: #1A1A1A; font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 700; border-radius: 8px;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-accent), inset 0 1px 0 rgba(255,255,255,0.4);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg); transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255,179,0,0.4), inset 0 1px 0 rgba(255,255,255,0.6);
}
.btn-primary:hover::after { left: 150%; }
.btn-primary svg { width: 20px; height: 20px; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; background: rgba(255,255,255,0.8); backdrop-filter: blur(10px);
  color: var(--text); font-size: 16px; font-weight: 600;
  border-radius: 8px; border: 1px solid var(--border);
  cursor: pointer; transition: var(--transition);
}
.btn-secondary:hover { background: #FFF; border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ===== HERO ===== */
.hero {
  position: relative; padding: 200px 0 120px;
  background: linear-gradient(180deg, rgba(240,249,240,0.6) 0%, rgba(255,255,255,0) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; background: #FFF; border-radius: 100px;
  font-size: 14px; font-weight: 600; color: var(--primary-dark); margin-bottom: 24px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(46,125,50,.1);
}
.hero-badge svg { width: 18px; height: 18px; color: var(--accent); }
.hero h1 {
  font-size: 48px; font-weight: 900; line-height: 1.06; color: var(--text);
  margin-bottom: 24px; letter-spacing: 0;
}
.hero h1 span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), #4CAF50);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 20px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 40px; max-width: 520px;
}
.hero-cta-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-avatars { display: flex; margin-right: 8px; }
.hero-avatars img {
  width: 40px; height: 40px; border-radius: 50%; border: 3px solid #FFF; margin-left: -12px;
  box-shadow: var(--shadow-sm); object-fit: cover;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-trust-stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: 4px; }
.hero-trust-stars svg { width: 16px; height: 16px; }
.hero-trust-text { font-size: 14px; font-weight: 700; color: var(--text); }
.hero-trust-text span { color: var(--text-secondary); font-weight: 500; }

.hero-image { position: relative; }
.hero-image-inner {
  position: relative; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); overflow: hidden;
  border: 8px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
}
.hero-image-inner img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transform: scale(1.02); transition: transform 0.8s ease;
}
.hero-image:hover .hero-image-inner img { transform: scale(1); }

/* Glassmorphism Floating Cards */
.hero-float-card {
  position: absolute; background: rgba(255, 255, 255, 0.85); border-radius: var(--radius-lg);
  padding: 16px 24px; display: flex; align-items: center; gap: 16px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  animation: float 5s ease-in-out infinite; z-index: 2;
}
.hero-float-card.card-1 { bottom: -30px; left: -40px; }
.hero-float-card.card-2 { top: 30px; right: -30px; animation-delay: 2.5s; }
.hero-float-card .float-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-float-card .float-icon.green { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #FFF; box-shadow: 0 4px 12px rgba(46,125,50,0.3); }
.hero-float-card .float-icon.amber { background: linear-gradient(135deg, var(--accent), #FFC107); color: #FFF; box-shadow: 0 4px 12px rgba(255,179,0,0.3); }
.hero-float-card .float-icon svg { width: 24px; height: 24px; }
.hero-float-card .float-label { font-size: 13px; color: var(--text-secondary); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-float-card .float-value { font-size: 18px; font-weight: 800; color: var(--text); font-family: 'Inter', Helvetica, Arial, sans-serif; }

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

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--bg-alt); position: relative; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; position: relative; }
.step-card {
  position: relative; padding: 48px 32px 40px; background: #FFF;
  border-radius: var(--radius-xl); border: 1px solid var(--border);
  transition: var(--transition); text-align: center;
  box-shadow: var(--shadow-md); z-index: 2;
}
.step-card:hover {
  border-color: var(--primary-light); box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}
.step-number {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; font-family: 'Inter', Helvetica, Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(46,125,50,0.3); border: 4px solid #FFF;
}
.step-icon {
  width: 72px; height: 72px; border-radius: 20px; background: var(--primary-surface);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--primary); transition: var(--transition);
}
.step-card:hover .step-icon { background: var(--primary); color: #FFF; transform: scale(1.1) rotate(-5deg); }
.step-icon svg { width: 32px; height: 32px; }
.step-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.step-card p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; }

/* Connecting line */
.steps-grid::before {
  content: ''; position: absolute; top: 120px; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(90deg, var(--primary-surface) 0%, var(--primary-light) 50%, var(--primary-surface) 100%);
  z-index: 1; border-radius: 2px;
}
.steps-grid::after {
  content: ''; position: absolute; top: 120px; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  z-index: 1; border-radius: 2px; width: 30%;
  animation: slideLine 3s infinite linear; opacity: 0.5;
}
@keyframes slideLine {
  0% { left: 10%; width: 10%; opacity: 0; }
  50% { opacity: 1; }
  100% { left: 80%; width: 10%; opacity: 0; }
}


/* ===== CONDITIONS ===== */
.conditions { background: var(--bg); position: relative; }
.conditions-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 64px;
}
.condition-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: #FFF; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: var(--transition);
  box-shadow: var(--shadow-sm); cursor: default;
}
.condition-item:hover {
  border-color: var(--primary-light); box-shadow: var(--shadow-glow);
  transform: translateY(-4px) scale(1.02);
}
.condition-check {
  width: 36px; height: 36px; border-radius: 10px; background: var(--primary-surface);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--primary); transition: var(--transition);
}
.condition-item:hover .condition-check { background: var(--primary); color: #FFF; }
.condition-check svg { width: 18px; height: 18px; }
.condition-item span { font-size: 16px; font-weight: 600; }

/* ===== DOCTORS ===== */
.doctors { background: var(--bg-alt); }
.doctors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 64px; }
.doctor-card {
  background: #FFF; border-radius: var(--radius-xl); border: 1px solid var(--border);
  overflow: hidden; transition: var(--transition); text-align: center;
  box-shadow: var(--shadow-sm);
}
.doctor-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-8px); border-color: rgba(0,0,0,0.1); }
.doctor-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; }
.doctor-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); filter: contrast(1.05) saturate(1.1);
}
.doctor-card:hover .doctor-img-wrap img { transform: scale(1.08); }
.doctor-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, transparent 40%);
}
.doctor-info { padding: 24px 20px; position: relative; z-index: 2; background: #FFF; }
.doctor-info h4 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.doctor-info p { font-size: 14px; color: var(--text-secondary); font-weight: 500; }
.doctor-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  padding: 6px 14px; background: var(--primary-surface); border-radius: 100px;
  font-size: 13px; font-weight: 700; color: var(--primary-dark);
}
.doctor-badge svg { width: 16px; height: 16px; }

/* ===== PRICING ===== */
.pricing { background: var(--bg); position: relative; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 64px; max-width: 800px; }
.price-card {
  background: #FFF; border-radius: var(--radius-xl); padding: 48px 40px;
  border: 1px solid var(--border); transition: var(--transition); text-align: center;
  position: relative; box-shadow: var(--shadow-md);
}
.price-card.featured {
  border: 2px solid var(--primary); box-shadow: var(--shadow-glow);
  background: linear-gradient(180deg, #FFF 0%, var(--primary-surface) 200%);
  transform: scale(1.05); z-index: 2;
}
.price-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  padding: 6px 20px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff;
  font-size: 13px; font-weight: 800; border-radius: 100px; text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(46,125,50,0.3);
}
.price-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-8px); }
.price-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.price-card h3 { font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.price-amount { font-size: 64px; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 24px; letter-spacing: -2px; }
.price-amount span { font-size: 20px; font-weight: 600; color: var(--text-muted); }
.price-features { margin: 32px 0; text-align: left; }
.price-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; font-size: 16px; color: var(--text-secondary); font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.price-features li:last-child { border-bottom: none; }
.price-features li svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; }
.price-card .btn-primary, .price-card .btn-secondary { width: 100%; justify-content: center; padding: 18px; font-size: 18px; }

.guarantee {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 48px auto 0; padding: 20px 32px; background: #FFF; max-width: 700px;
  border-radius: var(--radius-lg); border: 2px dashed var(--primary-light);
  box-shadow: var(--shadow-sm);
}
.guarantee svg { width: 40px; height: 40px; color: var(--primary); flex-shrink: 0; }
.guarantee p { font-size: 16px; color: var(--text-secondary); line-height: 1.5; text-align: left; }
.guarantee p strong { color: var(--text); font-weight: 700; font-family: 'Inter', Helvetica, Arial, sans-serif; font-size: 18px; display: block; margin-bottom: 2px; }

/* ===== FAQ ===== */
.faq { background: var(--bg-alt); }
.faq-list { max-width: 800px; margin: 64px auto 0; }
.faq-item {
  background: #FFF; border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin-bottom: 16px; overflow: hidden; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.faq-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 32px; cursor: pointer; background: none; border: none;
  width: 100%; font-size: 18px; font-weight: 700; color: var(--text); font-family: 'Inter', Helvetica, Arial, sans-serif;
  text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question svg {
  width: 24px; height: 24px; flex-shrink: 0; transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-muted);
}
.faq-item.active .faq-question { color: var(--primary); }
.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(0.4, 0, 0.2, 1), opacity .4s ease; opacity: 0;
}
.faq-item.active .faq-answer { max-height: 400px; opacity: 1; }
.faq-answer-inner { padding: 0 32px 28px; font-size: 16px; color: var(--text-secondary); line-height: 1.7; border-top: 1px solid transparent; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-dark); color: #fff; padding: 80px 0 32px; position: relative; overflow: hidden; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px;
  margin-bottom: 64px; position: relative; z-index: 1;
}
.footer-brand p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.7; margin-top: 20px; max-width: 320px; }
.footer h4 { font-family: 'Inter', Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px; color: #FFF; }
.footer ul li { margin-bottom: 16px; }
.footer ul a { font-size: 15px; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-badges { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; background: rgba(255,255,255,.05); border-radius: var(--radius);
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.1); transition: var(--transition);
}
.footer-badge:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.footer-badge svg { width: 18px; height: 18px; color: var(--primary-light); }
.footer .navbar-logo { color: #fff; font-size: 24px; }
.footer .navbar-logo svg { width: 28px; height: 28px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 14px; color: rgba(255,255,255,.5); position: relative; z-index: 1;
}
.footer-bottom-links { display: flex; gap: 32px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: #FFF; }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1120px) {
  .navbar-links, .navbar-cta { display: none; }
  .mobile-toggle { display: block; }
  .navbar-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 80px; left: 0; right: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    padding: 32px; gap: 24px; box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-image { order: -1; max-width: 600px; margin: 0 auto; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .admin-bar .navbar { top: 46px; }
  .section { padding: 48px 0; }
  .hero { padding: 140px 0 64px; }
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 24px; }
  .hero-float-card.card-1 { bottom: -20px; left: -10px; }
  .hero-float-card.card-2 { top: 20px; right: -10px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before, .steps-grid::after { display: none; } /* Hide line on mobile */
  .conditions-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; z-index: 1; }
  .price-card.featured:hover { transform: translateY(-8px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
  .navbar-links, .navbar-cta { display: none; }
  .mobile-toggle { display: block; }
  .navbar-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 80px; left: 0; right: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    padding: 32px; gap: 24px; box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--border);
  }
}
@media (max-width: 480px) {
  .hero-float-card { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
