 /* ═══════════════════════════════════════════
     DESIGN TOKENS — Premium Medical Aesthetic
  ═══════════════════════════════════════════ */
        :root {
            --navy: #08192e;
            --navy-2: #0e2540;
            --navy-3: #183558;
            --blue: #1a5ea8;
            --blue-2: #1e6fc0;
            --sky: #e8f1fb;
            --sky-2: #d4e5f7;
            --gold: #b8790e;
            --gold-2: #d4921a;
            --gold-bg: #fdf6e8;
            --red: #c0392b;
            --white: #ffffff;
            --off: #f4f7fc;
            --text: #141e2d;
            --muted: #4a5d72;
            --border: #d6e0ee;
            --green: #0b6b3a;
            --green-bg: #e5f5ed;
            --sh-sm: 0 2px 10px rgba(8, 25, 46, .06);
            --sh: 0 4px 24px rgba(8, 25, 46, .10);
            --sh-lg: 0 12px 48px rgba(8, 25, 46, .14);
            --sh-xl: 0 24px 80px rgba(8, 25, 46, .18);
            --r: 12px;
            --r-lg: 20px;
            --r-xl: 28px;
        }

        /* ════ RESET ════ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale
        }

        img {
            max-width: 100%;
            height: auto;
            display: block
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s
        }

        ul {
            list-style: none
        }

        /* SKIP LINK */
        .skip {
            position: absolute;
            top: -48px;
            left: 0;
            background: var(--navy);
            color: #fff;
            padding: 10px 18px;
            z-index: 9999;
            border-radius: 0 0 8px 0;
            font-size: .85rem;
            transition: top .2s
        }

        .skip:focus {
            top: 0
        }

        /* ════ UTILITY ════ */
        .wrap {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 5%
        }

        .lbl {
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--blue);
            display: block;
            margin-bottom: 8px
        }

        .h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 3.2vw, 2.7rem);
            color: var(--navy);
            line-height: 1.18;
            margin-bottom: 12px;
            font-weight: 700
        }

        .h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.3rem, 2vw, 1.7rem);
            color: var(--navy);
            line-height: 1.25;
            font-weight: 600
        }

        .lead {
            font-size: .97rem;
            color: var(--muted);
            line-height: 1.78
        }

        .rule {
            width: 52px;
            height: 3px;
            background: linear-gradient(90deg, var(--blue), var(--gold-2));
            border-radius: 2px;
            margin: 14px 0 50px
        }

        .rule.center {
            margin-left: auto;
            margin-right: auto
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: .72rem;
            font-weight: 700
        }

        .tag-blue {
            background: var(--sky);
            color: var(--blue)
        }

        .tag-gold {
            background: var(--gold-bg);
            color: var(--gold)
        }

        .tag-green {
            background: var(--green-bg);
            color: var(--green)
        }

        .tag-navy {
            background: var(--off);
            color: var(--navy);
            border: 1px solid var(--border)
        }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 26px;
            border-radius: 10px;
            font-weight: 600;
            font-size: .9rem;
            text-decoration: none;
            transition: all .22s;
            cursor: pointer;
            border: none;
            font-family: 'DM Sans', sans-serif;
            letter-spacing: .01em;
            line-height: 1
        }

        .btn-primary {
            background: var(--navy);
            color: #fff;
            box-shadow: 0 4px 18px rgba(8, 25, 46, .25)
        }

        .btn-primary:hover {
            background: var(--navy-3);
            transform: translateY(-2px);
            box-shadow: 0 6px 28px rgba(8, 25, 46, .32)
        }

        .btn-wa {
            background: #25d366;
            color: #fff;
            box-shadow: 0 4px 14px rgba(37, 211, 102, .22)
        }

        .btn-wa:hover {
            background: #1db954;
            transform: translateY(-2px)
        }

        .btn-gold {
            background: var(--gold-2);
            color: #fff;
            box-shadow: 0 4px 14px rgba(212, 146, 26, .25)
        }

        .btn-gold:hover {
            background: var(--gold);
            transform: translateY(-2px)
        }

        .btn-outline {
            background: #fff;
            color: var(--navy);
            border: 2px solid var(--navy)
        }

        .btn-outline:hover {
            background: var(--sky)
        }

        .btn-sm {
            padding: 9px 18px;
            font-size: .82rem
        }

        /* ════ NAV ════ */
        #nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            background: rgba(255, 255, 255, .97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            height: 68px;
            display: flex;
            align-items: center;
            transition: box-shadow .3s
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 5%
        }

        /* ── LOGO — Replace src with doctor's actual logo image ── */
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 11px;
            text-decoration: none;
            flex-shrink: 0
        }

        .nav-logo-img {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            object-fit: contain;
            /* INSERT DOCTOR LOGO IMAGE HERE:
       Replace the background with: <img src="logo.png" alt="Dr Aseem Goyal Logo">
       or set background-image:url('logo.png') */
            background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            flex-shrink: 0;
        }

        .nav-logo-text {
            line-height: 1.15
        }

        .nav-logo-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--navy);
            display: block
        }

        .nav-logo-sub {
            font-size: .65rem;
            color: var(--blue);
            font-weight: 600;
            letter-spacing: .07em;
            text-transform: uppercase
        }

        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center
        }

        .nav-links a {
            font-size: .85rem;
            font-weight: 500;
            color: var(--text);
            padding: 4px 2px;
            border-bottom: 2px solid transparent;
            transition: color .2s, border-color .2s;
            white-space: nowrap
        }

        .nav-links a:hover {
            color: var(--blue);
            border-bottom-color: var(--blue)
        }

        .nav-cta {
            background: var(--navy);
            color: #fff;
            padding: 9px 20px;
            border-radius: 9px;
            font-size: .84rem;
            font-weight: 600;
            transition: background .2s, transform .15s;
            white-space: nowrap;
            flex-shrink: 0
        }

        .nav-cta:hover {
            background: var(--navy-3);
            transform: translateY(-1px)
        }

        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 6px
        }

        .burger span {
            width: 23px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            display: block;
            transition: all .3s
        }

        /* MOBILE MENU */
        #mob {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 499;
            background: #fff;
            padding: 82px 6% 40px;
            flex-direction: column;
            overflow-y: auto
        }

        #mob.open {
            display: flex
        }

        #mob a {
            display: block;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            font-size: 1rem;
            font-weight: 600;
            color: var(--text)
        }

        #mob a:hover {
            color: var(--blue)
        }

        #mob .mob-cta {
            margin-top: 22px;
            background: var(--navy);
            color: #fff;
            text-align: center;
            border-radius: 10px;
            padding: 14px;
            border: none;
            font-size: .95rem;
            font-weight: 700
        }

        #mob .mob-wa {
            margin-top: 10px;
            background: #25d366;
            color: #fff;
            text-align: center;
            border-radius: 10px;
            padding: 12px;
            border: none;
            font-size: .9rem;
            font-weight: 600
        }

        /* ════ HERO ════ */
        #home {
            min-height: 100vh;
            padding: 100px 0 60px;
            display: flex;
            align-items: center;
            background: linear-gradient(155deg, #eaf1fb 0%, #e0ecf8 35%, #f5f8fe 70%, #fff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-blob {
            position: absolute;
            border-radius: 50%;
            pointer-events: none
        }

        .hero-blob-1 {
            top: -180px;
            right: -180px;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(8, 25, 46, .04) 0%, transparent 70%)
        }

        .hero-blob-2 {
            bottom: -160px;
            left: -100px;
            width: 560px;
            height: 560px;
            background: radial-gradient(circle, rgba(212, 146, 26, .04) 0%, transparent 70%)
        }

        .hero-blob-3 {
            top: 30%;
            left: 40%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(26, 94, 168, .03) 0%, transparent 70%)
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 5%
        }

        /* Pill */
        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1px solid var(--sky-2);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: .75rem;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 18px;
            box-shadow: var(--sh-sm)
        }

        .hero-pill-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--gold-2);
            animation: pulse 2s ease-in-out infinite
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .6;
                transform: scale(1.15)
            }
        }

        .hero-h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 5vw, 4rem);
            line-height: 1.05;
            color: var(--navy);
            margin-bottom: 8px;
            font-weight: 700
        }

        .hero-h1 em {
            color: var(--blue);
            font-style: normal
        }

        .hero-deg {
            font-size: .93rem;
            font-weight: 700;
            color: var(--blue);
            letter-spacing: .04em;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap
        }

        .hero-deg-sep {
            color: var(--border)
        }

        .hero-p {
            font-size: 1rem;
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 32px;
            max-width: 500px
        }

        /* KPIs */
        .hero-kpis {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border: 1px solid var(--border);
            border-radius: 14px;
            background: #fff;
            overflow: hidden;
            margin-bottom: 36px;
            box-shadow: var(--sh-sm)
        }

        .kpi {
            padding: 14px 10px;
            text-align: center;
            border-right: 1px solid var(--border)
        }

        .kpi:last-child {
            border-right: none
        }

        .kpi-n {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--navy);
            line-height: 1
        }

        .kpi-l {
            font-size: .67rem;
            color: var(--muted);
            font-weight: 500;
            margin-top: 3px;
            letter-spacing: .01em;
            line-height: 1.3
        }

        .hero-btns {
            display: flex;
            gap: 10px;
            flex-wrap: wrap
        }

        /* Hero Doctor Card */
        .doc-card {
            background: #fff;
            border-radius: var(--r-xl);
            box-shadow: var(--sh-xl);
            overflow: hidden;
            max-width: 390px;
            margin: 0 auto;
            width: 100%
        }

        .doc-card-banner {
            background: linear-gradient(140deg, var(--navy) 0%, var(--navy-3) 100%);
            padding: 32px 24px 48px;
            text-align: center;
            position: relative;
            border-radius: var(--r-xl) var(--r-xl) 0 0;
        }

        .doc-card-banner::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 28px;
            background: #fff;
            border-radius: 28px 28px 0 0
        }

        /* ── DOCTOR PHOTO — replace emoji with actual image ── */
        .doc-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, .35);
            margin: 0 auto 14px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, .12);
            font-size: 3rem;
            /* INSERT DOCTOR PHOTO:
       Replace content inside with: <img src="dr-aseem-goyal.jpg" alt="Dr Aseem Goyal Orthopaedic Surgeon Chandigarh"> */
        }

        .doc-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .doc-card-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            color: #fff;
            font-weight: 700;
            margin-bottom: 3px
        }

        .doc-card-deg {
            font-size: .78rem;
            color: rgba(255, 255, 255, .72);
            line-height: 1.5
        }

        .doc-card-body {
            padding: 6px 22px 24px
        }

        .doc-rating-row {
            background: var(--off);
            border-radius: 12px;
            padding: 13px 16px;
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
            border: 1px solid var(--border)
        }

        .doc-rating-n {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            color: var(--navy);
            font-weight: 700;
            line-height: 1
        }

        .doc-stars {
            color: #f59e0b;
            font-size: .95rem;
            letter-spacing: 2px;
            margin-bottom: 2px
        }

        .doc-rating-sub {
            font-size: .72rem;
            color: var(--muted)
        }

        .doc-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px
        }

        /* Price strip */
        .price-strip {
            background: linear-gradient(135deg, var(--navy), var(--navy-3));
            color: #fff;
            padding: 12px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap
        }

        .price-label {
            font-size: .75rem;
            color: rgba(255, 255, 255, .65);
            font-weight: 500
        }

        .price-val {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff
        }

        .price-accent {
            color: var(--gold-2)
        }

        /* ════ INFO STRIP ════ */
        .strip {
            background: var(--navy-2);
            padding: 20px 5%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 36px;
            flex-wrap: wrap
        }

        .si {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, .82)
        }

        .si-icon {
            font-size: 1.1rem;
            flex-shrink: 0
        }

        .si-t {
            font-size: .82rem;
            line-height: 1.4
        }

        .si-t strong {
            color: #fff;
            display: block;
            font-size: .88rem
        }

        .si-sep {
            width: 1px;
            height: 32px;
            background: rgba(255, 255, 255, .12)
        }

        /* ════ SECTIONS ════ */
        section {
            padding: 88px 0
        }

        .sec-off {
            background: var(--off)
        }

        .sec-white {
            background: #fff
        }

        .sec-navy {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%)
        }

        /* ════ NOTICE BOARD ════ */
        .notice-board {
            background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
            border: 1px solid var(--border);
            border-radius: var(--r-xl);
            box-shadow: var(--sh);
            padding: 34px;
        }

        .notice-board-head {
            max-width: 760px;
            margin-bottom: 28px;
        }

        .notice-board-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(280px, .9fr);
            gap: 24px;
            align-items: start;
        }

        .notice-list {
            display: grid;
            gap: 18px;
        }

        .notice-card,
        .notice-poster-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            box-shadow: var(--sh-sm);
            min-width: 0;
        }

        .notice-card {
            padding: 24px;
        }

        .notice-card-featured {
            background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
            border-color: #c9daef;
        }

        .notice-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 12px;
            border-radius: 999px;
            background: var(--navy);
            color: #fff;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .notice-badge-soft {
            background: var(--gold-bg);
            color: var(--gold);
        }

        .notice-date {
            color: var(--blue);
            font-size: .86rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .notice-title {
            margin-bottom: 10px;
            overflow-wrap: anywhere;
        }

        .notice-copy,
        .notice-poster-copy {
            color: var(--muted);
            font-size: .98rem;
        }

        .notice-poster-card {
            padding: 24px;
        }

        .notice-poster-frame {
            min-height: 360px;
            border: 1px dashed #b6c9e1;
            border-radius: calc(var(--r-lg) - 4px);
            background: linear-gradient(180deg, rgba(232, 241, 251, .92) 0%, rgba(255, 255, 255, .98) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            margin-bottom: 14px;
            overflow: hidden;
        }

        .notice-poster-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: calc(var(--r-lg) - 8px);
        }

        .notice-poster-placeholder {
            width: 100%;
            min-height: 300px;
            border-radius: calc(var(--r-lg) - 8px);
            border: 2px dashed rgba(26, 94, 168, .24);
            color: var(--navy);
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 24px;
            background: rgba(255, 255, 255, .72);
        }

        .notice-poster-placeholder img {
            width: 100%;
            height: auto;
            max-height: 100%;
            object-fit: cover;
            border-radius: calc(var(--r-lg) - 10px);
            display: block;
        }

        /* ════ ABOUT ════ */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.55fr;
            gap: 60px;
            align-items: start
        }

        .about-sticky {
            position: sticky;
            top: 80px
        }

        /* Profile card */
        .profile-card {
            background: #fff;
            border-radius: var(--r-lg);
            overflow: hidden;
            box-shadow: var(--sh-lg);
            border: 1px solid var(--border);
            position: relative
        }

        .pc-top {
            background: linear-gradient(135deg, var(--navy), var(--navy-3));
            height: 120px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            padding: 0 22px;
            border-radius: var(--r-lg) var(--r-lg) 0 0
        }

        .pc-pattern {
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .035) 0, rgba(255, 255, 255, .035) 1px, transparent 0, transparent 50%);
            background-size: 14px 14px
        }

        .pc-body {
            position: relative;
            padding: 48px 22px 22px;
            margin-top: 0
        }

        /* ── PROFILE PHOTO in card ── */
        .pc-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--navy-3);
            border: 3px solid #fff;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.9rem;
            overflow: hidden;
            position: absolute;
            top: -40px;
            left: 22px;
            bottom: auto;
            z-index: 2;
            flex-shrink: 0;
            /* INSERT PHOTO: <img src="dr-aseem-goyal.jpg" alt="Dr Aseem Goyal"> */
        }

        .pc-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .pc-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.18rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 2px
        }

        .pc-role {
            font-size: .76rem;
            color: var(--blue);
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.4
        }

        .pc-verify {
            display: flex;
            align-items: center;
            gap: 7px;
            background: var(--green-bg);
            color: var(--green);
            padding: 7px 11px;
            border-radius: 8px;
            font-size: .74rem;
            font-weight: 700;
            margin-bottom: 12px
        }

        .pc-div {
            height: 1px;
            background: var(--border);
            margin-bottom: 14px
        }

        .pc-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 14px
        }

        .pc-stat {
            background: var(--off);
            border-radius: 9px;
            padding: 10px 8px;
            text-align: center;
            border: 1px solid var(--border)
        }

        .pc-sn {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--navy);
            line-height: 1
        }

        .pc-sl {
            font-size: .62rem;
            color: var(--muted);
            font-weight: 500;
            margin-top: 3px;
            line-height: 1.2
        }

        .pc-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px
        }

        .about-text {}

        .about-p {
            font-size: .93rem;
            color: var(--muted);
            line-height: 1.82;
            margin-bottom: 16px
        }

        .highlight-box {
            background: var(--gold-bg);
            border: 1px solid #e8c97a;
            border-radius: 12px;
            padding: 16px 18px;
            margin-bottom: 20px
        }

        .highlight-box h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 10px
        }

        .highlight-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 8px;
            font-size: .84rem;
            color: var(--text);
            line-height: 1.5
        }

        .highlight-row:last-child {
            margin-bottom: 0
        }

        .h-ico {
            width: 20px;
            height: 20px;
            min-width: 20px;
            background: var(--gold-bg);
            border: 1px solid #e8c97a;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .75rem;
            margin-top: 1px
        }

        .cred-list {
            display: flex;
            flex-direction: column;
            gap: 9px;
            margin-bottom: 22px
        }

        .cred {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 13px 15px;
            background: #fff;
            border-radius: 11px;
            border: 1px solid var(--border);
            box-shadow: var(--sh-sm);
            transition: transform .2s, box-shadow .2s
        }

        .cred:hover {
            transform: translateX(4px);
            box-shadow: var(--sh)
        }

        .cred-ico {
            width: 34px;
            height: 34px;
            min-width: 34px;
            border-radius: 8px;
            background: var(--sky);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .9rem
        }

        .cred-txt strong {
            display: block;
            font-weight: 700;
            color: var(--navy);
            font-size: .88rem;
            margin-bottom: 2px
        }

        .cred-txt span {
            font-size: .8rem;
            color: var(--muted);
            line-height: 1.45
        }

        .chip-row {
            display: flex;
            flex-wrap: wrap;
            gap: 7px
        }

        .chip {
            padding: 5px 13px;
            border-radius: 8px;
            font-size: .77rem;
            font-weight: 600;
            background: var(--sky);
            color: var(--navy);
            border: 1px solid var(--sky-2)
        }

        /* ════ SERVICES ════ */
        .svc-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: end;
            margin-bottom: 48px
        }

        .svc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
            gap: 14px
        }

        .svc {
            background: var(--off);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 22px 18px;
            transition: all .25s;
            position: relative;
            overflow: hidden;
            cursor: default
        }

        .svc::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--blue), var(--gold-2));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .3s
        }

        .svc:hover {
            border-color: var(--sky-2);
            transform: translateY(-4px);
            box-shadow: var(--sh);
            background: #fff
        }

        .svc:hover::before {
            transform: scaleX(1)
        }

        .svc-ico {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--sky);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 12px
        }

        .svc h3 {
            font-size: .9rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 5px
        }

        .svc p {
            font-size: .78rem;
            color: var(--muted);
            line-height: 1.62
        }

        .svc-kw {
            font-size: .68rem;
            color: var(--blue);
            font-weight: 600;
            margin-top: 7px;
            display: block
        }

        /* ════ PRICING ════ */
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: start
        }

        .price-card {
            background: #fff;
            border-radius: var(--r-lg);
            border: 1px solid var(--border);
            box-shadow: var(--sh);
            overflow: hidden
        }

        .price-card-head {
            background: linear-gradient(135deg, var(--navy), var(--navy-3));
            padding: 24px 26px;
            color: #fff
        }

        .price-card-head.gold-head {
            background: linear-gradient(135deg, var(--gold), var(--gold-2))
        }

        .pch-label {
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .65);
            margin-bottom: 6px
        }

        .pch-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px
        }

        .pch-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: #fff;
            line-height: 1
        }

        .pch-sub {
            font-size: .76rem;
            color: rgba(255, 255, 255, .6);
            margin-top: 3px
        }

        .price-card-body {
            padding: 20px 26px
        }

        .price-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: .85rem;
            color: var(--text);
            margin-bottom: 11px
        }

        .pf-ico {
            color: var(--green);
            font-size: 1rem;
            flex-shrink: 0
        }

        .price-cta {
            display: block;
            text-align: center;
            margin-top: 18px
        }

        .implant-note {
            background: var(--gold-bg);
            border: 1px solid #e8c97a;
            border-radius: 10px;
            padding: 14px 16px;
            margin-top: 20px;
            font-size: .82rem;
            color: var(--gold);
            font-weight: 600;
            text-align: center
        }

        /* ════ WHY ════ */
        .why-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 56px;
            align-items: center
        }

        .why-list {
            display: flex;
            flex-direction: column;
            gap: 13px
        }

        .why-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 18px;
            background: #fff;
            border-radius: var(--r);
            border: 1px solid var(--border);
            box-shadow: var(--sh-sm);
            transition: transform .2s, box-shadow .2s
        }

        .why-item:hover {
            transform: translateX(4px);
            box-shadow: var(--sh)
        }

        .why-n {
            width: 36px;
            height: 36px;
            min-width: 36px;
            border-radius: 9px;
            background: var(--navy);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            font-weight: 700;
            flex-shrink: 0
        }

        .why-txt strong {
            display: block;
            font-size: .9rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 2px
        }

        .why-txt span {
            font-size: .8rem;
            color: var(--muted);
            line-height: 1.58
        }

        .why-panel {
            background: linear-gradient(135deg, var(--navy), var(--navy-3));
            border-radius: var(--r-xl);
            padding: 38px 34px;
            color: #fff
        }

        .wp-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.65rem;
            margin-bottom: 8px
        }

        .wp-sub {
            font-size: .84rem;
            color: rgba(255, 255, 255, .58);
            margin-bottom: 26px;
            line-height: 1.65
        }

        .wp-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 24px
        }

        .wp-box {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 12px;
            padding: 16px
        }

        .wp-n {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.7rem;
            color: #fff;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 3px
        }

        .wp-l {
            font-size: .7rem;
            color: rgba(255, 255, 255, .5);
            font-weight: 500;
            line-height: 1.3
        }

        .wp-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 6px
        }

        .wp-b {
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 100px;
            padding: 5px 12px;
            font-size: .72rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .82)
        }

        /* ════ CLINIC ════ */
        .clinic-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start
        }

        .info-grp {
            margin-bottom: 20px
        }

        .ig-lbl {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px
        }

        .ig-lbl::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border)
        }

        .info-row {
            display: flex;
            align-items: flex-start;
            gap: 11px;
            padding: 13px 15px;
            background: #fff;
            border-radius: 10px;
            border: 1px solid var(--border);
            margin-bottom: 8px;
            box-shadow: var(--sh-sm)
        }

        .ir-ico {
            width: 36px;
            height: 36px;
            min-width: 36px;
            border-radius: 8px;
            background: var(--sky);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .9rem;
            flex-shrink: 0
        }

        .ir-txt {
            font-size: .86rem;
            color: var(--text);
            line-height: 1.52
        }

        .ir-txt strong {
            display: block;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 2px
        }

        .fac-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 6px
        }

        .fc {
            background: var(--sky);
            color: var(--blue);
            padding: 3px 9px;
            border-radius: 100px;
            font-size: .7rem;
            font-weight: 600
        }

        .map-box {
            border-radius: var(--r-lg);
            overflow: hidden;
            box-shadow: var(--sh);
            border: 1px solid var(--border)
        }

        .map-box iframe {
            width: 100%;
            height: 290px;
            display: block;
            border: none
        }

        .map-btns {
            display: flex;
            gap: 10px;
            margin-top: 12px
        }

        .map-btns .btn {
            flex: 1;
            font-size: .82rem;
            padding: 10px
        }

        /* ════ APPOINTMENT ════ */
        #appointment {
            position: relative;
            overflow: hidden
        }

        .appt-deco {
            position: absolute;
            border-radius: 50%;
            pointer-events: none
        }

        .appt-deco-1 {
            top: -100px;
            right: -100px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(26, 94, 168, .2) 0%, transparent 70%)
        }

        .appt-deco-2 {
            bottom: -80px;
            left: 15%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(212, 146, 26, .1) 0%, transparent 70%)
        }

        #appointment .lbl {
            color: #90c0e8
        }

        #appointment .h2 {
            color: #fff
        }

        .appt-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
            position: relative;
            z-index: 1
        }

        .appt-form {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: var(--r-lg);
            padding: 30px;
            backdrop-filter: blur(12px)
        }

        .f2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 13px
        }

        .fg {
            margin-bottom: 13px
        }

        .fg label {
            display: block;
            font-size: .76rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .7);
            margin-bottom: 5px
        }

        .fg input,
        .fg textarea,
        .fg select {
            width: 100%;
            background: rgba(255, 255, 255, .09);
            border: 1px solid rgba(255, 255, 255, .16);
            color: #fff;
            border-radius: 8px;
            padding: 10px 13px;
            font-family: 'DM Sans', sans-serif;
            font-size: .86rem;
            transition: border-color .2s
        }

        .fg select option {
            background: var(--navy);
            color: #fff
        }

        .fg input::placeholder,
        .fg textarea::placeholder {
            color: rgba(255, 255, 255, .3)
        }

        .fg input:focus,
        .fg textarea:focus,
        .fg select:focus {
            outline: none;
            border-color: #90c0e8
        }

        .fg textarea {
            resize: vertical;
            min-height: 80px
        }

        .f-btn {
            width: 100%;
            background: var(--blue-2);
            color: #fff;
            padding: 13px;
            border-radius: 10px;
            border: none;
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: .9rem;
            cursor: pointer;
            transition: all .2s;
            margin-top: 2px
        }

        .f-btn:hover {
            background: var(--blue);
            transform: translateY(-1px)
        }

        .appt-r h3 {
            font-family: 'Cormorant Garamond', serif;
            color: #fff;
            font-size: 1.25rem;
            margin-bottom: 6px
        }

        .appt-r p {
            color: rgba(255, 255, 255, .48);
            font-size: .84rem;
            margin-bottom: 20px;
            line-height: 1.6
        }

        .qlink {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 12px;
            padding: 14px 16px;
            margin-bottom: 10px;
            text-decoration: none;
            transition: all .2s
        }

        .qlink:hover {
            background: rgba(255, 255, 255, .13);
            transform: translateX(4px)
        }

        .ql-ico {
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            flex-shrink: 0
        }

        .ql-txt strong {
            display: block;
            color: #fff;
            font-weight: 600;
            font-size: .88rem
        }

        .ql-txt span {
            color: rgba(255, 255, 255, .42);
            font-size: .76rem
        }

        .ql-arr {
            color: rgba(255, 255, 255, .25);
            margin-left: auto;
            font-size: 1rem;
            flex-shrink: 0
        }

        .appt-note {
            background: rgba(26, 94, 168, .2);
            border: 1px solid rgba(26, 94, 168, .35);
            border-radius: 10px;
            padding: 13px 15px;
            margin-top: 8px;
            font-size: .78rem;
            color: rgba(255, 255, 255, .65);
            line-height: 1.65
        }

        /* ════ REVIEWS ════ */
        .reviews-top {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 48px;
            flex-wrap: wrap;
            gap: 20px
        }

        .rating-box {
            display: flex;
            align-items: center;
            gap: 16px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 16px 22px;
            box-shadow: var(--sh-sm)
        }

        .rb-n {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--navy);
            line-height: 1
        }

        .rb-stars {
            color: #f59e0b;
            font-size: 1rem;
            margin-bottom: 2px
        }

        .rb-lbl {
            font-size: .76rem;
            color: var(--muted);
            font-weight: 600
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px
        }

        .rv {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 20px;
            transition: transform .2s, box-shadow .2s
        }

        .rv:hover {
            transform: translateY(-3px);
            box-shadow: var(--sh)
        }

        .rv-top {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 11px
        }

        .rv-av {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: .88rem;
            flex-shrink: 0
        }

        .rv-name {
            font-weight: 700;
            font-size: .86rem;
            color: var(--navy)
        }

        .rv-meta {
            font-size: .68rem;
            color: var(--muted);
            margin-top: 1px
        }

        .rv-stars {
            color: #f59e0b;
            font-size: .8rem;
            margin-bottom: 7px
        }

        .rv-txt {
            font-size: .84rem;
            color: var(--muted);
            line-height: 1.7
        }

        .rv-tag {
            display: inline-block;
            margin-top: 9px;
            font-size: .69rem;
            font-weight: 700;
            padding: 3px 9px;
            border-radius: 100px;
            background: var(--sky);
            color: var(--blue)
        }

        .rv-cta {
            background: linear-gradient(135deg, var(--sky), #d0e5f7);
            border-color: var(--sky-2);
            text-align: center
        }

        .rv-cta-inner {
            padding: 18px 10px
        }

        /* ════ FAQ ════ */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px
        }

        .faq-item {
            background: var(--off);
            border: 1px solid var(--border);
            border-radius: var(--r);
            overflow: hidden
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 18px;
            cursor: pointer;
            font-weight: 600;
            font-size: .87rem;
            color: var(--navy);
            gap: 10px;
            transition: background .2s;
            user-select: none
        }

        .faq-q:hover {
            background: var(--sky)
        }

        .faq-arr {
            font-size: 1.1rem;
            color: var(--blue);
            transition: transform .3s;
            flex-shrink: 0
        }

        .faq-item.open .faq-arr {
            transform: rotate(180deg)
        }

        .faq-a {
            display: none;
            padding: 0 18px 15px;
            font-size: .83rem;
            color: var(--muted);
            line-height: 1.72
        }

        .faq-item.open .faq-a {
            display: block
        }

        .faq-box {
            background: var(--off);
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            padding: 28px;
            position: sticky;
            top: 82px
        }

        .faq-box h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.25rem;
            color: var(--navy);
            margin-bottom: 7px
        }

        .faq-box p {
            font-size: .84rem;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 18px
        }

        .faq-links {
            display: flex;
            flex-direction: column;
            gap: 9px
        }

        .faq-link {
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 12px 14px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            text-decoration: none;
            transition: all .2s;
            box-shadow: var(--sh-sm)
        }

        .faq-link:hover {
            border-color: var(--blue);
            transform: translateX(4px)
        }

        .fl-ico {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: var(--sky);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .9rem;
            flex-shrink: 0
        }

        .fl-txt strong {
            display: block;
            font-size: .84rem;
            color: var(--navy);
            font-weight: 700
        }

        .fl-txt span {
            font-size: .73rem;
            color: var(--muted)
        }

        /* ════ GALLERY ════ */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 13px
        }

        .gi {
            border-radius: var(--r);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            background: var(--sky);
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .gi.wide {
            grid-column: span 2
        }

        .gi-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(8, 25, 46, .68), transparent);
            opacity: 0;
            transition: opacity .3s;
            display: flex;
            align-items: flex-end;
            padding: 13px 15px
        }

        .gi:hover .gi-overlay {
            opacity: 1
        }

        .gi-lbl {
            color: #fff;
            font-size: .79rem;
            font-weight: 600
        }

        .gi-ph {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 7px
        }

        .gi-ph-icon {
            font-size: 1.9rem;
            color: var(--blue)
        }

        .gi-ph-txt {
            font-size: .72rem;
            font-weight: 600;
            color: var(--muted);
            text-align: center;
            padding: 0 10px
        }

        /* ── Image comment inside .gi elements:
     Replace <div class="gi-ph">...</div> with:
     <img src="clinic-photo.jpg" alt="Prime Healthcare Clinic Chandigarh">
     for each gallery item ── */

        /* ════ SOCIAL PROOF BANNER ════ */
        .social-banner {
            background: var(--gold-bg);
            border-top: 2px solid #e8c97a;
            border-bottom: 2px solid #e8c97a;
            padding: 18px 5%;
            text-align: center
        }

        .sb-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
            max-width: 900px;
            margin: 0 auto
        }

        .sb-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .85rem;
            font-weight: 600;
            color: var(--navy)
        }

        .sb-item span {
            font-size: 1.1rem
        }

        /* ════ FOOTER ════ */
        footer {
            background: var(--navy);
            color: rgba(255, 255, 255, .7);
            padding: 60px 0 26px
        }

        .footer-wrap {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 5%
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr;
            gap: 44px;
            padding-bottom: 44px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            margin-bottom: 24px
        }

        .ft-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            color: #fff;
            font-weight: 700;
            margin-bottom: 2px
        }

        .ft-sub {
            font-size: .65rem;
            color: #90c0e8;
            font-weight: 700;
            letter-spacing: .09em;
            text-transform: uppercase;
            margin-bottom: 12px
        }

        .ft-desc {
            font-size: .8rem;
            line-height: 1.72;
            color: rgba(255, 255, 255, .38);
            margin-bottom: 18px
        }

        .ft-cr {
            display: flex;
            gap: 9px;
            margin-bottom: 9px;
            font-size: .79rem;
            color: rgba(255, 255, 255, .4);
            align-items: flex-start
        }

        .ft-ci {
            color: #90c0e8;
            font-size: .88rem;
            margin-top: 1px;
            flex-shrink: 0
        }

        /* Social icons */
        .ft-social {
            display: flex;
            gap: 8px;
            margin-top: 16px
        }

        .ft-soc {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: rgba(255, 255, 255, .07);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .5);
            text-decoration: none;
            font-size: .82rem;
            transition: all .2s;
            border: 1px solid rgba(255, 255, 255, .08)
        }

        .ft-soc:hover {
            background: var(--blue-2);
            color: #fff;
            border-color: var(--blue-2)
        }

        .ft-soc svg {
            width: 16px;
            height: 16px;
            fill: currentColor
        }

        .ft-col h4 {
            color: #fff;
            font-size: .84rem;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: .04em
        }

        .ft-col ul li {
            margin-bottom: 8px
        }

        .ft-col ul li a {
            color: rgba(255, 255, 255, .38);
            font-size: .79rem;
            transition: color .2s
        }

        .ft-col ul li a:hover {
            color: #90c0e8
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px
        }

        .ft-copy {
            font-size: .73rem;
            color: rgba(255, 255, 255, .26)
        }

        .ft-soc-row {
            display: flex;
            gap: 7px
        }

        /* ════ TOAST ════ */
        .toast {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%) translateY(80px);
            background: var(--navy);
            color: #fff;
            padding: 11px 22px;
            border-radius: 10px;
            font-size: .85rem;
            font-weight: 600;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .22);
            z-index: 9999;
            transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
            border-left: 4px solid var(--blue-2);
            white-space: nowrap
        }

        .toast.show {
            transform: translateX(-50%) translateY(0)
        }

        /* ════ ANIMATIONS ════ */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .hero-content>* {
            animation: fadeUp .55s ease backwards
        }

        .hero-content>*:nth-child(1) {
            animation-delay: .06s
        }

        .hero-content>*:nth-child(2) {
            animation-delay: .13s
        }

        .hero-content>*:nth-child(3) {
            animation-delay: .2s
        }

        .hero-content>*:nth-child(4) {
            animation-delay: .27s
        }

        .hero-content>*:nth-child(5) {
            animation-delay: .34s
        }

        .card-anim {
            animation: fadeUp .65s .25s ease backwards
        }

        /* ════ RESPONSIVE ════ */
        @media(max-width:1024px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 30px
            }

            .hero-kpis {
                grid-template-columns: repeat(4, 1fr)
            }
        }

        @media(max-width:900px) {
            .notice-board {
                padding: 24px;
            }

            .notice-board-grid {
                grid-template-columns: 1fr;
            }

            .notice-poster-frame {
                min-height: 300px;
            }

            .notice-poster-placeholder {
                min-height: 240px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px
            }

            .hero-content {
                text-align: center
            }

            .hero-p {
                max-width: 100%
            }

            .hero-btns {
                justify-content: center
            }

            .hero-deg {
                justify-content: center
            }

            .hero-kpis {
                grid-template-columns: repeat(2, 1fr)
            }

            .kpi:nth-child(2) {
                border-right: none
            }

            .kpi:nth-child(3) {
                border-top: 1px solid var(--border);
                border-right: 1px solid var(--border)
            }

            .kpi:nth-child(4) {
                border-top: 1px solid var(--border)
            }

            .doc-card {
                max-width: 360px
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 36px
            }

            .about-sticky {
                position: static
            }

            .svc-header {
                grid-template-columns: 1fr;
                gap: 0
            }

            .svc-header .lead {
                margin-top: -36px
            }

            .pricing-grid {
                grid-template-columns: 1fr
            }

            .why-grid {
                grid-template-columns: 1fr;
                gap: 32px
            }

            .clinic-grid {
                grid-template-columns: 1fr
            }

            .appt-grid {
                grid-template-columns: 1fr
            }

            .f2 {
                grid-template-columns: 1fr
            }

            .reviews-top {
                flex-direction: column;
                align-items: flex-start
            }

            .faq-grid {
                grid-template-columns: 1fr
            }

            .faq-box {
                position: static
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr
            }

            .gi.wide {
                grid-column: span 1
            }

            .strip {
                gap: 18px
            }

            .si-sep {
                display: none
            }

            .sb-inner {
                gap: 18px
            }
        }

        @media(max-width:640px) {
            .notice-board {
                padding: 18px;
                border-radius: 18px;
            }

            .notice-card,
            .notice-poster-card {
                padding: 18px;
            }

            .notice-board-head {
                margin-bottom: 22px;
            }

            .notice-board .lead,
            .notice-copy,
            .notice-poster-copy {
                font-size: .92rem;
            }

            .notice-poster-frame {
                min-height: 240px;
                padding: 10px;
            }

            .notice-poster-placeholder {
                min-height: 200px;
                padding: 12px;
            }

            #nav {
                padding: 0
            }

            .nav-inner {
                padding: 0 4%
            }

            .nav-links,
            .nav-cta {
                display: none
            }

            .burger {
                display: flex
            }

            section {
                padding: 64px 0
            }

            .wrap {
                padding: 0 4%
            }

            #home {
                padding: 90px 0 56px
            }

            .hero-grid {
                padding: 0 4%
            }

            .hero-kpis {
                grid-template-columns: 1fr 1fr
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 26px
            }

            .gallery-grid {
                grid-template-columns: 1fr
            }

            .gi.wide {
                grid-column: span 1
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center
            }

            .map-btns {
                flex-direction: column
            }

            .appt-form {
                padding: 18px
            }

            .why-panel {
                padding: 26px 20px
            }

            .pricing-grid {
                grid-template-columns: 1fr
            }

            .pc-stats {
                grid-template-columns: repeat(3, 1fr)
            }

            section {
                padding: 56px 0
            }
        }

        @media(max-width:380px) {
            .hero-h1 {
                font-size: 2.1rem
            }

            .hero-kpis {
                grid-template-columns: 1fr 1fr
            }

            .doc-card {
                max-width: 100%
            }
        }
