/* ==========================================================================
   Dentomed — trabzondental.com
   Brand palette: #3442b1 primary · #14b8a6 accent
   ========================================================================== */

:root {
    /* Brand */
    --brand-primary: #3442b1;
    --brand-primary-600: #2a369a;
    --brand-primary-700: #222b7e;
    --brand-primary-50:  #eef0fb;
    --brand-primary-100: #dcdef7;

    --brand-accent: #14b8a6;
    --brand-accent-600: #0ea093;
    --brand-accent-50:  #e6f9f6;

    /* Implant-brand accents (used on the Straumann/Neodent cards). */
    --straumann-color:     #14b8a6;   /* matches the teal mark in the logo */
    --straumann-color-600: #0ea093;
    --straumann-color-50:  #e6f9f6;
    --neodent-color:       #353b46;   /* anthracite */
    --neodent-color-600:   #1f232b;
    --neodent-color-50:    #eef0f3;

    /* Neutrals */
    --ink-900: #0e1230;
    --ink-700: #2a2f54;
    --ink-500: #5a5f7a;
    --ink-400: #8388a8;
    --ink-200: #e5e7f1;
    --ink-100: #f4f5fb;
    --bg:      #ffffff;
    --bg-soft: #f8f9fc;

    --radius:   14px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 6px rgba(14, 18, 48, .05);
    --shadow-md: 0 10px 30px rgba(14, 18, 48, .08);
    --shadow-lg: 0 20px 60px rgba(52, 66, 177, .15);

    --font-body: 'Sora', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-head: 'Sora', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    /* Bootstrap overrides */
    --bs-primary: var(--brand-primary);
    --bs-primary-rgb: 52, 66, 177;
    --bs-link-color: var(--brand-primary);
    --bs-link-hover-color: var(--brand-primary-700);
    --bs-body-font-family: var(--font-body);
    --bs-body-color: var(--ink-700);
    --bs-body-bg: var(--bg);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--ink-700);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .hero-title {
    font-family: var(--font-head);
    color: var(--ink-900);
    letter-spacing: -0.01em;
}
h1 { font-weight: 700; }
.lead { color: var(--ink-500); }

a { text-decoration: none; }

.text-white-75 { color: rgba(255,255,255,.78) !important; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand-primary);
    background: var(--brand-primary-50);
    padding: .45rem .9rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}
.eyebrow--light {
    background: rgba(255,255,255,.15);
    color: #fff;
    backdrop-filter: blur(6px);
}

/* ---------- Buttons ---------- */
.btn {
    font-weight: 600;
    letter-spacing: .01em;
    padding: .7rem 1.35rem;
    border-radius: 10px;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn-lg { padding: .95rem 1.75rem; }

.btn-primary {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--brand-primary-700);
    border-color: var(--brand-primary-700);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(52, 66, 177, .25);
}
.btn-outline-primary {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}
.btn-outline-primary:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}
.btn-accent {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
}
.btn-accent:hover, .btn-accent:focus {
    background: var(--brand-accent-600);
    border-color: var(--brand-accent-600);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(20, 184, 166, .35);
}

/* ---------- Topbar ---------- */
.topbar {
    background: linear-gradient(135deg, var(--brand-primary-700) 0%, var(--brand-primary) 100%);
    color: #fff;
}
.topbar a { color: #fff; }
.topbar a:hover { color: #fff; opacity: .9; }
.topbar-socials a {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    transition: background .15s ease;
}
.topbar-socials a:hover { background: rgba(255,255,255,.26); }

/* ---------- Nav ---------- */
.site-nav { padding: .6rem 0; border-bottom: 1px solid var(--ink-200); }

.brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.brand-logo {
    height: 58px;
    width: auto;
    display: block;
    transition: opacity .15s ease;
}
.brand-logo-wrap:hover .brand-logo { opacity: .85; }
.brand-logo--footer { height: 70px; }

@media (max-width: 575.98px) {
    .brand-logo { height: 46px; }
    .brand-logo--footer { height: 56px; }
}

.site-nav .nav-link {
    color: var(--ink-700);
    font-weight: 500;
    padding: .6rem 1rem !important;
    border-radius: 8px;
    transition: color .15s ease, background .15s ease;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--brand-primary);
    background: var(--brand-primary-50);
}

.lang-switch {
    font-weight: 600;
    font-size: .9rem;
    padding: .45rem .75rem;
    border-radius: 8px;
    border: 1px solid var(--ink-200);
    color: var(--ink-700);
}
.lang-switch:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

/* ---------- Nav dropdown (custom pages with sub-items) ---------- */
/* Bootstrap'ın default kart görüntüsü çok ağır / çerçeveli görünüyordu.
   Yeni tasarım: kenarlıksız yumuşak gölge, ufak slide-in animasyonu,
   hover'da brand primary'ye geçen item'lar + hafif sağa kayma. */
.site-nav .nav-link.dropdown-toggle::after {
    margin-left: .35rem;
    border-top-width: .28em;
    opacity: .55;
    transition: opacity .15s ease, transform .18s ease;
}
.site-nav .nav-link.dropdown-toggle:hover::after,
.site-nav .nav-item.dropdown.show > .dropdown-toggle::after { opacity: 1; }
.site-nav .nav-item.dropdown.show > .dropdown-toggle::after { transform: rotate(180deg); }

.nav-dropdown__menu {
    --nav-dd-radius: 14px;
    border: 0;
    border-radius: var(--nav-dd-radius);
    padding: .4rem;
    margin-top: .55rem !important;
    min-width: 14rem;
    background: #fff;
    box-shadow:
        0 18px 40px -12px rgba(15, 23, 42, .16),
        0 6px 14px -4px rgba(15, 23, 42, .06);
}
.nav-dropdown.show .nav-dropdown__menu { animation: navDropdownIn .2s cubic-bezier(.2, .9, .3, 1.1); }
@keyframes navDropdownIn {
    from { opacity: 0; transform: translateY(-6px) scale(.985); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.nav-dropdown__item {
    position: relative;
    display: block;
    padding: .55rem .9rem;
    border-radius: 9px;
    color: var(--ink-700);
    font-weight: 500;
    font-size: .94rem;
    line-height: 1.35;
    transition: background .15s ease, color .15s ease, padding-left .18s ease;
}
.nav-dropdown__item:hover,
.nav-dropdown__item:focus,
.nav-dropdown__item.active {
    background: var(--brand-primary-50);
    color: var(--brand-primary);
    padding-left: 1.1rem;
}
.nav-dropdown__item:active { background: var(--brand-primary-100); color: var(--brand-primary); }

/* Parent link (üstte): biraz daha vurgulu — tipografik bir "üst başlık" hissi */
.nav-dropdown__item--parent {
    font-weight: 600;
    color: var(--ink-900, var(--ink-700));
}
/* Parent ile alt sayfalar arasında ince, görünmeyen ayraç boşluğu */
.nav-dropdown__item--parent + li { margin-top: 2px; }

/* Mobil collapse menüsünde Bootstrap inline gösteriyor — orada kart efekti
   yerine sade liste; şık animasyon ve gölge kalkıyor. */
@media (max-width: 991.98px) {
    .nav-dropdown__menu {
        box-shadow: none;
        padding: 0 0 0 .25rem;
        border-left: 2px solid var(--ink-100);
        margin-left: .25rem;
        animation: none;
    }
    .nav-dropdown__item:hover,
    .nav-dropdown__item:focus,
    .nav-dropdown__item.active { padding-left: .9rem; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 6rem 0 5rem;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.hero-bg {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(circle at 85% 20%, rgba(20, 184, 166, .35) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .12) 0%, transparent 40%),
        linear-gradient(135deg, #1a2278 0%, var(--brand-primary) 55%, #4351c4 100%);
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: .4;
}
.hero-title { line-height: 1.1; }
.hero-subtitle { max-width: 560px; }

.hero-stats .stat {
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,.18);
}
.stat-number {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    line-height: 1;
}
.stat-label {
    font-size: .82rem;
    color: rgba(255,255,255,.72);
    margin-top: .3rem;
}

.hero-visual {
    position: relative;
    height: 460px;
}
.hero-card {
    position: absolute;
    background: #fff;
    color: var(--ink-900);
    padding: 1rem 1.25rem;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .85rem;
    min-width: 240px;
    font-size: .95rem;
}
.hero-card i { font-size: 1.6rem; }
.hero-card--top    { top: 8%;    left: 0;    animation: float 6s ease-in-out infinite; }
.hero-card--bottom { bottom: 8%; right: 0;   animation: float 6s ease-in-out infinite 1s reverse; }
.text-accent { color: var(--brand-accent) !important; }
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-orb {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 280px; height: 280px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, #fff 0%, rgba(255,255,255,.6) 40%, transparent 70%),
        linear-gradient(135deg, var(--brand-accent) 0%, #7bebdf 100%);
    box-shadow:
        0 0 0 18px rgba(255,255,255,.08),
        0 0 0 36px rgba(255,255,255,.05),
        0 30px 60px rgba(0,0,0,.25);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 7rem;
}

/* ---------- Trust bar ---------- */
.trust-bar {
    background: var(--bg-soft);
    padding: 2rem 0;
    border-bottom: 1px solid var(--ink-200);
}
.trust-logo {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: .5rem .9rem;
    border: 1px solid var(--ink-200);
    border-radius: 10px;
    background: #fff;
    font-weight: 600;
    color: var(--ink-700);
}
.trust-logo__mark {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: var(--brand-primary);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
}
/* When a real SVG icon is used in place of the letter mark. */
.trust-logo__mark--img {
    width: 32px; height: 32px;
    background: transparent;
    border-radius: 6px;
    object-fit: contain;
    padding: 0;
}
.trust-logo--muted { color: var(--ink-500); }
.trust-logo--muted i { color: var(--brand-primary); }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section--alt { background: var(--bg-soft); }
.section-heading .eyebrow { margin-bottom: 1rem; }

/* ---------- Treatment card ---------- */
.treatment-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    color: var(--ink-700);
}
.treatment-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--shadow-md);
    color: var(--ink-700);
}
.treatment-card__icon {
    width: 60px; height: 60px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-primary-50);
    color: var(--brand-primary);
    border-radius: 16px;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.treatment-card:hover .treatment-card__icon {
    background: var(--brand-primary);
    color: #fff;
    transform: scale(1.05);
}

/* Custom inline-SVG dental icons (DentalIcon::render) — sized to feel
   visually balanced against the BS icons elsewhere on the site. */
.dental-icon {
    width: 30px;
    height: 30px;
    display: block;
}
.treatment-card__icon .dental-icon { width: 32px; height: 32px; }
.treatment-card__title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: .5rem;
}
.treatment-card__desc {
    color: var(--ink-500);
    font-size: .95rem;
    line-height: 1.55;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}
.treatment-card__link {
    display: inline-flex; align-items: center; gap: .4rem;
    color: var(--brand-primary);
    font-weight: 600;
}
.treatment-card:hover .treatment-card__link { gap: .7rem; }

/* ---------- Brand cards (Straumann / Neodent) ---------- */
.brand-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
}
.brand-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: var(--brand-primary);
}
.brand-card--straumann::before { background: var(--straumann-color); }
.brand-card--neodent::before   { background: var(--neodent-color); }
.brand-card__header {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.25rem;
}
.brand-card__logo {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-primary);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.brand-card--neodent .brand-card__logo { background: var(--brand-accent); }
/* When a real SVG icon is used, drop the tinted background so the logo owns the color. */
.brand-card__logo--img,
.brand-card--neodent .brand-card__logo--img {
    background: transparent;
    border-radius: 0;
    padding: 0;
}
.brand-card__logo--img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brand-card__name {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0;
}
.brand-card__origin { color: var(--ink-400); font-size: .82rem; }
.badge-premium {
    margin-left: auto;
    background: var(--brand-primary-50);
    color: var(--brand-primary);
    padding: .35rem .75rem;
    border-radius: 99px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.badge-premium--accent { background: var(--brand-accent-50); color: var(--brand-accent-600); }
.badge-premium--teal   { background: var(--straumann-color-50); color: var(--straumann-color-600); }
.badge-premium--dark   { background: var(--neodent-color-50);   color: var(--neodent-color); }
.brand-card__pitch { color: var(--ink-500); margin-bottom: 1.25rem; line-height: 1.65; }
.brand-card__points { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.brand-card__points li {
    display: flex; align-items: flex-start; gap: .6rem;
    padding: .45rem 0;
    color: var(--ink-700);
}
.brand-card__points i { color: var(--brand-accent); font-size: 1.1rem; flex-shrink: 0; margin-top: 3px; }
.brand-card--straumann .brand-card__points i { color: var(--straumann-color); }
.brand-card--neodent   .brand-card__points i { color: var(--neodent-color); }
.brand-card__price {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 1rem 1.25rem;
    background: var(--bg-soft);
    border-radius: 12px;
    margin-top: .75rem;
}
.brand-card__price-label { color: var(--ink-500); }
.brand-card__price-value {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--brand-primary);
}
.brand-card--straumann .brand-card__price-value { color: var(--straumann-color-600); }
.brand-card--neodent   .brand-card__price-value { color: var(--neodent-color-600); }

/* ---------- Doctor card ---------- */
.doctor-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    color: var(--ink-700);
}
.doctor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--ink-700); }
.doctor-card__photo {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--brand-primary-50) 0%, var(--brand-accent-50) 100%);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.doctor-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-card__initials {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand-primary);
}
.doctor-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.doctor-card__name {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 .25rem;
    color: var(--ink-900);
}
.doctor-card__title { color: var(--brand-primary); font-weight: 500; font-size: .95rem; margin-bottom: .5rem; }
.doctor-card__specialties { color: var(--ink-500); font-size: .85rem; margin: 0; }
.doctor-card--large .doctor-card__photo { aspect-ratio: 4 / 3; }
.doctor-card__bio { margin-top: .75rem; line-height: 1.55; }

