/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide native number input spinners (keep custom +/- buttons) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

:root {
    --primary: #00437A;
    --primary-light: #0a5a9e;
    --accent: #56B84F;
    --accent-light: #6ec965;
    --dark: #0a1f33;
    --light: #f0f7ed;
    --text: #1e293b;
    --text-light: #4A4E51;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-logo img {
    height: 48px;
    width: auto;
    transform: translateY(-12%); /* Compensate for cropped cross bottom arm, scales with logo size */
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav > a,
.header-nav > .nav-dropdown > a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.01em;
    position: relative;
    padding: 8px 0;
}

.header-nav > a::after,
.header-nav > .nav-dropdown > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.header-nav > a:hover::after,
.header-nav > .nav-dropdown:hover > a::after {
    width: 100%;
}

/* Desktop Treatments Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    transform: translateX(-50%) translateY(8px);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 400;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
}

.nav-dropdown-menu a::after {
    display: none;
}

/* Mega Menu */
.nav-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(8px);
    width: 720px;
    max-width: calc(100vw - 48px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 100;
}

.nav-mega:hover .nav-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

.nav-mega-heading {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light);
}

.nav-mega-col a {
    display: block;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 400;
    transition: color 0.2s ease;
    text-decoration: none;
}

.nav-mega-col a:hover {
    color: var(--primary);
}

.nav-mega-col a::after {
    display: none;
}

.nav-mega-cta {
    background: var(--light);
    border-radius: var(--radius);
    padding: 16px;
    margin: -24px -24px -24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-mega-cta p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Override nav-mega-col link styles for the CTA button */
.nav-mega-cta a.btn {
    padding: 10px 20px;
    color: var(--white);
    font-weight: 600;
}

.nav-mega-cta a.btn:hover {
    color: var(--white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-switcher-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lang-switcher-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 120px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 4px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 100;
}

.lang-switcher:hover .lang-switcher-menu {
    opacity: 1;
    visibility: visible;
}

.lang-switcher-menu a {
    display: block;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--text);
    transition: background 0.2s ease;
}

.lang-switcher-menu a:hover {
    background: var(--light);
}

.lang-switcher-menu a.active {
    color: var(--primary);
    font-weight: 600;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 67, 122, 0.3);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--accent-light);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(86, 184, 79, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* WhatsApp Link (header icon) */
.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: #1fb855;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.whatsapp-link svg {
    width: 22px;
    height: 22px;
    fill: white;
}

/* Cart Link (header icon) */
.cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
}
.cart-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 67, 122, 0.25);
}
.cart-link svg {
    width: 20px;
    height: 20px;
}
.cart-badge,
.cart-badge-mobile {
    display: none;
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 100px;
    background: var(--accent);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid var(--white);
}
.mobile-cart-link {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.mobile-cart-link svg {
    flex-shrink: 0;
}
.cart-badge-mobile {
    position: static;
    border: none;
    margin-left: auto;
}

/* Cart Toast Notification */
.thst-cart-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(86, 184, 79, 0.35);
    z-index: 10000;
    transform: translateX(calc(100% + 40px));
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: 360px;
}
.thst-cart-toast--visible {
    transform: translateX(0);
    opacity: 1;
}
.thst-cart-toast--error {
    background: #dc3545;
    box-shadow: 0 8px 24px rgba(220, 53, 69, 0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========== MOBILE MENU ========== */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 1100;
    padding: 24px 24px calc(24px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    pointer-events: none;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    right: 0;
    pointer-events: auto;
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-dropdown {
    border-bottom: 1px solid var(--border);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    border-bottom: none;
}

.mobile-dropdown-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-toggle svg {
    transform: rotate(180deg);
}

.mobile-dropdown-items {
    display: none;
    padding-left: 16px;
}

.mobile-dropdown.open .mobile-dropdown-items {
    display: block;
}

.mobile-dropdown-items a {
    font-size: 0.92rem;
    font-weight: 400;
    padding: 10px 0;
}

.mobile-menu-cta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    text-align: center;
    color: var(--white);
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
}

.mobile-menu-cta .btn-whatsapp {
    color: var(--white);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 92vh;
    min-height: 92dvh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--dark) 0%, #0a3252 50%, var(--primary) 100%);
    overflow: hidden;
}

/* Bottom fade to white */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 2;
}

