:root {
    --primary-blue: #3b82f6;
    --dark-blue: #0b1c3b;
    --orange: #ff7f22;
    --orange-gradient: linear-gradient(135deg, #ff9b3a, #ff711f);
    --blue-gradient: linear-gradient(90deg, #44c8f5 0%, #467ff6 50%, #6857f5 100%);
    --bg-color: #f4f7fb;
    --text-gray: #6b778c;
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--dark-blue);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background glows */
.background-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.glow-blue {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(68, 200, 245, 0.15) 0%, rgba(244, 247, 251, 0) 60%);
    border-radius: 50%;
}
.glow-orange {
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 127, 34, 0.08) 0%, rgba(244, 247, 251, 0) 60%);
    border-radius: 50%;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

section {
    padding: 120px 0;
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    .container { padding: 0 20px; }
}

.top-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    pointer-events: none;
}

.top-nav-wrapper > * {
    pointer-events: auto;
}

/* HEADER */
.header {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(68, 200, 245, 0.9) 0%, rgba(70, 127, 246, 0.9) 50%, rgba(104, 87, 245, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 8px 10px 8px 25px;
    color: white;
    box-shadow: 0 10px 40px rgba(68, 125, 246, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-logo {
    display: flex;
    align-items: center;
}
.header-logo-img {
    height: 40px;
    width: auto;
    mix-blend-mode: screen;
}

.divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.15);
}

.header-location, .header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.header-menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: white;
    font-weight: 700;
    font-size: 15px;
    padding: 0 25px;
    height: 64px;
    background: rgba(68, 200, 245, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(68, 125, 246, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Global Header Interactions - Desktop */
.header-menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(68, 125, 246, 0.3);
}

.addresses {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 2px;
}

.burger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.burger-icon span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mega Menu Styles */
.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 28, 59, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 0;
    overflow-y: auto;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
}

.mega-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease;
}

.mega-menu-close:hover {
    transform: rotate(90deg);
}

.mega-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
}

.mega-tabs-wrapper {
    display: flex;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    height: 80vh;
    box-shadow: 0 30px 100px rgba(0,0,0,0.5);
}

.mega-sidebar {
    width: 350px;
    background: #f8fafc;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
}

.mega-tab-item {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mega-tab-item:hover, .mega-tab-item.active {
    background: white;
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
}

.mega-content-area {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    background: white;
    overflow-y: auto;
}

.mega-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.mega-tab-content.active {
    display: block;
}

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

.mega-tab-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.mega-tab-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

.mega-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin-bottom: 60px;
}

.mega-links-grid a {
    font-size: 18px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-links-grid a:hover {
    color: var(--primary-blue);
}

.mega-promo-banner {
    margin-top: auto;
    background: #f1f5f9;
    padding: 25px 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-icon {
    width: 32px;
    height: 32px;
    background: #0ea5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 900;
}

.mega-promo-banner span {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.mega-nav-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.mega-nav-links {
    display: flex;
    gap: 35px;
}

.mega-nav-links a {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark-blue);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

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

@media (max-width: 1024px) {
    .mega-tabs-wrapper { flex-direction: column; height: auto; }
    .mega-sidebar { width: 100%; padding: 20px 0; }
    .mega-tab-item { padding: 15px 30px; font-size: 16px; }
    .mega-content-area { padding: 30px; }
    .mega-links-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mega-services-grid {
        grid-template-columns: 1fr;
    }
}

.address-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: -20px;
    width: 340px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(11, 28, 59, 0.15);
    padding: 25px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.address-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.address-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.address-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    padding: 10px;
    border-radius: 15px;
    transition: background 0.3s ease;
}

.address-item:hover {
    background: var(--bg-color);
}

.item-icon {
    width: 32px;
    height: 32px;
    background: #edf2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.item-icon.orange {
    background: rgba(255, 122, 0, 0.1);
    color: var(--orange);
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-district {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
}

.item-street {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-blue);
}

.item-status, .item-hours {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.item-status {
    color: var(--orange);
    font-weight: 700;
}

.dropdown-map-btn {
    width: 100%;
    background: var(--orange);
    color: white;
    padding: 15px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
}

.dropdown-map-btn:hover {
    background: #e66e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
}

.header-hours {
    font-size: 13px;
    line-height: 1.3;
}

.icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-circle.orange-bg {
    background: var(--orange-gradient);
}

.city-selector {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.arrow-down {
    border: solid white;
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 2.5px;
    transform: rotate(45deg);
    margin-bottom: 2px;
    opacity: 0.8;
}
.addresses {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 2px;
}

.hours-text strong {
    font-weight: 700;
}

.header-socials {
    display: flex;
    gap: 8px;
}
.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.social-btn:hover {
    transform: translateY(-2px);
}
.social-btn.vk { 
    background: #0077FF;
}
.social-btn.max { 
    background: white; 
}

.phone-number {
    font-size: 16px;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
}
.phone-desc {
    font-size: 9px;
    opacity: 0.7;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 1px;
}

.btn-primary {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 100px;
    padding: 12px 12px 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}
.btn-primary .arrow-circle {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.btn-primary:hover .arrow-circle {
    background: rgba(255,255,255,0.2);
}

/* HERO SECTION */
.hero {
    display: flex;
    justify-content: space-between;
    margin-top: 140px;
    position: relative;
    padding-bottom: 60px;
}

.hero-left {
    flex: 1;
    max-width: 520px;
    z-index: 2;
    padding-top: 20px;
}

.badge-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffecd9;
    color: var(--orange);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.main-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--dark-blue);
}
.main-title span {
    color: var(--orange);
}

.subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 48px;
    font-weight: 500;
}

.price-action {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.price-block {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 420px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.price-desc {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #8c97a8;
    line-height: 1.4;
}
.price-desc span {
    font-size: 11px;
    font-weight: 500;
    text-transform: none;
    color: #4a5568;
}

.price-value {
    font-size: 13px;
    color: #ffffff;
    font-weight: 700;
    background: var(--orange-gradient);
    padding: 8px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 113, 31, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
}
.price-value strong {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin: 0;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-secondary {
    background: var(--orange-gradient);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 16px 16px 16px 32px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(255, 127, 34, 0.25);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 127, 34, 0.35);
}

.btn-orange:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 127, 34, 0.35);
}

.btn-orange:active {
    transform: translateY(-2px) scale(0.98);
}

.arrow-circle-white {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-more {
    color: var(--dark-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px dashed rgba(11, 28, 59, 0.3);
    padding-bottom: 2px;
    display: flex;
    align-items: center;
    transition: border-color 0.2s;
}
.link-more:hover {
    border-color: var(--dark-blue);
}

/* HERO CENTER */
.hero-center {
    position: absolute;
    left: 52%;
    top: -20px;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
    height: 105%;
}
.woman-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    transform: scale(1.1);
    transform-origin: top center;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hero-mobile-image-wrapper {
    display: none;
}

@media (max-width: 992px) {
    .hero-mobile-image-wrapper {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 20px auto 25px;
        border-radius: 15px; /* Enforcing strict <= 15px */
        overflow: hidden;
        border: 3px solid #ffffff;
        box-shadow: 0 10px 30px rgba(11, 28, 59, 0.08);
        position: relative;
    }
    
    .hero-mobile-woman-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }
}

/* HERO RIGHT */
.hero-right {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
    padding-top: 10px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
@keyframes iconJump {
    0%, 20%, 100% { transform: translateY(0); }
    10% { transform: translateY(-8px); }
}

.feature-card .icon-check {
    width: 20px;
    height: 20px;
    background: var(--orange-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    animation: iconJump 4s infinite ease-in-out;
}

.feature-card:nth-child(1) .icon-check { animation-delay: 0s; }
.feature-card:nth-child(2) .icon-check { animation-delay: 0.2s; }
.feature-card:nth-child(3) .icon-check { animation-delay: 0.4s; }
.feature-card:nth-child(4) .icon-check { animation-delay: 0.6s; }
.feature-card:nth-child(5) .icon-check { animation-delay: 0.8s; }

.feature-card p {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    color: #4a5568;
}

.rating-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    margin-top: 8px;
    transition: transform 0.3s ease;
}
.rating-card:hover {
    transform: translateY(-5px);
}
.rating-value {
    font-size: 40px;
    font-weight: 800;
    color: white;
    background: var(--orange-gradient);
    padding: 10px 16px;
    border-radius: 12px;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(255, 127, 34, 0.2);
}
.rating-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stars {
    color: #fbbf24;
    font-size: 16px;
    letter-spacing: 1px;
}
.rating-details p {
    font-size: 10px;
    color: var(--text-gray);
    line-height: 1.4;
    margin-top: 4px;
}

/* METHOD SECTION */
.method-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 120px;
    gap: 40px;
    padding: 100px 0;
    scroll-margin-top: 100px;
}

.method-left {
    flex: 1;
    max-width: 500px;
}

.method-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.method-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 30px;
}

.text-orange {
    color: var(--orange);
}

.method-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.method-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.tag {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

.tag-blue {
    background: #E8F0FE;
    color: var(--dark-blue);
}

.tag-orange {
    background: #FFF3E0;
    color: var(--orange);
}

/* IMPLANT CARD */
.method-right {
    flex: 1;
}

.implant-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(244,247,251,0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 24px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.implant-card:hover {
    transform: scale(1.02);
}

.implant-content {
    flex: 1;
    z-index: 2;
}

.implant-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 30px;
    max-width: 250px;
}

.implant-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
}

.implant-item {
    position: relative;
    z-index: 2;
    width: 250px;
}

.item-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.4;
}

.item-text strong {
    color: var(--dark-blue);
    display: block;
    margin-bottom: 4px;
}

.item-line {
    position: absolute;
    right: -150px;
    top: 50%;
    width: 140px;
    border-bottom: 2px dashed #a0aec0;
    transform-origin: left center;
}
.item-crown .item-line { transform: rotate(-15deg); }
.item-abutment .item-line { transform: rotate(0deg); }
.item-base .item-line { transform: rotate(15deg); }

.item-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    background: #4285f4;
    border-radius: 50%;
}