.doctor-profile__photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--brand-primary-50) 0%, var(--brand-accent-50) 100%);
    display: flex; align-items: center; justify-content: center;
}
.doctor-profile__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Doctor banner — full-width photo shown below the profile
   (separate from the portrait headshot)
   ========================================================================== */
.dr-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--ink-100);
    margin: 0 0 -1px;
    /* Hard cap so a badly-proportioned upload doesn't dominate the page */
    max-height: 420px;
}
.dr-banner img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    /* Upper-third positioning so portrait uploads show face/eyes, not the mouth area */
    object-position: center 25%;
}
@media (max-width: 991.98px) {
    .dr-banner,
    .dr-banner img { max-height: 280px; height: 280px; }
}
@media (max-width: 575.98px) {
    .dr-banner,
    .dr-banner img { max-height: 200px; height: 200px; }
}

/* ==========================================================================
   Parallax band (between Straumann/Neodent and Doctors sections)
   ========================================================================== */
.parallax-band {
    position: relative;
    padding: 7rem 0;
    min-height: 460px;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #12195a;  /* falls back if image fails */
    background-image: url('/public/images/hero/parallax.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    isolation: isolate;
}
.parallax-band__overlay {
    position: absolute; inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 80% 20%, rgba(20, 184, 166, .28) 0%, transparent 55%),
        linear-gradient(135deg, rgba(18, 25, 90, .88) 0%, rgba(52, 66, 177, .76) 50%, rgba(67, 81, 196, .55) 100%);
}
.parallax-band::after {
    content: '';
    position: absolute; inset: 0;
    z-index: -1;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: .55;
    pointer-events: none;
}
.parallax-band__content { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.parallax-band__slogan {
    font-family: var(--font-head);
    font-size: 2.85rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.015em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.parallax-band__sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,.88);
    max-width: 660px;
    margin: 0 auto;
}

/* Mobile / iOS: fixed attachment breaks; fall back to normal scroll */
@media (max-width: 991.98px), (hover: none) {
    .parallax-band {
        background-attachment: scroll;
        padding: 4.5rem 0;
        min-height: 360px;
    }
    .parallax-band__slogan { font-size: 1.95rem; }
}
@media (max-width: 575.98px) {
    .parallax-band { padding: 3.5rem 0; min-height: 320px; }
    .parallax-band__slogan { font-size: 1.6rem; }
    .parallax-band__sub { font-size: 1rem; }
}

/* ==========================================================================
   Doctors carousel (homepage)
   ========================================================================== */
.doctors-carousel {
    position: relative;
    padding: .5rem .5rem 3.5rem;  /* bottom space for pagination */
    margin: 0 -.5rem;             /* let cards breathe to the edges */
}
.doctors-carousel .swiper-slide {
    height: auto;           /* let cards stretch to equal height */
    display: flex;
}
.doctors-carousel .swiper-slide > a,
.doctors-carousel .swiper-slide > div {
    width: 100%;
}

/* Previous / Next buttons */
.doctors-carousel__btn {
    position: absolute;
    top: calc(50% - 2rem);      /* a bit above center to account for bottom pagination */
    transform: translateY(-50%);
    z-index: 3;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 12px 28px rgba(14, 18, 48, .16);
    cursor: pointer;
    transition: background .15s ease, color .15s ease, transform .15s ease;
}
.doctors-carousel__btn:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-50%) scale(1.06);
}
.doctors-carousel__btn--prev { left: -16px; }
.doctors-carousel__btn--next { right: -16px; }
.doctors-carousel__btn.swiper-button-disabled { opacity: .35; pointer-events: none; }

/* Pagination dots */
.doctors-carousel__pagination {
    position: absolute;
    bottom: .5rem;
    left: 0; right: 0;
    text-align: center;
    z-index: 2;
}
.doctors-carousel__pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: var(--ink-200);
    opacity: 1;
    margin: 0 4px;
    transition: background .15s ease, width .15s ease;
}
.doctors-carousel__pagination .swiper-pagination-bullet-active {
    background: var(--brand-primary);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 575.98px) {
    .doctors-carousel__btn { display: none; }  /* rely on swipe on mobile */
    .doctors-carousel { padding-bottom: 2.5rem; }
}

/* ==========================================================================
   Doctor cards (listing) — premium variant
   ========================================================================== */
.dr-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    color: var(--ink-700);
    text-decoration: none;
    height: 100%;
}
.dr-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    color: var(--ink-700);
}
.dr-card__photo {
    position: relative;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--brand-primary-50) 0%, var(--brand-accent-50) 100%);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.dr-card__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 15%;  /* pull photo up so the head area is always visible */
    filter: saturate(1.05);
    transition: transform .4s ease, filter .2s ease;
}
.dr-card:hover .dr-card__photo img { transform: scale(1.05); filter: saturate(1.1); }
.dr-card__initials {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: .02em;
}
.dr-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,18,48,0) 55%, rgba(14,18,48,.75) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    color: #fff;
    opacity: 0;
    transition: opacity .2s ease;
    font-weight: 600;
    font-size: .9rem;
}
.dr-card:hover .dr-card__overlay { opacity: 1; }
.dr-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.dr-card__name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0 0 .3rem;
    letter-spacing: -0.005em;
    line-height: 1.3;
}
.dr-card__title {
    color: var(--brand-primary);
    font-weight: 500;
    font-size: .9rem;
    margin-bottom: .75rem;
}
.dr-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    padding-top: .75rem;
    border-top: 1px dashed var(--ink-200);
}
.dr-card__tag {
    background: var(--ink-100);
    color: var(--ink-700);
    padding: .25rem .6rem;
    border-radius: 6px;
    font-size: .74rem;
    font-weight: 500;
}

/* ==========================================================================
   Doctor detail — hero
   ========================================================================== */
.dr-hero {
    position: relative;
    padding: 5rem 0 3rem;
    color: #fff;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
}
.dr-hero__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center 20%;
    z-index: -2;
    filter: saturate(1.05);
}
.dr-hero__bg--gradient {
    background: linear-gradient(135deg, #12195a 0%, var(--brand-primary) 55%, #4351c4 100%);
}
.dr-hero__overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(120deg, rgba(18, 25, 90, .94) 0%, rgba(52, 66, 177, .82) 45%, rgba(67, 81, 196, .3) 100%),
        radial-gradient(circle at 85% 15%, rgba(20, 184, 166, .35) 0%, transparent 55%);
}
.dr-hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: -1;
    opacity: .55;
}
.dr-hero .breadcrumb-wrap { margin-bottom: 2rem; }
.dr-hero__row { position: relative; z-index: 1; }
.dr-hero__name {
    font-family: var(--font-head);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 .5rem;
    color: #fff;
    letter-spacing: -0.02em;
}
.dr-hero__title {
    color: rgba(255,255,255,.85);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}
.dr-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: 0;
}
.dr-hero__tag {
    display: inline-block;
    padding: .35rem .8rem;
    border-radius: 99px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: .82rem;
    font-weight: 500;
}

/* Photo pane in hero */
.dr-hero__photo {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-primary-50) 0%, var(--brand-accent-50) 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35), 0 0 0 6px rgba(255,255,255,.08);
    max-width: 320px;
    margin-left: auto;
}
.dr-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dr-hero__initials {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 700;
    color: var(--brand-primary);
}

/* ==========================================================================
   Doctor detail — sidebar
   ========================================================================== */
