@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --brand-blue: #1a2d6b;
  --brand-blue-dark: #142452;
  --brand-blue-light: #223a80;
  --deep-charcoal: #1B1B1B;
  --soft-ivory: #F8F6F2;
  --warm-taupe: #B7A18A;
  --light-stone: #E7E2DA;
  --soft-gray: #8B8B8B;
  --pure-white: #FFFFFF;
  --light-gray: #f8f8f8;
  --text-dark: #222222;
  --text-body: #555555;
  --accent-yellow: #feb525;
  --accent-yellow-dark: #e5a220;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--pure-white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--deep-charcoal);
}

p { margin-bottom: 1rem; color: var(--text-body); }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER — TRANSPARENT, OVERLAPS HERO
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 10px rgba(0,0,0,0.06);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 62px;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.site-header.scrolled .logo img {
  height: 46px;
  filter: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--pure-white);
  padding: 9px 18px;
  border: 1.5px solid var(--accent-yellow);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.header-call-btn:hover {
  background: var(--accent-yellow);
  color: var(--deep-charcoal);
}

.site-header.scrolled .header-call-btn {
  color: var(--brand-blue);
  border-color: var(--accent-yellow);
}

.site-header.scrolled .header-call-btn:hover {
  background: var(--accent-yellow);
  color: var(--deep-charcoal);
}

.header-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: var(--pure-white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.header-wa-btn:hover {
  background: #1ebe5d;
  color: var(--pure-white);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-blue {
  background: var(--brand-blue);
  color: var(--pure-white);
}

.btn-blue:hover {
  background: var(--brand-blue-dark);
  color: var(--pure-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--pure-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: var(--pure-white);
  color: var(--brand-blue);
}

.btn-outline-blue {
  background: transparent;
  color: var(--brand-blue);
  border: 1.5px solid var(--brand-blue);
}

.btn-outline-blue:hover {
  background: var(--brand-blue);
  color: var(--pure-white);
}

.btn-accent {
  background: var(--accent-yellow);
  color: var(--deep-charcoal);
  font-weight: 700;
}

.btn-accent:hover {
  background: var(--accent-yellow-dark);
  color: var(--deep-charcoal);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--pure-white);
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  color: var(--pure-white);
}

.btn-whatsapp-lg {
  background: #25D366;
  color: var(--pure-white);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 6px;
}

.btn-whatsapp-lg:hover {
  background: #1ebe5d;
  color: var(--pure-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

/* ============================================
   HERO — FULL WIDTH BANNER
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../images/main-banner.jpg') center center / cover no-repeat;
}

.hero > .container {
  flex: 1 1 100%;
  max-width: 1140px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,45,107,0.78) 0%,
    rgba(26,45,107,0.55) 40%,
    rgba(26,45,107,0.18) 65%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 100px 0 60px;
}

.hero-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 600;
  color: var(--pure-white);
  line-height: 1.18;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: italic;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section {
  padding: 80px 0;
}

.section-ivory {
  background: var(--soft-ivory);
}

.section-white {
  background: var(--pure-white);
}

.section-light {
  background: var(--light-gray);
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 10px;
}

.section-title {
  font-size: 34px;
  margin-bottom: 14px;
  color: var(--brand-blue);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.7;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--accent-yellow);
  margin: 18px 0;
}

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip {
  background: var(--brand-blue);
  padding: 38px 0;
}

.intro-strip p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--pure-white);
  max-width: 760px;
  margin: 0;
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 36px;
}

.how-it-works-image {
  border-radius: 6px;
  overflow: hidden;
}

.how-it-works-image img {
  width: 100%;
  display: block;
}

.tech-features {
  margin-top: 20px;
}

.tech-feature {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.tech-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(26,45,107,0.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-size: 15px;
  margin-top: 2px;
}

.tech-feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text-dark);
}

.tech-feature p {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================
   WHATSAPP CTA BAND
   ============================================ */
.whatsapp-cta-band {
  background: var(--light-gray);
  border-top: 1px solid var(--light-stone);
  border-bottom: 1px solid var(--light-stone);
  padding: 36px 0;
}

.whatsapp-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.whatsapp-cta-text h3 {
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--brand-blue);
}

.whatsapp-cta-text p {
  color: var(--text-body);
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.benefit-card {
  background: var(--pure-white);
  padding: 28px 24px;
  border: 1px solid #eee;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--accent-yellow);
  box-shadow: 0 4px 16px rgba(26,45,107,0.08);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,45,107,0.06);
  border-radius: 4px;
  color: var(--brand-blue);
  font-size: 16px;
  margin-bottom: 14px;
}

.benefit-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================
   TREATMENT AREAS
   ============================================ */
.treatment-areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 36px;
}

.area-list {
  list-style: none;
  padding: 0;
  margin-top: 6px;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: var(--text-dark);
}

.area-list li:last-child { border-bottom: none; }

.area-list li i {
  color: var(--brand-blue);
  font-size: 7px;
}

.treatment-areas-image {
  border-radius: 6px;
  overflow: hidden;
}

.treatment-areas-image img {
  width: 100%;
  display: block;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--brand-blue);
  padding: 44px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 38px;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 2px;
}

.stat-item p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
  max-width: 760px;
  margin-top: 36px;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  gap: 20px;
}