/* ---------- Cloud layers ---------- */
.hero-clouds {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.cloud-layer {
    position: absolute;
    left: 0;
    display: flex;
    width: 200%;          /* two copies side-by-side, each 100vw */
    will-change: transform;
}

.cloud-layer img {
    flex: 0 0 50%;        /* each image = half of the 200% strip = 100vw */
    width: 50%;
    height: auto;
    display: block;
}

/* Back layer, slowest, largest, most diffuse, sits high */
.cloud-layer--back {
    top: 2%;
    opacity: 0.18;
    animation: drift-clouds 100s linear infinite;
}

/* Mid layer, medium speed */
.cloud-layer--mid {
    top: 20%;
    opacity: 0.22;
    animation: drift-clouds 70s linear infinite;
}

/* Front layer, fastest (still slow), sits low */
.cloud-layer--front {
    top: 42%;
    opacity: 0.25;
    animation: drift-clouds 50s linear infinite;
}

@keyframes drift-clouds {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }      /* drift right, plane flies left through clouds */
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .cloud-layer {
        animation: none !important;
    }
}

/* Mobile: disable cloud animations to prevent iOS GPU compositing issues
   (flashing/transparency artifacts on iPhone). Static clouds still visible. */
@media (max-width: 768px) {
    .cloud-layer {
        animation: none !important;
        will-change: auto;
    }
}

/* ---------- Plane ---------- */
.hero-plane {
    position: absolute;
    right: -2%;
    bottom: 12%;
    z-index: 2;
    width: 48%;
    max-width: 680px;
    pointer-events: none;
    opacity: 0.55;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.25));
    transform: rotate(5deg);
    animation: plane-float 14s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.hero-plane img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes plane-float {
    0%   { transform: rotate(5deg) translateY(0); }
    18%  { transform: rotate(5deg) translateY(0); }       /* cruise */
    30%  { transform: rotate(5deg) translateY(-8px); }    /* gentle lift */
    42%  { transform: rotate(5deg) translateY(-7px); }    /* almost hold, slight settle */
    54%  { transform: rotate(5deg) translateY(0); }       /* ease back to neutral */
    68%  { transform: rotate(5deg) translateY(1px); }     /* cruise with micro-drift */
    78%  { transform: rotate(5deg) translateY(5px); }     /* gentle dip */
    88%  { transform: rotate(5deg) translateY(4px); }     /* settle */
    100% { transform: rotate(5deg) translateY(0); }       /* return */
}

@media (prefers-reduced-motion: reduce) {
    .hero-plane {
        animation: none !important;
    }
}

/* ---------- Hero content ---------- */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
}

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

.hero .btn-accent {
    padding: 16px 36px;
    font-size: 1rem;
}

.hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 16px 36px;
    font-size: 1rem;
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

/* ========== TRUST BAR ========== */
.trust-bar {
    position: relative;
    z-index: 3;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-top: -60px;
    padding: 28px 48px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ========== STATS ========== */
.stats {
    padding: 100px 0 80px;
    background: var(--white);
}

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

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(86, 184, 79, 0.1);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 12px;
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(86, 184, 79, 0.2);
    color: inherit;
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 12px;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-price-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}

/* ========== PRICE COMPARISON ========== */
.price-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.price-table thead {
    background: var(--dark);
    color: var(--white);
}

.price-table th {
    padding: 18px 24px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
}

.price-table tbody tr {
    transition: background 0.2s ease;
}

