*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --red: #c0392b;
      --red-hover: #a93226;
      --dark: #111111;
      --gray-bg: #f2f2f2;
      --white: #ffffff;
      --text: #333333;
      --text-light: #666666;
      --gold: #b8a87a;
      --site-max: 1500px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 60px;
      background: rgba(10,10,10,0.92);
      backdrop-filter: blur(8px);
      transition: padding .3s;
    }
    nav.scrolled {
      padding: 12px 60px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
    }
    .logo img {
      display: block;
      width: auto;
      height: 44px;
    }
    nav a {
      color: #ccc;
      text-decoration: none;
      font-size: .85rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-left: 32px;
      transition: color .2s;
    }
    nav a:hover { color: var(--red); }
    .nav-cta {
      background: var(--red);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 2px;
      font-weight: 700;
    }
    .nav-cta:hover { background: var(--red-hover); }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 60%, #2a1a1a 100%);
      display: flex;
      align-items: center;
      padding: 120px 60px 80px;
      position: relative;
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute;
      right: -100px; top: -100px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(192,57,43,0.18) 0%, transparent 65%);
      pointer-events: none;
    }
    #hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--red), transparent);
    }
    .hero-content {
      width: 100%;
      max-width: var(--site-max);
      margin: 0 auto;
      animation: fadeUp .9s ease both;
    }
    .hero-badge {
      display: inline-block;
      border: 1px solid var(--red);
      color: var(--red);
      font-size: .7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 6px 16px;
      margin-bottom: 28px;
      border-radius: 1px;
    }
    #hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      line-height: 1.12;
      color: var(--white);
      margin-bottom: 24px;
    }
    #hero h1 em {
      font-style: normal;
      color: var(--red);
    }
    #hero p {
      color: #aaa;
      font-size: 1.1rem;
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 40px;
    }
    .btn-red {
      display: inline-block;
      background: var(--red);
      color: var(--white);
      text-decoration: none;
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 2px;
      transition: background .2s, transform .2s;
    }
    .btn-red:hover { background: var(--red-hover); transform: translateY(-2px); }
    .cta-whatsapp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .whatsapp-icon {
      width: 16px;
      height: 16px;
      fill: currentColor;
      flex-shrink: 0;
    }
    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 58px;
      height: 58px;
      border-radius: 999px;
      background: #25D366;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 12px 28px rgba(0,0,0,0.25);
      z-index: 200;
      transition: transform .2s, background .2s, box-shadow .2s;
      animation: wa-pulse 2.4s ease-in-out infinite;
    }
    .whatsapp-float:hover {
      background: #1ebe5a;
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(0,0,0,0.28);
    }
    .whatsapp-float:focus-visible {
      outline: 3px solid rgba(37,211,102,0.55);
      outline-offset: 3px;
    }
    .whatsapp-float svg {
      width: 26px;
      height: 26px;
      fill: currentColor;
    }

    @keyframes wa-pulse {
      0%, 100% {
        transform: translateZ(0) scale(1);
        box-shadow: 0 12px 28px rgba(0,0,0,0.25), 0 0 0 0 rgba(37, 211, 102, 0.35);
      }
      50% {
        transform: translateZ(0) scale(1.04);
        box-shadow: 0 16px 34px rgba(0,0,0,0.28), 0 0 0 10px rgba(37, 211, 102, 0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .whatsapp-float { animation: none; }
    }
    .nav-cta.cta-whatsapp { gap: 8px; }
    .btn-outline {
      display: inline-block;
      border: 2px solid rgba(255,255,255,0.25);
      color: var(--white);
      text-decoration: none;
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 14px 34px;
      border-radius: 2px;
      margin-left: 16px;
      transition: border-color .2s, background .2s;
    }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

    /* ── STATS ── */
    #stats {
      background: var(--dark);
      padding: 60px;
    }
    .stats-inner {
      max-width: var(--site-max);
      margin: 0 auto;
      display: flex;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      color: var(--red);
      display: block;
      line-height: 1;
    }
    .stat-label {
      color: #888;
      font-size: .8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 6px;
    }

    /* ── SECTION BASE ── */
    section { padding: 100px 60px; }
    #services .center,
    #services .services-grid,
    #about .about-inner,
    #team .center,
    #team .team-grid,
    #testimonials .center,
    #testimonials .testi-grid,
    #doctors .center,
    #doctors .doctors-carousel,
    #cta h2,
    #cta p,
    #cta .btn-red {
      max-width: var(--site-max);
      margin-left: auto;
      margin-right: auto;
    }
    .section-tag {
      font-size: .7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-title em { font-style: normal; color: var(--red); }
    .section-sub {
      color: var(--text-light);
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 60px;
    }
    .center { text-align: center; }
    .center .section-sub { margin-left: auto; margin-right: auto; }

    /* ── SERVICES ── */
    #services { background: var(--white); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 0;
    }
    .service-card {
      padding: 52px 44px;
      border-top: 3px solid transparent;
      transition: border-color .3s, transform .3s;
      position: relative;
    }
    .service-card:nth-child(odd) { background: var(--white); }
    .service-card:nth-child(even) { background: var(--gray-bg); }
    .service-card:hover { border-top-color: var(--red); transform: translateY(-4px); }
    .service-icon {
      width: 50px; height: 50px;
      background: var(--red);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
    }
    .service-icon svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; }
    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      margin-bottom: 14px;
    }
    .service-card p { color: var(--text-light); line-height: 1.7; font-size: .95rem; }

    /* ── ABOUT (alternating) ── */
    #about { background: var(--gray-bg); }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: var(--site-max);
      margin: 0 auto;
    }
    .about-visual {
      background: #d9d9d9;
      border-radius: 4px;
      min-height: 420px;
      position: relative;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .about-visual img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
      display: block;
    }
    .about-content { order: 1; }
    .about-visual { order: 2; }
    .about-content .check-list { list-style: none; margin: 28px 0 40px; }
    .about-content .check-list li {
      display: flex; align-items: flex-start; gap: 12px;
      margin-bottom: 16px;
      color: var(--text);
      line-height: 1.6;
    }
    .check-list li::before {
      content: '\2713';
      color: var(--red);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ── TEAM COMPARISON ── */
    #team { background: var(--white); }
    .team-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 900px;
      margin: 0 auto;
      align-items: start;
    }
    .team-box {
      border-radius: 4px;
      padding: 44px;
    }
    .team-box.left { background: var(--gray-bg); }
    .team-box.right { background: var(--dark); color: var(--white); }
    .team-box h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      margin-bottom: 24px;
    }
    .team-box.right h3 { color: var(--white); }
    .role-list { list-style: none; }
    .role-list li {
      padding: 12px 0;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      font-size: .95rem;
      color: var(--text-light);
    }
    #team .team-box.right h3 {
      font-size: 1.55rem;
      margin-bottom: 26px;
    }
    #team .team-box.right .role-list li {
      font-size: 1.05rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.9);
      border-bottom-color: rgba(255,255,255,0.12);
    }
    .team-box.right .role-list li {
      border-bottom-color: rgba(255,255,255,0.08);
      color: #aaa;
    }
    .role-list li strong { color: var(--text); }
    .team-box.right .role-list li strong { color: var(--white); }
    .savings-badge {
      margin-top: 28px;
      background: var(--red);
      color: #fff;
      text-align: center;
      padding: 18px;
      border-radius: 2px;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 1px;
    }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--gray-bg); }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }
    .testi-card {
      background: var(--white);
      padding: 40px;
      border-radius: 4px;
      border-left: 4px solid var(--red);
      transition: box-shadow .3s;
    }
    .testi-card:nth-child(even) { background: var(--dark); color: var(--white); }
    .testi-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
    .stars { color: var(--red); font-size: 1.1rem; margin-bottom: 18px; }
    .testi-card p {
      font-size: .95rem;
      line-height: 1.75;
      color: var(--text-light);
      font-style: italic;
      margin-bottom: 24px;
    }
    .testi-card:nth-child(even) p { color: #aaa; }
    .testi-author strong { display: block; font-size: .95rem; }
    .testi-author span { font-size: .8rem; color: var(--red); letter-spacing: 1px; text-transform: uppercase; }

    /* DOCTORS */
    #doctors { background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%); }
    .doctors-carousel {
      max-width: var(--site-max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 16px;
    }
    .doctors-viewport-wrap {
      min-width: 0;
    }
    .carousel-btn {
      width: 42px;
      height: 42px;
      border: 1px solid #d0d0d0;
      background: #fff;
      color: var(--dark);
      font-size: 1.6rem;
      line-height: 1;
      border-radius: 50%;
      cursor: pointer;
      transition: all .2s;
    }
    .carousel-btn:hover {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }
    .carousel-btn:disabled {
      opacity: .35;
      cursor: not-allowed;
      background: #f1f1f1;
      color: #888;
      border-color: #dcdcdc;
    }
    .doctors-viewport {
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      scroll-behavior: smooth;
      padding: 4px 2px;
    }
    .doctors-viewport::-webkit-scrollbar { display: none; }
    .doctors-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: calc((100% - 60px) / 4);
      gap: 20px;
    }
    .doctor-card {
      scroll-snap-align: start;
      border: 1px solid #e6e6e6;
      border-top: 3px solid var(--red);
      border-radius: 4px;
      background: #fff;
      padding: 22px;
      box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    }
    .doctor-card img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 3px;
      margin-bottom: 16px;
      background: #efefef;
    }
    .doctor-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      line-height: 1.2;
      margin-bottom: 8px;
      color: var(--dark);
    }
    .doctor-specialty {
      color: var(--text);
      font-size: 1rem;
      line-height: 1.45;
      margin-bottom: 8px;
    }
    .doctor-reg {
      color: #777;
      font-size: .85rem;
      letter-spacing: .7px;
      text-transform: uppercase;
    }
    .carousel-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
    }
    .carousel-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      border: 0;
      background: #cfcfcf;
      cursor: pointer;
      transition: transform .2s, background .2s;
    }
    .carousel-dot:hover {
      background: #a5a5a5;
    }
    .carousel-dot.is-active {
      background: var(--red);
      transform: scale(1.2);
    }
    /* ── CTA ── */
    #cta {
      background: var(--dark);
      padding: 100px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(192,57,43,0.12) 0%, transparent 65%);
      pointer-events: none;
    }
    #cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 20px;
      position: relative;
    }
    #cta h2 em { font-style: normal; color: var(--red); }
    #cta p {
      color: #888;
      max-width: 520px;
      margin: 0 auto 44px;
      line-height: 1.7;
      position: relative;
    }
    #cta .btn-red { position: relative; font-size: 1rem; padding: 18px 48px; }

    /* FOOTER */
    footer {
      background: #0a0a0a;
      padding: 44px 60px 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-main {
      max-width: var(--site-max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.8fr auto;
      align-items: start;
      gap: 26px;
    }
    footer .logo img { height: 38px; }
    .footer-contact p {
      color: #8f8f8f;
      font-size: .9rem;
      line-height: 1.6;
      margin-bottom: 8px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .footer-contact a {
      color: #dddddd;
      text-decoration: none;
      font-size: .95rem;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .footer-contact a:hover { color: var(--red); }
    .footer-contact svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
      flex-shrink: 0;
      margin-top: 3px;
    }
    .footer-social {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .footer-social a {
      width: 40px;
      height: 40px;
      margin: 0;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.22);
      color: #d6d6d6;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
    }
    .footer-social a:hover {
      background: rgba(192,57,43,0.2);
      border-color: var(--red);
      color: #fff;
    }
    .footer-social svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }
    footer hr {
      border: 0;
      border-top: 1px solid rgba(255,255,255,0.12);
      max-width: var(--site-max);
      margin: 24px auto 14px;
    }
    .footer-copy {
      text-align: center;
      color: #8f8f8f;
      font-size: .85rem;
      max-width: var(--site-max);
      margin: 0 auto;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(36px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1200px) {
      .doctors-track { grid-auto-columns: calc((100% - 40px) / 3); }
    }

    @media (max-width: 900px) {
      nav {
        padding: 16px 28px;
      }
      nav .nav-links { display: none; }
      section { padding: 70px 28px; }
      #hero { padding: 120px 28px 70px; }
      #stats { padding: 50px 28px; }
      .stats-inner { gap: 40px; }
      .about-inner { grid-template-columns: 1fr; gap: 40px; }
      .about-content { order: 2; }
      .about-visual { order: 1; }
      .team-grid { grid-template-columns: 1fr; }
      .doctors-track { grid-auto-columns: calc((100% - 20px) / 2); }
      .footer-main { grid-template-columns: 1fr; text-align: center; }
      .footer-contact p,
      .footer-contact a { justify-content: center; }
      .footer-social { justify-content: center; }
    }

    @media (max-width: 640px) {
      .doctors-carousel {
        grid-template-columns: 1fr;
      }
      .carousel-btn { display: none; }
      .doctors-track { grid-auto-columns: 100%; }
    }