.implant-total {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding: 20px;
    background: rgba(255, 127, 34, 0.1);
    border-left: 4px solid var(--orange);
    border-radius: 0 12px 12px 0;
    color: var(--dark-blue);
    text-align: center;
}

.implant-total strong {
    font-size: 18px;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.implant-total span {
    font-size: 13px;
    color: var(--orange);
    font-weight: 700;
}
.implant-image-container {
    width: 280px;
    height: 280px;
    position: relative;
    z-index: 1;
    margin-left: 10px;
}

.animated-implant .implant-img {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.part-crown {
    top: 6.6%;
    z-index: 3;
    animation: assembleCrown 6s infinite ease-in-out;
}

.part-abutment {
    top: 35.4%;
    z-index: 2;
    animation: assembleAbutment 6s infinite ease-in-out;
}

.part-base {
    top: 57.8%;
    z-index: 1;
}

@keyframes assembleAbutment {
    0%, 15%, 85%, 100% { 
        transform: translateY(0); 
        clip-path: inset(0 0 0 0);
    }
    25%, 75% { 
        transform: translateY(30px); 
        clip-path: inset(0 0 25% 0);
    }
}

@keyframes assembleCrown {
    0%, 25%, 75%, 100% { transform: translateY(0); }
    35%, 65% { transform: translateY(70px); }
}

/* PROS AND CONS SECTION */
.pros-cons-section {
    padding: 100px 0;
    background: transparent;
    scroll-margin-top: 100px;
}

.pros-cons-card {
    display: flex;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(to right, var(--primary-blue) 50%, #ffffff 50%);
    box-shadow: 0 15px 40px rgba(11, 28, 59, 0.08);
    min-height: 500px;
}

.bg-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}
.bg-text-left {
    left: 2%;
    color: rgba(255, 255, 255, 0.04);
}
.bg-text-right {
    right: 2%;
    color: rgba(11, 28, 59, 0.03);
}

.pc-column {
    flex: 1;
    padding: 60px 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.pc-left {
    color: white;
    padding-right: 180px;
}
.pc-right {
    color: var(--dark-blue);
    padding-left: 180px;
}

.pc-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease;
}
.pc-item:hover {
    transform: translateX(5px);
}

.pc-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}
.pc-plus {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
}
.pc-minus {
    background: rgba(11, 28, 59, 0.05);
    color: var(--dark-blue);
    border: 1px solid rgba(11, 28, 59, 0.2);
}

.pc-text strong {
    font-size: 15px;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.pc-text p {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

.text-right {
    text-align: right;
}

.pc-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    height: 120%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.pc-center img {
    height: 90%;
    max-height: 500px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

/* TOOLTIP STYLES */
.pc-icon-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tooltip-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
}

.pc-question {
    background: rgba(11, 28, 59, 0.08);
    color: var(--dark-blue);
    border: 1px solid rgba(11, 28, 59, 0.2);
    font-size: 16px;
    transition: all 0.3s ease;
}

.pc-question:hover, .tooltip-wrapper:focus-within .pc-question {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.tooltip-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 50%;
    right: calc(100% + 15px);
    transform: translateY(-50%) translateX(10px);
    width: 260px;
    background: white;
    color: var(--text-gray);
    text-align: left;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    font-size: 13px;
    line-height: 1.5;
    z-index: 10;
    transition: all 0.3s ease;
    pointer-events: none;
}

.tooltip-content strong {
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
    color: var(--dark-blue);
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.tooltip-wrapper:hover .tooltip-content,
.tooltip-wrapper:focus-within .tooltip-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

/* INDICATIONS SECTION */
.indications-section {
    padding: 100px 0;
    background: transparent;
    scroll-margin-top: 100px;
}

.indications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ind-card {
    background: #ffffff;
    border: 1px solid rgba(11, 28, 59, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ind-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(11, 28, 59, 0.1);
    border-color: var(--primary-blue);
}

.ind-card img {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 25px;
    mix-blend-mode: multiply;
}

.ind-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
    line-height: 1.3;
}

.ind-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* BUTTON STYLES */
.indications-footer {
    text-align: center;
    margin-top: 60px;
}

.btn-orange {
    background: var(--orange-gradient);
    color: white;
    padding: 22px 60px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(255, 113, 31, 0.25);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    animation: pulse-orange 3s infinite;
}

.btn-orange:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 113, 31, 0.4);
    filter: brightness(1.1);
    color: white;
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 113, 31, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 113, 31, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 113, 31, 0); }
}

.btn-orange:active {
    transform: translateY(-2px) scale(1);
}

/* QUIZ SECTION */
.quiz-section {
    padding: 100px 0;
    background: transparent;
    scroll-margin-top: 100px;
}

.quiz-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    display: flex;
    overflow: hidden;
    min-height: 600px;
    position: relative;
}