.dr-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.dr-infocard {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 16px;
    padding: 1.5rem;
}
.dr-infocard__title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0 0 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--ink-200);
    display: flex; align-items: center;
}
.dr-infocard__title i { color: var(--brand-primary); }
.dr-infocard__list { list-style: none; padding: 0; margin: 0; }
.dr-infocard__list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .6rem 0;
    color: var(--ink-700);
    font-size: .92rem;
    line-height: 1.55;
    border-bottom: 1px dashed var(--ink-200);
}
.dr-infocard__list li:last-child { border-bottom: 0; }
.dr-infocard__list i {
    color: var(--brand-accent);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.dr-infocard__list a { color: var(--brand-primary); text-decoration: none; }
.dr-infocard__list a:hover { text-decoration: underline; }

.dr-pill-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.dr-pill-list li {
    padding: .4rem .75rem;
    background: var(--brand-primary-50);
    color: var(--brand-primary);
    border-radius: 99px;
    font-size: .82rem;
    font-weight: 500;
}

.dr-infocard--cta {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #4351c4 100%);
    color: #fff;
    border: 0;
}
.dr-infocard--cta .dr-infocard__title { color: #fff; border-color: rgba(255,255,255,.15); }
.dr-infocard--cta .dr-infocard__title i { color: var(--brand-accent); }
.dr-infocard--cta p { color: rgba(255,255,255,.85); margin-bottom: 1rem; font-size: .92rem; }
.dr-infocard--cta .btn-primary {
    background: #fff;
    border-color: #fff;
    color: var(--brand-primary);
}
.dr-infocard--cta .btn-primary:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
    box-shadow: 0 10px 24px rgba(20, 184, 166, .35);
}

/* ==========================================================================
   Doctor detail — content sections (timeline, publications, conferences)
   ========================================================================== */
.dr-section { margin-bottom: 3rem; }
.dr-section:last-child { margin-bottom: 0; }
.dr-section__title {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0 0 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--brand-primary);
    position: relative;
}
.dr-section__title i {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: var(--brand-primary-50);
    color: var(--brand-primary);
    font-size: 1.15rem;
}

/* Timeline (education / career) */
.dr-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.dr-timeline::before {
    content: '';
    position: absolute;
    left: 156px; top: 10px; bottom: 10px;
    width: 2px;
    background: var(--ink-200);
}
.dr-timeline__item {
    display: grid;
    grid-template-columns: 130px 1fr;
    column-gap: 50px;        /* the dot lives in this gap */
    padding: .75rem 0;
    position: relative;
    align-items: start;
}
.dr-timeline__item::before {
    content: '';
    position: absolute;
    left: 151px; top: 1.2rem;            /* dot centred at 157px → middle of 50px gap */
    width: 12px; height: 12px;
    background: var(--brand-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--brand-primary-50);
    z-index: 1;
}
.dr-timeline__year {
    color: var(--brand-primary-700);
    font-weight: 700;
    font-size: .88rem;
    font-variant-numeric: tabular-nums;
    text-align: right;
    padding-top: 3px;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
}
.dr-timeline__label {
    color: var(--ink-700);
    font-size: .98rem;
    line-height: 1.55;
}

/* Publications — numbered */
.dr-publist {
    counter-reset: pub;
    list-style: none;
    padding: 0;
    margin: 0;
}
.dr-publist li {
    counter-increment: pub;
    padding: 1rem 1.25rem 1rem 3.5rem;
    margin-bottom: .75rem;
    background: var(--bg-soft);
    border-radius: 10px;
    color: var(--ink-700);
    font-size: .92rem;
    line-height: 1.6;
    position: relative;
    border-left: 3px solid var(--brand-primary);
}
.dr-publist li::before {
    content: counter(pub, decimal-leading-zero);
    position: absolute;
    left: 1rem; top: 1rem;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--brand-primary);
    font-size: 1.1rem;
}

/* Conferences — venue + topic */
.dr-conflist { list-style: none; padding: 0; margin: 0; }
.dr-conflist li {
    padding: 1rem 0;
    border-bottom: 1px dashed var(--ink-200);
}
.dr-conflist li:last-child { border-bottom: 0; }
.dr-conflist__venue {
    font-size: .78rem;
    color: var(--brand-accent-600);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .25rem;
}
.dr-conflist__topic {
    color: var(--ink-900);
    font-weight: 500;
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 991.98px) {
    .dr-hero { padding: 4rem 0 2rem; min-height: auto; }
    .dr-hero__name { font-size: 2.2rem; }
    .dr-hero__photo { max-width: 220px; margin-right: auto; margin-top: 1.5rem; }
    .dr-sidebar { position: static; margin-top: 2rem; }
    .dr-timeline::before { left: 126px; }
    .dr-timeline__item { grid-template-columns: 105px 1fr; column-gap: 40px; }
    .dr-timeline__item::before { left: 121px; }
}
@media (max-width: 575.98px) {
    .dr-hero__name { font-size: 1.75rem; }
    .dr-timeline::before { display: none; }
    .dr-timeline__item { grid-template-columns: 1fr; column-gap: 0; gap: .15rem; }
    .dr-timeline__item::before { display: none; }
    .dr-timeline__year { text-align: left; font-size: .8rem; }
    .dr-publist li { padding: .85rem 1rem .85rem 3rem; }
}

/* ---------- Why cards ---------- */
.why-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: left;
}
.why-card__icon {
    width: 54px; height: 54px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-accent-50);
    color: var(--brand-accent-600);
    border-radius: 14px;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.why-card__title { font-size: 1.1rem; font-weight: 700; color: var(--ink-900); margin-bottom: .5rem; }
.why-card__text { color: var(--ink-500); font-size: .95rem; margin: 0; }

/* ---------- Live rate banner ---------- */
.rate-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--brand-primary-50) 0%, var(--brand-accent-50) 100%);
    border: 1px solid var(--brand-primary-100);
    border-radius: 12px;
}
.rate-banner i {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: #fff;
    color: var(--brand-primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}
.rate-banner strong { color: var(--brand-primary); }
.rate-banner small  { display: block; margin-top: .1rem; font-size: .78rem; }

/* ---------- Pricing table ---------- */
.pricing-block {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.pricing-block__header {
    padding: 1.25rem 1.5rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--ink-200);
}
.pricing-table thead th {
    background: transparent;
    color: var(--ink-400);
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-color: var(--ink-200);
}
.pricing-table tbody tr { transition: background .15s ease; }
.pricing-table tbody tr:hover { background: var(--bg-soft); }
.pricing-table td, .pricing-table th { padding: 1rem 1.5rem; }
.brand-pill {
    display: inline-block;
    padding: .25rem .7rem;
    border-radius: 99px;
    font-size: .75rem;
    font-weight: 600;
    background: var(--brand-primary-50);
    color: var(--brand-primary);
}
.brand-pill--neodent { background: var(--brand-accent-50); color: var(--brand-accent-600); }

/* ---------- Page header ---------- */
.page-header {
    background: linear-gradient(135deg, #1a2278 0%, var(--brand-primary) 100%);
    color: #fff;
    padding: 5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: .35;
    pointer-events: none;
}
.page-header h1 { color: #fff; position: relative; z-index: 1; }
.page-header .lead, .page-header p { color: rgba(255,255,255,.82); position: relative; z-index: 1; }
.page-header__icon {
    width: 64px; height: 64px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 16px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 1.8rem;
    backdrop-filter: blur(6px);
}
.breadcrumb-wrap { position: relative; z-index: 1; margin-bottom: .5rem; }
.breadcrumb { margin: 0; background: transparent; padding: 0; }
.breadcrumb .breadcrumb-item, .breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.7); }
.breadcrumb a { color: #fff; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ---------- Prose (admin-authored HTML content) ---------- */
/* ============================================================
   Article / Blog post layout
   ============================================================ */

/* Hero — geniş, dekoratif pattern overlay'i ile */
.page-header--article {
    padding: 4.5rem 0 5.5rem;
    overflow: hidden;
    position: relative;
}
.page-header--article .page-header__title {
    color: #fff;
    font-size: clamp(2rem, 4vw + 1rem, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 1rem;
    max-width: 28ch;
    position: relative;
    z-index: 1;
}
.page-header--article .page-header__lead {
    color: rgba(255, 255, 255, .85);
    font-size: 1.15rem;
    line-height: 1.55;
    max-width: 60ch;
    margin: 0;
    position: relative;
    z-index: 1;
}
/* Subtle decorative grid — gives the hero some texture without an image. */
.page-header__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 85% 20%, rgba(20, 184, 166, .25), transparent 45%),
        radial-gradient(circle at 15% 90%, rgba(255, 255, 255, .08), transparent 50%);
    z-index: 0;
}
.page-header--article .breadcrumb-wrap,
.page-header--article .eyebrow {
    position: relative;
    z-index: 1;
}

/* Article meta strip */
.article-meta {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255, 255, 255, .82);
    font-size: .9rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.article-meta__sep { opacity: .5; }
.article-meta__item { white-space: nowrap; }

/* Article shell — soft contrast bg behind content area */
.article-shell {
    background: linear-gradient(180deg, var(--ink-50, #f8fafc) 0%, #fff 320px);
    padding-top: 3rem;
    padding-bottom: 4.5rem;
}

/* Sidebar — sticky, two stacked cards (TOC + sibling list) */
.article-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.article-sidebar__card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1rem;
    box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
}
.article-sidebar__title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink-900);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
}

/* TOC list */
.article-toc {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}
.article-toc li { margin-bottom: .25rem; }
.article-toc a {
    display: flex;
    gap: .65rem;
    padding: .55rem .65rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--ink-700);
    font-size: .92rem;
    line-height: 1.4;
    transition: background .15s ease, color .15s ease;
    border-left: 2px solid transparent;
}
.article-toc a:hover { background: var(--brand-primary-50); color: var(--brand-primary); }
.article-toc a.is-active {
    background: var(--brand-primary-50);
    color: var(--brand-primary);
    border-left-color: var(--brand-primary);
    font-weight: 600;
}
.article-toc__num {
    flex: 0 0 auto;
    font-size: .72rem;
    font-weight: 700;
    color: var(--ink-400);
    letter-spacing: .05em;
    padding-top: 2px;
}
.article-toc a.is-active .article-toc__num { color: var(--brand-primary); }
.article-toc__text { flex: 1; min-width: 0; }

/* Sibling article list */
.article-sibling { margin-bottom: .15rem; }
.article-sibling__link {
    display: flex;
    gap: .65rem;
    padding: .55rem .65rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--ink-700);
    font-size: .92rem;
    line-height: 1.4;
    transition: background .15s ease, color .15s ease;
}
.article-sibling__link:hover { background: var(--brand-primary-50); color: var(--brand-primary); }
.article-sibling__link.is-active {
    background: var(--brand-primary-50);
    color: var(--brand-primary);
    font-weight: 600;
}
.article-sibling__bullet {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ink-200);
    margin-top: .55rem;
    transition: background .15s ease;
}
.article-sibling__link:hover .article-sibling__bullet,
.article-sibling__link.is-active .article-sibling__bullet { background: var(--brand-primary); }