.price-table tbody tr:hover {
    background: var(--light);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-uk {
    color: var(--text-light);
    text-decoration: line-through;
}

.price-turkey {
    color: var(--primary);
    font-weight: 700;
}

.price-save {
    display: inline-block;
    background: rgba(86, 184, 79, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ========== JOURNEY ========== */
.journey-steps {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.journey-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
}

.journey-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--light);
}

.step-content {
    padding-top: 12px;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== INCLUDED ========== */
.included-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.included-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.included-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.included-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(86, 184, 79, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.included-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.included-item span {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #fbbf24;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonial-service {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0, 67, 122, 0.08);
    padding: 3px 10px;
    border-radius: 12px;
    margin-top: 8px;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(86, 184, 79, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-contact a {
    color: var(--primary);
    font-weight: 500;
}

.cta-contact a:hover {
    color: var(--accent);
}

/* ========== LEAD MAGNET BANNER ========== */
.lead-magnet-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    margin: 60px 0;
}

.lead-magnet-banner h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.lead-magnet-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== TREATMENT CTA PAIR ========== */
.treatment-cta-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.treatment-cta {
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.treatment-cta__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.treatment-cta__icon svg {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0;
}

.treatment-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.treatment-cta p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.treatment-cta .btn {
    align-self: flex-start;
}

/* Package CTA, dark gradient, bold */
.treatment-cta--package {
    background: linear-gradient(145deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.treatment-cta--package .treatment-cta__icon {
    background: rgba(255, 255, 255, 0.12);
}

.treatment-cta--package .treatment-cta__icon svg {
    stroke: var(--white);
}

.treatment-cta--package h3 {
    color: var(--white);
}

.treatment-cta--package p {
    color: rgba(255, 255, 255, 0.8);
}

/* Quiz / Lead Magnet CTA, light, warm, inviting */
.treatment-cta--quiz,
.treatment-cta--consult {
    background: var(--light);
    border: 1.5px solid var(--border);
    color: var(--text);
}

.treatment-cta--quiz .treatment-cta__icon,
.treatment-cta--consult .treatment-cta__icon {
    background: rgba(86, 184, 79, 0.1);
}

.treatment-cta--quiz .treatment-cta__icon svg,
.treatment-cta--consult .treatment-cta__icon svg {
    stroke: var(--accent);
}

.treatment-cta--quiz h3,
.treatment-cta--consult h3 {
    color: var(--primary);
}

.treatment-cta--quiz p,
.treatment-cta--consult p {
    color: var(--text-light);
}

@media (max-width: 640px) {
    .treatment-cta-pair {
        grid-template-columns: 1fr;
    }

    .treatment-cta {
        padding: 28px 24px;
    }
}

/* ========== INNER HERO (for sub-pages) ========== */
.inner-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, #0a3252 50%, var(--primary) 100%);
    text-align: center;
    position: relative;
}
.inner-hero--has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.inner-hero--has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,31,51,0.82) 0%, rgba(0,67,122,0.72) 100%);
    z-index: 0;
}
.inner-hero--has-bg .container {
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.inner-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
    padding: 16px 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs span {
    margin: 0 8px;
    color: var(--border);
}

/* ========== FAQ ACCORDION ========== */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== CONTENT PROSE ========== */
.content-prose {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}
.content-prose h2 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 12px;
}
.content-prose h3 {
    font-size: 1.25rem;
    margin-top: 24px;
    margin-bottom: 10px;
}
.content-prose p {
    margin-bottom: 16px;
}
.content-prose ul, .content-prose ol {
    margin-bottom: 16px;
    padding-left: 24px;
}
.content-prose li {
    margin-bottom: 8px;
}
.content-prose strong {
    font-weight: 600;
    color: var(--text);
}
.content-prose a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.content-prose a:hover {
    color: var(--primary-light);
}
.content-prose table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 0.92rem;
}
.content-prose th {
    background: var(--primary);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}
.content-prose td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
}
.content-prose tr:hover td {
    background: var(--light);
}
.content-prose blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}
.content-prose img {
    border-radius: var(--radius);
    margin: 24px 0;
}

/* ========== TEAM SECTION (ABOUT PAGE) ========== */
.team-group-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.team-group-photo img {
    width: 100%;
    height: auto;
    display: block;
}

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

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-card__photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light);
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card__photo img {
    transform: scale(1.05);
}

.team-card__info {
    padding: 20px 16px;
}

.team-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 500;
}

.team-card__languages {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-card__languages img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    transition: transform 0.2s ease;
}

.team-card__languages img:hover {
    transform: scale(1.15);
}

/* ========== VIDEO SECTION (ABOUT PAGE) ========== */
.about-video-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-video-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 51, 0.8) 0%, rgba(0, 67, 122, 0.7) 100%);
}