.quiz-main {
    flex: 7;
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.quiz-sidebar {
    flex: 3;
    background: #fafbfc;
    border-left: 1px solid #edf2f7;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expert-info {
    text-align: center;
}

.expert-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.expert-name {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 16px;
    margin-bottom: 4px;
}

.expert-tag {
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.expert-desc {
    background: white;
    padding: 20px;
    border-radius: 16px;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.quiz-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

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

.quiz-question {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 40px;
    line-height: 1.2;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.option-card {
    background: #f8fafc;
    border: 2px solid #edf2f7;
    padding: 20px 25px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-card:hover {
    border-color: var(--primary-blue);
    background: #f1f5f9;
}

.option-card.selected {
    border-color: var(--primary-blue);
    background: #f0f7ff;
}

.option-radio {
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
}

.option-card.selected .option-radio {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
}

.option-card.selected .option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.option-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
}

.quiz-footer {
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quiz-progress-wrapper {
    flex: 1;
    margin-right: 40px;
}

.quiz-progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.quiz-progress-bar {
    height: 8px;
    background: #edf2f7;
    border-radius: 10px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--blue-gradient);
    width: 0%;
    transition: width 0.4s ease;
}

.quiz-nav-btns {
    display: flex;
    gap: 12px;
}

.btn-prev {
    width: 48px;
    height: 48px;
    border: 2px solid #edf2f7;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-prev:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-next {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0 30px;
    height: 48px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.btn-next:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Final Step Styles */
.final-step-content {
    text-align: center;
}

.gift-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.quiz-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.quiz-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

@media (max-width: 768px) {
    .quiz-container { flex-direction: column; }
    .quiz-sidebar { display: none; }
    .options-grid { grid-template-columns: 1fr; }
    .quiz-question { font-size: 24px; }
}

/* INSTALLMENT SECTION */
.installment-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.installment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 127, 34, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.installment-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.inst-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inst-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-blue);
    font-size: 15px;
    font-weight: 600;
}

.inst-check {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: var(--orange-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    margin-top: -2px; /* align better with text line-height */
}

.method-card {
    background: white;
    padding: 45px 35px;
    border-radius: 35px;
    position: relative;
    box-shadow: 0 15px 45px rgba(11, 28, 59, 0.04);
    border: 1px solid rgba(11, 28, 59, 0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.method-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(11, 28, 59, 0.1);
    border-color: rgba(68, 200, 245, 0.2);
}

.inst-card {
    background: #f8fafc;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(11, 28, 59, 0.05);
    transition: transform 0.5s ease;
}
.inst-card:hover {
    transform: translateY(-10px);
}

.inst-card-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.inst-card-value {
    font-size: 100px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 10px;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inst-card-sub {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.inst-card-info {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 35px;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .installment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .inst-left h2 { text-align: center !important; }
    .inst-left p { margin: 0 auto 40px auto; }
    .inst-features { justify-content: center; max-width: 500px; margin: 0 auto; }
}

/* CONSULTATION SECTION */
.consultation-section {
    padding: 80px 0;
}

.cons-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.cons-quote {
    flex: 1;
    max-width: 500px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    position: relative;
    padding-top: 10px;
}

.cons-card-main {
    background: white;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 380px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

.cons-content {
    padding: 60px;
}

.cons-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.cons-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cons-item p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-blue);
    font-weight: 500;
}

.cons-cta {
    background: #f8fafc;
    padding: 60px 40px;
    display: flex;
    align-items: center;
}

.cta-card-inner {
    background: var(--primary-blue);
    padding: 40px 30px;
    border-radius: 24px;
    color: white;
    text-align: center;
}

.cta-card-inner p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.cta-card-inner h4 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.cons-footer-bar {
    grid-column: span 2;
    background: #f1f5f9;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.cons-price-info {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.3;
}

.cons-price-info span {
    font-weight: 500;
    color: var(--text-gray);
    font-size: 12px;
}

.cons-promo {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    margin-right: 10px;
    font-weight: 500;
}

.new-price {
    color: var(--orange);
    font-size: 20px;
    font-weight: 900;
}

@media (max-width: 992px) {
    .cons-header { flex-direction: column; gap: 30px; }
    .cons-card-main { grid-template-columns: 1fr; }
    .cons-grid { grid-template-columns: 1fr; }
    .cons-footer-bar { flex-direction: column; gap: 20px; text-align: center; }
    .cons-cta { padding: 40px 20px; }
}

/* PROCESS SECTION */
.process-section {
    padding: 80px 0;
    background: transparent;
}

.process-container {
    display: flex;
    background: white;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(11, 28, 59, 0.05);
    overflow: hidden;
    min-height: 550px;
}

.process-sidebar {
    width: 320px;
    background: var(--bg-color);
    padding: 40px 0;
    display: flex;
    flex-direction: column;
}

.step-link {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 4px solid transparent;
}

.step-link:hover {
    background: rgba(11, 28, 59, 0.03);
}

.step-link.active {
    background: white;
    border-right: 4px solid var(--orange);
}

.step-num {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--dark-blue);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.step-link.active .step-num {
    background: var(--orange-gradient);
    color: white;
}

.step-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.step-link.active .step-name {
    color: var(--dark-blue);
    font-size: 16px;
}

.process-content {
    flex: 1;
    padding: 60px;
    position: relative;
}

.step-detail {
    display: none;
    animation: fadeInProcess 0.5s ease;
    height: 100%;
}

.step-detail.active {
    display: flex;
    flex-direction: column;
}

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

.step-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.step-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 15px;
}

@keyframes scanline {
    0% { top: 0; }
    100% { top: 100%; }
}

/* REVIEWS & TRUST SECTION */
.reviews-section {
    padding: 80px 0;
    background: transparent;
}

.trust-portals {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.portal-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(11, 28, 59, 0.04);
    transition: transform 0.3s ease;
}

.portal-card:hover {
    transform: translateY(-5px);
}

.portal-logo {
    height: 30px;
    object-fit: contain;
    margin-bottom: 20px;
}

.portal-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.portal-count {
    font-size: 13px;
    color: var(--text-gray);
    opacity: 0.7;
}

.portal-rating {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-blue);
}

.portal-rating span {
    font-size: 14px;
    opacity: 0.4;
}

/* Testimonials Part */
.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.testimonials-title-group h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark-blue);
}

.testimonials-title-group h2 span {
    color: var(--orange);
}

.testimonials-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.summary-val {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark-blue);
}

.summary-stars {
    color: var(--orange);
    font-size: 14px;
    letter-spacing: 2px;
}

.summary-text {
    font-size: 12px;
    color: var(--text-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.testi-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.testi-stars {
    color: var(--orange);
    letter-spacing: 2px;
}

.testi-tag {
    background: rgba(11, 28, 59, 0.05);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark-blue);
}

.testi-content {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-blue);
    flex: 1;
    margin-bottom: 30px;
    position: relative;
}

.testi-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 60px;
    opacity: 0.05;
    font-family: serif;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    display: block;
    font-weight: 800;
    font-size: 14px;
    color: var(--dark-blue);
}

.user-date {
    font-size: 12px;
    color: var(--text-gray);
}