/* ─────────────────────────────────────────────────────────────────
   Article body — magazine/editorial styling for blog posts
   Goal: lose the "Word document" feel; feel like a modern publication.

   Touches that move the needle: bigger lead paragraph, gradient drop cap,
   numbered H2 chips replacing flat left borders, accent halo on H3,
   highlighted strong text, dramatic blockquote with oversized quote mark,
   per-section divider, generous breathing room.
   ───────────────────────────────────────────────────────────────── */

.article-body--blog {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 20px;
    padding: 3rem 3.25rem 2.5rem;
    box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
    counter-reset: blog-section;
    color: #2c3e50;
    font-size: 1.07rem;
    line-height: 1.82;
}
@media (max-width: 575.98px) {
    .article-body--blog { padding: 1.75rem 1.4rem 1.5rem; border-radius: 16px; }
}

/* Paragraph rhythm — more breathing room than .prose default */
.article-body--blog p {
    margin: 0 0 1.35em;
}
.article-body--blog p strong {
    color: var(--ink-900);
    font-weight: 700;
    background-image: linear-gradient(180deg, transparent 62%, rgba(20, 184, 166, .22) 62%);
    background-repeat: no-repeat;
    padding: 0 1px;
}
.article-body--blog em { color: var(--ink-700); }

/* ── LEAD paragraph — first paragraph is BIG + light, sets the tone ── */
.article-body--blog > p:first-of-type {
    font-size: 1.22rem;
    line-height: 1.65;
    color: #1a2332;
    font-weight: 400;
    margin-bottom: 1.85em;
    letter-spacing: -0.005em;
}
.article-body--blog > p:first-of-type strong {
    background-image: none;
    color: var(--ink-900);
}

/* Drop cap — gradient brand-color, generous size */
.article-body--blog > p:first-of-type::first-letter {
    font-family: 'Sora', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: .85;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--brand-primary); /* fallback */
    float: left;
    margin: .1em .18em -.05em 0;
    padding: 0;
}

/* ── H2 — section header with gradient top pill (replaces left border) ── */
.article-body--blog h2 {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.22;
    color: var(--ink-900);
    margin: 3.5rem 0 1.1rem;
    padding: 1.5rem 0 0;
    border: 0;
    position: relative;
    scroll-margin-top: 100px;
    letter-spacing: -0.015em;
    counter-increment: blog-section;
}
.article-body--blog h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    border-radius: 999px;
}
.article-body--blog h2:first-child {
    margin-top: 1rem;
}

/* ── H3 — accent dot with soft halo ── */
.article-body--blog h3 {
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 2.25rem 0 .85rem;
    padding-left: 1.4rem;
    position: relative;
    scroll-margin-top: 100px;
}
.article-body--blog h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-accent);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, .18);
}

/* ── Blockquote — magazine-style pullquote with oversized open-quote ── */
.article-body--blog blockquote {
    background: linear-gradient(135deg, var(--brand-primary-50), #fff);
    border: 0;
    border-left: 4px solid var(--brand-primary);
    border-radius: 0 14px 14px 0;
    padding: 1.5rem 1.75rem 1.5rem 3rem;
    margin: 2.25rem 0;
    font-style: normal;
    font-size: 1.12rem;
    line-height: 1.65;
    font-weight: 500;
    color: var(--ink-900);
    position: relative;
}
.article-body--blog blockquote::before {
    content: "\201C"; /* unicode left double quotation mark */
    position: absolute;
    top: -.25rem;
    left: .9rem;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--brand-primary);
    opacity: .3;
    font-family: Georgia, "Playfair Display", serif;
    pointer-events: none;
}

/* ── Lists — refined bullet/number styling ── */
.article-body--blog ul {
    list-style: none;
    padding-left: 0;
    margin: 1.25rem 0 1.5rem;
}
.article-body--blog ul li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: .65em;
}
.article-body--blog ul li::before {
    content: "";
    position: absolute;
    left: .35rem;
    top: .68em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-primary-50);
}
.article-body--blog ol {
    counter-reset: ord;
    list-style: none;
    padding-left: 0;
    margin: 1.25rem 0 1.5rem;
}
.article-body--blog ol li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: .65em;
    counter-increment: ord;
}
.article-body--blog ol li::before {
    content: counter(ord);
    position: absolute;
    left: 0;
    top: .15em;
    width: 1.6rem;
    height: 1.6rem;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .8rem;
    font-weight: 700;
}

/* ── Links — brighter, bolder, brand underline ── */
.article-body--blog a {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(52, 66, 177, .35);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: text-decoration-color .15s ease, color .15s ease;
}
.article-body--blog a:hover {
    color: var(--brand-primary-700);
    text-decoration-color: var(--brand-primary);
}

/* ── Embedded images — soft shadow + rounded ── */
.article-body--blog img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 1.75rem 0;
    box-shadow: 0 10px 30px -12px rgba(15, 23, 42, .15);
}

/* ── HR — subtle gradient divider for explicit section breaks ── */
.article-body--blog hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ink-200), transparent);
    margin: 2.5rem 0;
}

/* ── Tables — clean editorial style if used ── */
.article-body--blog table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.75rem 0;
    font-size: .96rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--ink-100);
}
.article-body--blog th {
    background: var(--brand-primary-50);
    color: var(--ink-900);
    font-weight: 700;
    padding: .85rem 1rem;
    text-align: left;
}
.article-body--blog td {
    padding: .85rem 1rem;
    border-top: 1px solid var(--ink-100);
}
.article-body--blog tr:nth-child(even) td { background: #fafbfc; }

/* Inline CTA at the end of a blog post — bigger, more confident card. */
.article-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-700) 100%);
    color: #fff;
    box-shadow: 0 14px 40px -12px rgba(52, 66, 177, .35);
    overflow: hidden;
    position: relative;
}
.article-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, .15), transparent 50%),
        radial-gradient(circle at 15% 80%, rgba(20, 184, 166, .25), transparent 50%);
    pointer-events: none;
}
.article-cta__icon {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(6px);
    color: #fff;
    border-radius: 14px;
    font-size: 1.5rem;
    position: relative;
}
.article-cta__body { flex: 1; min-width: 0; position: relative; }
.article-cta__title { font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0 0 .35rem; }
.article-cta__text  { color: rgba(255, 255, 255, .85); margin: 0; font-size: .98rem; line-height: 1.55; }
.article-cta__btn {
    flex: 0 0 auto;
    white-space: nowrap;
    background: #fff;
    color: var(--brand-primary);
    border: 0;
    font-weight: 600;
    position: relative;
}
.article-cta__btn:hover { background: var(--brand-primary-50); color: var(--brand-primary-700); }
@media (max-width: 575.98px) {
    .article-cta { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
    .article-cta__btn { align-self: stretch; text-align: center; }
}

/* Prev / Next pager */
.article-pager {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.article-pager__link {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--ink-100);
    color: var(--ink-700);
    text-decoration: none;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.article-pager__link:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -10px rgba(15, 23, 42, .15);
}
.article-pager__link--next { text-align: right; align-items: flex-end; }
.article-pager__hint {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-400);
    font-weight: 600;
}
.article-pager__title {
    font-size: .98rem;
    font-weight: 600;
    color: var(--ink-900);
    line-height: 1.35;
}
.article-pager__link:hover .article-pager__title { color: inherit; }
@media (max-width: 575.98px) {
    .article-pager { grid-template-columns: 1fr; }
    .article-pager__link--next { text-align: left; align-items: flex-start; }
}

.prose { color: var(--ink-700); font-size: 1.05rem; line-height: 1.75; }
.prose h2, .prose h3, .prose h4 {
    color: var(--ink-900);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.prose h2 { font-size: 1.65rem; }
.prose h3 { font-size: 1.35rem; }
.prose h4 { font-size: 1.15rem; }
.prose p  { margin: 0 0 1.15em; }
.prose ul, .prose ol { margin: 0 0 1.15em; padding-left: 1.25em; }
.prose li { margin-bottom: .35em; }
.prose a {
    color: var(--brand-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.prose a:hover { color: var(--brand-primary-700); }
.prose blockquote {
    border-left: 3px solid var(--brand-primary);
    background: var(--brand-primary-50);
    padding: 1rem 1.25rem;
    margin: 1.5em 0;
    border-radius: 0 10px 10px 0;
    color: var(--ink-700);
    font-style: italic;
}
.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
}
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: .95rem;
}
.prose table th, .prose table td {
    border: 1px solid var(--ink-200);
    padding: .7rem 1rem;
    text-align: left;
}
.prose table th {
    background: var(--bg-soft);
    color: var(--ink-900);
    font-weight: 600;
}
.prose hr {
    border: 0;
    border-top: 1px solid var(--ink-200);
    margin: 2rem 0;
}
.prose strong { color: var(--ink-900); }

/* ---------- Page-list sidecard (dynamic sub-pages under a parent) ---------- */
.page-list__item {
    border-bottom: 1px dashed var(--ink-200);
}
.page-list__item:last-child { border-bottom: 0; }
.page-list__link {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 0;
    color: var(--ink-700);
    text-decoration: none;
    font-weight: 500;
    transition: color .15s ease, padding-left .15s ease;
}
.page-list__link i { color: var(--brand-primary); font-size: .85rem; flex-shrink: 0; }
.page-list__link:hover { color: var(--brand-primary); padding-left: .4rem; }
.page-list__link.is-active { color: var(--brand-primary); font-weight: 600; }

/* ---------- Sidecards ---------- */
.sidecard {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}
.sidecard__title { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--ink-900); margin-bottom: 1rem; }
.sidecard__list { list-style: none; padding: 0; margin: 0; }
.sidecard__list li {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: .75rem 0;
    border-bottom: 1px dashed var(--ink-200);
    color: var(--ink-500);
}
.sidecard__list li:last-child { border-bottom: 0; }
.sidecard__list strong { color: var(--brand-primary); font-family: var(--font-head); font-size: 1.15rem; }
.sidecard--accent {
    background: linear-gradient(135deg, var(--brand-accent-50) 0%, #fff 100%);
    border-color: var(--brand-accent);
}

/* ---------- Contact ---------- */
.contact-card { border-radius: var(--radius-lg); }
.form-control, .form-select {
    border: 1px solid var(--ink-200);
    border-radius: 10px;
    padding: .8rem 1rem;
    font-size: .95rem;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control:focus, .form-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 .25rem rgba(52, 66, 177, .18);
}
.form-label { font-weight: 600; color: var(--ink-700); font-size: .9rem; }

.contact-info { padding: 0; margin: 0; }
.contact-info li {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--ink-200);
}
.contact-info li:last-child { border-bottom: 0; }
.contact-info__icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: var(--brand-primary-50);
    color: var(--brand-primary);
    font-size: 1.1rem;
}
.contact-info small { display: block; color: var(--ink-400); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }
.contact-info strong, .strong-link { color: var(--ink-900); font-weight: 600; }
.strong-link:hover { color: var(--brand-primary); }
.map-wrap {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--ink-200);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Full-width map on the contact page only.
   Sits between the form section and the CTA band; spans 100% viewport width
   so the location feels prominent. Aspect ratio shrinks on small screens
   so the map stays usable on mobile.

   Brand-tinted: Google Maps Embed API doesn't accept custom styles, so we
   pull the iframe into the site palette with stacked CSS filters. Layered
   gradient on a wrapper handles the deep-indigo wash; on hover/touch the
   map fades back to its native colors so users can read details (route
   names, POIs) at full clarity. */
