 /* ═══════════════════════════════════════════════════════════════════
   SECTION MAP
   .ad-announcement    → Announcement bar
   .ad-header          → Sticky site header
   .ad-hero            → Hero section
   .ad-stats           → Quick stats bar
   .ad-how-it-works    → How it works steps
   .ad-specialties     → Browse by specialty
   .ad-doctors         → Top rated doctors
   .ad-clinics         → Popular clinics
   .ad-compare         → Compare doctors table
   .ad-pricing         → Pricing table
   .ad-ai-banner       → AI recommendation banner
   .ad-testimonials    → Testimonials
   .ad-app             → App download section
   .ad-footer          → Footer
   .ad-sticky-cta      → Floating sticky CTA
   .ad-modal-book      → Quick book modal
   .ad-progress        → Scroll progress bar
   .ad-back-top        → Back to top button
   .ad-global          → Global: tokens, resets, reveal, utility
═══════════════════════════════════════════════════════════════════ */


    /* ───────────────────────────────────────────────────────────────
   AD-GLOBAL  ·  design tokens · resets · reveal · utilities
─────────────────────────────────────────────────────────────── */
    .ad-global {
      --blue-deep: #0A2540;
      --BrandSecondary: #0a2540;
      --BrandSecondary-active: #0a2540ee;
      --blue-light: #E3F2FD;
      --teal: #35b6b4;
      --teal-light: #E0F2F1;
      --green: #2E7D32;
      --green-light: #E8F5E9;
      --amber: #F57C00;
      --amber-light: #FFF3E0;
      --red: #C62828;
      --white: #FFFFFF;
      --gray-50: #F8FAFC;
      --gray-100: #F1F5F9;
      --gray-200: #E2E8F0;
      --gray-400: #94A3B8;
      --gray-600: #475569;
      --gray-800: #1E293B;
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, .10);
      --shadow-lg: 0 10px 40px rgba(0, 0, 0, .12);
      --shadow-xl: 0 20px 60px rgba(0, 0, 0, .15);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --font-head: 'Sora', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
      --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
      --t-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
      --t-med: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
      --t-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

      font-family: var(--font-body);
      color: var(--gray-800);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
      box-sizing: border-box;
    }

    .ad-global *,
    .ad-global *::before,
    .ad-global *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    /* Reveal animations */
    .ad-global .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .6s var(--ease-smooth), transform .6s var(--ease-smooth);
    }

    .ad-global .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .ad-global .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity .6s var(--ease-smooth), transform .6s var(--ease-smooth);
    }

    .ad-global .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity .6s var(--ease-smooth), transform .6s var(--ease-smooth);
    }

    .ad-global .reveal-left.visible,
    .ad-global .reveal-right.visible {
      opacity: 1;
      transform: translate(0);
    }

    .ad-global .reveal-scale {
      opacity: 0;
      transform: scale(.88);
      transition: opacity .5s var(--ease-smooth), transform .5s var(--ease-bounce);
    }

    .ad-global .reveal-scale.visible {
      opacity: 1;
      transform: scale(1);
    }

    .ad-global .delay-1 {
      transition-delay: .08s !important;
    }

    .ad-global .delay-2 {
      transition-delay: .16s !important;
    }

    .ad-global .delay-3 {
      transition-delay: .24s !important;
    }

    .ad-global .delay-4 {
      transition-delay: .32s !important;
    }

    .ad-global .delay-5 {
      transition-delay: .40s !important;
    }

    .ad-global .delay-6 {
      transition-delay: .48s !important;
    }

    /* Shared btn */
    .ad-global .adg-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: .95rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      border-radius: 100px;
      padding: 12px 26px;
      transition: all var(--t-med);
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }

    .ad-global .adg-btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0);
      transition: background var(--t-fast);
    }

    .ad-global .adg-btn:hover::after {
      background: rgba(255, 255, 255, .1);
    }

    .ad-global .adg-btn.primary {
      background: var(--BrandSecondary-active);
      color: #fff;
      box-shadow: 0 4px 16px rgba(25, 118, 210, .35);
    }

    .ad-global .adg-btn.primary:hover {
      background: var(--BrandSecondary);
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 8px 28px rgba(25, 118, 210, .45);
      color: #fff;
    }

    .ad-global .adg-btn.primary:active {
      transform: translateY(0) scale(.98);
    }

    .ad-global .adg-btn.ghost {
      background: transparent;
      color: var(--BrandSecondary-active);
      border: 2px solid var(--BrandSecondary-active);
    }

    .ad-global .adg-btn.ghost:hover {
      background: var(--blue-light);
      transform: translateY(-2px);
      color: var(--BrandSecondary-active);
    }

    .ad-global .adg-btn.teal {
      background: var(--teal);
      color: #fff;
      box-shadow: 0 4px 14px rgba(0, 137, 123, .3);
    }

    .ad-global .adg-btn.teal:hover {
      filter: brightness(1.1);
      transform: translateY(-2px);
      color: #fff;
    }

    .ad-global .adg-btn.white {
      background: #fff;
      color: var(--BrandSecondary-active);
      font-weight: 700;
    }

    .ad-global .adg-btn.white:hover {
      background: var(--blue-light);
      color: var(--BrandSecondary-active);
      transform: translateY(-1px);
    }

    .ad-global .adg-btn.sm {
      padding: 8px 18px !important;
      font-size: .85rem !important;
    }

    /* Shared tags */
    .ad-global .adg-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
    }

    .ad-global .adg-tag.blue {
      background: var(--blue-light);
      color: var(--BrandSecondary-active);
    }

    .ad-global .adg-tag.green {
      background: var(--green-light);
      color: var(--green);
    }

    .ad-global .adg-tag.teal {
      background: var(--teal-light);
      color: var(--teal);
    }

    .ad-global .adg-tag.amber {
      background: var(--amber-light);
      color: var(--amber);
    }

    .ad-global .adg-tag.ghost {
      background: rgba(255, 255, 255, .15);
      color: #80DEEA;
    }

    /* Shared section title */
    .ad-global .adg-title {
      font-family: var(--font-head);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: var(--blue-deep);
      margin-bottom: 6px;
    }

    .ad-global .adg-sub {
      font-size: 1rem;
      color: var(--gray-600);
      margin-bottom: 40px;
    }

    /* Shared verified badge */
    .ad-global .adg-verified {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: .72rem;
      font-weight: 600;
      color: var(--teal);
      background: var(--teal-light);
      padding: 2px 8px;
      border-radius: 100px;
    }

    /* Shared filter chips */
    .ad-global .adg-filter-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .ad-global .adg-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #fff;
      border: 1.5px solid var(--gray-200);
      border-radius: 100px;
      padding: 8px 16px;
      font-size: .82rem;
      font-weight: 500;
      color: var(--gray-600);
      cursor: pointer;
      transition: all var(--t-fast);
      white-space: nowrap;
      user-select: none;
      position: relative;
      overflow: hidden;
    }

    .ad-global .adg-chip.active,
    .ad-global .adg-chip:hover {
      border-color: var(--BrandSecondary-active);
      color: var(--BrandSecondary-active);
      background: var(--blue-light);
    }

    .ad-global .adg-chip:active {
      transform: scale(.97);
    }

    /* Shared dot blink */
    .ad-global .adg-dot-green {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--teal);
      animation: adgBlink 1.5s infinite;
    }

    @keyframes adgBlink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .3;
      }
    }


    /* ───────────────────────────────────────────────────────────────
   AD-PROGRESS  ·  Scroll progress bar
─────────────────────────────────────────────────────────────── */
    .ad-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--BrandSecondary), #35b6b4);
      z-index: 9999;
      width: 0%;
      transition: width .1s linear;
    }


    /* ───────────────────────────────────────────────────────────────
   AD-BACK-TOP  ·  Back to top button
─────────────────────────────────────────────────────────────── */
    .ad-back-top {
      position: fixed;
      bottom: 24px;
      left: 24px;
      z-index: 900;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(10, 37, 64, .85);
      color: #fff;
      border: none;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(12px);
      transition: all .32s cubic-bezier(.4, 0, .2, 1);
      backdrop-filter: blur(8px);
    }

    .ad-back-top.show {
      opacity: 1;
      transform: translateY(0);
    }

    .ad-back-top:hover {
      background: var(--BrandSecondary);
      transform: translateY(-3px);
    }


    /* ───────────────────────────────────────────────────────────────
   AD-ANNOUNCEMENT  ·  Top announcement bar
─────────────────────────────────────────────────────────────── */
    .ad-announcement {
      background: var(--BrandSecondary);
      color: #fff;
      text-align: center;
      font-size: .82rem;
      padding: 9px 40px;
      letter-spacing: .02em;
      position: relative;
      overflow: hidden;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-announcement::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .04), transparent);
      animation: adAnnShimmer 3s infinite;
    }

    @keyframes adAnnShimmer {
      from {
        transform: translateX(-100%);
      }

      to {
        transform: translateX(100%);
      }
    }

    .ad-announcement__link {
      color: #90CAF9;
      font-weight: 600;
      text-decoration: none;
    }

    .ad-announcement__link:hover {
      color: #fff;
    }

    .ad-announcement__close {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(255, 255, 255, .5);
      cursor: pointer;
      font-size: 1rem;
      line-height: 1;
      transition: color .18s;
    }

    .ad-announcement__close:hover {
      color: #fff;
    }


    /* ───────────────────────────────────────────────────────────────
   AD-HEADER  ·  Sticky site header
─────────────────────────────────────────────────────────────── */
    .ad-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, .97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid #E2E8F0;
      box-shadow: 0 2px 20px rgba(0, 0, 0, .07);
      transition: box-shadow .32s, background .32s;
    }

    .ad-header.scrolled {
      box-shadow: 0 4px 30px rgba(0, 0, 0, .12);
      background: rgba(255, 255, 255, .99);
    }

    .ad-header__inner {
      display: flex;
      align-items: center;
      gap: 20px;
      height: 68px;
    }

    .ad-header__logo {
      font-family: 'Sora', sans-serif;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--BrandSecondary);
      text-decoration: none;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      transition: transform .18s;
    }

    .ad-header__logo:hover {
      transform: scale(1.03);
      color: var(--BrandSecondary);
    }

    .ad-header__logo-icon {
      width: 34px;
      height: 34px;
      background: var(--BrandSecondary);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      transition: transform .32s, background .32s;
    }

    .ad-header__logo:hover .ad-header__logo-icon {
      transform: rotate(-8deg) scale(1.1);
      background: #35b6b4;
    }

    .ad-header__logo-accent {
      color: var(--BrandSecondary);
    }

    .ad-header__logo-dot {
      color: #94A3B8;
      font-weight: 400;
    }

    .ad-header__nav {
      display: flex;
      align-items: center;
      gap: 2px;
      flex: 1;
      margin-left: 16px;
    }

    .ad-header__nav-item {
      position: relative;
    }

    .ad-header__nav-link {
      font-family: 'DM Sans', sans-serif;
      font-size: .875rem;
      font-weight: 500;
      color: #1E293B;
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 8px;
      transition: all .18s;
      display: flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
    }

    .ad-header__nav-link:hover {
      background: #F1F5F9;
      color: var(--BrandSecondary);
    }

    .ad-header__nav-link .chevron {
      font-size: .65rem;
      transition: transform .18s;
      display: inline-block;
    }

    .ad-header__nav-item:hover .chevron {
      transform: rotate(180deg);
    }

    /* Mega menu */
    .ad-header__mega {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
      padding: 28px;
      z-index: 999;
      width: 620px;
      animation: adHdrMegaIn .22s cubic-bezier(.4, 0, .2, 1);
    }

    .ad-header__mega.wide {
      width: 760px;
    }

    @keyframes adHdrMegaIn {
      from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
      }

      to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }
    }

    .ad-header__nav-item:hover .ad-header__mega {
      display: flex;
    }

    .ad-header__mega-col {
      flex: 1;
    }

    .ad-header__mega-col+.ad-header__mega-col {
      border-left: 1px solid #F1F5F9;
      padding-left: 24px;
      margin-left: 4px;
    }

    .ad-header__mega-heading {
      font-family: 'Sora', sans-serif;
      font-size: .7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: #94A3B8;
      margin-bottom: 14px;
    }

    .ad-header__mega-link {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .875rem;
      font-weight: 400;
      color: #1E293B;
      text-decoration: none;
      padding: 8px 10px;
      border-radius: 8px;
      transition: all .16s;
      margin-bottom: 2px;
    }

    .ad-header__mega-link:hover {
      background: #E3F2FD;
      color: var(--BrandSecondary);
      transform: translateX(4px);
    }

    .ad-header__mega-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: #F1F5F9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      flex-shrink: 0;
      transition: background .16s;
    }

    .ad-header__mega-link:hover .ad-header__mega-icon {
      background: var(--BrandSecondary);
    }

    .ad-header__mega-featured {
      background: linear-gradient(135deg, var(--BrandSecondary), var(--BrandSecondary));
      border-radius: 14px;
      padding: 18px;
      color: #fff;
      margin-top: 16px;
    }

    .ad-header__mega-featured-title {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: .95rem;
      margin-bottom: 4px;
    }

    .ad-header__mega-featured-sub {
      font-size: .8rem;
      opacity: .8;
      margin-bottom: 12px;
    }

    .ad-header__right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .ad-header__lang {
      font-size: .8rem;
      font-weight: 500;
      color: #475569;
      background: #F1F5F9;
      border: none;
      border-radius: 8px;
      padding: 6px 12px;
      cursor: pointer;
      transition: all .18s;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-header__lang:hover {
      background: #E3F2FD;
      color: var(--BrandSecondary);
    }

    .ad-header__emergency {
      display: flex;
      align-items: center;
      gap: 5px;
      background: #FFF0F0;
      color: #C62828;
      border: 1.5px solid #FFCDD2;
      border-radius: 100px;
      padding: 7px 14px;
      font-size: .8rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      animation: adHdrPulse 2s infinite;
      transition: all .18s;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-header__emergency:hover {
      background: #C62828;
      color: #fff;
      border-color: #C62828;
    }

    @keyframes adHdrPulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(198, 40, 40, .25);
      }

      50% {
        box-shadow: 0 0 0 7px rgba(198, 40, 40, 0);
      }
    }

    .ad-header__auth {
      display: flex;
      gap: 6px;
    }

    .ad-header__auth-link {
      font-size: .85rem;
      font-weight: 500;
      color: #1E293B;
      text-decoration: none;
      padding: 7px 14px;
      border-radius: 100px;
      border: 1.5px solid #E2E8F0;
      transition: all .18s;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-header__auth-link:hover {
      border-color: var(--BrandSecondary);
      color: var(--BrandSecondary);
      background: #E3F2FD;
    }

    .ad-header__hamburger {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--BrandSecondary);
      padding: 4px;
      transition: transform .18s;
    }

    .ad-header__hamburger:hover {
      transform: scale(1.1);
    }

    /* Offcanvas mobile nav */
    .ad-header__offcanvas-head {
      background: var(--BrandSecondary);
    }

    .ad-header__offcanvas-title {
      font-family: 'Sora', sans-serif;
      color: #fff;
      font-weight: 800;
    }

    .ad-header__mobile-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      color: #1E293B;
      text-decoration: none;
      font-size: .95rem;
      font-weight: 500;
      border-bottom: 1px solid #F1F5F9;
      transition: all .18s;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-header__mobile-link:hover {
      background: #E3F2FD;
      color: var(--BrandSecondary);
      padding-left: 28px;
    }

    @media (max-width: 991px) {

      .ad-header__nav,
      .ad-header__auth,
      .ad-header__lang {
        display: none !important;
      }

      .ad-header__hamburger {
        display: block !important;
      }
    }


    /* ───────────────────────────────────────────────────────────────
   AD-HERO  ·  Hero section
─────────────────────────────────────────────────────────────── */
    .ad-hero {
      background: linear-gradient(135deg, var(--BrandSecondary) 0%, #1565C0 55%, #35b6b4 100%);
      position: relative;
      overflow: hidden;
      padding: 90px 0 110px;
      min-height: 620px;
      display: flex;
      align-items: center;
    }

    .ad-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      animation: adHeroBgDrift 20s linear infinite;
    }

    @keyframes adHeroBgDrift {
      from {
        background-position: 0 0;
      }

      to {
        background-position: 60px 60px;
      }
    }

    .ad-hero::after {
      content: '';
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, .07) 0%, transparent 70%);
      top: -250px;
      right: -200px;
      pointer-events: none;
      animation: adHeroGlow 8s ease-in-out infinite alternate;
    }

    @keyframes adHeroGlow {
      from {
        transform: scale(1);
        opacity: .5;
      }

      to {
        transform: scale(1.2);
        opacity: 1;
      }
    }

    .ad-hero__blob {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 137, 123, .3) 0%, transparent 70%);
      bottom: -200px;
      left: -150px;
      pointer-events: none;
      animation: adHeroBlob 6s ease-in-out infinite alternate;
    }

    @keyframes adHeroBlob {
      from {
        transform: scale(1) rotate(0deg);
      }

      to {
        transform: scale(1.15) rotate(8deg);
      }
    }

    .ad-hero__inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .ad-hero__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .15);
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: .8rem;
      color: rgba(255, 255, 255, .9);
      font-weight: 500;
      margin-bottom: 22px;
      backdrop-filter: blur(8px);
      font-family: 'DM Sans', sans-serif;
      animation: adHeroEyebrow .6s cubic-bezier(.34, 1.56, .64, 1) .2s both;
    }

    @keyframes adHeroEyebrow {
      from {
        opacity: 0;
        transform: translateY(-16px) scale(.9);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .ad-hero__eyebrow-accent {
      color: #80DEEA;
      font-weight: 700;
    }

    .ad-hero__h1 {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: clamp(2.2rem, 4.5vw, 3.2rem);
      color: #fff;
      line-height: 1.15;
      margin-bottom: 18px;
      animation: adHeroFadeUp .7s cubic-bezier(.4, 0, .2, 1) .35s both;
    }

    @keyframes adHeroFadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .ad-hero__h1-em {
      color: #80DEEA;
      font-style: normal;
    }

    .ad-hero__sub {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, .8);
      margin-bottom: 36px;
      max-width: 480px;
      line-height: 1.7;
      font-family: 'DM Sans', sans-serif;
      animation: adHeroFadeUp .7s cubic-bezier(.4, 0, .2, 1) .45s both;
    }

    /* Search box */
    .ad-hero__search {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
      overflow: hidden;
      margin-bottom: 28px;
      animation: adHeroFadeUp .7s cubic-bezier(.4, 0, .2, 1) .55s both;
      transition: box-shadow .32s;
    }

    .ad-hero__search:focus-within {
      box-shadow: 0 0 0 3px rgba(25, 118, 210, .25), 0 20px 60px rgba(0, 0, 0, .15);
    }

    .ad-hero__search-tabs {
      display: flex;
      background: #F8FAFC;
      border-bottom: 1px solid #E2E8F0;
    }

    .ad-hero__search-tab {
      flex: 1;
      padding: 12px;
      text-align: center;
      font-size: .82rem;
      font-weight: 600;
      color: #475569;
      cursor: pointer;
      border: none;
      background: transparent;
      transition: all .18s;
      border-bottom: 2px solid transparent;
      position: relative;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-hero__search-tab::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--BrandSecondary);
      transform: scaleX(0);
      transition: transform .32s;
    }

    .ad-hero__search-tab.active {
      color: var(--BrandSecondary);
      background: #fff;
    }

    .ad-hero__search-tab.active::after {
      transform: scaleX(1);
    }

    .ad-hero__search-tab:hover:not(.active) {
      background: #F1F5F9;
    }

    .ad-hero__search-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr auto;
    }

    .ad-hero__search-field {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 18px;
      border-right: 1px solid #E2E8F0;
      transition: background .18s;
    }

    .ad-hero__search-field:focus-within {
      background: #E3F2FD;
    }

    .ad-hero__search-field label {
      font-size: .72rem;
      font-weight: 700;
      color: #94A3B8;
      display: block;
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    .ad-hero__search-field input,
    .ad-hero__search-field select {
      border: none;
      outline: none;
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem;
      color: #1E293B;
      width: 100%;
      background: transparent;
      font-weight: 500;
    }

    .ad-hero__search-icon {
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .ad-hero__search-btn {
      border-radius: 0 20px 20px 0 !important;
      padding: 0 28px !important;
      font-size: 1rem;
      background: var(--BrandSecondary);
      color: #fff;
      border: none;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      cursor: pointer;
      transition: background .18s, transform .18s;
    }

    .ad-hero__search-btn:hover {
      background: #1565C0;
    }

    .ad-hero__search-btn:active {
      transform: scale(.97);
    }

    /* Trust */
    .ad-hero__trust {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      animation: adHeroFadeUp .7s cubic-bezier(.4, 0, .2, 1) .65s both;
    }

    .ad-hero__trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .85);
      font-size: .85rem;
      font-weight: 500;
      transition: transform .18s;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-hero__trust-item:hover {
      transform: translateY(-2px);
    }

    .ad-hero__trust-icon {
      font-size: 1.2rem;
    }

    .ad-hero__trust-num {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: #fff;
    }

    /* Hero visual */
    .ad-hero__visual {
      position: relative;
      animation: adHeroVisualIn .9s cubic-bezier(.34, 1.56, .64, 1) .5s both;
    }

    @keyframes adHeroVisualIn {
      from {
        opacity: 0;
        transform: translateX(50px) scale(.95);
      }

      to {
        opacity: 1;
        transform: translateX(0) scale(1);
      }
    }

    .ad-hero__card {
      background: #fff;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
      transition: transform .32s, box-shadow .32s;
    }

    .ad-hero__card:hover {
      transform: translateY(-6px) rotate(-1deg);
      box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
    }

    .ad-hero__card-img {
      width: 100%;
      height: 240px;
      background: linear-gradient(135deg, #E3F2FD, #B2EBF2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      transition: transform .32s;
      overflow: hidden;
    }

    .ad-hero__card:hover .ad-hero__card-img {
      transform: scale(1.04);
    }

    .ad-hero__card-body {
      padding: 20px 24px;
    }

    .ad-hero__card-name {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--BrandSecondary);
      margin-bottom: 6px;
    }

    .ad-hero__card-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }

    .ad-hero__card-rating {
      display: flex;
      align-items: center;
      gap: 4px;
      font-weight: 700;
      color: #1E293B;
    }

    .ad-hero__card-dist {
      font-size: .82rem;
      color: #475569;
    }

    .ad-hero__card-price {
      font-size: .82rem;
      color: #35b6b4;
      font-weight: 600;
      background: #E0F2F1;
      padding: 3px 10px;
      border-radius: 100px;
    }

    .ad-hero__float {
      position: absolute;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
      padding: 14px 18px;
      font-size: .82rem;
      font-family: 'DM Sans', sans-serif;
      animation: adHeroFloat 3.5s ease-in-out infinite;
      transition: box-shadow .18s;
      cursor: default;
    }

    .ad-hero__float:hover {
      animation-play-state: paused;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
      transform: scale(1.06) !important;
    }

    @keyframes adHeroFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    .ad-hero__float--fc1 {
      top: -24px;
      right: -24px;
      animation-delay: 0s;
    }

    .ad-hero__float--fc2 {
      bottom: 40px;
      left: -36px;
      animation-delay: 1.4s;
    }

    .ad-hero__float-label {
      font-size: .68rem;
      color: #94A3B8;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    .ad-hero__float-val {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--BrandSecondary);
    }

    .ad-hero__float-sub {
      font-size: .72rem;
      color: #475569;
    }

    @media (max-width: 991px) {
      .ad-hero {
        padding: 60px 0 80px;
      }

      .ad-hero__inner {
        grid-template-columns: 1fr;
      }

      .ad-hero__visual {
        display: none;
      }

      .ad-hero__search-row {
        grid-template-columns: 1fr;
      }
    }


    /* ───────────────────────────────────────────────────────────────
   AD-STATS  ·  Stats bar
─────────────────────────────────────────────────────────────── */
    .ad-stats {
      background: var(--BrandSecondary);
      padding: 28px 0;
      position: relative;
      overflow: hidden;
    }

    .ad-stats::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .03), transparent);
      animation: adStatsShimmer 4s infinite;
    }

    @keyframes adStatsShimmer {
      from {
        transform: translateX(-100%);
      }

      to {
        transform: translateX(100%);
      }
    }

    .ad-stats__inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .ad-stats__item {
      text-align: center;
      padding: 0 20px;
      border-right: 1px solid rgba(255, 255, 255, .1);
      transition: transform .18s;
    }

    .ad-stats__item:hover {
      transform: translateY(-3px);
    }

    .ad-stats__item:last-child {
      border-right: none;
    }

    .ad-stats__num {
      font-family: 'Sora', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }

    .ad-stats__label {
      font-size: .85rem;
      color: rgba(255, 255, 255, .6);
      margin-top: 4px;
      font-family: 'DM Sans', sans-serif;
    }

    @media (max-width: 767px) {
      .ad-stats__inner {
        grid-template-columns: repeat(2, 1fr);
      }
    }


    /* ───────────────────────────────────────────────────────────────
   AD-HOW-IT-WORKS  ·  Steps section
─────────────────────────────────────────────────────────────── */
    .ad-how-it-works {
      padding: 80px 0;
      background: #F8FAFC;
    }
    .ad-how-it-works .top-heading {
        text-align: center;
    }

    .ad-how-it-works__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .ad-how-it-works__card {
      text-align: center;
      padding: 36px 24px;
      background: #fff;
      border-radius: 20px;
      border: 1px solid #E2E8F0;
      position: relative;
      transition: all .32s;
      cursor: default;
    }

    .ad-how-it-works__card:hover {
      box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
      transform: translateY(-6px);
      border-color: #E3F2FD;
    }

    .ad-how-it-works__card:hover .ad-how-it-works__icon {
      animation: adHiwIconBounce .5s cubic-bezier(.34, 1.56, .64, 1);
    }

    @keyframes adHiwIconBounce {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.25) rotate(-8deg);
      }
    }

    .ad-how-it-works__card::after {
      content: '→';
      position: absolute;
      right: -14px;
      top: 50%;
      transform: translateY(-50%);
      color: #94A3B8;
      font-size: 1.4rem;
      z-index: 1;
    }

    .ad-how-it-works__card:last-child::after {
      display: none;
    }

    .ad-how-it-works__num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #E3F2FD;
      color: var(--BrandSecondary);
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      border: 2px solid rgba(25, 118, 210, .2);
      transition: all .32s;
    }

    .ad-how-it-works__card:hover .ad-how-it-works__num {
      background: var(--BrandSecondary);
      color: #fff;
      transform: scale(1.12);
    }

    .ad-how-it-works__icon {
      font-size: 2.4rem;
      margin-bottom: 14px;
      transition: transform .18s;
    }

    .ad-how-it-works__title {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--BrandSecondary);
      margin-bottom: 8px;
    }

    .ad-how-it-works__desc {
      font-size: .875rem;
      color: #475569;
      line-height: 1.65;
      font-family: 'DM Sans', sans-serif;
    }

    @media (max-width: 767px) {
      .ad-how-it-works__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575px) {
      .ad-how-it-works__grid {
        grid-template-columns: 1fr;
      }
    }


    /* ───────────────────────────────────────────────────────────────
   AD-SPECIALTIES  ·  Browse by specialty
─────────────────────────────────────────────────────────────── */
    .ad-specialties {
      padding: 80px 0;
      background: #fff;
    }

    .ad-specialties__grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 16px;
    }

    .ad-specialties__card {
      background: #fff;
      border: 1.5px solid #E2E8F0;
      border-radius: 14px;
      padding: 22px 16px;
      text-align: center;
      cursor: pointer;
      text-decoration: none;
      transition: all .32s;
      display: block;
      position: relative;
      overflow: hidden;
    }

    .ad-specialties__card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #E3F2FD, #E0F2F1);
      opacity: 0;
      transition: opacity .32s;
    }

    .ad-specialties__card:hover {
      border-color: var(--BrandSecondary);
      box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
      transform: translateY(-5px) scale(1.02);
    }

    .ad-specialties__card:hover::before {
      opacity: 1;
    }

    .ad-specialties__card:active {
      transform: scale(.98);
    }

    .ad-specialties__icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: #E3F2FD;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin: 0 auto 12px;
      transition: all .32s;
      position: relative;
      z-index: 1;
    }

    .ad-specialties__card:hover .ad-specialties__icon-wrap {
      background: var(--BrandSecondary);
      transform: rotate(-8deg) scale(1.1);
    }

    .ad-specialties__name {
      font-size: .82rem;
      font-weight: 600;
      color: #1E293B;
      position: relative;
      z-index: 1;
      transition: color .18s;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-specialties__count {
      font-size: .72rem;
      color: #94A3B8;
      margin-top: 3px;
      position: relative;
      z-index: 1;
      transition: color .18s;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-specialties__card:hover .ad-specialties__name {
      color: var(--BrandSecondary);
    }

    .ad-specialties__card:hover .ad-specialties__count {
      color: var(--BrandSecondary);
    }


    /* ───────────────────────────────────────────────────────────────
   AD-DOCTORS  ·  Top rated doctors
─────────────────────────────────────────────────────────────── */
    .ad-doctors {
      padding: 80px 0;
      background: #F8FAFC;
    }

    .ad-doctors__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .ad-doctors__card {
      background: #fff;
      border: 1.5px solid #E2E8F0;
      border-radius: 20px;
      overflow: hidden;
      transition: all .32s;
    }

    .ad-doctors__card:hover {
      box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
      transform: translateY(-6px);
      border-color: #E3F2FD;
    }

    .ad-doctors__card-header {
      background: linear-gradient(135deg, #E3F2FD, #E0F2F1);
      padding: 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      position: relative;
    }

    .ad-doctors__avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--BrandSecondary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      border: 3px solid #fff;
      box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
      transition: transform .32s;
    }

    .ad-doctors__card:hover .ad-doctors__avatar {
      transform: scale(1.08) rotate(-5deg);
    }

    .ad-doctors__info {
      flex: 1;
    }

    .ad-doctors__name {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--BrandSecondary);
      margin-bottom: 3px;
    }

    .ad-doctors__spec {
      font-size: .8rem;
      color: #475569;
      margin-bottom: 6px;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-doctors__rating-row {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .ad-doctors__rating-val {
      font-weight: 700;
      font-size: .9rem;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-doctors__rating-ct {
      font-size: .75rem;
      color: #94A3B8;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-doctors__badge {
      position: absolute;
      top: 12px;
      right: 12px;
    }

    .ad-doctors__card-body {
      padding: 16px 20px;
    }

    .ad-doctors__meta-row {
      display: flex;
      gap: 16px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }

    .ad-doctors__meta {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: .8rem;
      color: #475569;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-doctors__meta strong {
      color: #1E293B;
      font-weight: 600;
    }

    .ad-doctors__tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }

    .ad-doctors__tag {
      font-size: .72rem;
      background: #F1F5F9;
      color: #475569;
      padding: 3px 10px;
      border-radius: 100px;
      transition: all .18s;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-doctors__tag:hover {
      background: #E3F2FD;
      color: var(--BrandSecondary);
    }

    .ad-doctors__price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .ad-doctors__price {
      font-family: 'Sora', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #2E7D32;
    }

    .ad-doctors__price small {
      font-size: .72rem;
      font-weight: 400;
      color: #94A3B8;
      display: block;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-doctors__avail {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: .78rem;
      color: #35b6b4;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-doctors__card-footer {
      padding: 12px 20px;
      background: #F8FAFC;
      border-top: 1px solid #E2E8F0;
      display: flex;
      gap: 8px;
    }

    .ad-doctors__card-footer .adg-btn {
      flex: 1;
      justify-content: center;
      font-size: .82rem;
      padding: 9px 12px;
    }

    @media (max-width: 991px) {
      .ad-doctors__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575px) {
      .ad-doctors__grid {
        grid-template-columns: 1fr;
      }
    }


    /* ───────────────────────────────────────────────────────────────
   AD-CLINICS  ·  Popular clinics
─────────────────────────────────────────────────────────────── */
    .ad-clinics {
      padding: 80px 0;
      background: #fff;
    }

    .ad-clinics__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .ad-clinics__card {
      background: #fff;
      border: 1.5px solid #E2E8F0;
      border-radius: 20px;
      overflow: hidden;
      transition: all .32s;
    }

    .ad-clinics__card:hover {
      box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
      transform: translateY(-6px);
    }

    .ad-clinics__img {
      height: 180px;
      background: linear-gradient(135deg, #E3F2FD, #E0F2F1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      position: relative;
      overflow: hidden;
      transition: transform .32s;
    }

    .ad-clinics__card:hover .ad-clinics__img {
      transform: scale(1.04);
    }

    .ad-clinics__verified {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #35b6b4;
      color: #fff;
      font-size: .7rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 4px;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-clinics__body {
      padding: 18px 20px;
    }

    .ad-clinics__name {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--BrandSecondary);
      margin-bottom: 4px;
    }

    .ad-clinics__loc {
      font-size: .82rem;
      color: #475569;
      margin-bottom: 10px;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-clinics__tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }

    .ad-clinics__tag {
      font-size: .72rem;
      background: #E3F2FD;
      color: var(--BrandSecondary);
      padding: 3px 9px;
      border-radius: 100px;
      font-weight: 500;
      transition: all .18s;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-clinics__tag:hover {
      background: var(--BrandSecondary);
      color: #fff;
    }

    .ad-clinics__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .ad-clinics__stats {
      display: flex;
      gap: 14px;
    }

    .ad-clinics__stat {
      font-size: .78rem;
      color: #475569;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-clinics__stat strong {
      display: block;
      font-size: .95rem;
      color: #1E293B;
      font-weight: 700;
    }

    @media (max-width: 991px) {
      .ad-clinics__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575px) {
      .ad-clinics__grid {
        grid-template-columns: 1fr;
      }
    }


    /* ───────────────────────────────────────────────────────────────
   AD-COMPARE  ·  Compare doctors table
─────────────────────────────────────────────────────────────── */
    .ad-compare {
      padding: 80px 0;
      background: #F8FAFC;
    }

    .ad-compare__wrap {
      background: var(--BrandSecondary);
      border-radius: 28px;
      padding: 48px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .ad-compare__wrap::after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(25, 118, 210, .2) 0%, transparent 70%);
      top: -150px;
      right: -100px;
      pointer-events: none;
    }

    .ad-compare__title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      margin-top: 8px;
    }

    .ad-compare__sub {
      color: rgba(255, 255, 255, .7);
      margin-bottom: 0;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-compare__table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 32px;
      position: relative;
      z-index: 1;
    }

    .ad-compare__table th,
    .ad-compare__table td {
      padding: 14px 20px;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .ad-compare__table th {
      font-family: 'Sora', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: rgba(255, 255, 255, .5);
    }

    .ad-compare__table td {
      font-size: .9rem;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-compare__table tbody tr {
      transition: background .18s;
    }

    .ad-compare__table tbody tr:hover {
      background: rgba(255, 255, 255, .05);
    }

    .ad-compare__doc-cell {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .ad-compare__avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--BrandSecondary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .ad-compare__winner {
      color: #80DEEA;
      font-weight: 700;
    }

    .ad-compare__best {
      background: rgba(0, 137, 123, .25);
      border-radius: 100px;
      padding: 2px 10px;
      font-size: .72rem;
      font-weight: 700;
      color: #80CBC4;
      display: inline-block;
    }

    @media (max-width: 767px) {
      .ad-compare__wrap {
        padding: 28px;
      }
    }


    /* ───────────────────────────────────────────────────────────────
   AD-PRICING  ·  Pricing table
─────────────────────────────────────────────────────────────── */
    .ad-pricing {
      padding: 80px 0;
      background: #fff;
    }

    .ad-pricing__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .ad-pricing__card {
      background: #fff;
      border: 1.5px solid #E2E8F0;
      border-radius: 20px;
      padding: 28px 24px;
      transition: all .32s;
      position: relative;
      overflow: hidden;
    }

    .ad-pricing__card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--BrandSecondary), #35b6b4);
      transform: scaleX(0);
      transition: transform .32s;
    }

    .ad-pricing__card:hover::before {
      transform: scaleX(1);
    }

    .ad-pricing__card--featured {
      border-color: var(--BrandSecondary);
      box-shadow: 0 0 0 3px rgba(25, 118, 210, .1);
    }

    .ad-pricing__card--featured::before {
      transform: scaleX(1);
    }

    .ad-pricing__card:hover {
      box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
      transform: translateY(-5px);
    }

    .ad-pricing__icon {
      font-size: 2.2rem;
      margin-bottom: 14px;
      transition: transform .32s;
    }

    .ad-pricing__card:hover .ad-pricing__icon {
      transform: scale(1.15) rotate(-5deg);
    }

    .ad-pricing__name {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--BrandSecondary);
      margin-bottom: 6px;
    }

    .ad-pricing__range {
      font-size: 1.5rem;
      font-weight: 800;
      color: #2E7D32;
      font-family: 'Sora', sans-serif;
    }

    .ad-pricing__range small {
      font-size: .8rem;
      font-weight: 400;
      color: #94A3B8;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-pricing__list {
      margin-top: 14px;
      font-size: .82rem;
      color: #475569;
      list-style: none;
      padding: 0;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-pricing__list li {
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .ad-pricing__list li::before {
      content: '✓';
      color: #35b6b4;
      font-weight: 700;
    }

    .ad-pricing__cta {
      margin-top: 20px;
    }

    @media (max-width: 991px) {
      .ad-pricing__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575px) {
      .ad-pricing__grid {
        grid-template-columns: 1fr;
      }
    }


    /* ───────────────────────────────────────────────────────────────
   AD-AI-BANNER  ·  AI recommendation
─────────────────────────────────────────────────────────────── */
    .ad-ai-banner {
      padding: 80px 0;
      background: #F8FAFC;
    }

    .ad-ai-banner__inner {
      background: linear-gradient(135deg, var(--BrandSecondary) 0%, #35b6b4 100%);
      border-radius: 28px;
      padding: 48px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .ad-ai-banner__inner::before {
      content: '';
      position: absolute;
      right: -60px;
      top: -60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .05);
      animation: adAiBannerGlow 5s ease-in-out infinite alternate;
    }

    @keyframes adAiBannerGlow {
      from {
        transform: scale(1);
      }

      to {
        transform: scale(1.3);
      }
    }

    .ad-ai-banner__title {
      font-family: 'Sora', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
    }

    .ad-ai-banner__sub {
      color: rgba(255, 255, 255, .75);
      font-size: 1rem;
      margin-bottom: 24px;
      line-height: 1.65;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-ai-banner__feats {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .ad-ai-banner__feat {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .85);
      font-size: .875rem;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-ai-banner__feat-icon {
      font-size: 1.1rem;
    }

    .ad-ai-banner__cta {
      margin-top: 24px;
    }

    .ad-ai-banner__panel {
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 20px;
      padding: 24px;
      min-width: 280px;
      backdrop-filter: blur(8px);
      transition: transform .32s;
    }

    .ad-ai-banner__panel:hover {
      transform: translateY(-4px);
    }

    .ad-ai-banner__panel-title {
      font-family: 'Sora', sans-serif;
      font-size: .875rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }

    .ad-ai-banner__msg {
      background: rgba(255, 255, 255, .15);
      border-radius: 8px;
      padding: 10px 14px;
      font-size: .82rem;
      color: rgba(255, 255, 255, .9);
      margin-bottom: 8px;
      border-left: 3px solid #80DEEA;
      transition: border-color .18s;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-ai-banner__msg:hover {
      border-color: #fff;
    }

    .ad-ai-banner__result {
      background: rgba(255, 255, 255, .9);
      border-radius: 8px;
      padding: 12px;
      margin-top: 12px;
      display: flex;
      gap: 10px;
      align-items: center;
      transition: transform .18s;
    }

    .ad-ai-banner__result:hover {
      transform: scale(1.02);
    }

    .ad-ai-banner__res-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--BrandSecondary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .ad-ai-banner__res-name {
      font-weight: 700;
      font-size: .85rem;
      color: var(--BrandSecondary);
      font-family: 'DM Sans', sans-serif;
    }

    .ad-ai-banner__res-why {
      font-size: .72rem;
      color: #475569;
      font-family: 'DM Sans', sans-serif;
    }

    @media (max-width: 991px) {
      .ad-ai-banner__inner {
        grid-template-columns: 1fr;
      }
    }


    /* ───────────────────────────────────────────────────────────────
   AD-TESTIMONIALS  ·  Patient testimonials
─────────────────────────────────────────────────────────────── */
    .ad-testimonials {
      padding: 80px 0;
      background: #fff;
    }

    .ad-testimonials__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .ad-testimonials__card {
      background: #fff;
      border: 1.5px solid #E2E8F0;
      border-radius: 20px;
      padding: 28px;
      position: relative;
      transition: all .32s;
    }

    .ad-testimonials__card:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
      transform: translateY(-4px);
      border-color: #E3F2FD;
    }

    .ad-testimonials__card::before {
      content: '"';
      font-family: Georgia, serif;
      font-size: 5rem;
      color: #E3F2FD;
      position: absolute;
      top: 10px;
      left: 20px;
      line-height: 1;
      transition: color .32s;
    }

    .ad-testimonials__card:hover::before {
      color: var(--BrandSecondary);
      opacity: .25;
    }

    .ad-testimonials__stars {
      display: flex;
      gap: 2px;
      margin-bottom: 14px;
    }

    .ad-testimonials__text {
      font-size: .925rem;
      color: #475569;
      line-height: 1.75;
      margin-bottom: 20px;
      padding-top: 20px;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-testimonials__author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .ad-testimonials__avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--BrandSecondary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: transform .18s;
    }

    .ad-testimonials__card:hover .ad-testimonials__avatar {
      transform: scale(1.1) rotate(-5deg);
    }

    .ad-testimonials__name {
      font-weight: 700;
      font-size: .9rem;
      color: var(--BrandSecondary);
      font-family: 'DM Sans', sans-serif;
    }

    .ad-testimonials__meta {
      font-size: .77rem;
      color: #94A3B8;
      font-family: 'DM Sans', sans-serif;
    }

    @media (max-width: 991px) {
      .ad-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575px) {
      .ad-testimonials__grid {
        grid-template-columns: 1fr;
      }
    }


    /* ───────────────────────────────────────────────────────────────
   AD-APP  ·  App download section
─────────────────────────────────────────────────────────────── */
    .ad-app {
      background: var(--BrandSecondary);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .ad-app::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(25, 118, 210, .3) 0%, transparent 60%);
    }

    .ad-app__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .ad-app__title {
      font-family: 'Sora', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
      line-height: 1.25;
    }

    .ad-app__sub {
      color: rgba(255, 255, 255, .75);
      margin-bottom: 32px;
      line-height: 1.7;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-app__btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .ad-app__btn {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, .12);
      border: 1.5px solid rgba(255, 255, 255, .25);
      border-radius: 14px;
      padding: 12px 20px;
      cursor: pointer;
      text-decoration: none;
      transition: all .18s;
    }

    .ad-app__btn:hover {
      background: rgba(255, 255, 255, .22);
      transform: translateY(-3px);
      border-color: rgba(255, 255, 255, .5);
    }

    .ad-app__btn-icon {
      font-size: 1.8rem;
      transition: transform .18s;
    }

    .ad-app__btn:hover .ad-app__btn-icon {
      transform: scale(1.15) rotate(-5deg);
    }

    .ad-app__btn-text {
      color: #fff;
    }

    .ad-app__btn-label {
      font-size: .7rem;
      opacity: .75;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-app__btn-store {
      font-weight: 700;
      font-size: .95rem;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-app__whatsapp {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #25D366;
      border-radius: 14px;
      padding: 16px 24px;
      cursor: pointer;
      max-width: 340px;
      text-decoration: none;
      transition: all .32s;
    }

    .ad-app__whatsapp:hover {
      filter: brightness(1.08);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
    }

    .ad-app__wa-icon {
      font-size: 1.8rem;
      transition: transform .18s;
    }

    .ad-app__whatsapp:hover .ad-app__wa-icon {
      transform: scale(1.15) rotate(-8deg);
    }

    .ad-app__wa-text {
      color: #fff;
    }

    .ad-app__wa-label {
      font-size: .75rem;
      opacity: .85;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-app__wa-cta {
      font-weight: 700;
      font-size: 1rem;
      font-family: 'DM Sans', sans-serif;
    }

    /* Phone mockup */
    .ad-app__mockup {
      display: flex;
      justify-content: center;
      background: rgba(255, 255, 255, .05);
      border-radius: 28px;
      padding: 40px;
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .ad-app__phone {
      width: 220px;
      background: var(--BrandSecondary);
      border-radius: 32px;
      border: 3px solid rgba(255, 255, 255, .15);
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
      animation: adAppPhoneFloat 4s ease-in-out infinite;
    }

    @keyframes adAppPhoneFloat {

      0%,
      100% {
        transform: translateY(0) rotate(-1deg);
      }

      50% {
        transform: translateY(-12px) rotate(1deg);
      }
    }

    .ad-app__phone-header {
      background: var(--BrandSecondary);
      padding: 12px 16px;
      text-align: center;
    }

    .ad-app__phone-logo {
      font-family: 'Sora', sans-serif;
      font-size: .875rem;
      font-weight: 800;
      color: #fff;
    }

    .ad-app__phone-body {
      padding: 14px;
    }

    .ad-app__phone-search {
      background: rgba(255, 255, 255, .15);
      border-radius: 20px;
      padding: 8px 14px;
      font-size: .7rem;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 10px;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-app__phone-label {
      font-size: .65rem;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 8px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-app__phone-card {
      background: rgba(255, 255, 255, .1);
      border-radius: 12px;
      padding: 12px;
      margin-bottom: 8px;
      display: flex;
      gap: 10px;
      align-items: center;
      transition: background .18s;
      cursor: pointer;
    }

    .ad-app__phone-card:hover {
      background: rgba(255, 255, 255, .18);
    }

    .ad-app__phone-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #35b6b4;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
    }

    .ad-app__phone-doc-name {
      font-size: .7rem;
      font-weight: 700;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-app__phone-doc-spec {
      font-size: .62rem;
      color: rgba(255, 255, 255, .6);
      font-family: 'DM Sans', sans-serif;
    }

    .ad-app__phone-book {
      margin-top: 10px;
      background: var(--BrandSecondary);
      border-radius: 20px;
      padding: 10px;
      text-align: center;
      font-size: .72rem;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
      transition: filter .2s;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-app__phone-book:hover {
      filter: brightness(1.2);
    }

    @media (max-width: 991px) {
      .ad-app__inner {
        grid-template-columns: 1fr;
      }
    }


    /* ───────────────────────────────────────────────────────────────
   AD-FOOTER  ·  Site footer
─────────────────────────────────────────────────────────────── */
    .ad-footer {
      background: var(--BrandSecondary);
      color: rgba(255, 255, 255, .75);
      padding: 60px 0 24px;
    }

    .ad-footer__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .ad-footer__logo {
      font-family: 'Sora', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ad-footer__logo-accent {
      color: var(--BrandSecondary);
    }

    .ad-footer__desc {
      font-size: .875rem;
      line-height: 1.7;
      margin-bottom: 18px;
      max-width: 280px;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-footer__socials {
      display: flex;
      gap: 10px;
    }

    .ad-footer__social {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      text-decoration: none;
      transition: all .18s;
    }

    .ad-footer__social:hover {
      background: var(--BrandSecondary);
      transform: translateY(-3px) scale(1.1);
    }

    .ad-footer__col-title {
      font-family: 'Sora', sans-serif;
      font-size: .875rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
    }

    .ad-footer__links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .ad-footer__links li {
      margin-bottom: 10px;
    }

    .ad-footer__links a {
      font-size: .85rem;
      color: rgba(255, 255, 255, .65);
      text-decoration: none;
      transition: all .18s;
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-footer__links a:hover {
      color: #fff;
      transform: translateX(4px);
    }

    .ad-footer__bottom {
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .8rem;
      flex-wrap: wrap;
      gap: 12px;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-footer__bottom-links {
      display: flex;
      gap: 20px;
    }

    .ad-footer__bottom-links a {
      color: rgba(255, 255, 255, .5);
      text-decoration: none;
      transition: color .18s;
    }

    .ad-footer__bottom-links a:hover {
      color: #fff;
    }

    @media (max-width: 991px) {
      .ad-footer__grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 575px) {
      .ad-footer__grid {
        grid-template-columns: 1fr;
      }
    }


    /* ───────────────────────────────────────────────────────────────
   AD-STICKY-CTA  ·  Floating action buttons
─────────────────────────────────────────────────────────────── */
    .ad-sticky-cta {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 900;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-end;
    }

    .ad-sticky-cta__whatsapp {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
      text-decoration: none;
      animation: adStickyFloat 2.8s ease-in-out infinite;
      transition: transform .18s, box-shadow .18s;
    }

    .ad-sticky-cta__whatsapp:hover {
      animation-play-state: paused;
      transform: scale(1.15);
      box-shadow: 0 8px 28px rgba(37, 211, 102, .65);
    }

    @keyframes adStickyFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    .ad-sticky-cta__book {
      background: var(--BrandSecondary);
      color: #fff;
      padding: 12px 22px;
      border-radius: 100px;
      font-weight: 600;
      font-size: .875rem;
      box-shadow: 0 4px 20px rgba(25, 118, 210, .5);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: all .18s;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-sticky-cta__book:hover {
      transform: translateY(-3px) scale(1.04);
      box-shadow: 0 8px 28px rgba(25, 118, 210, .6);
      color: #fff;
    }


    /* ───────────────────────────────────────────────────────────────
   AD-MODAL-BOOK  ·  Quick book modal
─────────────────────────────────────────────────────────────── */
    .ad-modal-book .modal-content {
      border-radius: 28px;
      border: none;
      overflow: hidden;
    }

    .ad-modal-book .ad-modal-book__header {
      background: var(--BrandSecondary);
      border: none;
    }

    .ad-modal-book .ad-modal-book__title {
      font-family: 'Sora', sans-serif;
      color: #fff;
      font-weight: 700;
    }

    .ad-modal-book .ad-modal-book__body {
      padding: 1.5rem;
    }

    .ad-modal-book .ad-modal-book__label {
      font-size: .85rem;
      font-weight: 600;
      color: #475569;
      font-family: 'DM Sans', sans-serif;
    }

    .ad-modal-book .form-control,
    .ad-modal-book .form-select {
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      border-color: #E2E8F0;
    }

    .ad-modal-book .form-control:focus,
    .ad-modal-book .form-select:focus {
      border-color: var(--BrandSecondary);
      box-shadow: 0 0 0 3px rgba(25, 118, 210, .15);
    }

    .ad-modal-book .ad-modal-book__footer {
      border: none;
      padding: 16px 24px 24px;
    }


    /* Ripple keyframe — used by jQuery */
    @keyframes adRipple {
      to {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
      }
    }