@media (max-width: 992px) {
    .trust-portals { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 768px) {
    .trust-portals { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background: transparent;
}

.faq-card {
    background: white;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(11, 28, 59, 0.05);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-info h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.faq-info p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.btn-outline-blue {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    border: 2px solid var(--primary-blue);
    border-radius: 100px;
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: white;
    border-radius: 15px; /* Enforcing strict <= 15px */
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(11, 28, 59, 0.05);
    box-shadow: 0 4px 20px rgba(11, 28, 59, 0.03);
}

.accordion-item:hover {
    box-shadow: 0 10px 30px rgba(11, 28, 59, 0.08);
    border-color: rgba(11, 28, 59, 0.1);
}

.accordion-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(11, 28, 59, 0.1);
}

.accordion-header {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 16.5px;
    gap: 15px;
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.accordion-num {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.65;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
}

.accordion-title {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.4;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    position: relative;
    transition: transform 0.4s ease;
    background: rgba(11, 28, 59, 0.04);
    border-radius: 50%;
    flex-shrink: 0;
}

.accordion-icon::before, .accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-icon::before { width: 12px; height: 2px; }
.accordion-icon::after { width: 2px; height: 12px; }

.accordion-item.active .accordion-icon {
    transform: rotate(135deg);
    background: var(--orange-gradient);
}

.accordion-item.active .accordion-icon::before,
.accordion-item.active .accordion-icon::after {
    background: white;
}

.accordion-body {
    max-height: 0;
    padding: 0 28px 0 60px;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding-bottom: 24px;
}

/* 2-Column FAQ Layout styles */
.faq-grid-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .faq-grid-cols {
        grid-template-columns: 1fr;
    }
    .accordion-header {
        padding: 20px;
    }
    .accordion-body {
        padding: 0 20px 0 45px;
    }
    .accordion-item.active .accordion-body {
        padding-bottom: 20px;
    }
}

/* MODAL STYLES */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 28, 59, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    padding: 50px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    animation: modalFadeIn 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.modal-close:hover { color: var(--orange); }

.modal-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-form textarea {
    height: 100px;
    resize: none;
}

@media (max-width: 992px) {
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .modal-content { padding: 30px; margin: 20px; }
}

/* UNIFIED BORDER RADIUS REFINEMENT */
.price-block {
    border-radius: 15px;
}

.feature-card {
    border-radius: 12px;
}

.rating-card {
    border-radius: 15px;
}

.rating-value {
    border-radius: 12px;
}

.implant-card {
    border-radius: 15px;
}

.pros-cons-card {
    border-radius: 15px;
}

.ind-card {
    border-radius: 15px;
}

.quiz-container {
    border-radius: 15px;
}

.quiz-sidebar {
    border-radius: 15px;
}

.option-card {
    border-radius: 12px;
}

.quiz-progress-bar {
    border-radius: 15px;
}

.quiz-progress-fill {
    border-radius: 15px;
}

.quiz-input {
    border-radius: 15px;
    padding: 18px 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.quiz-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.inst-card {
    border-radius: 35px;
}

.cons-card-main {
    border-radius: 40px;
}

.cta-card-inner {
    border-radius: 30px;
}

.cons-footer-bar {
    border-radius: 0 0 40px 40px;
}

.portal-card {
    border-radius: 25px;
}

.testimonial-card {
    border-radius: 35px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(11, 28, 59, 0.06);
}

.accordion-item {
    border-radius: 25px;
}

.modal-content {
    border-radius: 40px;
}

/* Ensure sections with background also have rounding if they are distinct blocks */
.consultation-section .container {
    padding: 60px 0;
}

/* CLINICS & CONTACTS SECTION */
.clinics-section {
    padding: 100px 0;
    background: transparent;
}

.clinics-header {
    margin-bottom: 50px;
}

.clinics-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.clinic-tab {
    padding: 12px 30px;
    background: var(--bg-color);
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.clinic-tab.active {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.clinic-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    animation: fadeIn 0.5s ease;
}

.clinic-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-photo-wrapper {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 15px 40px rgba(11, 28, 59, 0.1);
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    pointer-events: auto;
    transition: all 0.3s ease;
}

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

.thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumb {
    width: 100px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumb.active {
    border-color: var(--primary-blue);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clinic-card {
    background: #f8fafc;
    border-radius: 35px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.clinic-address {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.3;
}

.map-container {
    width: 100%;
    height: 220px;
    background: #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.map-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg) translate(20px, -20px);
    border: 3px solid white;
}

.work-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 500;
}

.hours-row .label { color: var(--text-gray); }
.hours-row .time { color: var(--dark-blue); font-weight: 700; }

.clinic-actions-row {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.btn-action-main {
    height: 56px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-action-main.call {
    flex-grow: 2;
    background: var(--orange-gradient);
    color: white;
    font-weight: 700;
    gap: 10px;
    padding: 0 25px;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.2);
}

.btn-action-main.call:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.3);
}

.btn-action-main.vk {
    width: 56px;
    background: var(--primary-blue);
    color: white;
}

.btn-action-main.map-btn {
    flex-grow: 1.2;
    background: var(--primary-blue);
    color: white;
    font-weight: 700;
    gap: 8px;
    padding: 0 22px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.btn-action-main.map-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.btn-action-main.max {
    width: 56px;
    background: white;
    border: 1px solid #e2e8f0;
}

.btn-action-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 480px) {
    .clinic-actions-row {
        flex-wrap: wrap;
        gap: 10px;
    }
    .btn-action-main.call,
    .btn-action-main.map-btn {
        width: 100% !important;
        flex-basis: 100% !important;
    }
}

@media (max-width: 992px) {
    .clinic-layout { grid-template-columns: 1fr; }
    .main-photo-wrapper { height: 350px; }
}

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

@media (max-width: 768px) {
    .consultation-section .container {
        padding: 30px 20px;
        border-radius: 30px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-label {
    display: block;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pricing-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 600px;
}

.pricing-table-card {
    background: white;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 28, 59, 0.08);
    margin-bottom: 40px;
}

.pricing-table-header {
    background: var(--dark-blue);
    color: white;
    display: grid;
    grid-template-columns: 2fr 1fr 150px;
    padding: 25px 40px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 150px;
    padding: 30px 40px;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
    transition: background 0.3s ease;
}

.pricing-row:nth-child(even) {
    background: #f8fafc;
}

.pricing-row:hover {
    background: #f1f5f9;
}

.pricing-row:last-child {
    border-bottom: none;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.service-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-blue);
}

.service-desc {
    font-size: 13px;
    color: var(--text-gray);
}

.price-box {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-blue);
}

.price-box.free {
    color: #10b981;
}

.price-box.highlight {
    color: var(--orange);
}

.row-action-btn {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.row-action-btn:hover {
    color: var(--primary-blue);
}

.pricing-tax-banner {
    background: #f1f5f9;
    border-radius: 30px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.tax-icon-box {
    width: 48px;
    height: 48px;
    background: var(--dark-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 20px;
}

.tax-content {
    flex: 1;
}

.tax-content strong {
    display: block;
    font-size: 16px;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.tax-content span {
    font-size: 14px;
    color: var(--text-gray);
}

.tax-btn {
    background: var(--dark-blue);
    color: white;
    padding: 12px 25px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tax-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pricing-table-header { display: none; }
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }
    .pricing-tax-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* IMPLANT TYPES SECTION */
.implant-types-section {
    padding: 100px 0;
    background: transparent;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.header-badge {
    display: inline-block;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--dark-blue);
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title span {
    color: var(--orange);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 50px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.method-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(11, 28, 59, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(11, 28, 59, 0.03);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(11, 28, 59, 0.1);
}

.card-badge.hit {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #ffecd9;
    color: var(--orange);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-badge.hit::before {
    content: '🔥';
    font-size: 12px;
}

.card-num {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 14px;
    font-weight: 800;
    color: #e2e8f0;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #f8fafc, #edf2f7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6), 0 4px 12px rgba(148, 163, 184, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-card:hover .card-icon {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    border-color: rgba(255, 122, 0, 0.15);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 1), 0 8px 20px rgba(255, 122, 0, 0.08);
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-price-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px dashed #e2e8f0;
    margin-bottom: 25px;
}

.price-col {
    display: flex;
    flex-direction: column;
}

.price-col .label {
    font-size: 11px;
    font-weight: 800;
    color: #cbd5e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-col .value {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-blue);
}

.btn-card-action {
    width: 100%;
    background: var(--orange-gradient);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
}

.btn-card-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
}

.btn-card-action .arrow {
    transition: transform 0.3s ease;
}

.btn-card-action:hover .arrow {
    transform: translateX(5px);
}

/* REALISTIC CSS ICON PLACEHOLDERS */
.icon-realistic-implant {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(11, 28, 59, 0.12));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.method-card:hover .icon-realistic-implant {
    transform: scale(1.15) rotate(5deg);
}

/* DOCTORS SECTION */
.doctors-section {
    padding: 100px 0;
    background: transparent;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.doctor-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(11, 28, 59, 0.04);
    border: 1px solid rgba(11, 28, 59, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(11, 28, 59, 0.08);
}

.doctor-photo {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-photo img {
    transform: scale(1.05);
}

.doctor-info {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.exp-badge {
    color: var(--orange);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.doctor-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 8px;
}

.doctor-spec {
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 25px;
}

.doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.doctor-tags span {
    background: #edf2f7;
    color: #4a5568;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
}

.doctor-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.doctor-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
}

.doctor-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
}

.doctor-card .btn-orange {
    align-self: center;
}

@media (max-width: 992px) {
    .doctors-grid { grid-template-columns: 1fr; max-width: 500px; }
    .doctor-photo { height: 400px; }
    .doctor-info { padding: 30px; }
    .doctor-name { font-size: 22px; }
}

/* SITE FOOTER */
.site-footer {
    background: #2d2d2d;
    color: #fff;
    padding: 80px 0 40px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #8c97a8;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--orange);
    padding-left: 5px;
}

.footer-contact-info p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-contact-info .phone {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.footer-form-link {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-form-link:hover {
    opacity: 1;
}

.payment-methods {
    margin-top: 20px;
    display: block;
    max-width: 220px;
}

.payment-methods img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-disclaimer {
    font-size: 11px;
    line-height: 1.6;
    color: #8c97a8;
    max-width: 280px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-bottom a {
    color: #8c97a8;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 340px;
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-text {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-cookie-accept {
    width: 100%;
    padding: 14px;
    border-radius: 100px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

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

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ========================================================================== */

/* 1. Large Tablets & Small Laptops (992px - 1200px) */
@media (max-width: 1100px) {
    .hero-center { left: 65%; opacity: 0.5; }
    .hero-left { max-width: 600px; }
}

@media (max-width: 992px) {
    .hero { flex-direction: column; text-align: center; margin-top: 120px; }
    .hero-left { max-width: 100%; padding-top: 0; }
    .hero-right { flex-direction: row; flex-wrap: wrap; justify-content: center; width: 100%; margin-top: 40px; }
    .hero-center { display: none; }
    .main-title { font-size: 42px; }
    .price-action { align-items: center; }
    .price-block { max-width: 100%; width: 100%; }

    .methods-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    
    .pros-cons-card { flex-direction: column; min-height: auto; }
    .pc-left { padding-right: 40px; border-bottom: 2px solid rgba(255,255,255,0.1); }
    .pros-cons-card::after { display: none; }
    .bg-text { font-size: 80px; }

    .consultation-grid { grid-template-columns: 1fr; }
    .cons-cta { padding: 40px; }

    .ask-doctor-card { flex-direction: column; }
    .ask-doctor-card .doctor-side, .ask-doctor-card .form-side { width: 100%; padding: 40px; }
}

/* 2. Tablets & Portrait Devices (768px - 992px) */
@media (max-width: 768px) {
    section,
    .why-section,
    .dms-section,
    .installment-section,
    .promos-section {
        padding: 116px 0 56px !important;
    }
    .container { padding: 0 15px; }

    /* Header Mobile - Hard Reset */
    .top-nav-wrapper { top: 10px; padding: 0 10px; gap: 6px; }
    .header-menu-toggle span { display: none !important; }
    .header-menu-toggle { width: 44px; height: 44px; padding: 0; justify-content: center; flex-shrink: 0; }
    
    .header { padding: 5px 12px; flex: 1; min-width: 0; }
    .header-logo-img { height: 26px; }
    .header-location, .phone-text, .divider, .header-socials, .btn-primary .btn-text, .phone-desc { display: none !important; }
    .header-phone { margin-left: auto; display: flex; align-items: center; }
    .header-phone .icon-circle { width: 32px; height: 32px; margin: 0; }
    
    .btn-primary { width: 44px; height: 44px; padding: 0; justify-content: center; flex-shrink: 0; border-radius: 50%; }
    .btn-primary .arrow-circle { margin: 0; background: transparent; width: auto; height: auto; }

    /* Hero Mobile */
    .hero { margin-top: 100px; }
    .main-title { font-size: 28px; text-align: center; }
    .subtitle { font-size: 14px; text-align: center; margin-bottom: 25px; }
    .feature-card { flex: 1 1 100%; max-width: 100%; margin-bottom: 10px; }
    .rating-card { margin: 15px auto; width: 100%; justify-content: center; }
    .price-action { align-items: center; }
    .action-buttons { flex-direction: column; width: 100%; gap: 12px; }
    .btn-secondary { width: 100%; justify-content: center; padding: 16px; }

    /* Layouts Stacking */
    .indications-grid, .methods-grid, .doctors-grid, .testimonials-grid { grid-template-columns: 1fr !important; gap: 20px; }
    
    .pros-cons-card { flex-direction: column !important; min-height: auto; }
    .pc-column { padding: 40px 25px !important; width: 100% !important; }
    .pc-left { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .bg-text { font-size: 60px; opacity: 0.05; }
    
    .consultation-grid { grid-template-columns: 1fr !important; }
    .cons-cta { padding: 30px 20px; }
    
    /* Process Section Mobile */
    .process-container { flex-direction: column !important; min-height: auto; }
    .process-sidebar { 
        width: 100% !important; 
        flex-direction: row !important; 
        overflow-x: auto; 
        padding: 10px 0 !important;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .step-link { 
        padding: 15px 20px !important; 
        border-right: none !important; 
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }
    .step-link.active { border-bottom: 3px solid var(--orange); }
    .step-num { width: 30px; height: 30px; font-size: 12px; }
    .process-content { padding: 30px 20px !important; }
    .step-content h3 { font-size: 22px; }

    .clinic-layout { grid-template-columns: 1fr !important; }
    .main-photo-wrapper { height: 240px; }
}

/* 3. Small Phones (Below 480px) */
@media (max-width: 480px) {
    .main-title { font-size: 28px; letter-spacing: -0.5px; }
    .price-value strong { font-size: 20px; }
    .btn-secondary { padding: 14px 20px; font-size: 14px; width: 100%; justify-content: center; }
    .action-buttons { flex-direction: column; width: 100%; gap: 15px; }
    
    .price-block { padding: 15px; }
    .price-desc { font-size: 11px; }
    
    .doctor-photo { height: 260px; }
    .doctor-info { padding: 20px; }
    
    .quiz-main { padding: 25px 15px; }
    .quiz-question { font-size: 20px; }
    
    .modal-content { padding: 25px 15px; }
    .form-title { font-size: 22px; }
}

/* === MOBILE ADAPTIVE V2 === */

/* 1. Типографика — уменьшение крупных заголовков */
@media (max-width: 768px) {
    .section-title { font-size: 28px !important; }
    .method-title { font-size: 26px !important; }
}
@media (max-width: 480px) {
    .section-title { font-size: 24px !important; }
    .method-title { font-size: 22px !important; }
}

/* 2. method-section — мобильный layout */
@media (max-width: 992px) {
    .method-section {
        flex-direction: column !important;
        margin-top: 40px !important;
        padding: 60px 0 !important;
    }
    .method-left,
    .method-right {
        width: 100% !important;
        max-width: 100% !important;
    }
    .implant-card {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 768px) {
    .method-section {
        margin-top: 0 !important;
        padding: 30px 0 !important;
        gap: 24px !important;
    }
    .hero {
        padding-bottom: 20px !important;
    }
    .implant-card {
        padding: 16px !important;
    }
}

/* 3. pros/cons — мобильный layout */
@media (max-width: 768px) {
    .pc-center {
        display: none !important;
    }
    .pros-cons-card {
        background: none !important;
        flex-direction: column !important;
        min-height: auto !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }
    .pc-left {
        background: var(--primary-blue) !important;
        padding: 32px 20px !important;
        width: 100% !important;
        border-bottom: 2px solid rgba(255,255,255,0.1);
    }
    .pc-right {
        background: white !important;
        padding: 32px 20px !important;
        width: 100% !important;
    }
    .pc-item:hover {
        transform: none;
    }
    .bg-text {
        display: none !important;
    }
}

/* 4. inst-card-value — уменьшение гигантского шрифта */
@media (max-width: 768px) {
    .inst-card-value {
        font-size: 64px !important;
    }
}
@media (max-width: 480px) {
    .inst-card-value {
        font-size: 48px !important;
    }
}

/* 5. input-group (ask-doctor form) — column layout на мобиле */
@media (max-width: 768px) {
    .input-group {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .input-group input,
    .input-group button {
        width: 100% !important;
    }
}

/* 6. subtitle — убрать жёсткие переносы строк */
@media (max-width: 768px) {
    .subtitle br {
        display: none;
    }
}

/* 7. process-sidebar — убрать скроллбар на мобиле */
@media (max-width: 768px) {
    .process-sidebar {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .process-sidebar::-webkit-scrollbar {
        display: none;
    }
}

/* 8. Мобильный sticky CTA-бар */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8500;
    background: white;
    padding: 10px 15px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 30px rgba(11, 28, 59, 0.12);
    border-top: 1px solid #e8edf5;
    gap: 10px;
    align-items: center;
}
@media (max-width: 768px) {
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 76px; }
}
.mobile-cta-call {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--orange-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 127, 34, 0.4);
    transition: transform 0.2s ease;
}
.mobile-cta-call:active { transform: scale(0.95); }
.mobile-cta-btn {
    flex: 1;
    height: 52px;
    background: linear-gradient(90deg, #44c8f5 0%, #467ff6 50%, #6857f5 100%);
    border: none;
    border-radius: 100px;
    color: white;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(68, 127, 246, 0.35);
    transition: all 0.2s ease;
    letter-spacing: -0.2px;
}
.mobile-cta-btn:active { transform: scale(0.98); }

/* 9. Footer — отступ под sticky CTA */
@media (max-width: 768px) {
    .site-footer {
        padding-bottom: 90px !important;
    }
}

/* 10. Mega menu — корректная высота на мобиле */
@media (max-width: 768px) {
    .mega-tabs-wrapper {
        max-height: 90vh !important;
        height: auto !important;
        overflow-y: auto !important;
    }
}

/* 11. Ask Doctor Section Redesign & Fixes */
.ask-doctor-section {
    padding: 80px 0;
    position: relative;
}

.ask-doctor-card {
    display: flex;
    background: #ffffff;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(11, 28, 59, 0.05);
    border: 1px solid rgba(11, 28, 59, 0.05);
}

.ask-doctor-card .doctor-side {
    width: 45%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(11, 28, 59, 0.05);
}

.ask-doctor-card .doctor-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.ask-doctor-card .doctor-avatar-small {
    width: 80px;
    height: 80px;
    border-radius: 50% !important; /* Circle exception */
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.ask-doctor-card .doctor-details .name {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 4px;
    line-height: 1.2;
}

.ask-doctor-card .doctor-details .title {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1.3;
}

.ask-doctor-card .doctor-quote {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-blue);
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--orange);
    margin: 0;
}

.ask-doctor-card .form-side {
    width: 55%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ask-doctor-card .form-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 127, 34, 0.1);
    color: var(--orange);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 100px !important; /* Button/badge exception */
    width: fit-content;
    margin-bottom: 16px;
}

.ask-doctor-card .form-title {
    font-size: 28px;
    font-weight: 850;
    color: var(--dark-blue);
    line-height: 1.25;
    margin-bottom: 10px;
}

.ask-doctor-card .form-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 24px;
    font-weight: 500;
}

.ask-doctor-card .cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ask-doctor-card .input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid rgba(11, 28, 59, 0.1);
    padding: 6px;
    border-radius: 15px !important; /* exactly 15px */
    transition: all 0.3s ease;
}

.ask-doctor-card .input-group:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 127, 34, 0.15);
    background: white;
}

.ask-doctor-card .input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
    outline: none;
}

.ask-doctor-card .input-group input::placeholder {
    color: #94a3b8;
}

.ask-doctor-card .input-group .btn-orange {
    background: var(--orange-gradient);
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 100px !important; /* Button/badge exception */
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.ask-doctor-card .input-group .btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 113, 31, 0.3);
}

.ask-doctor-card .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ask-doctor-card .checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.ask-doctor-card .checkbox-group label {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.4;
    cursor: pointer;
}

.ask-doctor-card .checkbox-group label a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.ask-doctor-card .checkbox-group label a:hover {
    text-decoration: underline;
}

/* === Checkmark Spin Morph Animation === */
@keyframes spinIcon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.feature-card .icon-check.spinning {
    animation: spinIcon 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ========== HOMEPAGE DOCTORS FILTERS ========== */
.doctor-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 35px auto 40px auto;
    max-width: 1000px;
    padding: 0 15px;
}

.filter-tab {
    background: white;
    border: 1px solid rgba(11, 28, 59, 0.08);
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(11, 28, 59, 0.02);
    border-radius: 100px !important; /* Button/tab exception */
}

.filter-tab:hover {
    border-color: rgba(59, 130, 246, 0.2);
    background: #f8fafc;
    transform: translateY(-1px);
}

.filter-tab.active {
    background: var(--orange-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 113, 31, 0.25);
}

.doctor-card-home.hidden {
    display: none !important;
}

/* === DOCTOR PROFILE SUBPAGE STYLES === */
.doctor-profile-section {
    padding: 60px 0 80px 0;
}

.profile-breadcrumbs {
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-gray);
}

.profile-breadcrumbs a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

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

.profile-breadcrumbs span {
    margin: 0 8px;
    color: #94a3b8;
}

.profile-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
}

.profile-sidebar {
    background: white;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(11, 28, 59, 0.04);
    border: 1px solid rgba(11, 28, 59, 0.02);
    border-radius: 15px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-avatar-wrapper {
    width: 260px;
    height: 260px;
    border-radius: 15px !important;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(11, 28, 59, 0.04);
    background: #f8fafc;
}

.profile-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.profile-spec-tag {
    background: #f0f7ff;
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 100px !important;
    margin-bottom: 16px;
}

.profile-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef9f5;
    color: var(--orange);
    font-size: 13px;
    font-weight: 750;
    padding: 8px 16px;
    border-radius: 100px !important;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 113, 31, 0.08);
}

.profile-main-card {
    background: white;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(11, 28, 59, 0.04);
    border: 1px solid rgba(11, 28, 59, 0.02);
    border-radius: 15px !important;
}

.profile-name-h1 {
    font-size: 36px;
    font-weight: 850;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 16px;
}

.profile-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
}

.rating-stars {
    color: #ffb800;
    font-size: 18px;
}

.profile-quote-block {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
    background: #fef9f5;
    padding: 16px 20px;
    border-left: 4px solid var(--orange);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 30px;
}

.profile-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(11, 28, 59, 0.06);
}

.profile-details-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.profile-details-item svg {
    margin-top: 3px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.profile-details-content h5 {
    font-size: 14px;
    font-weight: 750;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.profile-details-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.4;
}

/* === BEFORE & AFTER INTERACTIVE GALLERY === */
.cases-section {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid rgba(11, 28, 59, 0.03);
    border-bottom: 1px solid rgba(11, 28, 59, 0.03);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    background: white;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 28, 59, 0.02);
    border: 1px solid rgba(11, 28, 59, 0.03);
    display: flex;
    flex-direction: column;
}

.case-comparison-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e2e8f0;
}

.case-comparison-container:hover .before-after-divider {
    left: 55%;
}

.case-comparison-container:hover .img-after {
    clip-path: polygon(0 0, 55% 0, 55% 100%, 0 100%);
}

.img-before, .img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-after {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    transition: clip-path 0.5s ease;
}

.before-after-label {
    position: absolute;
    bottom: 12px;
    background: rgba(11, 28, 59, 0.7);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 10;
    pointer-events: none;
    letter-spacing: 0.5px;
}

.before-after-label.before {
    right: 12px;
}

.before-after-label.after {
    left: 12px;
}

.before-after-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    z-index: 15;
    transition: left 0.5s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    pointer-events: none;
}

.before-after-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(11, 28, 59, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 14px;
    pointer-events: none;
    z-index: 16;
    transition: left 0.5s ease;
}

.case-comparison-container:hover .before-after-handle {
    left: 55%;
}

.case-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.case-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: auto;
}

.case-specs-table td {
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(11, 28, 59, 0.05);
}

.case-specs-table tr:last-child td {
    border-bottom: none;
}

.case-specs-label {
    color: var(--text-gray);
    font-weight: 550;
    width: 40%;
}

.case-specs-value {
    color: var(--dark-blue);
    font-weight: 650;
    text-align: right;
}

.case-specs-value.highlight {
    color: var(--orange);
    font-weight: 800;
}

/* === REVIEWS FEED === */
.reviews-feed-section {
    padding: 80px 0;
}

.reviews-feed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.review-feed-card {
    background: white;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(11, 28, 59, 0.02);
    border: 1px solid rgba(11, 28, 59, 0.03);
    border-radius: 15px !important;
    display: flex;
    flex-direction: column;
}

.review-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-feed-author {
    font-size: 15px;
    font-weight: 750;
    color: var(--dark-blue);
}

.review-feed-date {
    font-size: 12px;
    color: #94a3b8;
}

.review-feed-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    flex-grow: 1;
}

/* === RESPONSIVE LAYOUT FOR PROFILE === */
@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .profile-sidebar {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 30px;
    }
    
    .profile-avatar-wrapper {
        margin-bottom: 0;
        width: 180px;
        height: 180px;
    }
    
    .profile-sidebar-info {
        display: flex;
        flex-direction: column;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .profile-sidebar {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-avatar-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .reviews-feed-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-name-h1 {
        font-size: 28px;
    }
}

/* ========== NEW CAROUSEL SLIDER STYLE ========== */
.doctors-section-new {
    padding: 80px 0;
    position: relative;
    background: #f8fafc;
    overflow: hidden;
}

.doctors-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 0 15px;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-dots-container {
    display: flex;
    gap: 6px;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background: #5c3dff;
}

.btn-show-all {
    background: #f1f5f9;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 100px !important;
    text-decoration: none;
}

.btn-show-all:hover {
    background: #e2e8f0;
    color: var(--dark-blue);
}

.slider-outer-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px; /* Leave space for outer arrows */
}

.slider-list {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 24px;
}

/* Vertical Card styling matching the screenshot */
.doctor-card-new {
    flex-shrink: 0;
    width: calc((100% - 3 * 24px) / 4); /* 4 cards per row on desktop */
    background: white;
    box-shadow: 0 10px 30px rgba(11, 28, 59, 0.03);
    border: 1px solid rgba(11, 28, 59, 0.02);
    border-radius: 15px !important;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.doctor-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 28, 59, 0.07);
}

.doctor-card-new .img-container {
    height: 220px;
    position: relative;
    background: #f1f5f9;
    overflow: hidden;
    border-radius: 15px 15px 0 0 !important;
}

.doctor-card-new .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.doctor-card-new:hover .img-container img {
    transform: scale(1.03);
}

.doctor-card-new .award-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.doctor-card-new .info-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.doctor-card-new .specialty {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 6px;
    font-weight: 500;
}

.doctor-card-new .name {
    font-size: 17px;
    font-weight: 850;
    color: var(--dark-blue);
    margin-bottom: 8px;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s;
}

.doctor-card-new .name:hover {
    color: #5c3dff;
}

.doctor-card-new .experience {
    font-size: 13px;
    color: #475569;
    margin-bottom: 8px;
    font-weight: 500;
}

.doctor-card-new .experience strong {
    color: var(--dark-blue);
    font-weight: 700;
}

.doctor-card-new .subtitle {
    font-size: 12px;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 18px;
    flex-grow: 1;
}

.doctor-card-new .btn-booking {
    width: 100%;
    background: #5c3dff;
    color: white !important;
    border: none;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px !important;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.doctor-card-new .btn-booking:hover {
    background: #4f33d8;
    box-shadow: 0 4px 12px rgba(92, 61, 255, 0.25);
    transform: translateY(-1px);
}

/* Slider arrows on the sides */
.slider-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(71, 85, 105, 0.6);
    border: none;
    border-radius: 50% !important;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
}

.slider-arrow-btn:hover {
    background: rgba(71, 85, 105, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow-btn.prev {
    left: 0;
}

.slider-arrow-btn.next {
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .doctor-card-new {
        width: calc((100% - 2 * 24px) / 3); /* 3 cards on tablet */
    }
}

@media (max-width: 768px) {
    .doctor-card-new {
        width: calc((100% - 1 * 24px) / 2); /* 2 cards on mobile landscape */
    }
    .slider-outer-container {
        padding: 0 35px;
    }
}

@media (max-width: 480px) {
    .doctor-card-new {
        width: 100%; /* 1 card on mobile portrait */
    }
    .slider-outer-container {
        padding: 0 20px;
    }
    .slider-arrow-btn {
        width: 36px;
        height: 36px;
    }
    .slider-arrow-btn.prev {
        left: -10px;
    }
    .slider-arrow-btn.next {
        right: -10px;
    }
}

/* ========== CUSTOM SUBPAGE SIDEBAR LIST & DETAILS STYLE ========== */
.profile-grid-new {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 30px;
}

.doctors-sidebar-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8fafc;
    padding: 20px 15px;
    border-radius: 15px !important;
    border: 1px solid rgba(11, 28, 59, 0.03);
    max-height: 580px;
    position: relative;
}

.sidebar-scroll-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-y: auto;
    max-height: 480px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide standard firefox scrollbar */
    -ms-overflow-style: none; /* Hide IE scrollbar */
}

.sidebar-scroll-container::-webkit-scrollbar {
    display: none; /* Hide chrome scrollbar */
}

.sidebar-doctor-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: white;
    border: 1px solid rgba(11, 28, 59, 0.02);
    border-radius: 12px !important;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(11, 28, 59, 0.01);
}

.sidebar-doctor-item:last-child {
    margin-bottom: 0;
}

.sidebar-doctor-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 28, 59, 0.04);
    border-color: rgba(59, 130, 246, 0.15);
}