.contact-map {
    position: relative;
    width: 100%;
    aspect-ratio: 32 / 7;            /* daha dar / ince şerit */
    background: var(--ink-100);
    border-top: 1px solid var(--ink-200);
    border-bottom: 1px solid var(--ink-200);
    line-height: 0;
    margin-top: 1rem;
    overflow: hidden;
    isolation: isolate; /* keeps blend-mode contained to this section */
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
@media (max-width: 991.98px) { .contact-map { aspect-ratio: 16 / 9; } }
@media (max-width: 575.98px) { .contact-map { aspect-ratio: 4 / 3; } }

/* ---------- Google Reviews section ---------- */
.reviews {
    background:
        radial-gradient(ellipse at top, var(--brand-primary-50) 0%, transparent 60%),
        var(--bg);
}
.reviews-g-logo {
    display: inline-block;
    vertical-align: -3px;
    margin-right: .4rem;
}

/* Sample/preview badge (only shown in DEBUG when no API data) */
.reviews-sample-badge {
    max-width: 680px;
    margin: 0 auto 1rem;
    padding: .75rem 1rem;
    background: #fff4e0;
    border: 1px solid #ffcf7a;
    border-radius: 10px;
    color: #8b5a00;
    font-size: .85rem;
    text-align: center;
}

/* Score card (left column) */
.reviews-score {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 20px;
    padding: 2.25rem 1.75rem 1.75rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(14, 18, 48, .06);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.reviews-score::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
}
.reviews-score__brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    color: var(--ink-700);
    font-size: .95rem;
    margin-bottom: 1.25rem;
}
.reviews-score__number {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #5764d8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .75rem;
}
.reviews-score__stars {
    color: #f5a623;
    font-size: 1.55rem;
    letter-spacing: 2px;
    margin-bottom: .75rem;
    line-height: 1;
}
.reviews-score__count {
    color: var(--ink-500);
    font-size: .92rem;
    margin: 0;
}
.reviews-score__trust {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--ink-200);
    width: 100%;
    color: var(--ink-500);
    font-size: .82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}
.reviews-score__trust i { color: var(--brand-accent); font-size: 1rem; }

/* Review cards inside the carousel */
.reviews-carousel {
    height: 100%;
    padding: .25rem .25rem 3rem;
}
.reviews-carousel .swiper-slide { height: auto; display: flex; }
.reviews-carousel .swiper-slide > article { width: 100%; }

.review-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 18px;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    position: relative;
}
.review-card::before {
    content: '"';
    position: absolute;
    top: .25rem; left: 1rem;
    font-family: var(--font-head);
    font-size: 5rem;
    color: var(--brand-primary-50);
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.review-card__stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: .9rem;
    position: relative;
    z-index: 1;
}
.review-card__quote {
    color: var(--ink-700);
    line-height: 1.7;
    font-size: .95rem;
    margin: 0 0 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    font-style: normal;
}
.review-card__footer {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--ink-200);
}
.review-card__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink-100);
    object-fit: cover;
    flex-shrink: 0;
}
.review-card__avatar--placeholder {
    display: inline-flex;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
}
.review-card__meta {
    flex: 1 1 auto;
    min-width: 0;
}
.review-card__name {
    display: block;
    font-weight: 600;
    color: var(--ink-900);
    font-size: .95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review-card__time { color: var(--ink-400); font-size: .78rem; }

/* Carousel pagination */
.reviews-carousel__pagination {
    position: absolute;
    bottom: .5rem;
    left: 0; right: 0;
    text-align: center;
    z-index: 2;
}
.reviews-carousel__pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: var(--ink-200);
    opacity: 1;
    margin: 0 4px;
    transition: background .15s ease, width .15s ease;
}
.reviews-carousel__pagination .swiper-pagination-bullet-active {
    background: var(--brand-primary);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 991.98px) {
    .reviews-score { margin-bottom: 1rem; }
    .reviews-score__number { font-size: 4rem; }
}

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-700) 60%, #0e1458 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    right: -120px; top: -120px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, .35) 0%, transparent 70%);
}
.cta-band h2, .cta-band p { position: relative; z-index: 1; }
.cta-band .btn-light { color: var(--brand-primary); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────
   Footer — three-tier layout split by full-width gradient dividers.
   Tier 1: 4-column main grid (brand · links · treatments · contact)
   Tier 2: brand row (logo · social · copyright)
   Tier 3: centered legal links + last-updated timestamp
   ───────────────────────────────────────────────────────────────── */
.site-footer {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(52, 66, 177, .08), transparent 70%),
        linear-gradient(180deg, #0e1230 0%, #0a0d24 100%);
    color: rgba(255, 255, 255, .72);
    position: relative;
}

.footer-tagline {
    color: rgba(255, 255, 255, .5);
    font-size: .88rem;
    line-height: 1.75;
    max-width: 24rem;
    margin-top: .25rem;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.75rem;
    letter-spacing: .04em;
    position: relative;
    padding-bottom: .85rem;
}
/* Underline accent — short gradient bar under each section title */
.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--brand-accent), transparent);
    border-radius: 2px;
}

.footer-links { padding: 0; margin: 0; }
.footer-links li { padding: .5rem 0; }
.footer-links a {
    color: rgba(255, 255, 255, .68);
    font-size: .92rem;
    transition: color .15s ease, padding-left .18s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--brand-accent);
    padding-left: .25rem;
}

.footer-contact { padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    gap: .75rem;
    padding: .65rem 0;
    color: rgba(255, 255, 255, .68);
    font-size: .92rem;
    line-height: 1.6;
    align-items: flex-start;
}
.footer-contact i {
    color: var(--brand-accent);
    margin-top: 5px;
    font-size: .9rem;
    flex-shrink: 0;
}
.footer-contact a { color: rgba(255, 255, 255, .68); transition: color .15s ease; }
.footer-contact a:hover { color: var(--brand-accent); }

/* ── Full-width gradient divider — fades from edge transparency ── */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(20, 184, 166, .25) 25%,
        rgba(255, 255, 255, .35) 50%,
        rgba(20, 184, 166, .25) 75%,
        transparent 100%);
    margin: 0;
}

/* ── Brand row: copyright (left) · socials (center) · designer credit (right) ──
   Uses a 3-column grid so the social cluster sits perfectly centered even
   when the side items have different widths. */
.footer-brand-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.25rem;
}
.footer-brand-row__copy {
    color: rgba(255, 255, 255, .55);
    font-size: .82rem;
    letter-spacing: .01em;
    text-align: left;
    justify-self: start;
}
.footer-brand-row__copy strong { color: rgba(255, 255, 255, .85); font-weight: 600; }
.footer-brand-row > .footer-credit__brand { justify-self: end; }
.footer-credit__brand {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .14em;
    font-size: .76rem;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #7bebdf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: filter .15s ease;
}
.footer-credit__brand:hover { filter: brightness(1.2); }

/* ── Social icons — minimal: bare icons, accent on hover ── */
.footer-socials {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}
.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .8);
    font-size: 1.15rem;
    line-height: 1;
    transition: color .2s ease, transform .2s ease;
}
.footer-social:hover {
    color: var(--brand-accent);
    transform: translateY(-2px);
}

/* ── Legal row: centered inline links + last-updated time ── */
.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .65rem 1rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
    text-align: center;
}
.footer-legal a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .15s ease;
}
.footer-legal a:hover { color: var(--brand-accent); }
.footer-legal__sep { color: rgba(255, 255, 255, .2); font-weight: 300; }
.footer-updated {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
}
.footer-updated time { font-variant-numeric: tabular-nums; }

/* Responsive: stack brand row on small screens, center everything */
@media (max-width: 767.98px) {
    .footer-brand-row {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1rem;
        text-align: center;
    }
    .footer-brand-row__copy {
        text-align: center;
        justify-self: center;
    }
    .footer-brand-row > .footer-credit__brand { justify-self: center; }
    .footer-legal { gap: .55rem .85rem; font-size: .78rem; }
}

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed;
    right: 22px; bottom: 22px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
    z-index: 999;
    transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* ==========================================================================
   Dental Implants — bespoke landing template
   ========================================================================== */

/* --- Hero success-rate badge --- */
.page-header--implants {
    padding: 6rem 0 4rem;
    background:
        radial-gradient(circle at 90% 10%, rgba(20, 184, 166, .25) 0%, transparent 55%),
        linear-gradient(135deg, #12195a 0%, var(--brand-primary) 55%, #4351c4 100%);
}
.page-header--implants h1 { max-width: 760px; line-height: 1.12; }
.page-header--implants .btn-outline-light { border-radius: 10px; }

.implant-hero-badge {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: #fff;
}
.implant-hero-badge__big {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 4.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #7bebdf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
}
.implant-hero-badge__label {
    color: rgba(255,255,255,.9);
    font-weight: 600;
    margin: .5rem 0 .75rem;
    font-size: 1rem;
}
.implant-hero-badge__note { color: rgba(255,255,255,.55); font-size: .75rem; }

/* --- Intro illustration --- */
.implant-illustration {
    position: relative;
    aspect-ratio: 5 / 4;
    border-radius: 24px;
    background:
        radial-gradient(circle at 30% 20%, var(--brand-accent-50) 0%, transparent 50%),
        linear-gradient(135deg, var(--brand-primary-50) 0%, #fff 70%);
    border: 1px solid var(--ink-200);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.implant-illustration::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(52, 66, 177, .08) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: .5;
}
.implant-illustration__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    padding: 2rem;
}
.implant-illustration__tooth {
    width: 140px; height: 140px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    color: #fff;
    font-size: 4rem;
    box-shadow:
        0 0 0 14px rgba(255,255,255,.6),
        0 0 0 28px rgba(255,255,255,.3),
        0 20px 50px rgba(52, 66, 177, .3);
}
.implant-illustration__specs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
}
.spec-chip {
    background: #fff;
    border: 1px solid var(--ink-200);
    padding: .45rem .85rem;
    border-radius: 99px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--ink-700);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    box-shadow: var(--shadow-sm);
}

