/* ══════════════════════════════════════
   MEDIVERSAL — Main Stylesheet
   Palette: Navy #1a237e | Green #27a745 | White #fff
   ══════════════════════════════════════ */

:root {
  --navy: #1a237e;
  --navy-dark: #0d1757;
  --navy-light: #3949ab;
  --green: #27a745;
  --green-dark: #1a7a32;
  --green-light: #e8f5e9;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --text: #1c1c2e;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(26,35,126,0.10);
  --shadow-lg: 0 12px 48px rgba(26,35,126,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid var(--green);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(39,167,69,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--navy);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* ── Section Shared ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header h2 em { color: var(--green); font-style: italic; }
.section-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ══ NAVBAR ══ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,35,126,0.12);
}
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--green); }
.navbar.scrolled .nav-cta { background: var(--green) !important; color: var(--white) !important; }
.navbar.scrolled .logo-name { color: var(--navy); }
.navbar.scrolled .logo-sub { color: var(--text-light); }
.navbar.scrolled .nav-toggle span { background: var(--navy); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1757 0%, #1a237e 40%, #1a3a2e 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, var(--green) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--white) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(39,167,69,0.2);
  border: 1px solid rgba(39,167,69,0.5);
  color: #6ef587;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title em {
  color: var(--green);
  font-style: italic;
}
.hero-tagline {
  font-size: clamp(18px, 3vw, 26px);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 40px;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.stat { text-align: center; padding: 0 32px; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ══ TRUST BAR ══ */
.trust-bar {
  background: var(--navy);
  padding: 20px 24px;
}
.trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}
.trust-item svg { color: var(--green); flex-shrink: 0; }
.trust-sep { color: rgba(255,255,255,0.3); font-size: 20px; }

/* ══ SERVICES ══ */
.services {
  padding: 96px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.service-card.featured {
  border-color: var(--navy);
  background: linear-gradient(135deg, #f0f2ff 0%, var(--white) 100%);
}
.service-icon { width: 64px; height: 64px; margin-bottom: 20px; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.service-price {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.service-link { color: var(--navy); font-size: 13px; font-weight: 600; }
.service-card:hover .service-link { color: var(--green); }

.cta-card {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-card-inner { text-align: center; }
.cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white) !important;
  margin-bottom: 12px;
}
.cta-card p { color: rgba(255,255,255,0.75) !important; margin-bottom: 24px; }
.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
.cta-contact a { color: rgba(255,255,255,0.7); font-size: 14px; }
.cta-contact a:hover { color: var(--white); }

/* ══ HAIR TRANSPLANT ══ */
.hair-section {
  padding: 96px 0;
  background: var(--white);
}
.hair-header {
  text-align: center;
  margin-bottom: 56px;
}
.hair-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.hair-header h2 em { color: var(--green); font-style: italic; }
.hair-header p { font-size: 17px; color: var(--text-light); }

.hair-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.hair-feature {
  text-align: center;
  padding: 32px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: var(--transition);
}
.hair-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hf-icon { font-size: 36px; margin-bottom: 16px; }
.hair-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.hair-feature p { font-size: 13px; color: var(--text-light); }

/* Pricing */
.pricing-block { }
.pricing-title { text-align: center; margin-bottom: 40px; }
.pricing-title h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card.highlight {
  background: var(--navy);
  border-color: var(--navy);
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.price-card.highlight h4 { color: var(--white); }
.price-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.price-per {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
}
.price-unit { font-size: 13px; color: var(--text-light); }
.price-card.highlight .price-unit { color: rgba(255,255,255,0.6); }
.price-unlimited {
  background: rgba(39,167,69,0.12);
  border: 1px solid rgba(39,167,69,0.3);
  border-radius: 8px;
  padding: 14px;
  margin: 16px 0;
  text-align: center;
}
.price-unlimited span { display: block; font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.price-unlimited strong { display: block; font-size: 32px; font-family: 'Playfair Display', serif; color: var(--white); }
.price-unlimited small { font-size: 11px; color: rgba(255,255,255,0.6); }
.price-includes { list-style: none; margin-bottom: 24px; }
.price-includes li { font-size: 13px; color: rgba(255,255,255,0.85); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.price-card p { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }

/* ══ RESULTS ══ */
.results-section {
  padding: 96px 0;
  background: var(--off-white);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.result-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.result-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #e5e7eb;
  overflow: hidden;
}
.result-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.result-card:hover .result-img-wrap img { transform: scale(1.04); }
.result-label {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.result-label.before { background: #374151; color: white; }
.result-label.after { background: var(--green); color: white; }

/* Placeholder when image not loaded */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8eaf6, #e8f5e9);
  color: var(--text-light);
  font-size: 13px;
  text-align: center;
}
.img-placeholder::after {
  content: 'Add your photo here\A(see images/ folder)';
  white-space: pre;
  text-align: center;
  padding: 16px;
}

.result-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--white);
}
.result-info span:first-child { font-size: 13px; font-weight: 600; color: var(--navy); }
.result-info span:last-child { font-size: 12px; color: var(--text-light); background: var(--green-light); padding: 3px 10px; border-radius: 100px; }

.results-note {
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
}
.results-note p { font-size: 14px; color: var(--text-light); }
.results-note code { background: var(--off-white); padding: 2px 6px; border-radius: 4px; font-family: monospace; font-size: 13px; }

/* ══ WHY SECTION ══ */
.why-section {
  padding: 96px 0;
  background: var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-text .section-tag { margin-bottom: 16px; }
.why-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.why-text > p { font-size: 16px; color: var(--text-light); margin-bottom: 36px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { font-size: 28px; flex-shrink: 0; }
.why-list strong { display: block; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-list span { font-size: 14px; color: var(--text-light); }

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.wc-header {
  background: var(--navy);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  padding: 24px 28px;
}
.wc-body { padding: 28px; }
.wc-body p { font-size: 15px; color: var(--text-light); margin-bottom: 24px; }
.wc-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.wc-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.wc-step span {
  width: 28px; height: 28px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ══ CONTACT ══ */
.contact-section {
  padding: 96px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 28px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-item span { display: block; font-size: 14px; color: var(--text-light); }
.contact-item a { color: var(--text-light); font-size: 14px; }
.contact-item a:hover { color: var(--green); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* ══ FOOTER ══ */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-name { color: var(--white); font-size: 24px; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.6); }
.footer-logo { display: flex; flex-direction: column; margin-bottom: 16px; }
.footer-tagline { font-style: italic; color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 12px; }
.footer-addr { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-links h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-links a:hover { color: var(--green); }
.footer-contact h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-phone { display: block; color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.footer-phone:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ══ WHATSAPP FLOAT ══ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: bounce 2s ease-in-out 3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* ══ ANIMATIONS ══ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.1); }
}
@keyframes bounce {
  0%, 100% { transform: scale(1); }
  25%       { transform: scale(1.15); }
  75%       { transform: scale(1.1); }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .hair-features { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text) !important; padding: 12px 16px; border-radius: 8px; }
  .nav-toggle { display: flex; }
  .navbar.scrolled .nav-toggle span,
  .nav-toggle span { background: var(--navy); }

  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-actions { flex-direction: column; align-items: center; }

  .services-grid { grid-template-columns: 1fr; }
  .hair-features { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-inner { gap: 8px; }
  .trust-sep { display: none; }
}

@media (max-width: 480px) {
  .hair-features { grid-template-columns: 1fr; }
  .hero-stats { padding: 20px; }
  .stat { padding: 0 16px; }
}