.sidebar-doctor-item.active {
    background: white;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 10px 25px rgba(11, 28, 59, 0.06);
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

.sidebar-doctor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    overflow: hidden;
    background: #e2e8f0;
    flex-shrink: 0;
}

.sidebar-doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.sidebar-doctor-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-doctor-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-doctor-item.active .sidebar-doctor-name {
    color: var(--primary-blue);
}

.sidebar-doctor-spec {
    font-size: 11.5px;
    color: var(--text-gray);
    margin-top: 3px;
}

.sidebar-arrow {
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid rgba(11, 28, 59, 0.05);
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    z-index: 10;
}

.sidebar-arrow:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

.sidebar-arrow.up {
    margin-bottom: 12px;
}

.sidebar-arrow.down {
    margin-top: 12px;
}

/* Right Main Details Card */
.doctor-main-card-new {
    background: white;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(11, 28, 59, 0.04);
    border: 1px solid rgba(11, 28, 59, 0.02);
    border-radius: 15px !important;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 35px;
    align-items: start;
}

.main-card-portrait {
    width: 100%;
    height: 380px;
    border-radius: 15px !important;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid rgba(11, 28, 59, 0.02);
}

.main-card-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.main-card-details {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.details-name {
    font-size: 28px;
    font-weight: 850;
    color: var(--primary-blue);
    line-height: 1.25;
    margin-bottom: 6px;
}

.details-spec {
    font-size: 14.5px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 24px;
}

.details-education-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.details-education-list {
    margin-bottom: 24px;
    padding-left: 20px;
    color: var(--text-gray);
    font-size: 13.5px;
    line-height: 1.6;
}

.details-education-list li {
    margin-bottom: 8px;
}

.details-experience {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.details-bio {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.65;
    margin-bottom: 24px;
}

/* Responsive queries for custom layout */
@media (max-width: 1024px) {
    .profile-grid-new {
        grid-template-columns: 1fr;
    }
    
    .doctors-sidebar-list {
        max-height: 200px;
        padding: 15px;
    }
    
    .sidebar-scroll-container {
        flex-direction: row;
        max-height: none;
        gap: 15px;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .sidebar-doctor-item {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 240px;
    }
    
    .sidebar-arrow {
        display: none; /* Hide scrolling arrows on mobile horizontal row */
    }
}

@media (max-width: 768px) {
    .doctor-main-card-new {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }
    
    .main-card-portrait {
        height: 320px;
    }
}

/* DMS INSURANCE LOGOS GRID */
.dms-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 15px;
}

.dms-logo-card {
    background: #ffffff;
    border: 1px solid rgba(11, 28, 59, 0.08);
    border-radius: 15px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(11, 28, 59, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dms-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(11, 28, 59, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
}

.dms-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 900px) {
    .dms-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .dms-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .dms-logo-card {
        height: 65px;
    }
}

/* INSTALLMENT (CREDIT) SECTION */
.installment-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.installment-banner-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(11, 28, 59, 0.08);
    border-radius: 15px; /* Strict constraint: border-radius <= 15px */
    box-shadow: 0 15px 40px rgba(11, 28, 59, 0.04);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;
    position: relative;
    min-height: 520px;
}

.installment-banner-content {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.installment-banner-brand-badge {
    margin-bottom: 24px;
}

.banner-logo-small {
    height: 28px;
    opacity: 0.9;
}

.banner-main-title {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--dark-blue);
    margin: 0;
}

.banner-main-title .highlight-orange {
    color: var(--orange);
    background: linear-gradient(to right, #ff7f22, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-sub-bar {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark-blue);
    border-left: 4px solid var(--orange);
    padding-left: 14px;
    margin-top: 18px;
    margin-bottom: 30px;
    line-height: 1.25;
    letter-spacing: -0.2px;
}

.banner-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.banner-bullet-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
}

.bullet-icon-wrapper {
    width: 38px;
    height: 38px;
    background: rgba(255, 127, 34, 0.08);
    color: var(--orange);
    border-radius: 8px; /* Strict <= 15px */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 2px 8px rgba(255, 127, 34, 0.05);
}

.bullet-icon-wrapper.text-icon {
    background: var(--orange-gradient);
    color: #ffffff;
    font-size: 12px;
    letter-spacing: -0.2px;
    box-shadow: 0 4px 10px rgba(255, 127, 34, 0.2);
}

.bullet-text {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    line-height: 1.45;
}
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(255, 127, 34, 0.2);
}

.bullet-title {
    font-weight: 750;
}

.bullet-desc {
    color: #64748b;
    font-weight: 500;
}

.banner-cta-row {
    margin-bottom: 24px;
}

.banner-btn {
    background: var(--orange-gradient) !important;
    border: none !important;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px !important;
    border-radius: 15px !important; /* Strict constraint: <= 15px */
    font-weight: 850;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(255, 127, 34, 0.3) !important;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 127, 34, 0.4) !important;
}