.about-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.about-video-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 0 rgba(86, 184, 79, 0.4);
    animation: pulse-ring 2s ease-out infinite;
}

.about-video-play:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(86, 184, 79, 0.4);
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(86, 184, 79, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(86, 184, 79, 0); }
    100% { box-shadow: 0 0 0 0 rgba(86, 184, 79, 0); }
}

.about-video-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.about-video-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
}

/* ========== FOOTER ========== */
.footer {
    background: #001d35;
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 32px;
}

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

.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
}

/* Footer Bottom, Tiered Layout */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
    padding-top: 40px;
    text-align: center;
}

.footer-tier {
    margin-bottom: 24px;
}

.footer-tier:last-child {
    margin-bottom: 0;
}

/* Tier 1: HealthTurkiye Logo */
.footer-tier--certification {
    margin-bottom: 28px;
}

.footer-healthturkiye {
    display: inline-block;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-healthturkiye:hover {
    opacity: 1;
}

.footer-healthturkiye img {
    display: inline-block;
}

/* Tier 2: Accreditation Badges */
.footer-tier--badges {
    margin-bottom: 28px;
}

.footer-badge-row {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

.footer-badge-item svg {
    flex-shrink: 0;
    color: var(--accent);
}

.footer-badge-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.footer-trustpilot-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-trustpilot-link:hover {
    color: rgba(255, 255, 255, 0.95);
}

.footer-trustpilot-score {
    color: #00b67a;
    font-weight: 600;
}

.footer-trustpilot-count {
    color: rgba(255, 255, 255, 0.4);
}

/* Tier 3: Company Details */
.footer-tier--company {
    margin-bottom: 20px;
}

.footer-tier--company p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    margin: 0;
}

/* Tier 4: Copyright */
.footer-tier--copyright p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.footer-tier--copyright a,
.footer-admin-link {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.75rem;
}

.footer-tier--copyright a:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* ========== DESKTOP CHAT CAPSULE ========== */
.chat-capsule {
    display: none;
    position: fixed;
    bottom: 14px;
    right: 8px;
    z-index: 997;
    width: 140px;
    height: 73px;
    border-radius: 40px;
    background: white;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

@media (min-width: 769px) {
    .chat-capsule {
        display: block;
    }
}

/* ========== WHATSAPP FLOATING BUTTON (desktop only) ========== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 80px;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* ========== MOBILE CONTACT BAR ========== */
.mobile-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--white);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
}

.contact-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.contact-bar-btn:active {
    opacity: 0.85;
}

.contact-bar-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.contact-bar-whatsapp {
    background: #25D366;
    color: white;
}

.contact-bar-whatsapp svg {
    fill: white;
}

.contact-bar-chat {
    background: var(--primary);
    color: white;
}

.contact-bar-chat svg {
    stroke: white;
    fill: none;
}

@media (max-width: 768px) {
    .mobile-contact-bar {
        display: flex;
    }

    /* Hide contact bar when mobile nav is open so it doesn't cover nav items */
    body:has(.mobile-menu.open) .mobile-contact-bar {
        display: none;
    }

    .whatsapp-float {
        display: none;
    }

    /* Give body bottom padding so content isn't hidden behind bar */
    body {
        padding-bottom: 72px;
    }

    /* Push cookie consent above the contact bar */
    .cookie-consent {
        bottom: 72px;
    }
}

/* ========== COOKIE CONSENT ========== */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent p {
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    min-width: 300px;
}