/* --- Advantage cards (icon grid) --- */
.advantage-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.advantage-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--brand-primary-50);
    opacity: 0;
    transition: opacity .3s ease;
}
.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.advantage-card:hover::before { opacity: 1; }
.advantage-card > * { position: relative; z-index: 1; }
.advantage-card__icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 18px rgba(52, 66, 177, .25);
}
.advantage-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: .5rem;
}
.advantage-card__text {
    color: var(--ink-500);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Process timeline --- */
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    counter-reset: step;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 36px;                          /* aligns with the number circle middle */
    left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-primary-100) 15%, var(--brand-primary-100) 85%, transparent);
    z-index: 0;
}
.process-step {
    position: relative;
    text-align: center;
    padding-top: .5rem;
}
.process-step__num {
    position: relative;
    z-index: 1;
    margin: 0 auto .75rem;
    width: 72px; height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(52, 66, 177, .15);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.process-step:hover .process-step__num {
    background: var(--brand-primary);
    color: #fff;
    transform: scale(1.08);
}
.process-step__icon {
    color: var(--brand-accent);
    font-size: 1.35rem;
    margin-bottom: .5rem;
}
.process-step__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: .5rem;
}
.process-step__text {
    color: var(--ink-500);
    font-size: .85rem;
    line-height: 1.55;
    margin: 0;
}

/* --- Suitability cards --- */
.suit-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid var(--ink-200);
    height: 100%;
}
.suit-card--good {
    background: linear-gradient(135deg, var(--brand-accent-50) 0%, #fff 100%);
    border-color: var(--brand-accent);
}
.suit-card--caution {
    background: linear-gradient(135deg, #fff7e6 0%, #fff 100%);
    border-color: #f5a623;
}
.suit-card__header {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(14, 18, 48, .07);
}
.suit-card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.suit-card--good .suit-card__icon {
    background: var(--brand-accent);
    color: #fff;
}
.suit-card--caution .suit-card__icon {
    background: #f5a623;
    color: #fff;
}
.suit-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0;
}
.suit-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.suit-card__list li {
    position: relative;
    padding: .5rem 0 .5rem 1.75rem;
    color: var(--ink-700);
    font-size: .95rem;
    line-height: 1.55;
}
.suit-card__list li::before {
    content: '';
    position: absolute;
    left: 0; top: .85rem;
    width: 14px; height: 14px;
    border-radius: 50%;
}
.suit-card--good .suit-card__list li::before {
    background: var(--brand-accent);
    box-shadow: 0 0 0 4px var(--brand-accent-50);
}
.suit-card--caution .suit-card__list li::before {
    background: #f5a623;
    box-shadow: 0 0 0 4px #fff0d6;
}

/* --- FAQ accordion --- */
.faq-accordion .accordion-item {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 14px !important;
    margin-bottom: .75rem;
    overflow: hidden;
}
.faq-accordion .accordion-button {
    background: #fff;
    color: var(--ink-900);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: 0;
    gap: 1rem;
    box-shadow: none !important;
    font-size: 1.02rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--brand-primary-50);
    color: var(--brand-primary);
}
.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233442b1'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq-accordion .faq-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .9rem;
    color: var(--brand-accent);
    min-width: 2.5rem;
    letter-spacing: .04em;
    flex-shrink: 0;
}
.faq-accordion .accordion-button:not(.collapsed) .faq-num {
    color: var(--brand-primary-700);
}
.faq-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem 4rem;
    color: var(--ink-700);
    line-height: 1.75;
    font-size: .98rem;
}

/* --- Method cards (orthodontics methods grid) --- */
.method-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 18px;
    padding: 1.75rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.method-card--featured {
    background:
        radial-gradient(circle at 0% 100%, var(--brand-accent-50) 0%, transparent 60%),
        linear-gradient(135deg, var(--brand-primary-50) 0%, #fff 100%);
    border-color: var(--brand-primary);
    border-width: 2px;
}
.method-card--featured::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 140px; height: 140px;
    background: radial-gradient(circle at 100% 0%, var(--brand-accent) 0%, transparent 70%);
    opacity: .18;
    pointer-events: none;
}
.method-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.method-card__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-primary-50);
    color: var(--brand-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}
.method-card--featured .method-card__icon {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(52, 66, 177, .3);
}
.method-card__tag {
    font-size: .68rem;
    letter-spacing: .16em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-primary);
    background: var(--brand-primary-50);
    padding: .35rem .75rem;
    border-radius: 99px;
}
.method-card--featured .method-card__tag {
    background: var(--brand-accent);
    color: #fff;
}
.method-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: .65rem;
    line-height: 1.3;
}
.method-card--featured .method-card__title {
    font-size: 1.45rem;
}
.method-card__text {
    color: var(--ink-500);
    font-size: .95rem;
    line-height: 1.65;
    margin: 0 0 1.25rem;
    flex-grow: 1;
}
.method-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--ink-200);
}
.method-card__chip {
    background: var(--ink-100);
    color: var(--ink-700);
    padding: .3rem .65rem;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 500;
}
.method-card--featured .method-card__chip {
    background: #fff;
    border: 1px solid var(--brand-primary-100);
    color: var(--brand-primary);
}

/* --- Age group cards --- */
.age-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.age-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.age-card__icon {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 24px rgba(52, 66, 177, .25);
}
.age-card__age {
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brand-accent-600);
    font-weight: 700;
    margin-bottom: .35rem;
}
.age-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: .75rem;
}
.age-card__text {
    color: var(--ink-500);
    font-size: .95rem;
    line-height: 1.65;
    margin: 0;
    text-align: left;
}

/* --- Care / daily-life cards --- */
.care-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    height: 100%;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.care-card:hover {
    border-color: var(--brand-primary-100);
    box-shadow: var(--shadow-sm);
}
.care-card__icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--brand-accent-50);
    color: var(--brand-accent-600);
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.care-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0 0 .3rem;
}
.care-card__text {
    color: var(--ink-500);
    font-size: .88rem;
    line-height: 1.55;
    margin: 0;
}

/* --- Aesthetic dentistry hero (rose-gold glow) --- */
.page-header--aesthetic {
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 195, 215, .20) 0%, transparent 50%),
        radial-gradient(circle at 10% 95%, rgba(20, 184, 166, .20) 0%, transparent 45%),
        linear-gradient(135deg, #12195a 0%, var(--brand-primary) 55%, #4351c4 100%);
}
.implant-illustration--aesthetic .implant-illustration__tooth {
    background: linear-gradient(135deg, #fff 0%, #fde9f1 45%, var(--brand-accent) 100%);
    color: var(--brand-primary);
}

/* --- Aesthetic services grid cards (8-card gateway) --- */
.aest-service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    text-decoration: none;
    color: var(--ink-700);
    position: relative;
    overflow: hidden;
}
.aest-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--ink-700);
}
.aest-service-card--linked:hover {
    border-color: var(--brand-primary);
}
.aest-service-card__tag {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: .65rem;
    letter-spacing: .14em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-primary);
    background: var(--brand-primary-50);
    padding: .25rem .65rem;
    border-radius: 99px;
}
.aest-service-card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 18px rgba(52, 66, 177, .22);
}
.aest-service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: .5rem;
    line-height: 1.3;
}
.aest-service-card__text {
    color: var(--ink-500);
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}
.aest-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--ink-200);
    color: var(--brand-primary);
    font-size: .85rem;
    font-weight: 600;
}
.aest-service-card--linked:hover .aest-service-card__link {
    gap: .55rem;
}