.banner-disclaimer {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.4;
    max-width: 500px;
}

/* Right Visual side */
.installment-banner-visual {
    position: relative;
    background: #f1f5f9;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.banner-couple-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* 3D Angled Badge */
.badge-angled-zero {
    position: absolute;
    top: 40px;
    left: 40px;
    background: linear-gradient(135deg, #ff7f22 0%, #f43f5e 100%);
    color: #ffffff;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 12px 30px rgba(244, 63, 94, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    border: 3px solid #ffffff;
    transform: rotate(-10deg) skewX(-4deg);
    z-index: 10;
    animation: bannerFloat 4s ease-in-out infinite;
    padding: 10px;
}

.badge-angled-zero .zero-number {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.badge-angled-zero .badge-sub-text {
    font-size: 9.5px;
    font-weight: 850;
    line-height: 1.2;
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.2px;
}

@keyframes bannerFloat {
    0%, 100% {
        transform: rotate(-10deg) skewX(-4deg) translateY(0);
    }
    50% {
        transform: rotate(-8deg) skewX(-4deg) translateY(-8px);
    }
}

/* Responsiveness */
@media (max-width: 1024px) {
    .installment-banner-wrapper {
        grid-template-columns: 1.15fr 0.85fr;
        min-height: 480px;
    }
    .installment-banner-content {
        padding: 40px;
    }
    .banner-main-title {
        font-size: 32px;
    }
    .banner-sub-bar {
        font-size: 18px;
        margin-bottom: 24px;
    }
}

@media (max-width: 900px) {
    .installment-banner-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .installment-banner-visual {
        height: 320px;
        order: -1; /* Image on top on mobile */
    }
    .badge-angled-zero {
        top: 20px;
        left: auto;
        right: 20px;
        width: 115px;
        height: 115px;
        padding: 10px;
    }
    .badge-angled-zero .zero-number {
        font-size: 34px;
    }
    .badge-angled-zero .badge-sub-text {
        font-size: 8.5px;
        margin-top: 2px;
    }
    .installment-banner-content {
        padding: 40px 30px;
    }
    .banner-btn {
        width: auto;
        display: inline-flex;
    }
}

@media (max-width: 600px) {
    .installment-banner-visual {
        height: 260px;
    }
    .badge-angled-zero {
        width: 105px;
        height: 105px;
    }
    .badge-angled-zero .zero-number {
        font-size: 30px;
    }
    .badge-angled-zero .badge-sub-text {
        font-size: 8px;
    }
    .installment-banner-content {
        padding: 30px 20px;
    }
    .banner-main-title {
        font-size: 26px;
    }
    .banner-sub-bar {
        font-size: 16px;
        margin-top: 12px;
        margin-bottom: 20px;
    }
    .banner-bullet-list {
        gap: 12px;
        margin-bottom: 28px;
    }
    .bullet-text {
        font-size: 14px;
    }
    .bullet-icon-wrapper {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    .bullet-icon-wrapper.text-icon {
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    .installment-banner-visual {
        height: 220px;
    }
    .badge-angled-zero {
        width: 95px;
        height: 95px;
        right: 15px;
        top: 15px;
    }
    .badge-angled-zero .zero-number {
        font-size: 26px;
    }
    .badge-angled-zero .badge-sub-text {
        font-size: 7.5px;
    }
    .installment-banner-content {
        padding: 25px 16px;
    }
    .banner-main-title {
        font-size: 22px;
    }
    .banner-sub-bar {
        font-size: 15px;
        border-left-width: 3px;
        padding-left: 10px;
    }
    .banner-bullet-list li {
        gap: 12px;
    }
    .bullet-text {
        font-size: 13.5px;
        line-height: 1.4;
    }
    .bullet-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
    .bullet-icon-wrapper.text-icon {
        font-size: 10px;
    }
    .banner-btn {
        width: 100% !important;
        justify-content: center;
        padding: 15px 20px !important;
        font-size: 15px;
    }
}