.cookie-consent p a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-plane {
        width: 44%;
        bottom: 10%;
        opacity: 0.4;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .included-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu,
    .mobile-overlay {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .header-actions .whatsapp-link {
        display: none;
    }

    .lang-switcher {
        display: none;
    }

    .hero-plane {
        width: 50%;
        bottom: 16%;
        right: -2%;
        opacity: 0.35;
    }

    /* Spread cloud layers across the full hero height on tablet */
    .cloud-layer--back  { top: -5%; opacity: 0.14; }
    .cloud-layer--mid   { top: 30%; opacity: 0.16; }
    .cloud-layer--front { top: 55%; opacity: 0.18; }

    /* Reduce white fade so it doesn't wash out trust bar */
    .hero::after {
        height: 60px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .trust-bar {
        flex-direction: column;
        gap: 16px;
        padding: 24px 32px;
        align-items: flex-start;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-video-section {
        min-height: 300px;
    }

    .about-video-content h2 {
        font-size: 1.8rem;
    }

    .about-video-play {
        width: 64px;
        height: 64px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-badge-row {
        gap: 12px;
    }

    .footer-badge-divider {
        display: none;
    }

    .footer-badge-item {
        font-size: 0.78rem;
    }

    .footer-healthturkiye img {
        width: 120px;
    }

    .journey-steps::before {
        left: 24px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .price-table th,
    .price-table td {
        padding: 14px 16px;
        font-size: 0.85rem;
    }

    .inner-hero {
        padding: 120px 0 60px;
    }

    .inner-hero h1 {
        font-size: 2rem;
    }

    .lead-magnet-banner {
        padding: 32px 24px;
    }

    .lead-magnet-banner h3 {
        font-size: 1.4rem;
    }

    /* Treatment page: stack sidebar below main content */
    .treatment-main + aside {
        position: static !important;
    }
}

/* Treatment page layout: 2-column to 1-column on tablet */
@media (max-width: 900px) {
    .treatment-layout {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero-plane {
        width: 60%;
        bottom: 14%;
        right: -4%;
        opacity: 0.3;
    }

    /* Spread clouds evenly across the hero on mobile */
    .cloud-layer--back  { top: -10%; opacity: 0.12; }
    .cloud-layer--mid   { top: 25%; opacity: 0.14; }
    .cloud-layer--front { top: 55%; opacity: 0.16; }

    /* Minimal fade on mobile, don't wash out trust bar */
    .hero::after {
        height: 40px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== SKIP NAVIGATION (Accessibility) ========== */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    font-size: 0.85rem;
    transition: top 0.3s ease;
}

.skip-nav:focus {
    top: 0;
}

/* ========== PRICE COMPARISON RESPONSIVE ========== */
@media (max-width: 768px) {
    .treatment-layout {
        grid-template-columns: 1fr !important;
    }

    .treatment-layout aside {
        position: static !important;
    }
}

/* ========== UK AFTERCARE SECTION RESPONSIVE ========== */
@media (max-width: 900px) {
    .section > .container > [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* ========== QUALIFY FORM STYLES ========== */
.qualify-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.qualify-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.qualify-step.active {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.qualify-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.qualify-progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.3s ease;
}

.qualify-progress-dot.active {
    background: var(--accent);
}

.qualify-progress-dot.completed {
    background: var(--primary);
}

.qualify-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.qualify-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.qualify-card.selected {
    border-color: var(--accent);
    background: var(--light);
}

.qualify-card-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.qualify-card h3 {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}

.qualify-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0;
}

/* ========== EVENTS CARD ENHANCEMENTS ========== */
.event-card-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========== VIDEO GRID ========== */
@media (max-width: 640px) {
    #video-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========== COMBINATION MATRIX ========== */
.combo-matrix {
    overflow-x: auto;
    margin: 24px 0;
}

.combo-matrix table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.combo-matrix th,
.combo-matrix td {
    padding: 8px;
    text-align: center;
    border: 1px solid var(--border);
}

.combo-matrix th {
    background: var(--primary);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
}

.combo-cell-green { background: #dcfce7; }
.combo-cell-amber { background: #fef3c7; }
.combo-cell-red { background: #fee2e2; }
.combo-cell-black { background: #1e293b; color: #fff; }

/* ========== BMI GUIDANCE ========== */
.bmi-range-info {
    background: var(--light);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
    margin-bottom: 16px;
}

.bmi-range-info h4,
.bmi-range-info strong {
    color: var(--primary);
}

/* ========== STORE ENHANCEMENTS ========== */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-badge-deposit {
    background: var(--primary);
    color: var(--white);
}

.product-badge-monthly {
    background: var(--accent);
    color: var(--white);
}

.product-badge-medical {
    background: #dc2626;
    color: var(--white);
}

/* ========== PACKAGE CARDS ========== */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.package-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.package-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.package-card--popular {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.package-card__badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 14px;
    border-radius: 20px;
}

.package-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.package-card__price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.package-card__price-alt {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.package-card__tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-card ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.88rem;
    line-height: 1.5;
}

.package-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.package-card ul li:first-child {
    font-weight: 600;
    color: var(--primary);
}

.package-card ul li:first-child::before {
    content: '';
}

@media (max-width: 900px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== REVIEW CAROUSEL ========== */
.review-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-carousel__track {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius-lg);
}

.review-carousel__slides {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 4px 0;
}

.review-carousel__card {
    flex: 0 0 calc(33.333% - 14px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px 24px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.review-carousel__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-carousel__stars {
    color: #00b67a;
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-carousel__card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text);
    flex: 1;
    margin-bottom: 16px;
}

.review-carousel__author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.review-carousel__name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
}

.review-carousel__tp-logo {
    width: 72px;
    height: 18px;
}

.review-carousel__btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
}

.review-carousel__btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.review-carousel__btn:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.review-carousel--mini .review-carousel__card {
    flex: 0 0 calc(50% - 10px);
}

@media (max-width: 1024px) {
    .review-carousel__card {
        flex: 0 0 calc(50% - 10px);
    }
    .review-carousel--mini .review-carousel__card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .review-carousel__card {
        flex: 0 0 100%;
    }
    .review-carousel--mini .review-carousel__card {
        flex: 0 0 100%;
    }
    .review-carousel__btn {
        width: 36px;
        height: 36px;
    }
}

.review-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-grid-full .review-carousel__card {
    flex: unset;
}

@media (max-width: 768px) {
    .review-grid-full {
        grid-template-columns: 1fr;
    }
}

/* ========== PATIENT REVIEW CARDS ========== */
.patient-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.patient-review-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 28px;
    border-left: 4px solid var(--accent);
}

.patient-review-card__stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.patient-review-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
    font-style: italic;
}

.patient-review-card__author {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
}

@media (max-width: 768px) {
    .patient-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== YOUR JOURNEY PAGE ========== */
.journey-intro {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    text-align: center;
}

.journey-intro p {
    margin-bottom: 16px;
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 31px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
    border-radius: 2px;
}

.journey-timeline-step {
    position: relative;
    margin-bottom: 40px;
}

.journey-timeline-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    left: -40px;
    top: 24px;
    z-index: 2;
}

.journey-timeline-step .step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 0 0 6px var(--light), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.journey-timeline-step.step-even .step-number {
    background: var(--accent);
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    margin-left: 40px;
    transition: box-shadow 0.3s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.step-card-body p {
    margin-bottom: 12px;
}

.step-card-body p:last-child {
    margin-bottom: 0;
}

/* ========== SAFETY & STANDARDS PAGE ========== */
.safety-intro {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    text-align: center;
}

.safety-intro p {
    margin-bottom: 16px;
}

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

.credential-grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.credential-grid--2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.credential-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.credential-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.credential-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.credential-card h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.credential-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.credential-icon--logo {
    background: var(--white);
    border: 2px solid var(--border);
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
}

.credential-icon--logo img {
    max-width: 60px;
    height: auto;
}

.safety-section {
    padding: 0;
}

.safety-section h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 24px;
}

.safety-section .section-label {
    display: inline-block;
    margin-bottom: 8px;
}

/* ========== JOURNEY & SAFETY RESPONSIVE ========== */
@media (max-width: 768px) {
    .journey-timeline {
        padding-left: 32px;
    }

    .journey-timeline::before {
        left: 23px;
    }

    .step-marker {
        left: -32px;
    }

    .journey-timeline-step .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .step-card {
        margin-left: 28px;
        padding: 24px 20px;
    }

    .step-card h3 {
        font-size: 1.15rem;
    }

    .credential-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .credential-grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .credential-grid--2col {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }

    .credential-card {
        padding: 28px 16px;
    }

    .credential-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .safety-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .journey-timeline {
        padding-left: 28px;
    }

    .journey-timeline::before {
        left: 19px;
    }

    .step-marker {
        left: -28px;
    }

    .journey-timeline-step .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-card {
        margin-left: 20px;
        padding: 20px 16px;
    }

    .credential-grid,
    .credential-grid--3col,
    .credential-grid--2col {
        grid-template-columns: 1fr;
    }
}

/* ========== BEFORE & AFTER SLIDER ========== */
.ba-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    cursor: col-resize;
    -webkit-user-select: none;
    user-select: none;
    touch-action: none;
    margin-bottom: 40px;
}

.ba-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-slider__after {
    clip-path: inset(0 0 0 50%);
}

.ba-slider__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--white);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transform: translateX(-50%);
}

.ba-slider__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    z-index: 3;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-slider__handle svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.ba-slider__label {
    position: absolute;
    top: 12px;
    z-index: 4;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    font-family: var(--sans, Inter, sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    pointer-events: none;
}

.ba-slider__label--before { left: 12px; }
.ba-slider__label--after  { right: 12px; }

@media (max-width: 600px) {
    .ba-slider {
        border-radius: var(--radius);
    }
    .ba-slider__handle {
        width: 36px;
        height: 36px;
    }
    .ba-slider__handle svg {
        width: 16px;
        height: 16px;
    }
}

/* ========== HERO TRUSTPILOT BADGE ========== */
.hero-trustpilot {
    margin-top: 28px;
}

.hero-trustpilot__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.hero-trustpilot__link:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.hero-trustpilot__stars {
    color: #00b67a;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1;
}

.hero-trustpilot__rating {
    font-weight: 700;
    color: var(--white);
}

.hero-trustpilot__sep {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

.hero-trustpilot__logo {
    width: 80px;
    height: 20px;
    flex-shrink: 0;
}

.hero-trustpilot__count {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

@media (max-width: 640px) {
    .hero-trustpilot__link {
        font-size: 0.8rem;
        padding: 8px 16px;
        gap: 8px;
    }

    .hero-trustpilot__count {
        display: none;
    }

    .hero-trustpilot__sep {
        display: none;
    }

    .hero-trustpilot__logo {
        width: 68px;
        height: 17px;
    }
}

/* ========== TRUST BAR TRUSTPILOT ========== */
.trust-item--trustpilot {
    text-decoration: none;
    color: var(--text);
    transition: color 0.2s ease;
}

.trust-item--trustpilot:hover {
    color: var(--primary);
}

.trust-tp-stars {
    color: #00b67a;
    font-size: 0.85rem;
    letter-spacing: 1px;
    line-height: 1;
}

/* ========== FOOTER TRUST LOGOS ========== */
.footer-tier--trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.footer-trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.footer-trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.85;
}

.footer-trustpilot-badge:hover {
    opacity: 1;
}

.footer-tp-logo {
    width: 100px;
    height: 25px;
    flex-shrink: 0;
}

.footer-tp-stars {
    color: #00b67a;
    font-size: 0.95rem;
    letter-spacing: 1px;
    line-height: 1;
}

.footer-tp-detail {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 400;
}

.footer-tp-detail strong {
    color: #00b67a;
    font-weight: 700;
}

.footer-tp-count {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer-tier--trust-logos {
        flex-direction: column;
        gap: 20px;
    }

    .footer-trust-divider {
        width: 60px;
        height: 1px;
    }

    .footer-trustpilot-badge {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
}

/* ========== TREATMENT PAGE TRUSTPILOT ========== */
.treatment-trustpilot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
}

.treatment-tp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.treatment-tp-badge:hover {
    color: var(--text);
}

.treatment-tp-stars {
    color: #00b67a;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 1;
}

.treatment-tp-logo {
    width: 72px;
    height: 18px;
    flex-shrink: 0;
}

.treatment-tp-rating {
    color: var(--text-light);
    font-size: 0.8rem;
}

@media (max-width: 640px) {
    .treatment-trustpilot-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========== COMMUNITY CTA (Treatment Pages) ========== */
.community-cta {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-top: 24px;
    margin-bottom: 48px;
}

.community-cta__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.community-cta__content {
    flex: 1;
    min-width: 0;
}

.community-cta__content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--dark);
    margin: 0 0 8px;
    line-height: 1.4;
}

.community-cta__content p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.community-cta__btn {
    flex-shrink: 0;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline:hover svg {
    fill: var(--white);
}

@media (max-width: 768px) {
    .community-cta {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 24px 20px;
    }

    .community-cta__btn {
        align-self: center;
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }
}