.faq-question h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--brand-blue);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-question h4 {
  color: var(--brand-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 18px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--brand-blue);
}

.contact-info > p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 24px;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--text-dark);
}

.contact-details li i {
  color: var(--brand-blue);
  font-size: 15px;
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.contact-details li a {
  color: var(--brand-blue);
}

.contact-details li a:hover {
  color: var(--brand-blue-dark);
}

.contact-whatsapp-box {
  margin-top: 24px;
  padding: 18px 20px;
  background: #eef8f0;
  border-left: 3px solid #25D366;
  border-radius: 4px;
}

.contact-whatsapp-box p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-form-wrapper {
  background: var(--pure-white);
  padding: 36px;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border-top: 3px solid var(--accent-yellow);
}

.contact-form-wrapper h3 {
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--brand-blue);
}

.contact-form-wrapper .form-subtitle {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 22px;
}

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

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-bottom: 4px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--pure-white);
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--brand-blue);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B8B8B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.form-consent {
  font-size: 11px;
  color: var(--soft-gray);
  margin: 2px 0 14px;
  line-height: 1.5;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: var(--accent-yellow);
  color: var(--deep-charcoal);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-submit-btn:hover {
  background: var(--accent-yellow-dark);
}

/* ============================================
   DOCTOR
   ============================================ */
.doctor-section {
  padding: 80px 0;
  background: var(--pure-white);
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.doctor-content h2 {
  font-size: 30px;
  margin-bottom: 18px;
  color: var(--brand-blue);
}

.doctor-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
}

.doctor-image {
  text-align: center;
}

.doctor-image img {
  max-width: 360px;
  width: 100%;
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: var(--brand-blue);
  padding: 50px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: 28px;
  color: var(--pure-white);
  margin-bottom: 4px;
}

.cta-text p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 0;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--light-gray);
  padding: 36px 0 20px;
  border-top: 1px solid #eee;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-left img {
  height: 32px;
}

.footer-left .footer-address {
  font-size: 13px;
  color: var(--soft-gray);
  margin: 0;
}

.footer-right {
  font-size: 13px;
  color: var(--text-dark);
}

.footer-right a {
  color: var(--brand-blue);
  font-weight: 500;
}

.footer-right a:hover {
  color: var(--brand-blue-dark);
}

.copyright {
  text-align: center;
  font-size: 11px;
  color: var(--soft-gray);
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--pure-white);
  padding: 14px 20px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  color: var(--pure-white);
}

.floating-whatsapp i { font-size: 20px; }
.floating-whatsapp .wa-text { display: inline; }

/* ============================================
   STICKY MOBILE FOOTER
   ============================================ */
.sticky-mobile-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: var(--pure-white);
  border-top: 1px solid #eee;
  padding: 8px 12px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}

.sticky-mobile-inner {
  display: flex;
  gap: 8px;
}

.sticky-mobile-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.sticky-mobile-btn.whatsapp {
  background: #25D366;
  color: var(--pure-white);
  flex: 1.4;
}

.sticky-mobile-btn.call {
  background: var(--brand-blue);
  color: var(--pure-white);
}

.sticky-mobile-btn.form-btn {
  background: var(--light-gray);
  color: var(--brand-blue);
  border: 1px solid #ddd;
}

.sticky-mobile-btn i { font-size: 15px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 38px; }
  .hero { min-height: 75vh; }
  .section { padding: 64px 0; }
  .section-title { font-size: 30px; }
  .how-it-works-grid,
  .treatment-areas-content,
  .contact-grid,
  .doctor-grid { gap: 36px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(26,45,107,0.75) 0%,
      rgba(26,45,107,0.60) 50%,
      rgba(26,45,107,0.30) 100%
    );
  }
  .hero-content { padding: 110px 0 50px; max-width: 100%; }
  .hero h1 { font-size: 30px; }
  .hero-subtitle { font-size: 15px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 26px; }
  .intro-strip p { font-size: 17px; }

  .how-it-works-grid,
  .treatment-areas-content,
  .contact-grid,
  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .how-it-works-image,
  .treatment-areas-image { order: -1; }

  .benefits-grid { grid-template-columns: 1fr; gap: 10px; }
  .benefit-card {
    padding: 20px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .benefit-icon { margin-bottom: 0; flex-shrink: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item h3 { font-size: 30px; }

  .contact-form-wrapper { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info h2, .doctor-content h2 { font-size: 26px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text h2 { font-size: 24px; }

  .header-call-btn { display: none; }
  .doctor-image img { max-width: 260px; }

  .whatsapp-cta-inner { flex-direction: column; text-align: center; }

  .floating-whatsapp {
    bottom: 74px;
    right: 14px;
    padding: 14px;
    border-radius: 50%;
  }
  .floating-whatsapp .wa-text { display: none; }
  .floating-whatsapp i { font-size: 22px; }

  .sticky-mobile-footer { display: block; }
  body { padding-bottom: 68px; }
  .site-footer { padding-bottom: 74px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-left { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-content { padding: 100px 0 40px; }
  .hero h1 { font-size: 26px; }
  .hero-label { font-size: 10px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .section { padding: 40px 0; }
  .section-title { font-size: 22px; }
  .stat-item h3 { font-size: 26px; }
  .stat-item p { font-size: 11px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 260px; }
  .logo img { height: 38px; }
  .site-header.scrolled .logo img { height: 32px; }
}