/* --- Package cards (3-tier smile makeover packages) --- */
.pkg-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pkg-card--light   { background: linear-gradient(180deg, var(--ink-100) 0%, #fff 50%); }
.pkg-card--premium {
    background: linear-gradient(180deg, var(--brand-primary-50) 0%, #fff 50%);
    border-color: var(--brand-primary);
}
.pkg-card--dark    { background: linear-gradient(180deg, #eef0f3 0%, #fff 50%); }

.pkg-card--featured {
    border-width: 2px;
    box-shadow: 0 20px 60px rgba(52, 66, 177, .18);
    transform: translateY(-8px);
}
.pkg-card--featured:hover { transform: translateY(-12px); }

.pkg-card__ribbon {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: #fff;
    font-size: .7rem;
    letter-spacing: .14em;
    font-weight: 700;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 99px;
    box-shadow: 0 6px 16px rgba(52, 66, 177, .3);
    white-space: nowrap;
}
.pkg-card__tag {
    display: inline-block;
    font-size: .7rem;
    letter-spacing: .16em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: .75rem;
}
.pkg-card--light .pkg-card__tag    { color: var(--ink-500); }
.pkg-card--premium .pkg-card__tag  { color: var(--brand-primary); }
.pkg-card--dark .pkg-card__tag     { color: var(--neodent-color); }

.pkg-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: .35rem;
}
.pkg-card__duration {
    display: inline-flex;
    align-items: center;
    font-size: .82rem;
    color: var(--ink-500);
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed var(--ink-200);
}
.pkg-card__include {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}
.pkg-card__include li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .5rem 0;
    font-size: .92rem;
    color: var(--ink-700);
    line-height: 1.5;
}
.pkg-card__include i {
    color: var(--brand-accent);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.pkg-card--premium .pkg-card__include i { color: var(--brand-primary); }
.pkg-card__who {
    font-size: .85rem;
    color: var(--ink-500);
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}
.pkg-card__cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    padding-top: 1rem;
    border-top: 1px solid var(--ink-200);
    transition: gap .15s ease;
}
.pkg-card__cta:hover { gap: .7rem; color: var(--brand-primary-700); }
.pkg-card--featured .pkg-card__cta {
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), #5764d8);
    color: #fff;
    padding: .85rem 1rem;
    border: 0;
    border-radius: 10px;
    margin-top: 0;
}
.pkg-card--featured .pkg-card__cta:hover { color: #fff; box-shadow: 0 8px 20px rgba(52, 66, 177, .3); }

@media (max-width: 991.98px) {
    .pkg-card--featured { transform: none; }
    .pkg-card--featured:hover { transform: translateY(-4px); }
}

/* --- Veneer hero (champagne glow) --- */
.page-header--veneer {
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 215, 165, .22) 0%, transparent 50%),
        radial-gradient(circle at 10% 95%, rgba(20, 184, 166, .20) 0%, transparent 45%),
        linear-gradient(135deg, #12195a 0%, var(--brand-primary) 55%, #4351c4 100%);
}
.implant-illustration--veneer .implant-illustration__tooth {
    background: linear-gradient(135deg, #fff 0%, #f5e8d0 45%, var(--brand-accent) 100%);
    color: var(--brand-primary);
}

/* --- Prep-spectrum cards (laminate veneer preparation types) --- */
.prep-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
}
.prep-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prep-card--featured {
    border: 2px solid var(--brand-primary);
    background: linear-gradient(135deg, var(--brand-primary-50) 0%, #fff 50%);
    box-shadow: var(--shadow-md);
}
.prep-card--featured::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
}
.prep-card__tag {
    display: inline-block;
    align-self: flex-start;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 99px;
    margin-bottom: 1.25rem;
}
.prep-card--teal .prep-card__tag    { background: var(--brand-accent-50); color: var(--brand-accent-600); }
.prep-card--primary .prep-card__tag { background: var(--brand-primary);   color: #fff; }
.prep-card--warning .prep-card__tag { background: #fff4e0; color: #c47a00; }
.prep-card__depth {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--ink-200);
}
.prep-card__depth strong {
    font-family: var(--font-head);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--ink-900);
    line-height: 1;
}
.prep-card__depth small { color: var(--ink-400); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.prep-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: .75rem;
}
.prep-card__text {
    color: var(--ink-500);
    font-size: .92rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.prep-card__pros, .prep-card__cons { margin-bottom: .5rem; }
.prep-card__label {
    display: inline-block;
    font-size: .68rem;
    letter-spacing: .16em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: .4rem;
}
.prep-card__label--pro { color: #16a34a; }
.prep-card__label--con { color: #c47a00; }
.prep-card__pros ul, .prep-card__cons ul {
    list-style: none; padding: 0; margin: 0;
}
.prep-card__pros li, .prep-card__cons li {
    padding: .2rem 0;
    color: var(--ink-700);
    font-size: .88rem;
    display: flex;
    align-items: flex-start;
    gap: .4rem;
}
.prep-card__pros li i { color: #16a34a; flex-shrink: 0; margin-top: 3px; }
.prep-card__cons li i { color: #c47a00; flex-shrink: 0; margin-top: 3px; }

/* --- Mockup spotlight (dark gradient panel, 4-item grid) --- */
.mockup-spotlight {
    background:
        radial-gradient(circle at 85% 20%, rgba(20, 184, 166, .28) 0%, transparent 55%),
        linear-gradient(135deg, #12195a 0%, var(--brand-primary) 60%, #4351c4 100%);
    color: #fff;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.mockup-spotlight::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.mockup-spotlight > * { position: relative; z-index: 1; }
.mockup-spotlight__intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}
.mockup-spotlight__intro .lead { color: rgba(255,255,255,.82); }
.mockup-spotlight__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.mockup-spotlight__item {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(6px);
}
.mockup-spotlight__icon {
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: var(--brand-accent);
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.mockup-spotlight__item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
    font-family: var(--font-body);
}
.mockup-spotlight__item p {
    color: rgba(255,255,255,.78);
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 991.98px) {
    .mockup-spotlight__grid { grid-template-columns: repeat(2, 1fr); }
    .mockup-spotlight { padding: 2rem 1.5rem; }
}
@media (max-width: 575.98px) {
    .mockup-spotlight__grid { grid-template-columns: 1fr; }
}

/* --- 7-step timeline (laminate veneer) --- */
.process-timeline--seven { grid-template-columns: repeat(7, 1fr); gap: .75rem; }
@media (max-width: 1199.98px) {
    .process-timeline--seven { grid-template-columns: repeat(3, 1fr); gap: 2rem 1rem; }
    .process-timeline--seven::before { display: none; }
}
@media (max-width: 575.98px) {
    .process-timeline--seven { grid-template-columns: 1fr; }
}

/* --- Process timeline with 6 steps (endodontics) --- */
.process-timeline--six { grid-template-columns: repeat(6, 1fr); gap: 1rem; }
@media (max-width: 1199.98px) {
    .process-timeline--six { grid-template-columns: repeat(3, 1fr); gap: 2rem 1rem; }
    .process-timeline--six::before { display: none; }
}
@media (max-width: 575.98px) {
    .process-timeline--six { grid-template-columns: 1fr; }
}

/* --- Teeth-whitening hero (bright sun-kissed accent) --- */
.page-header--whitening {
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 235, 120, .28) 0%, transparent 55%),
        radial-gradient(circle at 15% 88%, rgba(20, 184, 166, .18) 0%, transparent 45%),
        linear-gradient(135deg, #12195a 0%, var(--brand-primary) 55%, #4351c4 100%);
}
.implant-illustration--whitening .implant-illustration__tooth {
    background: linear-gradient(135deg, #ffe066 0%, #fff 60%, var(--brand-accent) 100%);
    color: #f5b742;
}

/* --- Vita shade scale --- */
.shade-scale {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
}
.shade-scale__track {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4px;
    margin-bottom: 1.5rem;
    height: 56px;
}
.shade-chip {
    border-radius: 6px;
    box-shadow: inset 0 -3px 8px rgba(0,0,0,.08);
    transition: transform .15s ease;
}
.shade-chip:hover { transform: scaleY(1.08); }
.shade-scale__labels {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.shade-scale__label {
    flex: 1 1 220px;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: var(--ink-100);
}
.shade-scale__label--after { background: linear-gradient(135deg, var(--brand-accent-50) 0%, #fff 100%); border: 1px solid var(--brand-accent); }
.shade-scale__tag {
    display: block;
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-400);
    margin-bottom: .35rem;
    font-weight: 700;
}
.shade-scale__label strong {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--ink-900);
    display: block;
    line-height: 1;
    margin-bottom: .2rem;
}
.shade-scale__label small { color: var(--ink-500); font-size: .85rem; }
.shade-scale__arrow {
    font-size: 2rem;
    color: var(--brand-primary);
    flex: 0 0 auto;
}

/* --- Diet cards (eat / avoid) --- */
.diet-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 18px;
    padding: 1.75rem;
    height: 100%;
}
.diet-card--ok {
    background: linear-gradient(135deg, #ecfbf3 0%, #fff 100%);
    border-color: #16a34a;
}
.diet-card--avoid {
    background: linear-gradient(135deg, #fdecef 0%, #fff 100%);
    border-color: #dc3545;
}
.diet-card__title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink-900);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--ink-200);
}
.diet-card--ok .diet-card__title i    { color: #16a34a; }
.diet-card--avoid .diet-card__title i { color: #dc3545; }
.diet-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .3rem .75rem;
}
.diet-card__list li {
    color: var(--ink-700);
    font-size: .92rem;
    padding: .3rem 0;
    line-height: 1.45;
}
@media (max-width: 575.98px) {
    .diet-card__list { grid-template-columns: 1fr; }
    .shade-scale__track { height: 42px; grid-template-columns: repeat(6, 1fr) repeat(6, 1fr); gap: 3px; }
}

/* --- Myth vs Fact cards --- */
.myth-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.myth-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.myth-card__myth,
.myth-card__fact { padding: 1.5rem 1.75rem; }
.myth-card__myth {
    background: linear-gradient(135deg, #fff0f1 0%, #fff 100%);
    border-bottom: 1px dashed var(--ink-200);
}
.myth-card__fact {
    background: linear-gradient(135deg, #e9f9ef 0%, #fff 100%);
}
.myth-card__label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #c02b3a;
    margin-bottom: .5rem;
}
.myth-card__label i { font-size: .9rem; }
.myth-card__label--fact { color: #16a34a; }
.myth-card__myth p {
    color: var(--ink-700);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}
.myth-card__fact p {
    color: var(--ink-900);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

/* --- Pediatric hero softer palette (keeps structure from implants hero) --- */
.page-header--pediatric {
    background:
        radial-gradient(circle at 85% 15%, rgba(245, 166, 35, .25) 0%, transparent 55%),
        radial-gradient(circle at 15% 85%, rgba(20, 184, 166, .20) 0%, transparent 45%),
        linear-gradient(135deg, #1e2a82 0%, var(--brand-primary) 60%, #5564d2 100%);
}
.implant-illustration--pediatric .implant-illustration__tooth {
    background: linear-gradient(135deg, #ff8fb8 0%, #f5a623 50%, var(--brand-accent) 100%);
}

/* --- Age stage cards (4-col) --- */
.stage-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 18px;
    padding: 1.75rem;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    position: relative;
    overflow: hidden;
}
.stage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.stage-card__icon {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8fb8 0%, var(--brand-accent) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(255, 143, 184, .35);
}
.stage-card:nth-child(2) .stage-card__icon { background: linear-gradient(135deg, var(--brand-accent) 0%, #7bebdf 100%); box-shadow: 0 8px 20px rgba(20, 184, 166, .35); }
.stage-card:nth-child(3) .stage-card__icon { background: linear-gradient(135deg, var(--brand-primary) 0%, #5764d8 100%); box-shadow: 0 8px 20px rgba(52, 66, 177, .35); }
.stage-card:nth-child(4) .stage-card__icon { background: linear-gradient(135deg, #f5a623 0%, #ffd36b 100%); box-shadow: 0 8px 20px rgba(245, 166, 35, .35); }
.stage-card__age {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand-accent-600);
    font-weight: 700;
    margin-bottom: .3rem;
}
.stage-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: .75rem;
}
.stage-card__text {
    color: var(--ink-500);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.stage-card__focus {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px dashed var(--ink-200);
    padding-top: .85rem;
}
.stage-card__focus li {
    display: flex;
    align-items: center;
    gap: .25rem;
    color: var(--ink-700);
    font-size: .82rem;
    font-weight: 500;
    padding: .2rem 0;
}
.stage-card__focus i { color: var(--brand-primary); font-size: 1rem; flex-shrink: 0; }

/* --- Service cards (simpler, smaller) --- */
.svc-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 14px;
    padding: 1.25rem;
    height: 100%;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.svc-card:hover {
    border-color: var(--brand-primary-100);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.svc-card__icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--brand-primary-50);
    color: var(--brand-primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: .85rem;
}
.svc-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0 0 .35rem;
}
.svc-card__text {
    color: var(--ink-500);
    font-size: .85rem;
    line-height: 1.55;
    margin: 0;
}

/* --- First-visit cards (numbered comic-strip style) --- */
.fv-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    position: relative;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.fv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.fv-card__num {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--brand-accent);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 6px 14px rgba(20, 184, 166, .35);
}
.fv-card__icon {
    width: 56px; height: 56px;
    margin: .5rem auto 1rem;
    border-radius: 14px;
    background: var(--brand-accent-50);
    color: var(--brand-accent-600);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
}
.fv-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: .5rem;
}
.fv-card__text {
    color: var(--ink-500);
    font-size: .88rem;
    line-height: 1.55;
    margin: 0;
}

/* --- Tell-Show-Do calming cards --- */
.calm-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.calm-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 130px; height: 130px;
    background: radial-gradient(circle at 100% 0%, var(--brand-accent-50) 0%, transparent 70%);
}
.calm-card__badge {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
    z-index: 1;
}
.calm-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}
.calm-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: .5rem;
    position: relative;
    z-index: 1;
}
.calm-card__text {
    color: var(--ink-500);
    font-size: .92rem;
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* --- Bottle-decay warning block --- */
.bottle-alert {
    background: linear-gradient(135deg, #fff5e6 0%, #fff 80%);
    border: 1px solid #f5a623;
    border-radius: 20px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(245, 166, 35, .08);
}
.bottle-alert::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle at 100% 0%, rgba(245, 166, 35, .18) 0%, transparent 60%);
}
.bottle-alert__head {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.bottle-alert__icon {
    width: 56px; height: 56px;
    flex-shrink: 0;
    background: #f5a623;
    color: #fff;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 8px 22px rgba(245, 166, 35, .4);
}
.bottle-alert__eyebrow {
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    color: #c77a00;
    display: block;
    margin-bottom: .25rem;
}
.bottle-alert__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0 0 .25rem;
}
.bottle-alert__lead { color: var(--ink-700); }
.bottle-alert__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem 1.5rem;
    position: relative;
    z-index: 1;
}
.bottle-alert__list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .5rem 0;
    color: var(--ink-700);
    font-size: .95rem;
    line-height: 1.5;
}
.bottle-alert__list i {
    color: #16a34a;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive tweaks for pediatric */
@media (max-width: 991.98px) {
    .bottle-alert__list { grid-template-columns: 1fr; }
}
@media (max-width: 575.98px) {
    .bottle-alert { padding: 1.5rem; }
    .bottle-alert__head { flex-direction: column; gap: .75rem; }
    .stage-card { padding: 1.5rem; }
}

/* --- Mini price cards --- */
.mini-price-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.mini-price-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.mini-price-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-900);
    margin: 0 0 .5rem;
}
.mini-price-card__value {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--brand-primary);
    line-height: 1.1;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
    .process-timeline::before { display: none; }
    .implant-hero-badge__big { font-size: 3.2rem; }
}
@media (max-width: 575.98px) {
    .process-timeline { grid-template-columns: 1fr; }
    .advantage-card { padding: 1.5rem; }
    .faq-accordion .accordion-body { padding-left: 1.5rem; }
    .faq-accordion .accordion-button { padding: 1rem 1.25rem; font-size: .95rem; }
    .page-header--implants { padding: 4rem 0 3rem; }
}

/* ---------- Scroll animations ---------- */
.section-heading, .treatment-card, .brand-card, .doctor-card, .why-card {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}
.section-heading.in-view, .treatment-card.in-view,
.brand-card.in-view, .doctor-card.in-view, .why-card.in-view {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .section-heading, .treatment-card, .brand-card, .doctor-card, .why-card {
        opacity: 1 !important; transform: none !important; transition: none !important;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .hero { padding: 4rem 0 3rem; }
    .hero-title { font-size: 2.5rem; }
    .section { padding: 3.5rem 0; }
    .page-header { padding: 3.5rem 0 2.5rem; }
    .page-header h1 { font-size: 2.2rem; }
    .brand-card, .treatment-card { padding: 1.75rem; }
    .site-nav .navbar-nav { padding: .75rem 0; }
    .site-nav .nav-link { padding: .75rem 0 !important; }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 2rem; }
    .hero-card--top, .hero-card--bottom { display: none; }
    .stat-number { font-size: 1.5rem; }
    .brand-card__price-value { font-size: 1.3rem; }
}

/* ===== Trabzon local SEO band ===== */
.section--trabzon {
    background: linear-gradient(180deg, #fbfcff 0%, #f0f3ff 100%);
}
.trabzon-areas {
    background: #fff;
    border: 1px solid rgba(52, 66, 177, 0.08);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 18px 50px -22px rgba(52, 66, 177, 0.18);
    height: 100%;
}
.trabzon-areas__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0 0 1rem;
    letter-spacing: .01em;
}
.trabzon-areas__subtitle {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink-500, #6c757d);
    margin: 0 0 .5rem;
}
.trabzon-areas__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .35rem 1rem;
    font-size: .92rem;
    color: var(--ink-700, #2c2f3d);
}
.trabzon-areas__list li { padding: 0; }

@media (max-width: 575.98px) {
    .trabzon-areas__list { grid-template-columns: 1fr; }
}

/* ============================================================
   Google Reviews — minimal redesign
   Eski .reviews/.review-card/.reviews-score/.reviews-carousel
   stilleri dokunulmadı (başka yerde kullanılabilir). Bu yeni blok
   anasayfada partials/google_reviews.php tarafından çağrılır.
   ============================================================ */
.reviews-mini {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
}
.reviews-mini__notice {
    background: var(--brand-primary-50);
    border: 1px solid var(--brand-primary-100);
    border-radius: 10px;
    padding: .75rem 1rem;
    color: var(--brand-primary-700);
    font-size: .9rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Header — tek satır rating + başlık altta */
.reviews-mini__head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.reviews-mini__rating {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: .5rem 1rem;
    border: 1px solid var(--ink-100);
    border-radius: 999px;
    background: #fff;
    font-size: .92rem;
    color: var(--ink-700);
}
.reviews-mini__glogo { flex-shrink: 0; }
.reviews-mini__score {
    font-weight: 700;
    color: var(--ink-900);
    font-size: 1rem;
}
.reviews-mini__stars {
    color: #f5b400;
    letter-spacing: 1px;
    font-size: .9rem;
}
.reviews-mini__stars i { vertical-align: middle; }
.reviews-mini__count {
    color: var(--ink-400);
    font-size: .85rem;
}
.reviews-mini__title {
    margin: 1rem 0 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink-900);
}

/* 3'lü grid — kart hizalama */
.reviews-mini__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 991.98px) { .reviews-mini__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575.98px) { .reviews-mini__grid { grid-template-columns: 1fr; } }

.reviews-mini__card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 14px;
    padding: 1.25rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.reviews-mini__card:hover {
    border-color: var(--brand-primary-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -10px rgba(15, 23, 42, .12);
}
.reviews-mini__cardstars {
    color: #f5b400;
    font-size: .85rem;
    letter-spacing: 1px;
    margin-bottom: .65rem;
}
.reviews-mini__text {
    color: var(--ink-700);
    font-size: .92rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
}
.reviews-mini__author {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding-top: .85rem;
    border-top: 1px solid var(--ink-50, #f1f5f9);
}
.reviews-mini__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.reviews-mini__avatar--placeholder {
    background: var(--brand-primary-50);
    color: var(--brand-primary);
    font-weight: 600;
    font-size: .82rem;
    display: grid;
    place-items: center;
}
.reviews-mini__name {
    display: block;
    font-weight: 600;
    color: var(--ink-900);
    font-size: .9rem;
    line-height: 1.2;
}
.reviews-mini__time {
    display: block;
    color: var(--ink-400);
    font-size: .78rem;
    margin-top: 1px;
}

/* Footer CTA — sade text link */
.reviews-mini__footer {
    text-align: center;
    margin-top: .5rem;
}
.reviews-mini__cta {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    padding: .6rem 1.1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: background .15s ease, border-color .15s ease;
}
.reviews-mini__cta:hover {
    background: var(--brand-primary-50);
    border-color: var(--brand-primary-100);
    color: var(--brand-primary-700);
}

/* ============================================================
   TIPOGRAFI NORMALIZASYONU — site geneli tek standart
   ----------------------------------------------------------------
   Müşteri talebi: Pricing sayfasındaki yazı boyutları referans;
   Implant/Doctor sayfalarında display-4 / display-6 ve
   .dr-hero__name (3.2rem) çok büyüktü. Bu blok CSS'in en sonunda
   olduğu için cascade kazanır ve tek bir tutarlı ölçek dayatır.
   ----------------------------------------------------------------
   ÖLÇEK (Pricing'in h4=1.5rem baseline'ı):
     • H1 sayfa başlığı  : 2rem (mobile) → 2.25rem (≥md)
     • H2 section başlık : 1.4rem
     • H3 alt başlık     : 1.1rem
     • H4 / küçük başlık : 1rem
     • Body paragraf     : 1rem (line-height 1.65)
     • Lead              : 1.1rem
   Anasayfa hero'su (.hero-title) hariç tutuldu — slider büyük kalır.
   ============================================================ */

/* Bootstrap "display-X" sınıfları — küçültüldü */
.display-1 { font-size: 3rem;     line-height: 1.1; font-weight: 800; letter-spacing: -.02em; }
.display-2 { font-size: 2.6rem;   line-height: 1.1; font-weight: 800; letter-spacing: -.02em; }
.display-3 { font-size: 2.4rem;   line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }
.display-4 { font-size: 2.25rem;  line-height: 1.2;  font-weight: 700; letter-spacing: -.01em; }
.display-5 { font-size: 1.85rem;  line-height: 1.25; font-weight: 700; letter-spacing: -.01em; }
.display-6 { font-size: 1.4rem;   line-height: 1.3;  font-weight: 700; letter-spacing: -.01em; }

/* Doctor hero — dr-hero__name çok büyüktü (3.2rem). Standart hizaya */
.dr-hero__name      { font-size: 2.25rem;  line-height: 1.2; font-weight: 700; }
.dr-hero__title     { font-size: 1.05rem;  font-weight: 500; }
.dr-section__title  { font-size: 1.4rem;   font-weight: 700; }
@media (min-width: 992px) {
    .dr-hero__name { font-size: 2.5rem; }
}

/* Page header generic — Page show.php düz başlık.
   Specificity'yi article-shell kuralının üstüne çıkarmak için
   `.page-header .page-header__title` ile override ediyoruz. */
.page-header h1                                { font-size: 2rem;    line-height: 1.2; font-weight: 700; }
.page-header .lead                             { font-size: 1.05rem; }
.page-header .page-header__title,
.page-header--article .page-header__title      { font-size: 2.25rem; line-height: 1.2; font-weight: 700; max-width: 32ch; }
.page-header .page-header__lead,
.page-header--article .page-header__lead       { font-size: 1.1rem; }
@media (min-width: 992px) {
    .page-header h1                            { font-size: 2.25rem; }
    .page-header .page-header__title,
    .page-header--article .page-header__title  { font-size: 2.5rem; }
}

/* Article body (blog post) — h2 1.75 → 1.4, h3 1.18 → 1.1 */
.article-body--blog h2 { font-size: 1.4rem;  line-height: 1.3; }
.article-body--blog h3 { font-size: 1.1rem;  line-height: 1.35; }
.article-body--blog p,
.article-body--blog li { font-size: 1rem;    line-height: 1.7; }

/* .prose paragraph default - hafifçe küçültüldü (1.05 → 1) */
.prose                 { font-size: 1rem;     line-height: 1.7; }
.prose h2              { font-size: 1.4rem; }
.prose h3              { font-size: 1.1rem; }
.prose h4              { font-size: 1rem; }

/* Lead'ler — Bootstrap default 1.25rem'di, biraz küçültüldü */
.lead                  { font-size: 1.1rem;  font-weight: 400; line-height: 1.55; }

/* Treatment specific — show-implant.php'deki büyük başlık ve özet bloku */
/* introTitle ve advantagesTitle gibi h2 display-6 = artık 1.4rem (yukarıdaki override sayesinde) */

/* Mobile clamp — küçük ekranlarda tutarlı */
@media (max-width: 575.98px) {
    .display-4              { font-size: 1.75rem; }
    .display-5              { font-size: 1.55rem; }
    .display-6              { font-size: 1.25rem; }
    .dr-hero__name          { font-size: 1.85rem; }
    .page-header__title     { font-size: 1.85rem; }
    .article-body--blog h2  { font-size: 1.25rem; }
}
