/* ----------------------------------------------------
   BENSALEM NEW - CUSTOM DESIGN SYSTEM & LAYOUT
   Colors: Primary (#088ac7), Secondary (#061c63)
   Typography: Poppins Font Family
   ---------------------------------------------------- */

/* Google Fonts Import in case of absolute local fallback */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    /* Font Overrides */
    --bs-font-sans-serif: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --bs-body-font-family: var(--bs-font-sans-serif);
    
    /* Primary Color Overrides (#088ac7) */
    --bs-primary: #088ac7;
    --bs-primary-rgb: 8, 138, 199;
    --bs-primary-hover: #0779af;
    --bs-primary-light: #e6f3fa;

    /* Secondary Color Overrides (#061c63) */
    --bs-secondary: #061c63;
    --bs-secondary-rgb: 6, 28, 99;
    --bs-secondary-hover: #041346;
    
    /* Body & Link Colors */
    --bs-link-color: var(--bs-primary);
    --bs-link-hover-color: var(--bs-secondary);
    
    /* Dark / Light / Neutral themes matching the palette */
    --color-dark-deep: #030d2e;
    --color-light-bg: #f8fafc;
    --color-border: #e2e8f0;
}

/* Base Body Styles */
body {
    font-family: var(--bs-body-font-family);
    background-color: var(--color-light-bg);
    color: #334155;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings Typography */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 700;
    color: var(--bs-secondary);
    letter-spacing: -0.02em;
}

/* Custom Scrollbar for Premium Look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--bs-primary);
}

/* Selection Highlight */
::selection {
    background-color: rgba(8, 138, 199, 0.2);
    color: var(--bs-secondary);
}

/* ----------------------------------------------------
   LAYOUT: Centered 90% Viewport Container
   ---------------------------------------------------- */
.container-90 {
    width: 90% !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}

/* ----------------------------------------------------
   PREMIUM UTILITIES (Gradients & Cards)
   ---------------------------------------------------- */
.text-gradient {
    background: linear-gradient(135deg, var(--bs-secondary) 30%, var(--bs-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, var(--bs-secondary) 0%, #0c2b8c 50%, var(--bs-primary) 100%);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.hover-card-premium {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background-color: #ffffff;
}
.hover-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 28, 99, 0.08);
    border-color: rgba(8, 138, 199, 0.3);
}

/* Button Premium Overrides */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--bs-primary-hover) !important;
    border-color: var(--bs-primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 138, 199, 0.3);
}

.btn-secondary {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    background-color: var(--bs-secondary-hover) !important;
    border-color: var(--bs-secondary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 28, 99, 0.3);
}

/* ----------------------------------------------------
   SCROLL REVEAL ANIMATIONS (Grand & Professional)
   ---------------------------------------------------- */
.reveal {
    opacity: 0;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

/* Direction presets */
.reveal-fade-up {
    transform: translateY(50px);
}

.reveal-fade-down {
    transform: translateY(-50px);
}

.reveal-slide-left {
    transform: translateX(-50px);
}

.reveal-slide-right {
    transform: translateX(50px);
}

.reveal-zoom-in {
    transform: scale(0.92);
}

.reveal-scale-up {
    transform: scale(0.96) translateY(20px);
}

/* Active State (Triggered by JS when element enters viewport) */
.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered Delay Utilities */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }
.delay-700 { transition-delay: 700ms; }
.delay-800 { transition-delay: 800ms; }

/* ----------------------------------------------------
   NAVIGATION & HEADER CUSTOM STYLING
   ---------------------------------------------------- */

/* Helper Font-Size Utilities */
.fs-7 {
    font-size: 0.85rem !important;
}
.fs-8 {
    font-size: 0.725rem !important;
}

/* Header Utilities */
header {
    z-index: 1020;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.header-top {
    font-size: 0.85rem;
    letter-spacing: 0.01em;
}

.header-top a {
    transition: opacity 0.25s ease;
}

.header-top a:hover {
    opacity: 0.85;
}

/* Nav Link Hover Line Animation (Desktop Only) */
@media (min-width: 1200px) {
    /* Each nav item fills the full navbar height; position:relative makes it the dropdown anchor */
    .header-nav .nav-item {
        display: flex;
        align-items: center;
        height: 97px;
        position: relative;
    }

    .nav-link-custom {
        font-weight: 500;
        font-size: 0.93rem;
        color: var(--bs-secondary);
        padding: 0 0.85rem;
        height: 100%;
        display: flex;
        align-items: center;
        transition: color 0.25s ease;
        position: relative;
        text-decoration: none;
        white-space: nowrap;
    }

    .nav-link-custom:hover,
    .nav-link-custom.active {
        color: var(--bs-primary);
    }

    .nav-link-custom::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background-color: var(--bs-primary);
        transition: width 0.3s ease, left 0.3s ease;
        border-radius: 2px;
    }

    .nav-link-custom:hover::after,
    .nav-link-custom.active::after {
        width: 70%;
        left: 15%;
    }

    /* Dropdown Hover & Click Transitions */
    .header-nav .dropdown:hover > .dropdown-menu,
    .header-nav .dropdown-menu.show {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }

    .header-nav .dropdown-menu {
        display: block !important;
        position: absolute !important;
        top: 100% !important;   /* anchor directly below the nav item, not the viewport */
        left: 0 !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        pointer-events: none;
        margin-top: 0 !important;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    /* Transparent bridge fills the gap between nav link and menu so hover isn't lost */
    .header-nav .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 0;
        right: 0;
        height: 10px;
    }

    /* Mega Menu Specific Placement */
    .dropdown-mega {
        position: static !important;
    }

    .dropdown-menu-mega {
        width: 90% !important;
        left: 5% !important;
        right: 5% !important;
        margin-top: 0 !important;
        border-radius: 16px !important;
        padding: 2.2rem !important;
        box-shadow: 0 20px 50px rgba(6, 28, 99, 0.15) !important;
    }
}

/* Dropdown Menu Item Styling */
.dropdown-menu .dropdown-item {
    color: #475569;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-menu .dropdown-item:hover {
    color: var(--bs-primary);
    background-color: rgba(8, 138, 199, 0.05);
}

.dropdown-menu .dropdown-item.active {
    color: var(--bs-primary);
    background-color: rgba(8, 138, 199, 0.08);
    font-weight: 700;
    border-left: 3px solid var(--bs-primary);
    padding-left: calc(1rem - 3px);
}

/* Mega Menu Item Lists */
.mega-menu-list a.dropdown-item {
    font-size: 0.9rem;
    border-radius: 6px;
}

.mega-menu-list a.dropdown-item:hover {
    padding-left: 1.25rem !important;
}

/* ----------------------------------------------------
   MOBILE OFFCANVAS — Full-width slide from right
   ---------------------------------------------------- */

/* Shell — full width, no radius */
.mob-offcanvas {
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: #fff;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

/* Header bar */
.mob-offcanvas__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    background: #fff;
    border-bottom: 1px solid rgba(6,28,99,0.09);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mob-offcanvas__logo { display: flex; align-items: center; max-width: 80%; }
.mob-offcanvas__logo img { display: block; max-width: 100%; height: auto; }

.mob-offcanvas__close {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    display: flex; align-items: center; justify-content: center;
    color: #dc2626;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 0;
    flex-shrink: 0;
}
.mob-offcanvas__close:hover {
    box-shadow: 0 6px 22px rgba(0,0,0,0.18);
    transform: rotate(90deg);
}

/* Scrollable body */
.mob-offcanvas__body {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #fff;
}
.mob-offcanvas__body::-webkit-scrollbar { width: 4px; }
.mob-offcanvas__body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

/* Nav block card */
.mob-nav-block {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(6,28,99,0.06);
}

/* Plain nav row */
.mob-nav-row {
    display: block;
    padding: 1rem 1.1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    border-bottom: 1px solid rgba(6,28,99,0.07);
    transition: background 0.15s, color 0.15s;
}
.mob-nav-row:last-child,
.mob-nav-row--last { border-bottom: none; }
.mob-nav-row:hover { background: #f0f7ff; color: #088ac7; }

/* Accordion block */
.mob-nav-block--accordion { overflow: visible; }

.mob-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    background: #fff;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    box-shadow: none !important;
    text-align: left;
}
.mob-accordion-btn::after { display: none; }
.mob-chevron {
    flex-shrink: 0;
    margin-left: auto;
    transition: transform 0.25s ease;
    opacity: 0.5;
}
.mob-accordion-btn:not(.collapsed) {
    color: #088ac7;
    background: #f0f7ff;
    border-radius: 14px 14px 0 0;
}
.mob-accordion-btn:not(.collapsed) .mob-chevron {
    transform: rotate(180deg);
    opacity: 1;
    color: #088ac7;
}

.mob-accordion-body {
    padding: 0.75rem 1.1rem 1.1rem;
    background: #f8fafc;
    border-radius: 0 0 14px 14px;
    border-top: 1px solid rgba(6,28,99,0.07);
}

/* Sub group label */
.mob-sub-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0 0 0.4rem;
}
.mob-sub-label.mt-3 { margin-top: 1rem !important; }

/* Sub links */
.mob-sub-link {
    display: block;
    padding: 0.5rem 0.6rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}
.mob-sub-link:hover { background: #e0f0ff; color: #088ac7; }
.mob-sub-link--static { cursor: default; color: #94a3b8; }
.mob-sub-link--static:hover { background: transparent; color: #94a3b8; }

/* Bottom CTA */
.mob-offcanvas__cta {
    margin-top: auto;
    padding-top: 0.5rem;
}

/* Offcanvas custom scrollbar */
.offcanvas-body::-webkit-scrollbar {
    width: 5px;
}

/* Modal Enhancements */
.modal-content {
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(6, 28, 99, 0.25);
}


/* ----------------------------------------------------
   HOME HERO SLIDER (Swiper)
   ---------------------------------------------------- */
.home-hero-carousel {
    width: 100%;
}

.swiper-container.homeslider {
    width: 100%;
    height: 680px;
}

@media (max-width: 768px) {
    .swiper-container.homeslider {
        height: 520px;
    }
}

@media (max-width: 480px) {
    .swiper-container.homeslider {
        height: 420px;
    }
}

/* Slide base */
.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Slide background images */
.slide-01 { background-image: url('../img/slider01.jpg'); }
.slide-02 { background-image: url('../img/slider02.jpg'); }
.slide-03 { background-image: url('../img/slider03.jpg'); }
.slide-04 { background-image: url('../img/slider04.jpg'); }
.slide-05 { background-image: url('../img/slider05.jpg'); }
.slide-06 { background-image: url('../img/slider00.jpg'); }

/* Dark gradient overlay for text readability */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(6, 28, 99, 0.82) 0%,
        rgba(6, 28, 99, 0.55) 55%,
        rgba(6, 28, 99, 0.15) 100%
    );
    z-index: 1;
}

/* Slide text content */
.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 8% 0 10%;
    max-width: 680px;
}

/* --- Slide content individual keyframes --- */
@keyframes slideFromTop {
    from { opacity: 0; transform: translateY(-52px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes lineExpand {
    from { width: 0; opacity: 0; }
    to   { width: 64px; opacity: 1; }
}

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

/* Title — drops in from above */
.slide-content.slide-animate .slide-title {
    animation: slideFromTop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}

/* Accent line — expands outward */
.slide-content.slide-animate .slide-line {
    animation: lineExpand 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

/* Description — rises from below */
.slide-content.slide-animate .slide-desc {
    animation: slideFromBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.slide-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.1rem;
}

.slide-line {
    display: block;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--bs-primary), rgba(8,138,199,0.3));
    border-radius: 4px;
    margin-bottom: 1.2rem;
    opacity: 0;
}

.slide-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 520px;
}

/* Swiper pagination bullets */
.homeslider .swiper-pagination {
    bottom: 24px;
}

.homeslider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.homeslider .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 28px;
    border-radius: 5px;
}

/* ----------------------------------------------------
   FEATURES SECTION
   ---------------------------------------------------- */
.features {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(135deg, #030d2e 0%, var(--bs-secondary) 50%, #0c2b8c 100%) !important;
}

.feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(8, 138, 199, 0.4);
    transform: translateY(-6px);
}

.feature-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(8, 138, 199, 0.15);
    color: var(--bs-primary);
    margin-bottom: 1.4rem;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
    background: rgba(8, 138, 199, 0.28);
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bs-primary);
    text-decoration: none;
    transition: gap 0.25s ease, opacity 0.25s ease;
    margin-top: auto;
}

.feature-readmore:hover {
    gap: 0.7rem;
    opacity: 0.85;
    color: var(--bs-primary);
}

.feature-readmore svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.feature-readmore:hover svg {
    transform: translateX(3px);
}

/* ----------------------------------------------------
   ABOUT SECTION
   ---------------------------------------------------- */
.py-lg-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.mb-lg-7 { margin-bottom: 4.5rem !important; }
.mt-lg-7 { margin-top: 4.5rem !important; }

/* Eyebrow label shared across sections */
.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.about-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--bs-secondary);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
}

.about-desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.about-btn {
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}

/* Image wrapper */
.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 24px 60px rgba(6, 28, 99, 0.14);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-wrap:hover .about-img {
    transform: scale(1.02);
}

/* Floating badge cards on images */
.about-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border-radius: 14px;
    padding: 0.9rem 1.2rem;
    box-shadow: 0 10px 30px rgba(6, 28, 99, 0.12);
    white-space: nowrap;
    z-index: 2;
}

.about-badge--top {
    top: -18px;
    right: -18px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
    padding: 1rem 1.4rem;
}

.about-badge--bottom {
    bottom: -18px;
    left: -18px;
}

.about-badge__number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--bs-primary);
}

.about-badge__number sup {
    font-size: 1rem;
    font-weight: 700;
}

.about-badge__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.about-badge--bottom svg {
    color: var(--bs-primary);
    flex-shrink: 0;
}

/* Alt image wrap (Block 2) */
.about-img-wrap--alt .about-img {
    height: 480px;
}

/* Floating card inside image (Block 2) */
.about-floating-card {
    position: absolute;
    bottom: -18px;
    right: -18px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 30px rgba(6, 28, 99, 0.12);
    z-index: 2;
}

.about-floating-card .text-primary {
    color: var(--bs-primary) !important;
    flex-shrink: 0;
}

/* Divider between blocks */
.about-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border) 30%, var(--color-border) 70%, transparent);
    margin: 1rem 0;
}

/* Offer list (Block 2) */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.about-list__item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155;
    padding: 0.85rem 1.1rem;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    background: #f8fafc;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    cursor: default;
}

.about-list__item:hover {
    background: var(--bs-primary-light);
    border-color: rgba(8, 138, 199, 0.25);
    transform: translateX(6px);
}

.about-list__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #ffffff;
    flex-shrink: 0;
}

/* ----------------------------------------------------
   GALLERY SECTION
   ---------------------------------------------------- */
.gallery-section {
    background: var(--color-light-bg);
}

.section-header {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--bs-secondary);
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

.section-subheading {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 0;
}

/* 3-column responsive grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

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

/* Individual gallery card */
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: #e2e8f0;
    box-shadow: 0 4px 16px rgba(6, 28, 99, 0.07);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(6, 28, 99, 0.14);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.07);
}

/* Zoom overlay icon */
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 28, 99, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__overlay svg {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

/* ----------------------------------------------------
   LIGHTBOX
   ---------------------------------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(3, 13, 46, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__stage {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    display: block;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox__img.is-loading {
    opacity: 0;
    transform: scale(0.96);
}

/* Close button */
.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    z-index: 10001;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: rotate(90deg);
}

/* Prev / Next buttons */
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    z-index: 10001;
}

.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.24);
}

.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(3px); }

/* Counter */
.lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    pointer-events: none;
}

/* ----------------------------------------------------
   ADVICE SECTION
   ---------------------------------------------------- */
.advice-section {
    position: relative;
    padding: 6rem 0;
    background-image: url('../img/special-bg-img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Gradient overlay: deep navy left → primary blue right */
.advice-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(3, 13, 46, 0.92) 0%,
        rgba(6, 28, 99, 0.80) 45%,
        rgba(8, 138, 199, 0.60) 100%
    );
    z-index: 1;
}

/* Eyebrow */
.advice-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bs-primary);
    background: rgba(8, 138, 199, 0.15);
    border: 1px solid rgba(8, 138, 199, 0.4);
    border-radius: 50px;
    padding: 0.35rem 1.1rem;
    margin-bottom: 1.4rem;
}

/* Title */
.advice-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin-bottom: 1.4rem;
}

/* Description */
.advice-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Call CTA button */
.advice-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border-radius: 60px;
    padding: 0.85rem 2rem 0.85rem 0.85rem;
    text-decoration: none;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advice-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.advice-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-primary));
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.advice-cta:hover .advice-cta__icon {
    transform: rotate(-15deg) scale(1.1);
}

.advice-cta__text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.advice-cta__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
}

.advice-cta__number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--bs-secondary);
    letter-spacing: -0.01em;
}

@media (max-width: 576px) {
    .advice-section { padding: 4rem 0; background-attachment: scroll; }
    .advice-cta { padding: 0.75rem 1.5rem 0.75rem 0.75rem; }
    .advice-cta__number { font-size: 1.05rem; }
}

/* ----------------------------------------------------
   3-COLUMN FEATURES SECTION
   ---------------------------------------------------- */
.features3 {
    background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 50%, #f0f9ff 100%);
}

/* Card */
.f3-card {
    position: relative;
    height: 100%;
    padding: 2.2rem 2rem;
    border-radius: 18px;
    border: 1.5px solid var(--color-border);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(6, 28, 99, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
    overflow: hidden;
}

.f3-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-secondary), var(--bs-primary));
    border-radius: 18px 18px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.f3-card:hover::before,
.f3-card--active::before {
    transform: scaleX(1);
}

.f3-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(6, 28, 99, 0.11);
    border-color: rgba(8, 138, 199, 0.3);
}

/* Active / featured card */
.f3-card--active {
    border-color: rgba(8, 138, 199, 0.35);
    background: linear-gradient(160deg, #f0f8ff 0%, #ffffff 100%);
    box-shadow: 0 12px 40px rgba(8, 138, 199, 0.12);
}

/* Card top row: icon + number */
.f3-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

/* Icon circle */
.f3-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(6,28,99,0.08), rgba(8,138,199,0.12));
    color: var(--bs-primary);
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.f3-card:hover .f3-icon,
.f3-card--active .f3-icon {
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-primary));
    color: #ffffff;
    transform: rotate(-6deg) scale(1.08);
}

/* Large background number */
.f3-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(6, 28, 99, 0.06);
    letter-spacing: -0.04em;
    user-select: none;
    transition: color 0.3s ease;
}

.f3-card:hover .f3-number {
    color: rgba(8, 138, 199, 0.1);
}

/* Title */
.f3-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.85rem;
    letter-spacing: -0.015em;
}

/* Description */
.f3-desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* Thin divider line */
.f3-divider {
    height: 1px;
    background: var(--color-border);
    margin-bottom: 1.25rem;
    transition: background 0.3s ease;
}

.f3-card:hover .f3-divider {
    background: rgba(8, 138, 199, 0.25);
}

/* Learn More link */
.f3-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--bs-secondary);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.25s ease, gap 0.25s ease;
    margin-top: auto;
}

.f3-link:hover {
    color: var(--bs-primary);
    gap: 0.7rem;
}

.f3-link svg {
    transition: transform 0.25s ease;
}

.f3-link:hover svg {
    transform: translateX(3px);
}

/* Services bullet list inside f3-card */
.f3-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex-grow: 1;
}

.f3-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.55;
}

.f3-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--bs-primary);
}

/* ----------------------------------------------------
   TESTIMONIALS SECTION
   ---------------------------------------------------- */
.testimonials-section {
    background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 50%, #f0f9ff 100%);
}

/* Swiper container sizing */
.testimonial-swiper {
    padding-bottom: 3.5rem !important;
    position: relative;
}

/* Card */
.testi-card {
    background: #ffffff;
    border: 1.5px solid var(--color-border);
    border-radius: 18px;
    padding: 2rem 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(6, 28, 99, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-secondary), var(--bs-primary));
    border-radius: 18px 18px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.swiper-slide-active .testi-card::before {
    transform: scaleX(1);
}

/* Stars */
.testi-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    margin-bottom: 1rem;
}

/* Quote icon */
.testi-quote-icon {
    color: var(--bs-primary);
    opacity: 0.18;
    margin-bottom: 0.75rem;
    display: block;
}

/* Review text — clamped to 4 lines by default */
.testi-text {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.85;
    /* 3 lines: 0.92rem × 1.85 × 3 ≈ 5.11rem */
    max-height: 5.11rem;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.4rem;
}

.testi-text.is-expanded {
    max-height: 600px;
}

/* Read more / Read less toggle button */
.testi-read-more {
    background: none;
    border: none;
    padding: 0 0 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--bs-primary);
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 0.25rem;
    letter-spacing: 0.01em;
    transition: opacity 0.2s ease;
    line-height: 1;
}

.testi-read-more.is-visible {
    display: inline-flex;
}

.testi-read-more:hover {
    opacity: 0.75;
}

.testi-read-more svg {
    transition: transform 0.25s ease;
}

.testi-read-more.is-expanded svg {
    transform: rotate(180deg);
}

/* Author row */
.testi-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

/* Avatar initials circle */
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-primary));
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

.testi-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin: 0;
}

.testi-role {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 0;
}

/* Prev / Next nav buttons */
.testi-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.testi-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background: #ffffff;
    color: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.testi-btn:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #ffffff;
    transform: scale(1.08);
}

/* Pagination dots */
.testi-pagination {
    bottom: 0 !important;
}

.testi-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.testi-pagination .swiper-pagination-bullet-active {
    background: var(--bs-primary);
    width: 22px;
    border-radius: 4px;
}

/* ----------------------------------------------------
   INSURANCE PARTNERS SECTION
   ---------------------------------------------------- */
.insurance-section {
    background: #ffffff;
    overflow: hidden;
}

/* Fade-edge mask on both sides */
.ins-marquee-wrap {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
}

.ins-marquee-wrap::before,
.ins-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.ins-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.ins-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

/* Scrolling track */
.ins-marquee-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    animation: insMarquee 32s linear infinite;
}

.ins-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes insMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Individual logo card */
.ins-logo {
    flex-shrink: 0;
    width: 160px;
    height: 90px;
    border-radius: 12px;
    border: 1.5px solid var(--color-border);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.ins-logo:hover {
    border-color: rgba(8, 138, 199, 0.4);
    box-shadow: 0 6px 20px rgba(8, 138, 199, 0.1);
    transform: translateY(-3px);
}

.ins-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: 0.85;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.ins-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 576px) {
    .ins-logo { width: 130px; height: 75px; }
}

/* ----------------------------------------------------
   FOOTER
   ---------------------------------------------------- */
.site-footer {
    background: linear-gradient(160deg, #030d2e 0%, var(--bs-secondary) 60%, #0c2b8c 100%);
    color: rgba(255, 255, 255, 0.75);
}

/* Main footer body */
.footer-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Logo */
.footer-logo {
    display: inline-block;
    background: #fff;
    border-radius: 12px;
    padding: 8px 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.footer-logo img {
    display: block;
    height: 44px;
    width: auto;
}

/* Contact items */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(8, 138, 199, 0.18);
    color: var(--bs-primary);
    flex-shrink: 0;
    margin-top: 1px;
}

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

.footer-link:hover {
    color: #ffffff;
}

/* Social buttons */
.footer-socials {
    display: flex;
    gap: 0.6rem;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social-btn:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Column headings */
.footer-heading {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--bs-primary);
    display: inline-block;
}

/* Links list */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-links-list li a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.25s ease, gap 0.25s ease;
}

.footer-links-list li a::before {
    content: '›';
    font-size: 1.1rem;
    color: var(--bs-primary);
    line-height: 1;
    transition: transform 0.2s ease;
}

.footer-links-list li a:hover {
    color: #ffffff;
    gap: 0.6rem;
}

.footer-links-list li a:hover::before {
    transform: translateX(3px);
}

/* Static list items (no links — e.g. Pre-Formulations) */
.footer-links-list--static li {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.38);
    padding-left: 0.9rem;
    position: relative;
}
.footer-links-list--static li::before {
    content: '›';
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.2);
    line-height: 1;
}

/* Refer-a-Friend card */
.footer-refer-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
}

.footer-refer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(8, 138, 199, 0.18);
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.footer-refer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.text-primary-light {
    color: #5bc8f0;
}

.footer-refer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bs-primary);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-refer-btn:hover {
    background: var(--bs-primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(8, 138, 199, 0.35);
}

.footer-refer-btn svg {
    transition: transform 0.25s ease;
}

.footer-refer-btn:hover svg {
    transform: translateX(3px);
}

/* Bottom copyright bar */
.footer-bottom {
    padding: 1.25rem 0;
    background: rgba(0, 0, 0, 0.25);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-intro {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.60);
    margin-bottom: 1.5rem;
}

.footer-intro-link {
    color: var(--bs-primary);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.footer-intro-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-ddl-label {
    font-size: 0.70rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,0.4);
    margin: 0 0 0.75rem;
}
.footer-ddl-label.mt-3 { margin-top: 1.25rem !important; }

/* ====================================================
   PAGE PRELOADER
   ==================================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #030d2e 0%, var(--bs-secondary) 60%, #0c2b8c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

/* Icon + ring wrapper — sized to the ring so both stay centered */
.preloader__icon-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Molecule icon — floats up/down */
.preloader__icon {
    position: relative;
    z-index: 2;
    animation: preloaderFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 8px 24px rgba(8, 138, 199, 0.5));
}

@keyframes preloaderFloat {
    0%, 100% { transform: translateY(0);    }
    50%       { transform: translateY(-8px); }
}

/* Spinning ring — fills the wrapper exactly */
.preloader__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2.5px solid transparent;
    border-top-color: var(--bs-primary);
    border-right-color: rgba(8, 138, 199, 0.3);
    animation: preloaderSpin 1s linear infinite;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

/* Brand name */
.preloader__text {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    animation: preloaderPulse 1.6s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1;   }
}

/* Progress bar */
.preloader__bar-wrap {
    width: 160px;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
    margin-top: 0.25rem;
}

.preloader__bar {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--bs-primary), #5bc8f0);
    animation: preloaderProgress 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: left;
}

@keyframes preloaderProgress {
    0%   { width: 0%; }
    60%  { width: 75%; }
    100% { width: 100%; }
}

/* ====================================================
   FLOATING ACTION BUTTONS
   Back to Top
   ==================================================== */

/* --- Back to Top FAB --- */
.fab-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(8, 138, 199, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.35s ease,
                visibility 0.35s ease,
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.25s ease;
}

.fab-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-top:hover {
    background: var(--bs-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(8, 138, 199, 0.5);
}

/* ====================================================
   CHATBOT WIDGET
   ==================================================== */

.chatbot {
    position: fixed;
    bottom: 88px;
    right: 24px;
    z-index: 1100;
}

/* Toggle button */
.chatbot__toggle {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bs-secondary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(6, 28, 99, 0.4);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease, background 0.25s ease;
}

.chatbot__toggle:hover {
    background: var(--bs-primary);
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(8,138,199,0.45);
}

.chatbot__toggle-open,
.chatbot__toggle-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.chatbot__toggle-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.7);
}

.chatbot.is-open .chatbot__toggle-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.7);
}

.chatbot.is-open .chatbot__toggle-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Notification badge */
.chatbot__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e53e3e;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.chatbot.is-open .chatbot__badge {
    opacity: 0;
    transform: scale(0);
}

/* Chat window */
.chatbot__window {
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 340px;
    max-height: 500px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(6,28,99,0.18), 0 4px 16px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.chatbot.is-open .chatbot__window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Header */
.chatbot__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, var(--bs-secondary) 0%, var(--bs-primary) 100%);
    color: #fff;
    flex-shrink: 0;
}

.chatbot__header-info {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.chatbot__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot__name {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.chatbot__status {
    font-size: 0.73rem;
    margin: 0;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 2px;
}

.chatbot__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
    flex-shrink: 0;
}

.chatbot__close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.chatbot__close:hover { background: rgba(255,255,255,0.3); }

/* Messages */
.chatbot__messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    scroll-behavior: smooth;
    min-height: 120px;
}

.chatbot__messages::-webkit-scrollbar { width: 4px; }
.chatbot__messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 4px; }

/* Message bubbles */
.chatbot__msg {
    max-width: 84%;
    padding: 0.6rem 0.9rem;
    border-radius: 16px;
    font-size: 0.82rem;
    line-height: 1.6;
    animation: chatMsgIn 0.25s ease;
}

.chatbot__msg a { color: var(--bs-primary); font-weight: 600; }
.chatbot__msg--bot a:hover { text-decoration: underline; }

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

.chatbot__msg--bot {
    background: #f0f4ff;
    color: #1a2744;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.chatbot__msg--user {
    background: var(--bs-primary);
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

/* Typing dots */
.chatbot__typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.6rem 0.9rem;
    background: #f0f4ff;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    width: fit-content;
}

.chatbot__typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bs-primary);
    animation: chatTyping 1.2s ease infinite;
}

.chatbot__typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot__typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes chatTyping {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40%            { opacity: 1;   transform: scale(1.1); }
}

/* Quick replies */
.chatbot__quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0 1rem 0.75rem;
    flex-shrink: 0;
}

.chatbot__qr {
    background: transparent;
    border: 1.5px solid var(--bs-primary);
    color: var(--bs-primary);
    border-radius: 20px;
    padding: 0.28rem 0.72rem;
    font-size: 0.77rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.chatbot__qr:hover {
    background: var(--bs-primary);
    color: #fff;
}

/* Input row */
.chatbot__footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-top: 1px solid rgba(0,0,0,0.07);
    flex-shrink: 0;
}

.chatbot__input {
    flex: 1;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 0.48rem 0.9rem;
    font-size: 0.82rem;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
    background: #fafafa;
}

.chatbot__input:focus { border-color: var(--bs-primary); background: #fff; }

.chatbot__send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.chatbot__send:hover { background: var(--bs-secondary); transform: scale(1.1); }

@media (max-width: 575.98px) {
    .chatbot { bottom: 80px; right: 16px; }
    .chatbot__window { width: calc(100vw - 32px); right: 0; }
}

/* ====================================================
   RESPONSIVE OVERRIDES
   xs < 576 | sm 576 | md 768 | lg 992 | xl 1200
   ==================================================== */

/* --- Container tighter on phones --- */
@media (max-width: 575.98px) {
    .container-90 {
        width: 95% !important;
        max-width: 95% !important;
    }
}

/* ---- HEADER TOP BAR ---- */
@media (max-width: 575.98px) {
    .header-top {
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
    }
    /* Hide address on phones; keep phone number */
    .header-top .me-3 { display: none !important; }
    .header-top .col-12 { font-size: 0.78rem; }
}

/* ---- HERO SLIDER ---- */
@media (max-width: 575.98px) {
    .slide-content {
        padding: 0 5%;
        max-width: 100%;
    }
    .slide-desc { max-width: 100%; }
}

/* ---- 5-COL FEATURES (dark band) ---- */
@media (max-width: 575.98px) {
    .feature-card { padding: 1.5rem 1.2rem; }
    .feature-icon-wrap { width: 52px; height: 52px; }
}

/* Center lone card in last row on sm–lg */
@media (min-width: 576px) and (max-width: 1199.98px) {
    .features .row { justify-content: center; }
}

/* ---- ABOUT SECTION ---- */
/* Tablet: reduce image height, move badges inside image bounds */
@media (max-width: 991.98px) {
    .about-img { height: 340px; }
    .about-img-wrap--alt .about-img { height: 360px; }

    .about-badge--top    { top: 14px;    right: 14px; }
    .about-badge--bottom { bottom: 14px; left: 14px;  }
    .about-floating-card { bottom: 14px; right: 14px; }
}

/* Mobile: shorter image, hide floating badges to avoid clutter */
@media (max-width: 575.98px) {
    .about-img,
    .about-img-wrap--alt .about-img { height: 230px; }

    .about-badge, .about-floating-card { display: none; }

    .about-btn { width: 100%; justify-content: center; }
    .about-desc { font-size: 0.95rem; }
}

/* ---- GALLERY ---- */
/* Already responsive (2-col ≤768, 1-col ≤480) */

/* ---- ADVICE SECTION ---- */
/* Stack call CTA vertically on very small phones */
@media (max-width: 480px) {
    .advice-cta {
        flex-direction: column;
        gap: 0.6rem;
        padding: 1.25rem 1.5rem;
        border-radius: 20px;
        text-align: center;
    }
    .advice-cta__text { align-items: center; }
    .advice-cta__icon { width: 44px; height: 44px; }
}

/* ---- 3-COL FEATURES (light) ---- */
@media (max-width: 575.98px) {
    .f3-card { padding: 1.75rem 1.5rem; }
    .f3-number { font-size: 2.8rem; }
}

/* ---- TESTIMONIALS ---- */
@media (max-width: 575.98px) {
    .testi-card { padding: 1.5rem 1.25rem 1.25rem; }
}

/* ---- FOOTER ---- */
/* Reduce vertical gap between stacked footer columns on mobile */
@media (max-width: 767.98px) {
    .footer-main .row { row-gap: 1.75rem !important; }
}

@media (max-width: 575.98px) {
    .site-footer .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    .footer-heading { margin-bottom: 0.75rem; }
    .footer-socials { flex-wrap: wrap; }
    .footer-logo img { height: 50px; }
}

/* ---- SECTION HEADINGS & TYPOGRAPHY ---- */
/* Already using clamp() — scaling handled automatically */

/* ---- MODALS ---- */
@media (max-width: 575.98px) {
    .modal-dialog { margin: 0.5rem; }
    .modal-body { padding: 1.25rem; }
    .modal-header { padding: 1rem 1.25rem; }
    .modal-footer { padding: 1rem 1.25rem 1.25rem; }
}

/* ====================================================
   SUB-PAGE HERO (Inner page banner)
   ==================================================== */
.page-hero {
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 28, 99, 0.88) 0%, rgba(8, 138, 199, 0.65) 100%);
}

/* Brand-colour gradient variant — no photo needed */
.page-hero--branded {
    background: linear-gradient(135deg, #061c63 0%, #0c2b8c 50%, #088ac7 100%);
}

.page-hero--branded .page-hero__overlay {
    background: transparent;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.page-hero__title {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.page-hero__breadcrumb {
    margin-bottom: 0;
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.45);
    --bs-breadcrumb-item-active-color: #fff;
}

.page-hero__breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.page-hero__breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.page-hero__breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-size: 0.875rem;
}

.page-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}

/* ====================================================
   WHY CHOOSE US CARDS (About Page)
   ==================================================== */
.why-card {
    padding: 2rem 1.75rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--color-border);
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(6, 28, 99, 0.08);
    border-color: rgba(8, 138, 199, 0.3);
}

.why-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bs-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--bs-primary);
    flex-shrink: 0;
}

.why-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.75rem;
}

.why-card__desc {
    font-size: 0.925rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ====================================================
   SPECIALS SECTION (About Page)
   ==================================================== */
.specials-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 12px rgba(6, 28, 99, 0.04);
}

.specials-stat__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bs-primary-light);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.specials-stat__value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bs-secondary);
    line-height: 1;
}

.specials-stat__label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

/* ====================================================
   ABOUT PAGE — RESPONSIVE
   ==================================================== */

/* --- Stats grid (Section 02) ---
   Desktop (lg+) : single flex column inside col-lg-5
   Tablet (sm–md): 2 × 2 grid
   Mobile (xs)   : single column                        */
.specials-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .specials-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

/* --- Action buttons (Section 02) ---
   Full-width stacked on phones                          */
@media (max-width: 575.98px) {
    .about-action-btns {
        flex-direction: column;
    }
    .about-action-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Page hero ---                                     */
@media (max-width: 767.98px) {
    .page-hero { min-height: 240px; }
}

@media (max-width: 575.98px) {
    .page-hero { min-height: 200px; }
    .page-hero__title { font-size: 1.65rem; }
    .page-hero__content { padding-top: 1.5rem; padding-bottom: 1.5rem; }
}

/* --- Why cards ---                                     */
@media (max-width: 575.98px) {
    .why-card { padding: 1.5rem 1.25rem; }
    .why-card__icon { width: 48px; height: 48px; }
}

/* --- Stat cards ---                                    */
@media (max-width: 575.98px) {
    .specials-stat { padding: 0.85rem 1rem; }
    .specials-stat__icon { width: 38px; height: 38px; }
    .specials-stat__value { font-size: 1.2rem; }
    .specials-stat__label { font-size: 0.76rem; }
}

/* --- Section 03 CTA button ---                        */
@media (max-width: 575.98px) {
    .subpage .btn-lg {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }
}

.subpage{
    min-height:600px;
}

/* ====================================================
   TECH PANEL — Modern Clinic Page
   ==================================================== */
.tech-panel {
    background: linear-gradient(135deg, #061c63 0%, #0c2b8c 55%, #088ac7 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Decorative circles */
.tech-panel::before,
.tech-panel::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.tech-panel::before {
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    top: -60px;
    right: -60px;
}

.tech-panel::after {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.04);
    bottom: -50px;
    left: -40px;
}

.tech-panel__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tech-panel__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
}

.tech-panel__heading {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.6rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.tech-panel__sub {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}

.tech-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.tech-stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 0.9rem 1rem;
}

.tech-stat__value {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.tech-stat__label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 500;
    line-height: 1.3;
}

/* Feature pill list */
.tech-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.tech-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.925rem;
    color: #475569;
    line-height: 1.5;
}

.tech-features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tech-features__icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bs-primary-light);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Section divider line */
.section-rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border) 20%, var(--color-border) 80%, transparent);
    margin: 0;
    border: none;
}

/* ---- Tech panel responsive ---- */
@media (max-width: 991.98px) {
    .tech-panel { padding: 2rem 1.75rem; }
    .tech-panel__heading { font-size: 1.15rem; }
}

@media (max-width: 575.98px) {
    .tech-panel { padding: 1.75rem 1.4rem; border-radius: 14px; }
    .tech-stats { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .tech-stat__value { font-size: 1.15rem; }
    .tech-panel__icon { width: 52px; height: 52px; border-radius: 12px; }
}

/* ====================================================
   DOCTORS PAGE
   ==================================================== */

/* Intro strip */
.crew-intro {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #64748b;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Photo wrapper */
.doctor-photo-wrap {
    position: relative;
}

.doctor-img-clip {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(6, 28, 99, 0.13);
}

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

.doctor-photo-wrap:hover .doctor-img {
    transform: scale(1.03);
}

/* Floating name tag */
.doctor-tag {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 0.85rem 1.2rem;
    box-shadow: 0 10px 30px rgba(6, 28, 99, 0.12);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 230px;
    z-index: 2;
}

.doctor-tag__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #061c63, #088ac7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.825rem;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.doctor-tag__name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--bs-secondary);
    line-height: 1.2;
}

.doctor-tag__role {
    font-size: 0.72rem;
    color: var(--bs-primary);
    font-weight: 600;
    margin-top: 2px;
}

/* Bio text */
.doctor-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--bs-secondary);
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.doctor-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.doctor-role::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--bs-primary);
    border-radius: 2px;
}

/* Credential pills */
.doctor-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.doctor-credential {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.32rem 0.85rem;
    background: var(--bs-primary-light);
    color: var(--bs-primary);
    border-radius: 50px;
    font-size: 0.775rem;
    font-weight: 600;
    border: 1px solid rgba(8, 138, 199, 0.18);
}

.doctor-credential svg {
    flex-shrink: 0;
}

/* Section separator */
.doctor-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border) 20%, var(--color-border) 80%, transparent);
    margin: 0;
    border: none;
}

/* Responsive */
@media (max-width: 991.98px) {
    .doctor-img { height: 400px; }
    .doctor-tag { bottom: 14px; left: 14px; min-width: 200px; }
}

@media (max-width: 575.98px) {
    .doctor-img { height: 300px; }
    .doctor-tag { display: none; }
    .doctor-img-clip { border-radius: 14px; }
}

/* ====================================================
   FAIR PRICES PAGE
   ==================================================== */

/* Intro value pill */
.price-value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.price-value-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bs-primary-light);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.price-value-item__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 2px;
}

.price-value-item__sub {
    font-size: 0.78rem;
    color: #64748b;
}

/* Base price card */
.price-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 28, 99, 0.08);
    border-color: rgba(8, 138, 199, 0.3);
}

/* Featured (gradient) variant */
.price-card--featured {
    background: linear-gradient(135deg, #061c63 0%, #0c2b8c 55%, #088ac7 100%);
    border-color: transparent;
}

.price-card--featured:hover {
    box-shadow: 0 20px 40px rgba(6, 28, 99, 0.25);
    border-color: transparent;
}

/* Free / highlight variant */
.price-card--free {
    border-color: rgba(22, 163, 74, 0.3);
    background: rgba(22, 163, 74, 0.03);
}

/* Amount display */
.price-card__amount {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--bs-secondary);
    line-height: 1;
    margin-bottom: 0.15rem;
}

.price-card--featured .price-card__amount { color: #fff; }
.price-card--free .price-card__amount { color: #16a34a; }

.price-card__period {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
}

.price-card--featured .price-card__period { color: rgba(255,255,255,0.6); }

/* Title & desc */
.price-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.35rem;
    margin-top: 0.75rem;
}

.price-card--featured .price-card__title { color: #fff; }
.price-card--free .price-card__title { color: #15803d; }

.price-card__desc {
    font-size: 0.845rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.price-card--featured .price-card__desc { color: rgba(255,255,255,0.75); }

/* Feature list inside card */
.price-card__list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.price-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.845rem;
    color: #475569;
    border-bottom: 1px solid var(--color-border);
}

.price-card__list li:last-child { border-bottom: none; padding-bottom: 0; }

.price-card--featured .price-card__list li {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.12);
}

.price-card__list-icon {
    color: var(--bs-primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.price-card--featured .price-card__list-icon { color: rgba(255,255,255,0.8); }

/* Top badge ribbon */
.price-card__badge {
    display: inline-block;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.price-card__badge--free   { background: rgba(22,163,74,0.1);  color: #16a34a; border: 1px solid rgba(22,163,74,0.2); }
.price-card__badge--pop    { background: var(--bs-primary);    color: #fff; }
.price-card__badge--light  { background: rgba(8,138,199,0.1); color: var(--bs-primary); border: 1px solid rgba(8,138,199,0.2); }
.price-card__badge--off    { background: rgba(239,68,68,0.1);  color: #dc2626; border: 1px solid rgba(239,68,68,0.2); }
.price-card__badge--cbct   { background: var(--bs-secondary);  color: #fff; }

/* Section sub-heading */
.offers-heading {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 800;
    color: var(--bs-secondary);
    margin-bottom: 0.35rem;
}

/* Wide CBCT card */
.cbct-card {
    background: linear-gradient(135deg, #061c63 0%, #0c2b8c 55%, #088ac7 100%);
    border-radius: 16px;
    padding: 2rem 2.25rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cbct-card__amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.cbct-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.cbct-card__desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
}

/* Price value item aliases */
.price-value-item__label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 2px;
}

.price-value-item__desc {
    font-size: 0.78rem;
    color: #64748b;
}

/* Small icon circle inside card header */
.price-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bs-primary-light);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Light blue badge variant (for use on white cards) */
.price-card__badge--light {
    background: rgba(8, 138, 199, 0.1);
    color: var(--bs-primary);
    border: 1px solid rgba(8, 138, 199, 0.2);
}

/* CBCT card inner layout */
.cbct-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.cbct-card__body {
    flex: 1;
    min-width: 220px;
}

.cbct-card__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.3rem;
}

.cbct-card__note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.3rem;
}

.cbct-card__pricing {
    text-align: center;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 575.98px) {
    .price-card { padding: 1.4rem 1.2rem; }
    .price-card__amount { font-size: 1.9rem; }
    .cbct-card { flex-direction: column; gap: 1rem; text-align: center; }
    .cbct-card__amount { font-size: 2.2rem; }
    .cbct-card__body { min-width: unset; }
    .cbct-card__icon { margin: 0 auto; }
}

/* ====================================================
   NEW TECHNOLOGY PAGE · Section Images
   ==================================================== */
.newtec-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(6, 28, 99, 0.14);
}

.newtec-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.newtec-img-wrap:hover .newtec-img {
    transform: scale(1.04);
}

.newtec-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(to top, rgba(6, 28, 99, 0.82) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
}

.newtec-img-caption__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.newtec-img-caption__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.2rem;
}

.newtec-img-caption__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

@media (max-width: 991.98px) {
    .newtec-img { height: 360px; }
}

@media (max-width: 575.98px) {
    .newtec-img { height: 260px; border-radius: 14px; }
}

/* ====================================================
   PREVENTIVE DENTISTRY PAGE
   ==================================================== */
.prevdent-service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--bs-primary-light);
    color: var(--bs-primary);
    font-size: 1.1rem;
    font-weight: 800;
}

.prevdent-service-badge--kids {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.prevdent-service-title {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: var(--bs-secondary);
    margin-bottom: 1rem;
}

.prevdent-kids-tips {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
}

.prevdent-kids-tips__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    background: rgba(22, 163, 74, 0.07);
    color: #15803d;
    font-size: 0.875rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(22, 163, 74, 0.15);
}

.prevdent-kids-tips__list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.prevdent-kids-tips__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
    color: #475569;
    border-bottom: 1px solid var(--color-border);
}

.prevdent-kids-tips__list li:last-child { border-bottom: none; }

.prevdent-kids-tips__list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16a34a;
    flex-shrink: 0;
}

/* ====================================================
   PEDIATRIC DENTISTRY PAGE
   ==================================================== */

/* Service Cards */
.pedi-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pedi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 28, 99, 0.08);
    border-color: rgba(8, 138, 199, 0.3);
}

.pedi-card--highlight {
    background: linear-gradient(135deg, #061c63 0%, #0c2b8c 55%, #088ac7 100%);
    border-color: transparent;
}

.pedi-card--highlight:hover {
    box-shadow: 0 20px 40px rgba(6, 28, 99, 0.25);
    border-color: transparent;
}

.pedi-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bs-primary-light);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.pedi-card__icon--light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.pedi-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.5rem;
}

.pedi-card__desc {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* Stats grid inside Why section */
.pedi-stat {
    background: var(--color-light-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    text-align: center;
}

.pedi-stat__value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bs-primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.pedi-stat__label {
    font-size: 0.775rem;
    color: #64748b;
    font-weight: 500;
}

/* Age guide cards */
.pedi-age-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pedi-age-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(6, 28, 99, 0.08);
}

.pedi-age-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #061c63 0%, #088ac7 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.pedi-age-card__title {
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.5rem;
}

.pedi-age-card__desc {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 575.98px) {
    .pedi-card { padding: 1.4rem 1.2rem; }
    .pedi-age-card { padding: 1.25rem 1rem; }
}

/* ====================================================
   ROOT CANAL TREATMENT PAGE
   ==================================================== */

/* Benefit cards */
.rct-benefit-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rct-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 28, 99, 0.08);
    border-color: rgba(8, 138, 199, 0.3);
}

.rct-benefit-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bs-primary-light);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.rct-benefit-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.5rem;
}

.rct-benefit-card__desc {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* FAQ cards */
.rct-faq-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.rct-faq-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-secondary) 0%, var(--bs-primary) 100%);
}

.rct-faq-card__number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(8, 138, 199, 0.12);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.rct-faq-card__title {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.75rem;
}

.rct-faq-card__text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Symptoms list */
.rct-symptoms {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.rct-symptom {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    transition: background 0.2s ease;
}

.rct-symptom:last-child { border-bottom: none; }

.rct-symptom:hover { background: rgba(8, 138, 199, 0.03); }

.rct-symptom__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.rct-symptom__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.15rem;
}

.rct-symptom__desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

/* Cost pills */
.rct-cost-pill {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    background: var(--color-light-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bs-secondary);
}

.rct-cost-pill svg {
    color: var(--bs-primary);
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .rct-benefit-card { padding: 1.4rem 1.2rem; }
    .rct-faq-card { padding: 1.5rem 1.25rem; }
    .rct-faq-card__number { font-size: 2rem; }
    .rct-symptom { padding: 0.75rem 1rem; }
}

/* =============================================
   COMPLETE & PARTIAL DENTURES PAGE
   ============================================= */

/* Type overview cards */
.dent-type-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem 1.5rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
    overflow: hidden;
}

.dent-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bs-primary);
    border-radius: 16px 16px 0 0;
}

.dent-type-card--partial::before {
    background: var(--bs-secondary);
}

.dent-type-card--precision::before {
    background: linear-gradient(90deg, var(--bs-secondary), var(--bs-primary));
}

.dent-type-card:hover {
    box-shadow: 0 12px 36px rgba(6, 28, 99, 0.1);
    transform: translateY(-4px);
}

.dent-type-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(8, 138, 199, 0.1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dent-type-card--partial .dent-type-card__icon {
    background: rgba(6, 28, 99, 0.08);
    color: var(--bs-secondary);
}

.dent-type-card--precision .dent-type-card__icon {
    background: linear-gradient(135deg, rgba(6,28,99,0.08), rgba(8,138,199,0.12));
    color: var(--bs-primary);
}

.dent-type-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin: 0;
}

.dent-type-card__desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.dent-type-card__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    background: rgba(8, 138, 199, 0.1);
    color: var(--bs-primary);
    align-self: flex-start;
    margin-top: 0.25rem;
}

.dent-type-card--partial .dent-type-card__tag {
    background: rgba(6, 28, 99, 0.08);
    color: var(--bs-secondary);
}

.dent-type-card--precision .dent-type-card__tag {
    background: linear-gradient(90deg, var(--bs-secondary), var(--bs-primary));
    color: #fff;
}

/* Comparison cards (Traditional vs Immediate) */
.dent-compare-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(6, 28, 99, 0.05);
    transition: box-shadow 0.25s ease;
}

.dent-compare-card:hover {
    box-shadow: 0 10px 32px rgba(6, 28, 99, 0.12);
}

.dent-compare-card__header {
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.dent-compare-card__header--traditional {
    background: linear-gradient(135deg, #061c63 0%, #0c2b8c 100%);
    color: #fff;
}

.dent-compare-card__header--immediate {
    background: linear-gradient(135deg, #087ab8 0%, #088ac7 100%);
    color: #fff;
}

.dent-compare-card__header-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dent-compare-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.dent-compare-card__badge--immediate {
    background: rgba(255, 255, 255, 0.25);
}

.dent-compare-card__body {
    padding: 1.5rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.dent-compare-card__title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin: 0 0 0.25rem;
}

.dent-compare-card__text {
    font-size: 0.875rem;
    color: #334155;
    line-height: 1.65;
    margin: 0;
}

.dent-compare-card__note {
    margin-top: auto;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #475569;
    background: var(--color-light-bg);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.dent-compare-card__note--warning {
    background: rgba(8, 138, 199, 0.05);
    border-color: rgba(8, 138, 199, 0.2);
    color: #0369a1;
}

/* Partial denture options (A / B / C) */
.dent-partial-option {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.1rem 1.25rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: box-shadow 0.2s ease;
}

.dent-partial-option:hover {
    box-shadow: 0 6px 20px rgba(6, 28, 99, 0.08);
}

.dent-partial-option__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-primary));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dent-partial-option__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin: 0 0 0.2rem;
}

.dent-partial-option__desc {
    font-size: 0.845rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 575.98px) {
    .dent-type-card { padding: 1.5rem 1.2rem 1.4rem; }
    .dent-compare-card__header { padding: 1.2rem 1.25rem; }
    .dent-compare-card__body { padding: 1.25rem; }
    .dent-partial-option { padding: 0.9rem 1rem; }
}

/* =============================================
   COSMETIC DENTISTRY PAGE
   ============================================= */

/* Intro check pills */
.cosm-intro-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    background: rgba(8, 138, 199, 0.06);
    border: 1px solid rgba(8, 138, 199, 0.18);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bs-secondary);
}

.cosm-intro-pill svg {
    color: var(--bs-primary);
    flex-shrink: 0;
}

/* Service cards */
.cosm-service-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem 1.6rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
    overflow: hidden;
}

.cosm-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 0 0 16px 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cosm-service-card:hover {
    box-shadow: 0 12px 36px rgba(6, 28, 99, 0.1);
    transform: translateY(-4px);
}

.cosm-service-card:hover::after { opacity: 1; }

.cosm-service-card--accent {
    background: linear-gradient(160deg, rgba(6, 28, 99, 0.03) 0%, rgba(8, 138, 199, 0.04) 100%);
    border-color: rgba(8, 138, 199, 0.2);
}

.cosm-service-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(8, 138, 199, 0.1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cosm-service-card__icon--accent {
    background: rgba(6, 28, 99, 0.08);
    color: var(--bs-secondary);
}

.cosm-service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin: 0.25rem 0 0;
}

.cosm-service-card__desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.cosm-service-card__footer { margin-top: 0.5rem; }

.cosm-service-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.28rem 0.7rem;
    border-radius: 50px;
    background: rgba(8, 138, 199, 0.1);
    color: var(--bs-primary);
}

.cosm-service-card__tag--accent {
    background: rgba(6, 28, 99, 0.08);
    color: var(--bs-secondary);
}

/* 3-step process section */
.cosm-process-section {
    background: var(--color-light-bg);
}

.cosm-step {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 2.25rem 1.75rem 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.cosm-step:hover {
    box-shadow: 0 10px 32px rgba(6, 28, 99, 0.1);
    transform: translateY(-4px);
}

.cosm-step--featured {
    background: linear-gradient(160deg, var(--bs-secondary) 0%, #0c2b8c 60%, #088ac7 100%);
    border-color: transparent;
    color: #fff;
}

/* Connector lines between steps */
.cosm-step__connector {
    position: absolute;
    top: 50px;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-border), rgba(8, 138, 199, 0.3));
    z-index: 0;
}

.cosm-step__connector--right { right: -25%; }
.cosm-step__connector--left  { left: -25%; }

.cosm-step--featured .cosm-step__connector {
    background: linear-gradient(90deg, rgba(8,138,199,0.4), rgba(8,138,199,0.1));
}

.cosm-step__num {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bs-primary);
    background: rgba(8, 138, 199, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.25rem;
}

.cosm-step--featured .cosm-step__num {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cosm-step__icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(8, 138, 199, 0.08);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cosm-step__icon--featured {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cosm-step__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin: 0;
}

.cosm-step--featured .cosm-step__title { color: #fff; }

.cosm-step__desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

.cosm-step--featured .cosm-step__desc { color: rgba(255, 255, 255, 0.82); }

@media (max-width: 767.98px) {
    .cosm-step { padding: 1.75rem 1.4rem 1.6rem; }
    .cosm-step__connector { display: none !important; }
}

@media (max-width: 575.98px) {
    .cosm-service-card { padding: 1.6rem 1.25rem 1.5rem; }
    .cosm-intro-pill { font-size: 0.825rem; }
}

/* =============================================
   DENTAL FILLINGS PAGE
   ============================================= */

.fill-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.6rem 1.5rem;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.fill-card:hover {
    box-shadow: 0 10px 30px rgba(6, 28, 99, 0.09);
    transform: translateY(-3px);
}

.fill-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fill-card__icon--gold     { background: rgba(202, 155, 36, 0.12); color: #b8870d; }
.fill-card__icon--silver   { background: rgba(100, 116, 139, 0.12); color: #64748b; }
.fill-card__icon--composite{ background: rgba(8, 138, 199, 0.10); color: var(--bs-primary); }
.fill-card__icon--porcelain{ background: rgba(6, 28, 99, 0.08); color: var(--bs-secondary); }

.fill-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin: 0 0 0.35rem;
}

.fill-card__desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 575.98px) {
    .fill-card { padding: 1.25rem 1.1rem; }
}

/* =============================================
   INVISALIGN PAGE
   ============================================= */

.invis-stat {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.25rem 1.5rem 2rem;
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.invis-stat:hover {
    box-shadow: 0 10px 32px rgba(6, 28, 99, 0.1);
    transform: translateY(-4px);
}

.invis-stat--featured {
    background: linear-gradient(160deg, var(--bs-secondary) 0%, #0c2b8c 55%, #088ac7 100%);
    border-color: transparent;
}

.invis-stat__value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bs-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.invis-stat__value span {
    font-size: 1.75rem;
    font-weight: 700;
}

.invis-stat--featured .invis-stat__value {
    color: #fff;
}

.invis-stat__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

.invis-stat--featured .invis-stat__label {
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 575.98px) {
    .invis-stat { padding: 1.75rem 1.25rem 1.5rem; }
    .invis-stat__value { font-size: 2.5rem; }
}

/* =============================================
   3D CBCT PAGE
   ============================================= */

/* Machine image container (white-bg product photo) */
.cbct-machine-wrap {
    position: relative;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    padding: 2.5rem 2rem 0;
    text-align: center;
}

.btn{
    line-height: 200%;
}

.cbct-machine-img {   
    transition: transform 0.4s ease;
}

.cbct-machine-wrap:hover .cbct-machine-img {
    transform: scale(1.04);
}

/* Use-case cards (icon + text) */
.cbct-use-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.4rem 1.25rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.cbct-use-card:hover {
    box-shadow: 0 8px 24px rgba(6, 28, 99, 0.09);
    transform: translateY(-3px);
}

.cbct-use-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(8, 138, 199, 0.1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cbct-use-card__text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bs-secondary);
    line-height: 1.55;
    margin: 0;
    padding-top: 0.2rem;
}

@media (max-width: 575.98px) {
    .cbct-machine-wrap { padding: 1.75rem 1.25rem 0; }
    .cbct-use-card { padding: 1.1rem 1rem; }
}

/* ── Nitrous Oxide Sedation · Highlight Callout ── */
.nos-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(8, 138, 199, 0.07);
    border-left: 4px solid var(--bs-primary);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    margin-top: 1.5rem;
}

.nos-highlight__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nos-highlight__text {
    font-size: 0.95rem;
    color: var(--bs-secondary);
    line-height: 1.65;
    margin: 0;
    padding-top: 0.2rem;
}

/* ── Same Day Crowns · Step Cards ── */
.sdc-step-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.25rem 1.1rem;
    height: 100%;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.sdc-step-card:hover {
    box-shadow: 0 8px 28px rgba(6, 28, 99, 0.1);
    transform: translateY(-3px);
}

.sdc-step-card__num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--bs-primary);
    opacity: 0.18;
    line-height: 1;
    min-width: 2.2rem;
    flex-shrink: 0;
}

.sdc-step-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.35rem;
}

.sdc-step-card__desc {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* ── Same Day Crowns · Benefit Cards ── */
.sdc-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--color-light-bg);
    border-radius: 14px;
    padding: 1.25rem 1.1rem;
    height: 100%;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.sdc-benefit-card--full {
    background: rgba(8, 138, 199, 0.06);
    border: 1px solid rgba(8, 138, 199, 0.18);
}

.sdc-benefit-card:hover {
    box-shadow: 0 8px 28px rgba(6, 28, 99, 0.09);
    transform: translateY(-3px);
}

.sdc-benefit-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--bs-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sdc-benefit-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.3rem;
}

.sdc-benefit-card__desc {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* ── Waterlase · Badge Cards ── */
.wl-badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    background: var(--color-light-bg);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.1rem 0.75rem;
    text-align: center;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.wl-badge-card:hover {
    box-shadow: 0 6px 20px rgba(6, 28, 99, 0.1);
    transform: translateY(-3px);
}

.wl-badge-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wl-badge-card__label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--bs-secondary);
    letter-spacing: 0.02em;
}

/* ── Glidewell Clear Aligners · Image Wrap & Pills ── */
.gca-img-wrap {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(6, 28, 99, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gca-img-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(6, 28, 99, 0.14);
}

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

.gca-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(8, 138, 199, 0.08);
    color: var(--bs-primary);
    border: 1px solid rgba(8, 138, 199, 0.22);
    border-radius: 50px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ── Laser Hair Removal · Before/After Frame ── */
.lhr-before-after {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 44px rgba(6, 28, 99, 0.13);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lhr-before-after:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(6, 28, 99, 0.17);
}

.lhr-before-after__img {
    width: 100%;
    height: auto;
    display: block;
}

.lhr-before-after__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(6,28,99,0.75) 0%, transparent 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 1.5rem 1.25rem 0.85rem;
}

/* ── Laser Hair Removal · Benefit Cards ── */
.lhr-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.1rem 1.1rem;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.lhr-benefit-card--accent {
    background: rgba(8, 138, 199, 0.05);
    border-color: rgba(8, 138, 199, 0.2);
}

.lhr-benefit-card:hover {
    box-shadow: 0 8px 24px rgba(6, 28, 99, 0.09);
    transform: translateY(-3px);
}

.lhr-benefit-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bs-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lhr-benefit-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.25rem;
}

.lhr-benefit-card__desc {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* ── V30 Skin Treatments · Service Cards ── */
.v30-service-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.v30-service-card:hover {
    box-shadow: 0 6px 22px rgba(6, 28, 99, 0.1);
    transform: translateY(-3px);
    border-color: rgba(8, 138, 199, 0.3);
}

.v30-service-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(8, 138, 199, 0.1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v30-service-card__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bs-secondary);
    line-height: 1.4;
}

/* ── Préime DermaFacial · Technology Cards ── */
.derma-tech-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.derma-tech-card:hover {
    box-shadow: 0 6px 22px rgba(6, 28, 99, 0.1);
    transform: translateY(-2px);
    border-color: rgba(8, 138, 199, 0.3);
}

.derma-tech-card__badge {
    flex-shrink: 0;
    background: var(--bs-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    white-space: nowrap;
    margin-top: 0.1rem;
}

.derma-tech-card__desc {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* ── Post Care · Video Cards ── */
.postcare-video-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    text-align: left;
    cursor: pointer;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.postcare-video-card:hover {
    box-shadow: 0 12px 36px rgba(6, 28, 99, 0.13);
    transform: translateY(-4px);
}

.postcare-video-card__thumb {
    position: relative;
    overflow: hidden;
}

.postcare-video-card__img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.postcare-video-card:hover .postcare-video-card__img {
    transform: scale(1.04);
}

.postcare-video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 28, 99, 0.35);
    color: #fff;
    transition: background 0.25s ease;
}

.postcare-video-card:hover .postcare-video-card__play {
    background: rgba(8, 138, 199, 0.55);
}

.postcare-video-card__play svg {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    width: 52px;
    height: 52px;
}

.postcare-video-card__body {
    padding: 0.9rem 1.1rem;
}

.postcare-video-card__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bs-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ── Special Offers · Offer Cards ── */
.offer-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 2rem 1.75rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.offer-card:hover {
    box-shadow: 0 12px 36px rgba(6, 28, 99, 0.1);
    transform: translateY(-3px);
}

.offer-card--featured {
    background: linear-gradient(145deg, #061c63 0%, #0c2b8c 60%, #088ac7 100%);
    border-color: transparent;
    color: #fff;
}

.offer-card--featured .offer-card__price,
.offer-card--featured .offer-card__title {
    color: #fff;
}

.offer-card--featured .offer-card__desc {
    color: rgba(255, 255, 255, 0.82);
}

.offer-card--featured .btn-primary {
    background: #fff;
    border-color: #fff;
    color: var(--bs-secondary);
}

.offer-card--featured .btn-primary:hover {
    background: #e8f4fd;
    border-color: #e8f4fd;
}

.offer-card--discount {
    background: rgba(8, 138, 199, 0.05);
    border-color: rgba(8, 138, 199, 0.25);
}

.offer-card__badge {
    display: inline-block;
    background: var(--bs-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 0.25rem 0.8rem;
    margin-bottom: 1rem;
}

.offer-card--featured .offer-card__badge {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.offer-card__price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--bs-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.offer-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.5rem;
}

.offer-card__desc {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

/* ── Special Offers · Plan Cards ── */
.plan-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem 1.75rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.plan-card:hover {
    box-shadow: 0 14px 40px rgba(6, 28, 99, 0.1);
    transform: translateY(-3px);
}

.plan-card--featured {
    background: linear-gradient(145deg, #061c63 0%, #0c2b8c 60%, #088ac7 100%);
    border-color: transparent;
    transform: scale(1.03);
    box-shadow: 0 18px 52px rgba(6, 28, 99, 0.22);
}

.plan-card--featured:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: 0 22px 60px rgba(6, 28, 99, 0.28);
}

.plan-card--featured .plan-card__price,
.plan-card--featured .plan-card__name {
    color: #fff;
}

.plan-card--featured .plan-card__features li {
    color: rgba(255, 255, 255, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.plan-card--featured .plan-card__features li::before {
    color: #7dd3fc;
}

.plan-card__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 0.25rem 0.8rem;
    margin-bottom: 1.25rem;
}

.plan-card__price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bs-secondary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.plan-card__price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.65;
}

.plan-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 1.25rem;
}

.plan-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.plan-card__features li {
    font-size: 0.875rem;
    color: #495057;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-card__features li::before {
    content: "✓";
    color: var(--bs-primary);
    font-weight: 700;
    flex-shrink: 0;
}

.plan-card__features li:last-child {
    border-bottom: none;
}

/* ── Contact Page ── */
.contact-form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bs-secondary);
    margin-bottom: 0.5rem;
}

.contact-form__input {
    border: 1.5px solid var(--color-border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--bs-secondary);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(8, 138, 199, 0.12);
    outline: none;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form__submit {
    min-width: 180px;
    transition: opacity 0.2s ease;
}

.contact-form__submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

/* Success alert */
.contact-success {
    background: #ecfdf5;
    border: 1.5px solid #6ee7b7;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    color: #065f46;
    margin-bottom: 2rem;
}

.contact-success__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #6ee7b7;
    color: #065f46;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Contact Info Cards */
.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.25rem 1.75rem 1.75rem;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-info-card:hover {
    box-shadow: 0 12px 36px rgba(6, 28, 99, 0.1);
    transform: translateY(-4px);
}

.contact-info-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(8, 138, 199, 0.12) 0%, rgba(6, 28, 99, 0.08) 100%);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.contact-info-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.6rem;
}

.contact-info-card__text {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.contact-info-card__phone {
    color: var(--bs-secondary);
    font-weight: 600;
    text-decoration: none;
}

.contact-info-card__phone:hover {
    color: var(--bs-primary);
}

.contact-info-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bs-primary);
    text-decoration: none;
    margin-top: auto;
}

.contact-info-card__link:hover {
    text-decoration: underline;
}

/* ── Downloads Table ── */
.downloads-table-wrap {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(6, 28, 99, 0.07);
}

.downloads-table thead {
    background: linear-gradient(135deg, #061c63 0%, #0c2b8c 60%, #088ac7 100%);
}

.downloads-table__th {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 1.25rem;
    border: none;
}

.downloads-table__row {
    transition: background 0.18s ease;
}

.downloads-table__row:nth-child(even) {
    background: rgba(8, 138, 199, 0.03);
}

.downloads-table__row:hover {
    background: rgba(8, 138, 199, 0.07);
}

.downloads-table__row td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
}

.downloads-table__row:last-child td {
    border-bottom: none;
}

.downloads-table__sno {
    font-weight: 700;
    color: var(--bs-primary);
    font-size: 0.95rem !important;
}

.downloads-table__name {
    font-weight: 600;
    color: var(--bs-secondary);
}

.downloads-table__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(8, 138, 199, 0.1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.downloads-table__btn {
    background: rgba(8, 138, 199, 0.08);
    color: var(--bs-primary);
    border: 1.5px solid rgba(8, 138, 199, 0.25);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.downloads-table__btn:hover {
    background: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
}

/* ── FAQ Page ── */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.faq-tab {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 50px;
    color: var(--bs-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.faq-tab.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:has(.faq-item__btn:not(.collapsed)) {
    border-color: var(--bs-primary);
    box-shadow: 0 4px 20px rgba(8, 138, 199, 0.1);
}

.faq-item__heading {
    margin: 0;
}

.faq-item__btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 1.25rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-item__btn:hover {
    background: rgba(8, 138, 199, 0.04);
}

.faq-item__btn:not(.collapsed) {
    background: rgba(8, 138, 199, 0.05);
}

.faq-item__num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--bs-primary);
    opacity: 0.5;
    flex-shrink: 0;
    min-width: 24px;
}

.faq-item__q {
    flex-grow: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bs-secondary);
    line-height: 1.5;
}

.faq-item__badge {
    display: none;
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 700;
    background: rgba(8, 138, 199, 0.08);
    color: var(--bs-primary);
    border: 1px solid rgba(8, 138, 199, 0.2);
    border-radius: 50px;
    padding: 0.2rem 0.65rem;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .faq-item__badge {
        display: inline-block;
    }
}

.faq-item__icon {
    flex-shrink: 0;
    color: var(--bs-primary);
    transition: transform 0.25s ease;
    display: flex;
    align-items: center;
}

.faq-item__btn:not(.collapsed) .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__body {
    padding: 0 1.25rem 1.25rem 1.25rem;
    padding-left: calc(1.25rem + 24px + 1rem);
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.75;
    border-top: 1px solid var(--color-border);
}

.faq-link {
    color: var(--bs-primary);
    font-weight: 600;
    text-decoration: none;
}

.faq-link:hover {
    text-decoration: underline;
}

@media (max-width: 575px) {
    .faq-item__btn {
        padding: 0.9rem 1rem;
        gap: 0.75rem;
    }

    .faq-item__q {
        font-size: 0.875rem;
    }

    .faq-item__body {
        padding: 0.85rem 1rem 1rem;
    }
}

/* ── Refer a Friend Page ── */
.raf-offer-card {
    background: linear-gradient(145deg, #061c63 0%, #0c2b8c 60%, #088ac7 100%);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 60px rgba(6, 28, 99, 0.25);
    position: relative;
    overflow: hidden;
}

.raf-offer-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.raf-offer-card__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 0.3rem 1rem;
    margin-bottom: 1.25rem;
}

.raf-offer-card__amount {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    margin-bottom: 0.5rem;
}

.raf-offer-card__amount span {
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.85;
}

.raf-offer-card__tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.raf-offer-card__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 1.5rem;
    width: 60%;
}

.raf-offer-card__perks {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.raf-offer-card__perks li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.4rem 0;
}

.raf-offer-card__perks li svg {
    flex-shrink: 0;
    color: #7dd3fc;
    margin-top: 2px;
}

/* How-it-works steps */
.raf-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    transition: box-shadow 0.2s ease;
}

.raf-step:hover {
    box-shadow: 0 6px 24px rgba(6, 28, 99, 0.08);
}

.raf-step__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #061c63, #088ac7);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.raf-step__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin: 0 0 0.2rem;
}

.raf-step__desc {
    font-size: 0.82rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Form section divider */
.raf-form-section {
    background: var(--color-light-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
}

.raf-form-section__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: 1.25rem;
}

/* ====================================================
   MAIN NAVBAR
   ==================================================== */

/* ── Navbar shell ── */
.main-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    padding: 0 !important;
    transition: box-shadow 0.38s ease, border-color 0.38s ease;
}

.main-navbar.scrolled {
    box-shadow: 0 4px 28px rgba(6, 28, 99, 0.10);
    border-bottom-color: transparent;
}
.main-navbar.scrolled .nav-inner { height: 72px; }
.main-navbar.scrolled .navbar-brand img { height: 62px; }

/* ── Inner row: fixed 97px height, flex, perfectly centered ── */
.nav-inner {
    display: flex !important;
    align-items: center;
    height: 97px;
    gap: 0;
    transition: height 0.38s ease;
}

/* ── Logo ── */
.main-navbar .navbar-brand {
    padding: 0 !important;
    margin: 0 2rem 0 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.main-navbar .navbar-brand img {
    height: 65px;
    width: auto;
    display: block;
    transition: height 0.38s ease, opacity 0.25s ease;
}

.main-navbar .navbar-brand:hover img { opacity: 0.82; }

/* ── Desktop nav wrapper — fills remaining width, centers content ── */
.nav-desktop {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
    min-width: 0;
}

/* Nav links ul — centered horizontally ── */
.nav-desktop .header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.15rem;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

/* CTA wrapper — right edge ── */
.nav-cta-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-left: 1.25rem;
}

/* ── Hamburger ── */
.navbar-toggler svg { color: var(--bs-secondary); }
.navbar-toggler:focus { box-shadow: none; }

/* ── CTA button ── */
.btn-nav-cta {
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    padding: 0.55rem 1.4rem !important;
    display: inline-flex !important;
    align-items: center;
    white-space: nowrap;
}

/* ── Dropdown chevron ── */
.nav-chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    opacity: 0.65;
}

@media (min-width: 1200px) {
    .header-nav .dropdown:hover > a .nav-chevron {
        transform: rotate(180deg);
        opacity: 1;
    }

    /* Polish the dropdown panel */
    .header-nav .dropdown-menu {
        border-radius: 12px !important;
        border: 1px solid rgba(6, 28, 99, 0.06) !important;
        box-shadow: 0 10px 36px rgba(6, 28, 99, 0.13) !important;
        padding: 0.6rem !important;
        min-width: 280px;
    }

    .header-nav .dropdown-menu .dropdown-item {
        border-radius: 8px;
        padding: 0.52rem 0.9rem;
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.4;
    }

    .header-nav .dropdown-menu .dropdown-header {
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--bs-primary);
        padding: 0.5rem 0.9rem 0.3rem;
    }

    .header-nav .dropdown-menu .dropdown-divider {
        margin: 0.4rem 0.6rem;
        border-color: rgba(6,28,99,0.07);
    }
}

/* ====================================================
   FIXED HEADER + TRANSPARENT / SCROLLED STATES
   ==================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}


/* ====================================================
   HERO SECTION
   ==================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/hero01.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(3, 13, 46, 0.96) 0%,
        rgba(6, 28, 99, 0.82) 42%,
        rgba(8, 60, 140, 0.50) 68%,
        rgba(8, 138, 199, 0.18) 100%
    );
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(97px + 4rem);
    padding-bottom: 4rem;
    min-height: 100vh;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: 1.6rem;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--bs-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Heading */
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.10;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    max-width: 680px;
}

.hero-title-accent {
    background: linear-gradient(90deg, var(--bs-primary) 0%, #5bc8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.88;
    max-width: 560px;
    margin-bottom: 2.5rem;
}

/* Buttons */
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--bs-primary);
    color: #ffffff;
    border: 2px solid var(--bs-primary);
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(8, 138, 199, 0.45);
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.90);
    border: 2px solid rgba(255, 255, 255, 0.50);
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.85);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Feature highlights */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    flex: 1;
    min-width: 180px;
}

.hero-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(8, 138, 199, 0.18);
    border: 1px solid rgba(8, 138, 199, 0.30);
    color: var(--bs-primary);
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.hero-feature:hover .hero-feature-icon {
    background: rgba(8, 138, 199, 0.30);
}

.hero-feature-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.2rem;
}

.hero-feature-desc {
    font-size: 0.80rem;
    color: rgba(255, 255, 255, 0.58);
    margin: 0;
    line-height: 1.55;
}

/* ── Hero Expertise Panel ── */
.hero-expertise {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-expertise__intro {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,0.55);
    margin: 0 0 0.25rem;
}

.hero-expertise__card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 16px;
    padding: 1.35rem 1.4rem;
    backdrop-filter: blur(8px);
    transition: background .2s ease, border-color .2s ease;
}
.hero-expertise__card:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.22);
}

.hero-expertise__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(8,138,199,0.22);
    color: #60d0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.hero-expertise__icon--purple {
    background: rgba(124,58,237,0.22);
    color: #c4b5fd;
}
.hero-expertise__icon--teal {
    background: rgba(13,148,136,0.22);
    color: #5eead4;
}

.hero-expertise__body { flex: 1; min-width: 0; }

.hero-expertise__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.45rem;
    line-height: 1.35;
}
.hero-expertise__sub {
    font-weight: 500;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}

.hero-expertise__desc {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.72;
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-inner {
        padding-top: calc(97px + 3rem);
        padding-bottom: 3rem;
    }
    .hero-features {
        gap: 1.5rem;
    }
    .hero-feature {
        min-width: 140px;
    }
}

@media (max-width: 575.98px) {
    .hero-inner {
        padding-top: calc(70px + 2rem);
        padding-bottom: 2.5rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
    .hero-features {
        flex-direction: column;
        gap: 1.25rem;
    }
    .hero-feature {
        min-width: unset;
    }
}

/* ====================================================
   ABOUT SECTION — BAKUNOVA
   ==================================================== */

.about-bak {
    position: relative;
    background: #ffffff;
    padding: 5rem 0 4.5rem;
    overflow: hidden;
}

/* SVG wave decoration */
.about-bak__deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.about-bak .container-90 {
    position: relative;
    z-index: 1;
}

/* Section title block */
.abk-section-header .section-eyebrow {
    display: block;
    margin-bottom: 0.5rem;
}

/* Brand name (kept for reference, no longer rendered) */
.abk-brand {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    font-style: italic;
    background: linear-gradient(135deg, #e91e8c 20%, #c2185b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    margin-bottom: 0.9rem;
    line-height: 1.05;
}

/* Tagline row */
.abk-tagline-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.75rem;
}

.abk-tagline-bar {
    display: inline-block;
    width: 38px;
    height: 3px;
    background: #e91e8c;
    border-radius: 3px;
    flex-shrink: 0;
}

.abk-tagline {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
    font-style: italic;
    color: #0891b2;
    margin: 0;
}

/* Intro body text */
.abk-body-text p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.88;
    margin-bottom: 1rem;
}

.abk-body-text p:last-child {
    margin-bottom: 0;
}

/* ──────────────────────────────────────
   5-Step Pipeline
────────────────────────────────────── */

.abk-pipeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Arrow between steps */
.abk-arrow {
    flex-shrink: 0;
    font-size: 2.6rem;
    font-weight: 300;
    color: #e879a0;
    line-height: 1;
    padding: 0 0.2rem;
    margin-top: 62px; /* vertically align with image centre */
    user-select: none;
}

/* Individual step card */
.abk-step {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.6rem;
}

/* Number badge */
.abk-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 0.76rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.03em;
    margin-bottom: 0.9rem;
    flex-shrink: 0;
}

/* Circular image frame */
.abk-step-img-wrap {
    position: relative;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}

/* Dashed outer ring */
.abk-step-img-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed currentColor;
    opacity: 0.45;
    pointer-events: none;
    animation: abkSpin 22s linear infinite;
}

@keyframes abkSpin {
    to { transform: rotate(360deg); }
}

/* Inner soft glow */
.abk-step-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.25), transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.abk-step-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    /* Placeholder gradient shown while image is absent */
    background: linear-gradient(135deg, #f0f4ff, #e2e8f0);
}

/* Step icon badge */
.abk-step-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 14px auto 10px;
    border: 1.5px solid currentColor;
}

/* Step title */
.abk-step-title {
    font-size: 0.80rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    text-align: center;
}

/* Step description */
.abk-step-desc {
    font-size: 0.77rem;
    color: #64748b;
    line-height: 1.55;
    text-align: center;
    margin: 0;
}

/* ── Per-step colour theming ── */
.abk-step--1 .abk-step-num          { background: #e91e8c; }
.abk-step--1 .abk-step-img-wrap     { color: #e91e8c; }
.abk-step--1 .abk-step-img-wrap img { box-shadow: 0 0 0 3px rgba(233,30,140,0.15); }
.abk-step--1 .abk-step-title        { color: #e91e8c; }
.abk-step-icon--1                   { color: #e91e8c; background: rgba(233,30,140,0.08); }

.abk-step--2 .abk-step-num          { background: #7c3aed; }
.abk-step--2 .abk-step-img-wrap     { color: #7c3aed; }
.abk-step--2 .abk-step-img-wrap img { box-shadow: 0 0 0 3px rgba(124,58,237,0.15); }
.abk-step--2 .abk-step-title        { color: #7c3aed; }
.abk-step-icon--2                   { color: #7c3aed; background: rgba(124,58,237,0.08); }

.abk-step--3 .abk-step-num          { background: #4f46e5; }
.abk-step--3 .abk-step-img-wrap     { color: #4f46e5; }
.abk-step--3 .abk-step-img-wrap img { box-shadow: 0 0 0 3px rgba(79,70,229,0.15); }
.abk-step--3 .abk-step-title        { color: #4f46e5; }
.abk-step-icon--3                   { color: #4f46e5; background: rgba(79,70,229,0.08); }

.abk-step--4 .abk-step-num          { background: #0891b2; }
.abk-step--4 .abk-step-img-wrap     { color: #0891b2; }
.abk-step--4 .abk-step-img-wrap img { box-shadow: 0 0 0 3px rgba(8,145,178,0.15); }
.abk-step--4 .abk-step-title        { color: #0891b2; }
.abk-step-icon--4                   { color: #0891b2; background: rgba(8,145,178,0.08); }

.abk-step--5 .abk-step-num          { background: #0d9488; }
.abk-step--5 .abk-step-img-wrap     { color: #0d9488; }
.abk-step--5 .abk-step-img-wrap img { box-shadow: 0 0 0 3px rgba(13,148,136,0.15); }
.abk-step--5 .abk-step-title        { color: #0d9488; }
.abk-step-icon--5                   { color: #0d9488; background: rgba(13,148,136,0.08); }

/* ──────────────────────────────────────
   Bottom 3-Feature Strip
────────────────────────────────────── */

.abk-feats {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid var(--color-border);
    border-radius: 20px;
    padding: 1.75rem 2.25rem;
    box-shadow: 0 6px 30px rgba(6, 28, 99, 0.07);
}

.abk-feat {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    padding: 0 1.75rem;
}

.abk-feat:first-child { padding-left: 0; }
.abk-feat:last-child  { padding-right: 0; }

.abk-feat-divider {
    width: 1px;
    height: 58px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* Icon circle */
.abk-feat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.abk-feat:hover .abk-feat-icon {
    transform: scale(1.08);
}

.abk-feat--1 .abk-feat-icon {
    color: #e91e8c;
    border-color: rgba(233, 30, 140, 0.35);
    background: rgba(233, 30, 140, 0.05);
}

.abk-feat--2 .abk-feat-icon {
    color: #7c3aed;
    border-color: rgba(124, 58, 237, 0.35);
    background: rgba(124, 58, 237, 0.05);
}

.abk-feat--3 .abk-feat-icon {
    color: #0891b2;
    border-color: rgba(8, 145, 178, 0.35);
    background: rgba(8, 145, 178, 0.05);
}

/* Feature title */
.abk-feat-title {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    margin-bottom: 0.3rem;
}

.abk-feat--1 .abk-feat-title { color: #e91e8c; }
.abk-feat--2 .abk-feat-title { color: #7c3aed; }
.abk-feat--3 .abk-feat-title { color: #0891b2; }

/* Feature description */
.abk-feat-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ──────────────────────────────────────
   Responsive
────────────────────────────────────── */

@media (max-width: 1399.98px) {
    .abk-step-img-wrap { width: 132px; height: 132px; }
    .abk-arrow { margin-top: 56px; }
}

@media (max-width: 1199.98px) {
    .abk-step-img-wrap { width: 118px; height: 118px; }
    .abk-step-title { font-size: 0.88rem; }
    .abk-arrow { font-size: 2.2rem; margin-top: 50px; }
    .abk-feat { padding: 0 1.25rem; }
}

@media (max-width: 991.98px) {
    .about-bak { padding: 3.5rem 0 3rem; }
    .abk-pipeline { flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
    .abk-step { min-width: 140px; max-width: 160px; }
    .abk-step-img-wrap { width: 110px; height: 110px; }
    .abk-arrow { font-size: 1.8rem; margin-top: 46px; }
    .abk-feats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.75rem;
    }
    .abk-feat { padding: 0; width: 100%; }
    .abk-feat-divider { width: 100%; height: 1px; }
}

@media (max-width: 767.98px) {
    .about-bak__deco { width: 80%; opacity: 0.6; }
    .abk-pipeline { flex-direction: column; align-items: center; gap: 0; }
    .abk-arrow {
        margin-top: 0;
        transform: rotate(90deg);
        font-size: 2rem;
        padding: 0;
        line-height: 1.4;
    }
    .abk-step { max-width: 280px; width: 100%; }
    .abk-step-img-wrap { width: 140px; height: 140px; }
}

@media (max-width: 575.98px) {
    .about-bak { padding: 3rem 0 2.5rem; }
    .abk-feats { padding: 1.5rem; border-radius: 16px; }
}

/* ====================================================
   DELIVERY TECHNOLOGIES SECTION
   ==================================================== */

.dt-section {
    background: linear-gradient(180deg, #f8f5ff 0%, #ffffff 100%);
    padding: 5rem 0 5.5rem;
    overflow: hidden;
}

/* ── Centred section title with decorative lines ── */
.dt-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.dt-deco-line {
    flex: 1;
    max-width: 110px;
    height: 2px;
    position: relative;
    flex-shrink: 0;
}

.dt-deco-line--left  { background: linear-gradient(90deg, transparent, #7c3aed); }
.dt-deco-line--right { background: linear-gradient(90deg, #7c3aed, transparent); }

.dt-deco-line::before {
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #7c3aed;
    top: 50%;
    transform: translateY(-50%);
}

.dt-deco-line--left::before  { left: 0; }
.dt-deco-line--right::before { right: 0; }

.dt-section-heading {
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 800;
    color: var(--bs-secondary);
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.dt-section-heading span {
    background: linear-gradient(90deg, #7c3aed, #e91e8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Left column ── */
.dt-main-heading {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: var(--bs-secondary);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 0.8rem;
}

.dt-main-heading span {
    background: linear-gradient(135deg, #7c3aed 0%, #e91e8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dt-heading-bar {
    display: block;
    width: 42px;
    height: 3px;
    background: #e91e8c;
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.dt-intro {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.88;
    margin-bottom: 2rem;
}

/* Feature list */
.dt-feat-list {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.dt-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
}

.dt-feat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    border: 1.5px solid;
    transition: transform 0.3s ease;
}

.dt-feat-item:hover .dt-feat-icon { transform: scale(1.08); }

.dt-feat-icon--1 {
    color: #7c3aed;
    border-color: rgba(124, 58, 237, 0.30);
    background: rgba(124, 58, 237, 0.06);
}

.dt-feat-icon--2 {
    color: #1e3a8a;
    border-color: rgba(30, 58, 138, 0.30);
    background: rgba(30, 58, 138, 0.06);
}

.dt-feat-icon--3 {
    color: #e91e8c;
    border-color: rgba(233, 30, 140, 0.30);
    background: rgba(233, 30, 140, 0.06);
}

.dt-feat-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.dt-feat-name--1 { color: #7c3aed; }
.dt-feat-name--2 { color: #1e3a8a; }
.dt-feat-name--3 { color: #e91e8c; }

.dt-feat-desc {
    font-size: 0.83rem;
    color: #64748b;
    line-height: 1.62;
    margin: 0;
}

/* ── Technology cards ── */
.dt-card {
    border-radius: 18px;
    padding: 1.6rem 1.4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Decorative light bubbles inside card */
.dt-card::before {
    content: '';
    position: absolute;
    top: -35%;
    right: -15%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    pointer-events: none;
}

.dt-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.dt-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.20);
}

/* Gradient backgrounds — vibrant, distinct per card */
.dt-card--1 { background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%); }   /* purple */
.dt-card--2 { background: linear-gradient(135deg, #e91e8c 0%, #a855f7 100%); }   /* pink → violet */
.dt-card--3 { background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%); }   /* cyan */
.dt-card--4 { background: linear-gradient(135deg, #059669 0%, #10b981 100%); }   /* green */
.dt-card--5 { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); }   /* navy → blue */
.dt-card--6 { background: linear-gradient(135deg, #be185d 0%, #f59e0b 100%); }   /* magenta → amber */

/* Card icon container */
.dt-card-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dt-card:hover .dt-card-icon-wrap {
    background: rgba(255, 255, 255, 0.32);
    transform: rotate(-6deg) scale(1.08);
}

/* Card title */
.dt-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Card description */
.dt-card-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* ── Horizontal Feature Cards ── */
.dt-hcard {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.35rem 1.4rem;
    border-radius: 14px;
    border: 1.5px solid;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dt-hcard:hover {
    transform: translateY(-4px);
}

.dt-hcard--1 {
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.25);
}
.dt-hcard--1:hover { box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15); }

.dt-hcard--2 {
    background: rgba(30, 58, 138, 0.05);
    border-color: rgba(30, 58, 138, 0.22);
}
.dt-hcard--2:hover { box-shadow: 0 12px 32px rgba(30, 58, 138, 0.14); }

.dt-hcard--3 {
    background: rgba(233, 30, 140, 0.05);
    border-color: rgba(233, 30, 140, 0.22);
}
.dt-hcard--3:hover { box-shadow: 0 12px 32px rgba(233, 30, 140, 0.14); }

/* Icon circle */
.dt-hcard-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1.5px solid;
}

.dt-hcard--1 .dt-hcard-icon {
    color: #7c3aed;
    border-color: rgba(124, 58, 237, 0.35);
    background: rgba(124, 58, 237, 0.08);
}

.dt-hcard--2 .dt-hcard-icon {
    color: #1e3a8a;
    border-color: rgba(30, 58, 138, 0.32);
    background: rgba(30, 58, 138, 0.07);
}

.dt-hcard--3 .dt-hcard-icon {
    color: #e91e8c;
    border-color: rgba(233, 30, 140, 0.32);
    background: rgba(233, 30, 140, 0.07);
}

.dt-hcard-body { flex: 1; min-width: 0; }

.dt-hcard-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.dt-hcard--1 .dt-hcard-title { color: #7c3aed; }
.dt-hcard--2 .dt-hcard-title { color: #1e3a8a; }
.dt-hcard--3 .dt-hcard-title { color: #e91e8c; }

.dt-hcard-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .dt-section { padding: 3.5rem 0; }
    .dt-section-heading { white-space: normal; text-align: center; }
    .dt-title-wrap { gap: 1rem; }
    .dt-deco-line { max-width: 60px; }
}

@media (max-width: 767.98px) {
    .dt-title-wrap { flex-direction: column; gap: 0.75rem; }
    .dt-deco-line { display: none; }
}

@media (max-width: 575.98px) {
    .dt-card { padding: 1.35rem 1.2rem; }
}

/* ============================================================
   GLOBAL RESPONSIVE — ALL CUSTOM SECTIONS
   Breakpoints: xl 1200 | lg 992 | md 768 | sm 576 | xs <576
   ============================================================ */

/* ──────────────────────────────────────
   NAVBAR
────────────────────────────────────── */

/* Tablet & below — navbar shrinks */
@media (max-width: 1199.98px) {
    .main-navbar { min-height: 66px; }
    .main-navbar .navbar-brand img { height: 44px; }
}

@media (max-width: 575.98px) {
    .main-navbar { min-height: 60px; }
    .main-navbar .navbar-brand img { height: 36px; }
    .btn-nav-cta { font-size: 0.82rem !important; padding: 0.45rem 1.1rem !important; }
}

/* ──────────────────────────────────────
   HERO SECTION
────────────────────────────────────── */

/* Large tablet */
@media (max-width: 991.98px) {
    .hero-eyebrow  { font-size: 0.72rem; }
    .hero-desc     { font-size: 1rem; max-width: 100%; }
    .hero-features { gap: 1.25rem; }
    .hero-feature  { flex: 1 1 160px; }
}

/* Small tablet */
@media (max-width: 767.98px) {
    .hero-title  { font-size: clamp(1.85rem, 6.5vw, 2.8rem); }
    .hero-desc   { font-size: 0.96rem; }
    .hero-features {
        flex-wrap: wrap;
        padding-top: 2rem;
    }
    .hero-feature { flex: 1 1 140px; }
}

/* Mobile */
@media (max-width: 575.98px) {
    .hero-inner {
        padding-top: calc(64px + 2.5rem);
        padding-bottom: 3rem;
    }
    .hero-eyebrow { font-size: 0.70rem; letter-spacing: 0.12em; }
    .hero-title   { font-size: clamp(1.7rem, 8vw, 2.4rem); }
    .hero-desc    { font-size: 0.92rem; line-height: 1.75; }
    .hero-btns    { flex-direction: column; align-items: stretch; gap: 0.75rem; margin-bottom: 2.5rem; }
    .btn-hero-primary,
    .btn-hero-outline { width: 100%; justify-content: center; font-size: 0.9rem; padding: 0.8rem 1.5rem; }
    .hero-features    { flex-direction: column; gap: 1rem; padding-top: 1.75rem; }
    .hero-feature     { flex: unset; min-width: unset; }
    .hero-feature-icon { width: 38px; height: 38px; }
    .hero-feature-title { font-size: 0.88rem; }
    .hero-feature-desc  { font-size: 0.76rem; }
    .hero-expertise__card { padding: 1rem 1.1rem; gap: 0.75rem; }
    .hero-expertise__icon { width: 40px; height: 40px; border-radius: 10px; }
    .hero-expertise__title { font-size: 0.9rem; }
    .hero-expertise__desc  { font-size: 0.8rem; }
}

/* ──────────────────────────────────────
   ABOUT SECTION
────────────────────────────────────── */

/* Tablet */
@media (max-width: 991.98px) {
    .about-bak { padding: 4rem 0 3.5rem; }
    .abk-section-header { margin-bottom: 1.5rem; }
    .abk-body-text p   { font-size: 0.96rem; }
    .abk-step-img-wrap { width: 115px; height: 115px; }
    .abk-arrow         { font-size: 1.8rem; margin-top: 50px; }
    .abk-feats         { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .abk-feat          { width: 100%; padding: 0; }
    .abk-feat-divider  { width: 100%; height: 1px; }
}

/* Small tablet */
@media (max-width: 767.98px) {
    .abk-section-header { text-align: center; }
    .abk-section-header .section-eyebrow { justify-content: center; }
    .abk-pipeline { flex-direction: column; align-items: center; }
    .abk-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        padding: 0;
        line-height: 1.4;
        font-size: 2rem;
    }
    .abk-step    { max-width: 300px; width: 100%; }
    .abk-step-img-wrap { width: 140px; height: 140px; }
    .abk-feats   { border-radius: 14px; padding: 1.5rem; }
}

/* Mobile */
@media (max-width: 575.98px) {
    .about-bak { padding: 3rem 0 3rem; }
    .abk-step-img-wrap { width: 120px; height: 120px; }
    .abk-step-title    { font-size: 0.88rem; }
    .abk-step-desc     { font-size: 0.74rem; }
    .abk-step-num      { width: 30px; height: 30px; font-size: 0.72rem; }
    .abk-feats         { padding: 1.25rem; }
    .abk-feat-icon     { width: 46px; height: 46px; }
    .abk-feat-title    { font-size: 0.70rem; }
    .abk-feat-desc     { font-size: 0.82rem; }
}

/* ──────────────────────────────────────
   DELIVERY TECHNOLOGIES SECTION
────────────────────────────────────── */

/* Large tablet */
@media (max-width: 1199.98px) {
    .dt-main-heading { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
    .dt-section { padding: 4.5rem 0 5rem; }
}

/* Tablet — columns stack */
@media (max-width: 991.98px) {
    .dt-section { padding: 3.5rem 0 4rem; }
    .dt-section-heading { white-space: normal; }
    .dt-title-wrap { gap: 1rem; margin-bottom: 2.5rem; }
    .dt-deco-line  { max-width: 70px; }
    .dt-main-heading { text-align: center; }
    .dt-heading-bar  { margin-left: auto; margin-right: auto; }
    .dt-intro        { text-align: center; }
    .dt-feat-list    { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
    .dt-feat-item    { flex: 1 1 220px; }
}

/* Small tablet */
@media (max-width: 767.98px) {
    .dt-title-wrap   { flex-direction: column; gap: 0.5rem; }
    .dt-deco-line    { display: none; }
    .dt-section-heading { font-size: 1.3rem; }
    .dt-main-heading { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }
    .dt-feat-list    { flex-direction: column; gap: 0.85rem; }
    .dt-feat-item    { flex: unset; }
    /* 6 tech cards: 2 per row on tablet */
    .dt-card-icon-wrap { width: 44px; height: 44px; }
    .dt-card-title  { font-size: 0.94rem; }
    .dt-card-desc   { font-size: 0.80rem; }
}

/* Mobile */
@media (max-width: 575.98px) {
    .dt-section { padding: 3rem 0 3.5rem; }
    .dt-section-heading { font-size: 1.15rem; }
    .dt-main-heading    { font-size: 1.8rem; }
    .dt-intro           { font-size: 0.92rem; }
    /* Tech cards: 2-col on xs by adding col-6 feel */
    .dt-card { padding: 1.2rem 1.1rem; border-radius: 14px; gap: 0.6rem; }
    .dt-card-icon-wrap  { width: 40px; height: 40px; border-radius: 10px; }
    .dt-card-title { font-size: 0.88rem; }
    .dt-card-desc  { font-size: 0.77rem; }
    /* Horizontal feature cards */
    .dt-hcard { gap: 0.75rem; padding: 1rem 1.1rem; border-radius: 12px; }
    .dt-hcard-icon { width: 44px; height: 44px; }
    .dt-hcard-title { font-size: 0.88rem; }
    .dt-hcard-desc  { font-size: 0.78rem; }
}

/* Extra small — ensure 2-col tech card grid on xs */
@media (max-width: 575.98px) {
    .dt-card-grid .col-md-4,
    .dt-card-grid .col-sm-6 {
        width: 50%;
    }
}

/* ====================================================
   SKIN CARE INGREDIENTS SECTION
   ==================================================== */

.ing-section {
    position: relative;
    background: #ffffff;
    padding: 5rem 0 5.5rem;
    overflow: hidden;
}

/* SVG decorations */
.ing-section__deco-tr {
    position: absolute;
    top: 0; right: 0;
    width: 44%;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.ing-section__deco-bl {
    position: absolute;
    bottom: 0; left: 0;
    width: 32%;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.ing-section .container-90 { position: relative; z-index: 1; }

/* ── Eyebrow ── */
.ing-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    font-style: italic;
    color: #e91e8c;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #e91e8c;
}

/* ── Heading ── */
.ing-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    color: var(--bs-secondary);
}

.ing-heading-gradient {
    background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ing-heading-plain { color: var(--bs-secondary); }

.ing-heading-cursive {
    font-style: italic;
    font-weight: 800;
    background: linear-gradient(90deg, #e91e8c, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Heading bar */
.ing-title-bar {
    display: block;
    width: 38px;
    height: 3px;
    background: linear-gradient(90deg, #e91e8c, #a855f7);
    border-radius: 3px;
    margin-bottom: 1.4rem;
}

/* Description */
.ing-desc {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.88;
    max-width: 560px;
}

/* ── Badges (right column) ── */
.ing-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #ffffff;
    border: 1.5px solid var(--color-border);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 6px 28px rgba(124, 58, 237, 0.07);
}

.ing-badge {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    text-align: center;
    padding: 0 1rem;
}

.ing-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1.5px solid rgba(124, 58, 237, 0.28);
    background: rgba(124, 58, 237, 0.06);
    color: #7c3aed;
    transition: transform 0.3s ease, background 0.3s ease;
}

.ing-badge:hover .ing-badge-icon {
    transform: scale(1.08);
    background: rgba(124, 58, 237, 0.12);
}

.ing-badge-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
    margin: 0;
}

.ing-badge-divider {
    width: 1px;
    height: 56px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* ── Ingredient Cards ── */
.ing-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    border: 1.5px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(6, 28, 99, 0.07);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
}

.ing-card:hover {
    transform: translateY(-6px);
}

/* Coloured top strip */
.ing-card::before {
    content: '';
    display: block;
    height: 5px;
    width: 100%;
    border-radius: 22px 22px 0 0;
}

/* Image wrap — circular */
.ing-card-img-wrap {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    align-self: center;
    margin: 1.75rem auto 0;
}

.ing-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ing-card:hover .ing-card-img-wrap img {
    transform: scale(1.08);
}

/* Card content area */
.ing-card-content {
    padding: 1.5rem 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

/* Title */
.ing-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    line-height: 1.25;
}

/* Decorative dash-dot line */
.ing-card-line {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 0.9rem;
}

.ing-line-bar {
    display: inline-block;
    width: 28px;
    height: 3px;
    border-radius: 3px;
}

.ing-line-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

/* Description */
.ing-card-desc {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.78;
    flex-grow: 1;
    margin-bottom: 2rem;
}

/* Icon badge — bottom right */
.ing-card-badge {
    position: absolute;
    bottom: 1.1rem;
    right: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ing-card:hover .ing-card-badge {
    transform: rotate(-10deg) scale(1.1);
}

/* ── Per-card colour theming ── */

/* Card 1 — Purple / Violet */
.ing-card--1 { border-color: rgba(124, 58, 237, 0.20); }
.ing-card--1:hover { box-shadow: 0 20px 50px rgba(124, 58, 237, 0.16); border-color: rgba(124, 58, 237, 0.35); }
.ing-card--1::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.ing-card--1 .ing-card-img-wrap {
    border: 4px solid rgba(124, 58, 237, 0.30);
    box-shadow: 0 0 0 7px rgba(124, 58, 237, 0.08),
                0 8px 24px rgba(124, 58, 237, 0.18);
}
.ing-card--1 .ing-card-title { color: #7c3aed; }
.ing-card--1 .ing-line-bar { background: #7c3aed; }
.ing-card--1 .ing-line-dot { background: rgba(124, 58, 237, 0.45); }
.ing-card--1 .ing-card-badge {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

/* Card 2 — Cyan / Blue */
.ing-card--2 { border-color: rgba(8, 145, 178, 0.20); }
.ing-card--2:hover { box-shadow: 0 20px 50px rgba(8, 145, 178, 0.16); border-color: rgba(8, 145, 178, 0.35); }
.ing-card--2::before { background: linear-gradient(90deg, #0891b2, #06b6d4); }
.ing-card--2 .ing-card-img-wrap {
    border: 4px solid rgba(8, 145, 178, 0.30);
    box-shadow: 0 0 0 7px rgba(8, 145, 178, 0.08),
                0 8px 24px rgba(8, 145, 178, 0.18);
}
.ing-card--2 .ing-card-title { color: #0891b2; }
.ing-card--2 .ing-line-bar { background: #0891b2; }
.ing-card--2 .ing-line-dot { background: rgba(8, 145, 178, 0.45); }
.ing-card--2 .ing-card-badge {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.35);
}

/* Card 3 — Emerald / Green */
.ing-card--3 { border-color: rgba(5, 150, 105, 0.20); }
.ing-card--3:hover { box-shadow: 0 20px 50px rgba(5, 150, 105, 0.16); border-color: rgba(5, 150, 105, 0.35); }
.ing-card--3::before { background: linear-gradient(90deg, #059669, #10b981); }
.ing-card--3 .ing-card-img-wrap {
    border: 4px solid rgba(5, 150, 105, 0.30);
    box-shadow: 0 0 0 7px rgba(5, 150, 105, 0.08),
                0 8px 24px rgba(5, 150, 105, 0.18);
}
.ing-card--3 .ing-card-title { color: #059669; }
.ing-card--3 .ing-line-bar { background: #059669; }
.ing-card--3 .ing-line-dot { background: rgba(5, 150, 105, 0.45); }
.ing-card--3 .ing-card-badge {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .ing-section { padding: 4rem 0 4.5rem; }
    .ing-badges { gap: 0; padding: 1.5rem 1rem; }
    .ing-badge { padding: 0 0.75rem; }
    .ing-badge-icon { width: 54px; height: 54px; }
    .ing-desc { max-width: 100%; }
}

@media (max-width: 767.98px) {
    .ing-heading { font-size: clamp(1.8rem, 5.5vw, 2.6rem); }
    .ing-badges { flex-wrap: wrap; gap: 1.25rem; border-radius: 14px; }
    .ing-badge { flex: 1 1 120px; padding: 0.5rem; }
    .ing-badge-divider { display: none; }
    .ing-card-img-wrap { width: 145px; height: 145px; }
}

@media (max-width: 575.98px) {
    .ing-section { padding: 3rem 0 3.5rem; }
    .ing-heading { font-size: 1.75rem; }
    .ing-card-img-wrap { width: 130px; height: 130px; }
    .ing-card-content { padding: 1.25rem 1.25rem 1rem; }
    .ing-card-title { font-size: 1rem; }
    .ing-card-desc { font-size: 0.84rem; margin-bottom: 1.75rem; }
    .ing-badge-icon { width: 48px; height: 48px; }
    .ing-badge-label { font-size: 0.72rem; }
}

/* ──────────────────────────────────────
   ABOUT — READ MORE BUTTON
────────────────────────────────────── */
.abk-readmore-btn {
    border-color: var(--bs-primary) !important;
    color: var(--bs-primary) !important;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.abk-readmore-btn:hover {
    background: var(--bs-primary) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(8, 138, 199, 0.30);
}

.abk-readmore-btn:hover svg {
    transform: translateX(4px);
}

.abk-readmore-btn svg {
    transition: transform 0.3s ease;
}

/* ──────────────────────────────────────
   FOOTER — NEWSLETTER
────────────────────────────────────── */
.footer-newsletter-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.60);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
}

.footer-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.6rem 1rem;
    font-size: 0.84rem;
    color: #ffffff;
    font-family: inherit;
}

.footer-newsletter-input::placeholder { color: rgba(255, 255, 255, 0.40); }

.footer-newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #ffffff;
    cursor: pointer;
    margin: 3px;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.footer-newsletter-btn:hover {
    background: var(--bs-primary-hover);
    transform: scale(1.08);
}

/* ══════════════════════════════════════════════════════════════════════
   INNER PAGE BANNER
══════════════════════════════════════════════════════════════════════ */
.page-banner {
    position: relative;
    padding: 7rem 0 4.5rem;
    background: linear-gradient(135deg, #061c63 0%, #0a2a8a 45%, #088ac7 100%);
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/hero01.jpg') center/cover no-repeat;
    opacity: 0.08;
}
.page-banner__deco {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.page-banner__inner {
    position: relative;
    z-index: 2;
}
.page-banner__eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: .75rem;
}
.page-banner__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.page-banner__title span {
    color: #5bc8f0;
}
.page-banner__desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.page-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
}
.page-banner__breadcrumb a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .2s;
}
.page-banner__breadcrumb a:hover { color: #fff; }
.page-banner__breadcrumb-sep { opacity: .5; }

/* ══════════════════════════════════════════════════════════════════════
   ABOUT PAGE — OVERVIEW SECTION
══════════════════════════════════════════════════════════════════════ */
.abt-overview {
    padding: 5.5rem 0 4rem;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.abt-overview__text p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.1rem;
}
.abt-overview__text p:last-child { margin-bottom: 0; }

.abt-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.abt-stat {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border: 1px solid #d1e9f8;
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    text-align: center;
}
.abt-stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bs-primary);
    line-height: 1;
    margin-bottom: .3rem;
}
.abt-stat-label {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748b;
}

.abt-overview__visual {
    position: relative;
    height: 100%;
    min-height: 380px;
}
.abt-overview__img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(8,138,199,.18);
}
.abt-overview__badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: linear-gradient(135deg, #061c63, #088ac7);
    color: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    min-width: 180px;
    box-shadow: 0 12px 40px rgba(6,28,99,.25);
}
.abt-overview__badge-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.abt-overview__badge-text {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    opacity: .85;
    margin-top: .25rem;
}

/* ══════════════════════════════════════════════════════════════════════
   ABOUT PAGE — MISSION & VISION
══════════════════════════════════════════════════════════════════════ */
.abt-mv {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}
.abt-mv-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.abt-mv-card--mission {
    background: linear-gradient(135deg, #061c63 0%, #0a2a8a 100%);
    color: #fff;
}
.abt-mv-card--vision {
    background: linear-gradient(135deg, #088ac7 0%, #06b6d4 100%);
    color: #fff;
}
.abt-mv-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}
.abt-mv-card__tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: .6rem;
    display: block;
}
.abt-mv-card__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.abt-mv-card__text {
    font-size: .97rem;
    color: rgba(255,255,255,.82);
    line-height: 1.75;
    margin-bottom: 0;
}
.abt-mv-card__deco {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.abt-mv-card__deco2 {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

/* ══════════════════════════════════════════════════════════════════════
   ABOUT PAGE — PIPELINE (reuses .abk-pipeline from home)
══════════════════════════════════════════════════════════════════════ */
.abt-pipeline-section {
    padding: 5rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* ══════════════════════════════════════════════════════════════════════
   ABOUT PAGE — CORE VALUES
══════════════════════════════════════════════════════════════════════ */
.abt-values {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
}
.abt-value-card {
    border-radius: 18px;
    padding: 2rem 1.75rem;
    height: 100%;
    background: #fff;
    border: 1px solid #e2eaf5;
    transition: transform .28s ease, box-shadow .28s ease;
    position: relative;
    overflow: hidden;
}
.abt-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 18px 18px 0 0;
}
.abt-value-card--1::before { background: linear-gradient(90deg, #088ac7, #06b6d4); }
.abt-value-card--2::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.abt-value-card--3::before { background: linear-gradient(90deg, #e91e8c, #f472b6); }
.abt-value-card--4::before { background: linear-gradient(90deg, #059669, #34d399); }
.abt-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(8,138,199,.14);
}
.abt-value-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.abt-value-card--1 .abt-value-card__icon { background: rgba(8,138,199,.1); color: #088ac7; }
.abt-value-card--2 .abt-value-card__icon { background: rgba(124,58,237,.1); color: #7c3aed; }
.abt-value-card--3 .abt-value-card__icon { background: rgba(233,30,140,.1); color: #e91e8c; }
.abt-value-card--4 .abt-value-card__icon { background: rgba(5,150,105,.1); color: #059669; }
.abt-value-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .6rem;
}
.abt-value-card__desc {
    font-size: .9rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   ABOUT PAGE — OUR COMMITMENT
══════════════════════════════════════════════════════════════════════ */
.abt-commitment {
    padding: 5rem 0;
    background: #fff;
}
.abt-commit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2eaf5;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.abt-commit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(8,138,199,.11);
}
.abt-commit-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.abt-commit-card--1 .abt-commit-card__icon { background: linear-gradient(135deg, #088ac7, #06b6d4); color: #fff; }
.abt-commit-card--2 .abt-commit-card__icon { background: linear-gradient(135deg, #7c3aed, #a855f7); color: #fff; }
.abt-commit-card--3 .abt-commit-card__icon { background: linear-gradient(135deg, #059669, #34d399); color: #fff; }
.abt-commit-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .4rem;
}
.abt-commit-card__desc {
    font-size: .88rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   ABOUT PAGE — PARTNER CTA
══════════════════════════════════════════════════════════════════════ */
.abt-cta {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, #061c63 0%, #0a2a8a 55%, #088ac7 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.abt-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    pointer-events: none;
}
.abt-cta__eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 1rem;
}
.abt-cta__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.1rem;
    line-height: 1.2;
}
.abt-cta__title span { color: #5bc8f0; }
.abt-cta__desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.72);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.abt-cta__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    color: #061c63;
    font-weight: 700;
    font-size: .93rem;
    padding: .8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.btn-cta-white:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,0,0,.22);
    color: #061c63;
}
.btn-cta-outline-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: .93rem;
    padding: .78rem 1.8rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.45);
    text-decoration: none;
    transition: border-color .2s, background .2s, transform .2s;
}
.btn-cta-outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    transform: translateY(-2px);
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════════════
   ABOUT PAGE — RESPONSIVE
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .page-banner { padding: 5.5rem 0 3.5rem; }
    .abt-overview { padding: 4rem 0 3rem; }
    .abt-overview__img-main { height: 300px; margin-top: 2.5rem; }
    .abt-overview__badge { left: 1rem; bottom: -1rem; }
    .abt-mv { padding: 4rem 0; }
    .abt-pipeline-section { padding: 4rem 0; }
    .abt-values { padding: 4rem 0; }
    .abt-commitment { padding: 4rem 0; }
    .abt-cta { padding: 4rem 0; }
}
@media (max-width: 767px) {
    .abt-stats { grid-template-columns: 1fr 1fr; }
    .abt-overview__badge { position: static; margin-top: 1.25rem; border-radius: 14px; }
    .abt-overview__img-main { height: 240px; }
    .abt-mv-card { padding: 2rem 1.5rem; }
    .page-banner__title { font-size: 2rem; }
}
@media (max-width: 575px) {
    .abt-stats { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════
   LEADERSHIP PAGE
══════════════════════════════════════════════════════════════════════ */
.ld-section {
    position: relative;
    padding: 5.5rem 0 5rem;
    background: linear-gradient(160deg, #faf8ff 0%, #f3f0fd 50%, #ffffff 100%);
    overflow: hidden;
}

/* Background SVG decorations */
.ld-section__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Wave at the bottom */
.ld-section__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    line-height: 0;
}

/* Left content column */
.ld-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

/* "Leadership" italic title */
.ld-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-style: italic;
    font-weight: 800;
    color: #0d5c5a;
    line-height: 1.1;
    margin-bottom: 0;
    font-family: Georgia, 'Times New Roman', serif;
}

/* Purple bar under title */
.ld-title-bar {
    display: block;
    width: 56px;
    height: 4px;
    background: #7c3aed;
    border-radius: 4px;
    margin: 1rem 0 2rem;
}

/* Description paragraphs */
.ld-bio p {
    font-size: 1.02rem;
    color: #374151;
    line-height: 1.85;
    margin-bottom: 1.1rem;
}
.ld-bio p:last-child { margin-bottom: 0; }

/* Icon steps column */
.ld-steps-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: .5rem;
}
.ld-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ld-step-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.10);
    border: 1.5px solid rgba(124, 58, 237, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background .25s, transform .25s;
}
.ld-step-icon:hover {
    background: rgba(124, 58, 237, 0.18);
    transform: scale(1.08);
}
.ld-step-dot-line {
    width: 2px;
    height: 38px;
    background: repeating-linear-gradient(
        to bottom,
        #a78bfa 0px,
        #a78bfa 5px,
        transparent 5px,
        transparent 11px
    );
    margin: 4px 0;
}

/* Right photo column */
.ld-photo-col {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ld-photo-frame {
    position: relative;
    display: inline-block;
}
.ld-photo-frame img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(124, 58, 237, .18), 0 4px 16px rgba(0,0,0,.10);
    display: block;
    position: relative;
    z-index: 2;
}
.ld-photo-frame__ring {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 20px solid rgba(124, 58, 237, .12);
    z-index: 1;
}
.ld-photo-frame__ring2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 16px solid rgba(8, 138, 199, .12);
    z-index: 1;
}
.ld-photo-placeholder {
    width: 100%;
    max-width: 440px;
    min-height: 480px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #7c3aed;
    font-size: .9rem;
    font-weight: 600;
    border: 2px dashed rgba(124,58,237,.3);
}

/* Name card overlay */
.ld-name-card {
    position: absolute;
    bottom: 1.5rem;
    left: -1.5rem;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(124, 58, 237, .15);
    z-index: 3;
    min-width: 200px;
}
.ld-name-card__name {
    font-size: .95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .15rem;
}
.ld-name-card__role {
    font-size: .78rem;
    color: #7c3aed;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 0;
}

/* Experience bar */
.ld-exp-badge {
    position: absolute;
    top: 1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    text-align: center;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(124, 58, 237, .3);
}
.ld-exp-badge__num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}
.ld-exp-badge__text {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    opacity: .9;
    margin-top: .2rem;
}

/* Expertise tags */
.ld-expertise {
    padding: 4rem 0 4.5rem;
    background: #fff;
}
.ld-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem;
}
.ld-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.1rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    border: 1.5px solid;
    transition: transform .2s, box-shadow .2s;
}
.ld-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.09);
}
.ld-tag--purple { background: rgba(124,58,237,.07); color: #7c3aed; border-color: rgba(124,58,237,.25); }
.ld-tag--blue   { background: rgba(8,138,199,.07);  color: #088ac7; border-color: rgba(8,138,199,.25); }
.ld-tag--green  { background: rgba(5,150,105,.07);  color: #059669; border-color: rgba(5,150,105,.25); }
.ld-tag--pink   { background: rgba(233,30,140,.07); color: #e91e8c; border-color: rgba(233,30,140,.25); }

/* Responsive */
@media (max-width: 991px) {
    .ld-section { padding: 4rem 0; }
    .ld-content { padding-right: 0; margin-bottom: 3rem; }
    .ld-photo-frame img { max-width: 360px; margin: 0 auto; }
    .ld-name-card { left: .5rem; bottom: .5rem; }
    .ld-exp-badge { right: .5rem; top: .5rem; }
    .ld-expertise { padding: 3rem 0 3.5rem; }
}
@media (max-width: 767px) {
    .ld-title { font-size: 2rem; }
    .ld-steps-col { flex-direction: row; justify-content: flex-start; gap: 1.5rem; }
    .ld-step { flex-direction: row; gap: .75rem; }
    .ld-step-dot-line { width: 28px; height: 2px; margin: 0; background: repeating-linear-gradient(to right, #a78bfa 0px, #a78bfa 5px, transparent 5px, transparent 11px); }
    .ld-photo-frame img { max-width: 100%; }
    .ld-exp-badge { right: .25rem; top: .25rem; padding: .75rem 1rem; }
    .ld-exp-badge__num { font-size: 1.4rem; }
}

/* ══════════════════════════════════════════════════════════════════════
   PRODUCTS & SERVICES SECTION
══════════════════════════════════════════════════════════════════════ */
.ps-section {
    padding: 5.5rem 0 4rem;
    background: linear-gradient(165deg, #f8faff 0%, #f0f4ff 50%, #faf8ff 100%);
    position: relative;
    overflow: hidden;
}
.ps-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(8,138,199,.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Card shared ── */
.ps-card {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #e2eaf5;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 24px rgba(6,28,99,.07);
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s ease, transform .3s ease;
}
.ps-card:hover {
    box-shadow: 0 12px 48px rgba(6,28,99,.13);
    transform: translateY(-4px);
}

/* ── Card header gradient ── */
.ps-card__header {
    padding: 1.25rem 1.5rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}
.ps-card--products .ps-card__header {
    background: linear-gradient(120deg, #061c63 0%, #2a4dbd 60%, #088ac7 100%);
}
.ps-card--services .ps-card__header {
    background: linear-gradient(120deg, #7c3aed 0%, #4f46e5 50%, #088ac7 100%);
}
.ps-card__header::after {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
}
.ps-card__header-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    backdrop-filter: blur(4px);
}
.ps-card__header-text {
    flex: 1;
}
.ps-card__label {
    display: block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: .15rem;
}
.ps-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* ── Card body ── */
.ps-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ── Numbered item within card ── */
.ps-item {
    position: relative;
}
.ps-item + .ps-item {
    padding-top: 1.5rem;
    border-top: 1px dashed #e2eaf5;
}
.ps-item__head {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: .9rem;
}
.ps-item__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 800;
    flex-shrink: 0;
}
.ps-card--products .ps-item__num {
    background: rgba(8,138,199,.12);
    color: #088ac7;
    border: 1.5px solid rgba(8,138,199,.25);
}
.ps-card--services .ps-item__num {
    background: rgba(124,58,237,.12);
    color: #7c3aed;
    border: 1.5px solid rgba(124,58,237,.25);
}
.ps-item__img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(8,138,199,.2);
    flex-shrink: 0;
}
.ps-item__img--services {
    border-color: rgba(124,58,237,.2);
}
.ps-item__title {
    font-size: .97rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
    line-height: 1.3;
}
.ps-item__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.ps-item__list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .875rem;
    color: #475569;
    line-height: 1.5;
}
.ps-item__list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: .45rem;
}
.ps-card--products .ps-item__list li::before { background: #088ac7; }
.ps-card--services .ps-item__list li::before { background: #7c3aed; }

/* ── Clickable links inside cards ── */
.ps-card__title a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: opacity .2s;
}
.ps-card__title a::after {
    content: '→';
    font-style: normal;
    font-size: .85em;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s, transform .2s;
}
.ps-card__title a:hover { opacity: .85; }
.ps-card__title a:hover::after { opacity: 1; transform: translateX(0); }

.ps-item__title {
    font-size: .97rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
    line-height: 1.3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: color .2s;
}
.ps-card--products .ps-item__title:hover { color: #088ac7; }
.ps-card--services .ps-item__title:hover { color: #7c3aed; }
.ps-item__title::after {
    content: '→';
    font-size: .8em;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s, transform .2s;
}
.ps-item__title:hover::after { opacity: 1; transform: translateX(0); }

.ps-item__list a {
    color: #475569;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: color .2s, gap .2s;
    line-height: 1.5;
}
.ps-card--products .ps-item__list a:hover { color: #088ac7; gap: .5rem; }
.ps-card--services .ps-item__list a:hover { color: #7c3aed; gap: .5rem; }

/* Technology icons row */
.ps-tech-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .875rem;
    color: #475569;
    line-height: 1.4;
}
.ps-tech-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
}

/* ── Center column ── */
.ps-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 100%;
}
.ps-center__tagline {
    text-align: center;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #64748b;
    padding: .5rem 1.25rem;
    border: 1px solid #e2eaf5;
    border-radius: 50px;
    background: #fff;
}
.ps-center__tagline span { color: var(--bs-primary); }
.ps-center__visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center pipeline flow */
.ps-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}
.ps-flow-step {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #e2eaf5;
    position: relative;
    transition: border-color .25s, box-shadow .25s;
}
.ps-flow-step:hover {
    border-color: #c4d9f0;
    box-shadow: 0 4px 16px rgba(8,138,199,.1);
}
.ps-flow-arrow {
    text-align: center;
    padding: .3rem 0;
    color: var(--bs-primary);
    font-size: 1.1rem;
    opacity: .6;
    line-height: 1;
}
.ps-flow-step__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ps-flow-step--1 .ps-flow-step__icon { background: rgba(8,138,199,.10); color: #088ac7; }
.ps-flow-step--2 .ps-flow-step__icon { background: rgba(124,58,237,.10); color: #7c3aed; }
.ps-flow-step--3 .ps-flow-step__icon { background: rgba(233,30,140,.10); color: #e91e8c; }
.ps-flow-step--4 .ps-flow-step__icon { background: rgba(5,150,105,.10); color: #059669; }
.ps-flow-step__label {
    font-size: .8rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.3;
}

/* ── Bottom tagline bar ── */
.ps-tagline-bar {
    margin-top: 3rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(120deg, rgba(6,28,99,.04) 0%, rgba(8,138,199,.06) 50%, rgba(124,58,237,.04) 100%);
    border-radius: 18px;
    border: 1.5px solid rgba(8,138,199,.15);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.ps-tagline-bar__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #088ac7, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.ps-tagline-bar__text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin-bottom: .25rem;
}
.ps-tagline-bar__text p {
    font-size: .88rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .ps-center { gap: 1.5rem; }
}
@media (max-width: 991px) {
    .ps-section { padding: 4rem 0 3rem; }
    .ps-center { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
    .ps-flow { flex-direction: row; flex-wrap: wrap; gap: .5rem; }
    .ps-flow-step { flex: 1 1 calc(50% - .5rem); }
    .ps-flow-arrow { display: none; }
}
@media (max-width: 767px) {
    .ps-card__body { padding: 1.25rem; }
    .ps-flow-step { flex: 1 1 100%; }
    .ps-tagline-bar { flex-direction: column; padding: 1.5rem; }
}

/* ──────────────────────────────────────
   UTILITIES — REDUCED MOTION
────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .abk-step-img-wrap::before { animation: none; }
}

/* ====================================================
   BAKUCHIOL PAGE
   ==================================================== */

/* -- Hero -- */
.bak-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(140deg, #f5f3ff 0%, #ede9fe 40%, #faf5ff 70%, #f0f9ff 100%);
    overflow: hidden;
}
.bak-hero__bg-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.bak-blob { position: absolute; border-radius: 50%; filter: blur(70px); }
.bak-blob--1 { width: 480px; height: 480px; background: rgba(124,58,237,.10); top: -120px; right: -80px; }
.bak-blob--2 { width: 320px; height: 320px; background: rgba(192,38,211,.07); bottom: -60px; left: 10%; }
.bak-blob--3 { width: 220px; height: 220px; background: rgba(8,138,199,.08); top: 40%; right: 30%; }
.bak-hero__inner { position: relative; z-index: 1; }

.bak-hero__breadcrumb {
    display: flex; align-items: center; gap: .4rem;
    font-size: .82rem; color: #7c3aed; margin-bottom: 1.25rem; flex-wrap: wrap;
}
.bak-hero__breadcrumb a { color: #7c3aed; text-decoration: none; opacity: .7; transition: opacity .2s; }
.bak-hero__breadcrumb a:hover { opacity: 1; }

.bak-hero__eyebrow {
    display: inline-flex; align-items: center; font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em; color: #7c3aed;
    background: rgba(124,58,237,.08); border: 1px solid rgba(124,58,237,.18);
    padding: .35rem 1rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.bak-hero__title {
    font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.05;
    color: #1e0a3c; margin-bottom: .9rem; letter-spacing: -.02em;
}
.bak-hero__tagline { font-size: 1.25rem; font-weight: 700; color: #1e0a3c; line-height: 1.5; margin-bottom: .9rem; }
.bak-hero__tagline span { color: #7c3aed; }
.bak-hero__desc { font-size: 1rem; color: #475569; line-height: 1.75; max-width: 480px; margin-bottom: 1.75rem; }

.bak-hero__specs { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.5rem; }
.bak-spec-pill {
    display: flex; align-items: center; gap: .65rem; background: #fff;
    border: 1px solid rgba(124,58,237,.15); border-radius: 12px; padding: .7rem 1.1rem;
    box-shadow: 0 2px 12px rgba(124,58,237,.06); color: #7c3aed;
}
.bak-spec-pill div { display: flex; flex-direction: column; line-height: 1.2; }
.bak-spec-pill__label { font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #94a3b8; }
.bak-spec-pill strong { font-size: .9rem; font-weight: 700; color: #1e0a3c; }

.bak-hero__badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    color: #fff; font-size: .82rem; font-weight: 600;
    padding: .5rem 1.1rem; border-radius: 999px;
    box-shadow: 0 4px 18px rgba(124,58,237,.3);
}

.bak-hero__visual { position: relative; display: inline-block; width: 100%; max-width: 560px; margin: 0 auto; }
.bak-hero__img {
    width: 100%; border-radius: 24px;
    box-shadow: 0 24px 64px rgba(124,58,237,.18); position: relative; z-index: 1; display: block;
}
/* Floating accent card */
.bak-hero__accent {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    width: 170px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(6,28,99,0.22), 0 2px 8px rgba(6,28,99,0.12);
    border: 3px solid #fff;
    z-index: 3;
    background: #fff;
}
.bak-hero__accent-img {
    width: 100%;
    height: 118px;
    object-fit: cover;
    display: block;
}
.bak-hero__accent-body {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.65rem;
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    color: #fff;
}
.bak-hero__accent-body svg { flex-shrink: 0; opacity: .85; }
.bak-hero__accent-body span {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.bak-hero__visual-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(124,58,237,.2); pointer-events: none; }
.bak-hero__visual-ring--1 { width: 120%; height: 120%; top: -10%; left: -10%; animation: bakRingPulse 4s ease-in-out infinite; }
.bak-hero__visual-ring--2 { width: 140%; height: 140%; top: -20%; left: -20%; border-color: rgba(168,85,247,.1); animation: bakRingPulse 4s ease-in-out infinite .8s; }
@keyframes bakRingPulse {
    0%, 100% { opacity: .5; transform: scale(1); }
    50%       { opacity: 1; transform: scale(1.02); }
}

/* -- Features -- */
.bak-features { padding: 90px 0; background: #fff; }

.bak-section-eyebrow {
    display: inline-flex; align-items: center; font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em; color: #7c3aed;
    background: rgba(124,58,237,.07); padding: .3rem .9rem; border-radius: 999px; margin-bottom: .75rem;
}
.bak-section-heading { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; color: #1e0a3c; letter-spacing: -.02em; margin-bottom: .5rem; }
.bak-section-sub { font-size: .97rem; color: #64748b; line-height: 1.75; max-width: 560px; margin: 0 auto; }

.bak-feat-card {
    background: #fff; border-radius: 18px; padding: 2rem 1.75rem;
    border: 1.5px solid #f1effe; height: 100%;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative; overflow: hidden;
}
.bak-feat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 18px 18px 0 0;
}
.bak-feat-card--1::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.bak-feat-card--2::before { background: linear-gradient(90deg, #c026d3, #e879f9); }
.bak-feat-card--3::before { background: linear-gradient(90deg, #088ac7, #38bdf8); }
.bak-feat-card--4::before { background: linear-gradient(90deg, #7c3aed, #c026d3); }
.bak-feat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(124,58,237,.12); border-color: rgba(124,58,237,.2); }

.bak-feat-card__icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(168,85,247,.06));
    display: flex; align-items: center; justify-content: center;
    color: #7c3aed; margin-bottom: 1.25rem;
}
.bak-feat-card--3 .bak-feat-card__icon { color: #088ac7; background: linear-gradient(135deg, rgba(8,138,199,.1), rgba(56,189,248,.06)); }
.bak-feat-card__title { font-size: 1rem; font-weight: 700; color: #1e0a3c; margin-bottom: .5rem; }
.bak-feat-card__desc { font-size: .88rem; color: #64748b; line-height: 1.7; margin: 0; }

/* -- Solutions -- */
.bak-solutions {
    padding: 90px 0;
    background: linear-gradient(160deg, #faf5ff 0%, #f5f3ff 50%, #f0f9ff 100%);
    position: relative; overflow: hidden;
}
.bak-solutions__bg { position: absolute; inset: 0; pointer-events: none; }
.bak-sol-blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.bak-sol-blob--1 { width: 500px; height: 500px; background: rgba(124,58,237,.07); top: -100px; left: -100px; }
.bak-sol-blob--2 { width: 400px; height: 400px; background: rgba(8,138,199,.05); bottom: -80px; right: -80px; }

.bak-solutions__header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }
.bak-solutions__arrow-bar { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.bak-arrow-line { flex: 1; max-width: 160px; height: 1.5px; background: linear-gradient(90deg, transparent, rgba(124,58,237,.4)); }
.bak-solutions__arrow-bar .bak-arrow-line:last-child { background: linear-gradient(90deg, rgba(124,58,237,.4), transparent); }
.bak-arrow-label { font-size: .82rem; font-weight: 600; color: #7c3aed; white-space: nowrap; font-style: italic; }

.bak-sol-grid { position: relative; z-index: 1; }
.bak-sol-card {
    background: #fff; border-radius: 20px;
    border: 1.5px solid rgba(124,58,237,.1); height: 100%;
    display: flex; flex-direction: column;
    padding: 1.5rem 1.25rem 1.75rem; text-align: center;
    transition: transform .28s, box-shadow .28s, border-color .28s; position: relative;
}
.bak-sol-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(124,58,237,.14); border-color: rgba(124,58,237,.25); }

.bak-sol-card__head {
    position: relative; display: inline-flex; align-self: center; margin-bottom: 1.2rem;
}
.bak-sol-card__img-wrap {
    width: 110px; height: 110px; border-radius: 50%; overflow: hidden;
    background: #f5f0ff; border: 3px solid rgba(124,58,237,.14); flex-shrink: 0;
}
.bak-sol-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.bak-sol-card:hover .bak-sol-card__img { transform: scale(1.09); }

.bak-sol-card__num {
    position: absolute; bottom: 2px; right: -8px;
    width: 26px; height: 26px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff; font-size: .65rem; font-weight: 800; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 2; box-shadow: 0 3px 8px rgba(124,58,237,.35); border: 2px solid #fff;
}
.bak-sol-card__body { flex: 1; display: flex; flex-direction: column; }
.bak-sol-card__title { font-size: 1rem; font-weight: 700; color: #1e0a3c; margin-bottom: .5rem; line-height: 1.3; }
.bak-sol-card__desc { font-size: .85rem; color: #64748b; line-height: 1.7; margin-bottom: 1rem; flex: 1; }
.bak-sol-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: 0; justify-content: center; }
.bak-sol-card__tags li {
    font-size: .7rem; font-weight: 600; color: #7c3aed;
    background: rgba(124,58,237,.07); border: 1px solid rgba(124,58,237,.15);
    padding: .18rem .6rem; border-radius: 999px;
}

/* -- Gallery -- */
.bak-gallery { padding: 0 0 80px; background: linear-gradient(180deg, #f5f3ff 0%, #fff 100%); }
.bak-gallery__card { border-radius: 16px; overflow: hidden; position: relative; aspect-ratio: 1; }
.bak-gallery__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.bak-gallery__card:hover .bak-gallery__img { transform: scale(1.06); }
.bak-gallery__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(30,10,60,.7) 100%);
    display: flex; align-items: flex-end; padding: 1rem 1.1rem; opacity: 0; transition: opacity .3s;
}
.bak-gallery__card:hover .bak-gallery__overlay { opacity: 1; }
.bak-gallery__overlay span { color: #fff; font-size: .82rem; font-weight: 600; }

/* CTA override */
.bak-cta { background: linear-gradient(135deg, #3b0764 0%, #5b21b6 40%, #7c3aed 100%) !important; }

/* -- Responsive -- */
@media (max-width: 991px) {
    .bak-hero { padding: 130px 0 60px; }
    .bak-hero__visual { max-width: 460px; }
    .bak-hero__visual-ring--1, .bak-hero__visual-ring--2 { display: none; }
    .bak-hero__accent { display: none; }
}
@media (max-width: 767px) {
    .bak-hero { padding: 120px 0 50px; }
    .bak-hero__specs { gap: .6rem; }
    .bak-spec-pill { padding: .55rem .85rem; }
    .bak-solutions__arrow-bar .bak-arrow-line { display: none; }
    .bak-sol-card__img-wrap { aspect-ratio: 16/9; }
}
@media (max-width: 575px) {
    .bak-feat-card { padding: 1.5rem 1.25rem; }
    .bak-sol-card__body { padding: 1.25rem 1.25rem 1.5rem; }
}


/* ====================================================
   MEGA MENU — mn-* Components
   Services & Products panels (desktop xl+)
   ==================================================== */

@media (min-width: 1200px) {

    /* Remove li as positioning context so panel anchors to .main-navbar */
    .header-nav .mn-trigger {
        position: static !important;
    }

    /* Panel: full-width strip anchored to bottom of navbar */
    .header-nav .mn-trigger .mn-panel {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        min-width: unset !important;
        padding: 0 !important;
        border-radius: 0 0 20px 20px !important;
        border: 1px solid rgba(6,28,99,0.07) !important;
        border-top: 3px solid var(--bs-primary) !important;
        box-shadow: 0 24px 64px rgba(6,28,99,0.13), 0 4px 16px rgba(6,28,99,0.06) !important;
        transform: translateY(8px);
    }

    /* Show state — keep translateY only (no translateX needed) */
    .header-nav .mn-trigger:hover > .mn-panel,
    .header-nav .mn-trigger .mn-panel.show {
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

}

/* Inner container — full-width (container-fluid behaviour) */
.mn-inner {
    display: flex;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 1.75rem 2rem;
}

/* Each section group (Advanced Delivery / Technology Platforms / etc.) */
.mn-group {
    flex: 1;
    min-width: 0;
}

.mn-group__label {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--bs-primary);
    margin: 0 0 0.6rem 0.5rem;
    padding: 0;
}

/* Vertical rule between groups */
.mn-divider {
    width: 1px;
    background: rgba(6,28,99,0.08);
    margin: 0 1.5rem;
    align-self: stretch;
    flex-shrink: 0;
}

/* Item grid — default 2 columns */
.mn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem;
}

/* Single-column variant */
.mn-grid--1col {
    grid-template-columns: 1fr;
}

/* Explicit 2-column variant */
.mn-grid--2col {
    grid-template-columns: 1fr 1fr;
}

/* Span both columns (used for last Technology Platform item) */
.mn-item--span2 {
    grid-column: 1 / -1;
}

/* ---- Individual item ---- */
.mn-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.6rem 0.65rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.17s ease;
}
.mn-item--static { cursor: default; pointer-events: none; }

.mn-item:hover,
.mn-item:focus {
    background: #f0f7ff;
    text-decoration: none;
}

/* Icon badge */
.mn-item__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: background 0.17s ease;
}

.mn-icon--blue   { background: rgba(8,138,199,0.10);  color: #088ac7; }
.mn-icon--purple { background: rgba(124,58,237,0.10); color: #7c3aed; }
.mn-icon--green  { background: rgba(5,150,105,0.10);  color: #059669; }
.mn-icon--orange { background: rgba(234,88,12,0.10);  color: #ea580c; }

.mn-item:hover .mn-icon--blue   { background: rgba(8,138,199,0.18); }
.mn-item:hover .mn-icon--purple { background: rgba(124,58,237,0.18); }
.mn-item:hover .mn-icon--green  { background: rgba(5,150,105,0.18); }
.mn-item:hover .mn-icon--orange { background: rgba(234,88,12,0.18); }

/* Text content */
.mn-item__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.mn-item__title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    display: block;
    transition: color 0.17s ease;
}

.mn-item:hover .mn-item__title {
    color: var(--bs-primary);
}

.mn-item__desc {
    font-size: 0.74rem;
    color: #64748b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile: mega menu panels are inside accordion, no positioning changes needed */
@media (max-width: 1199px) {
    .mn-panel { display: none !important; }
}


/* ====================================================
   GLOBAL RESPONSIVE POLISH
   All-device compatibility pass
   ==================================================== */

/* ---- Page Banner (about, bakuchiol, etc.) ---- */
@media (max-width: 575.98px) {
    .page-banner { padding: 5rem 0 2.75rem; }
    .page-banner__title { font-size: 1.75rem; }
    .page-banner__desc { font-size: .93rem; line-height: 1.65; }
    .page-banner__eyebrow { font-size: .7rem; }
}

/* ---- About page ---- */
@media (max-width: 575.98px) {
    .abt-overview { padding: 3rem 0 2.5rem; }
    .abt-overview__text p { font-size: .95rem; }
    .abt-stat-num { font-size: 2rem; }
    .abt-mv-card { padding: 1.75rem 1.25rem; }
    .abt-mv-card__title { font-size: 1.1rem; }
    .abt-pipeline-section { padding: 3rem 0; }
    .abt-values { padding: 3rem 0; }
    .abt-commitment { padding: 3rem 0; }
    .abt-cta { padding: 3.5rem 0; }
    .abt-cta__title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}

/* ---- Leadership section (in about page) ---- */
@media (max-width: 575.98px) {
    .ld-section { padding: 3rem 0 2.5rem; }
    .ld-title { font-size: 1.75rem; }
    .ld-bio p { font-size: .9rem; line-height: 1.75; }
    .ld-steps-col { display: none; }   /* hide icon column on phones — text alone is readable */
    .ld-expertise { padding: 2.5rem 0 3rem; }
    .ld-tag { font-size: .72rem; padding: .35rem .65rem; gap: .3rem; }
    .ld-tag-row { gap: .4rem; }
    .ld-name-card { padding: .55rem .75rem; }
    .ld-name-card__name { font-size: .82rem; }
    .ld-name-card__role { font-size: .72rem; }
}

/* ---- Bakuchiol Hero ---- */
@media (max-width: 575.98px) {
    .bak-hero { padding: 110px 0 40px; }
    .bak-hero__title { font-size: clamp(2rem, 9vw, 2.8rem); }
    .bak-hero__tagline { font-size: 1.05rem; }
    .bak-hero__desc { font-size: .9rem; }
    .bak-hero__specs { flex-wrap: wrap; }
    .bak-spec-pill { flex: 1 1 calc(50% - .5rem); min-width: 130px; }
}

/* ---- Bakuchiol Solution Cards (5-col → 2-col → 1-col) ---- */
@media (max-width: 991.98px) {
    .bak-sol-card__title { font-size: .95rem; }
    .bak-sol-card__desc  { font-size: .82rem; }
    .bak-sol-card__body  { padding: 1.1rem 1.1rem 1.35rem; }
}
@media (max-width: 575.98px) {
    .bak-sol-card__img-wrap { aspect-ratio: 16/9; }
    .bak-sol-card__body  { padding: 1rem 1rem 1.25rem; }
    .bak-solutions__header { margin-bottom: 2rem; }
}

/* ---- Bakuchiol Feature Cards ---- */
@media (max-width: 575.98px) {
    .bak-features { padding: 3rem 0; }
    .bak-feat-card { padding: 1.5rem 1.1rem; }
    .bak-feat-card__title { font-size: .92rem; }
}

/* ---- Bakuchiol Gallery ---- */
@media (max-width: 575.98px) {
    .bak-gallery { padding: 1.5rem 0 2rem; }
}

/* ---- Bakuchiol CTA ---- */
@media (max-width: 575.98px) {
    .bak-cta .abt-cta__title { font-size: clamp(1.5rem, 7vw, 2rem); }
}

/* ---- Mega menu — ensure completely hidden on non-desktop ---- */
@media (max-width: 1199.98px) {
    .mn-panel { display: none !important; }
    .mn-inner, .mn-group, .mn-item { display: none !important; }
}

/* ---- Footer ---- */
@media (max-width: 575.98px) {
    .footer-main { padding: 3rem 0 2rem; }
    .footer-intro { font-size: .875rem; }
    .footer-heading { font-size: .95rem; margin-top: 1.5rem; }
    .footer-links-list li a { font-size: .85rem; }
    .footer-bottom { text-align: center; font-size: .78rem; padding: 1rem 0; }
    .footer-socials { gap: .5rem; }
}

/* ---- General image safety (prevent horizontal overflow) ---- */
img { max-width: 100%; height: auto; }
svg { max-width: 100%; }

/* ---- Prevent horizontal scroll on all pages ---- */
html, body { overflow-x: hidden; }
.site-header, .main-navbar { overflow: visible; } /* keep dropdowns visible */


/* ====================================================
   ROSMARINIC ACID PAGE  — ra-* component system
   Teal / emerald green theme (#0d9488 / #059669)
   ==================================================== */

/* ─── Custom Properties ─── */
:root {
    --ra-primary:   #0d9488;   /* teal-600  */
    --ra-dark:      #134e4a;   /* teal-900  */
    --ra-mid:       #0f766e;   /* teal-700  */
    --ra-accent:    #10b981;   /* emerald-500 */
    --ra-light:     #f0fdf4;   /* green-50  */
    --ra-border:    rgba(13,148,136,0.15);
    --ra-text:      #0f172a;
    --ra-muted:     #64748b;
}

/* ─── HERO ─── */
.ra-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, var(--ra-dark) 0%, var(--ra-primary) 55%, #0891b2 100%);
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.ra-hero__inner { position: relative; z-index: 2; }

/* animated background blobs */
.ra-hero__bg-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ra-blob { position: absolute; border-radius: 50%; opacity: 0.12; }
.ra-blob--1 { width: 520px; height: 520px; top: -120px; right: -80px;  background: radial-gradient(circle, #34d399, transparent 70%); animation: ra-float 9s ease-in-out infinite; }
.ra-blob--2 { width: 340px; height: 340px; bottom: -60px; left: -40px; background: radial-gradient(circle, #a7f3d0, transparent 70%); animation: ra-float 7s ease-in-out infinite reverse; }
.ra-blob--3 { width: 220px; height: 220px; top: 40%;  left: 30%;       background: radial-gradient(circle, #6ee7b7, transparent 70%); animation: ra-float 11s ease-in-out infinite; }

@keyframes ra-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(18px, -22px) scale(1.04); }
    66%       { transform: translate(-12px, 14px) scale(0.97); }
}

/* breadcrumb */
.ra-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.77rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.ra-hero__breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color .2s; }
.ra-hero__breadcrumb a:hover { color: #fff; }
.ra-hero__breadcrumb span:last-child { color: rgba(255,255,255,0.9); }

/* eyebrow */
.ra-hero__eyebrow {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #6ee7b7;
    background: rgba(110,231,183,0.12);
    border: 1px solid rgba(110,231,183,0.28);
    padding: 0.32rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* title */
.ra-hero__title {
    font-size: clamp(2.8rem, 5.5vw, 4.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.ra-hero__tagline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.ra-hero__tagline span { color: #6ee7b7; }

.ra-hero__desc {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 530px;
}

/* spec pills */
.ra-hero__specs { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 1.75rem; }

.ra-spec-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
    color: #fff;
    backdrop-filter: blur(8px);
}
.ra-spec-pill svg { opacity: 0.8; flex-shrink: 0; }
.ra-spec-pill .ra-spec-pill__label { font-size: 0.67rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; line-height: 1.1; }
.ra-spec-pill strong { font-size: 0.85rem; font-weight: 700; display: block; line-height: 1.2; }

/* badge */
.ra-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, var(--ra-accent), #059669);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    letter-spacing: .04em;
    box-shadow: 0 4px 18px rgba(16,185,129,0.35);
}

/* visual column */
.ra-hero__visual {
    position: relative;
    border-radius: 28px;
    overflow: visible;
}

.ra-hero__img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 32px 80px rgba(6,28,99,0.35), 0 4px 16px rgba(6,28,99,0.15);
    position: relative;
    z-index: 2;
}

/* floating chem card */
.ra-hero__chem-card {
    position: absolute;
    bottom: -1.25rem;
    left: -1.5rem;
    z-index: 4;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 16px 40px rgba(13,148,136,0.22), 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(13,148,136,0.12);
    min-width: 160px;
}
.ra-hero__chem-formula { font-size: 1.35rem; font-weight: 800; color: var(--ra-primary); letter-spacing: 0.02em; line-height: 1; }
.ra-hero__chem-label   { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; color: var(--ra-muted); margin: 0.25rem 0 0.1rem; }
.ra-hero__chem-mw      { font-size: 0.78rem; font-weight: 600; color: #334155; }

/* decorative rings */
.ra-hero__visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(110,231,183,0.2);
    z-index: 1;
}
.ra-hero__visual-ring--1 { width: 110%; height: 110%; top: -5%; left: -5%; }
.ra-hero__visual-ring--2 { width: 125%; height: 125%; top: -12.5%; left: -12.5%; opacity: 0.5; }

/* ─── FEATURES SECTION ─── */
.ra-features {
    padding: 6rem 0;
    background: #fff;
}

.ra-section-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ra-primary);
    margin-bottom: 0.6rem;
}
.ra-section-heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--ra-text);
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}
.ra-section-sub {
    font-size: 1.02rem;
    color: var(--ra-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* feature cards */
.ra-feat-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: 0 4px 24px rgba(13,148,136,0.07), 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid var(--ra-border);
    transition: transform .28s ease, box-shadow .28s ease;
    position: relative;
    overflow: hidden;
}
.ra-feat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 18px 18px 0 0;
}
.ra-feat-card--1::before { background: linear-gradient(90deg, var(--ra-primary), var(--ra-accent)); }
.ra-feat-card--2::before { background: linear-gradient(90deg, #0891b2, var(--ra-primary)); }
.ra-feat-card--3::before { background: linear-gradient(90deg, var(--ra-accent), #84cc16); }
.ra-feat-card--4::before { background: linear-gradient(90deg, #f59e0b, #ea580c); }

.ra-feat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(13,148,136,0.14), 0 4px 12px rgba(0,0,0,0.06); }

.ra-feat-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.ra-feat-card--1 .ra-feat-card__icon { background: rgba(13,148,136,0.1);  color: var(--ra-primary); }
.ra-feat-card--2 .ra-feat-card__icon { background: rgba(8,145,178,0.1);   color: #0891b2; }
.ra-feat-card--3 .ra-feat-card__icon { background: rgba(16,185,129,0.1);  color: var(--ra-accent); }
.ra-feat-card--4 .ra-feat-card__icon { background: rgba(245,158,11,0.1);  color: #f59e0b; }

.ra-feat-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ra-text);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}
.ra-feat-card__desc {
    font-size: 0.9rem;
    color: var(--ra-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── SOLUTIONS SECTION ─── */
.ra-solutions {
    position: relative;
    padding: 5.5rem 0 6rem;
    background: var(--ra-light);
    overflow: hidden;
}
.ra-solutions__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ra-sol-blob { position: absolute; border-radius: 50%; opacity: 0.07; }
.ra-sol-blob--1 { width: 600px; height: 600px; top: -200px; right: -100px; background: var(--ra-primary); }
.ra-sol-blob--2 { width: 380px; height: 380px; bottom: -120px; left: -60px; background: var(--ra-accent); }

/* header bar */
.ra-solutions__header { text-align: center; margin-bottom: 3rem; }

.ra-solutions__arrow-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.ra-arrow-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ra-primary));
}
.ra-arrow-line:last-child { background: linear-gradient(90deg, var(--ra-primary), transparent); }
.ra-arrow-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ra-primary);
    white-space: nowrap;
}

/* solution card */
.ra-sol-card {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid rgba(13,148,136,.12);
    box-shadow: 0 4px 20px rgba(13,148,136,0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem 1.25rem 1.75rem;
    text-align: center;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s;
    position: relative;
}
.ra-sol-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(13,148,136,0.16); border-color: rgba(13,148,136,.28); }

.ra-sol-card__head {
    position: relative; display: inline-flex; align-self: center; margin-bottom: 1.2rem;
}
.ra-sol-card__img-wrap {
    width: 110px; height: 110px; border-radius: 50%; overflow: hidden;
    background: #f0fdfb; border: 3px solid rgba(13,148,136,.14); flex-shrink: 0;
}
.ra-sol-card__img {
    width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease;
}
.ra-sol-card:hover .ra-sol-card__img { transform: scale(1.09); }

.ra-sol-card__num {
    position: absolute; bottom: 2px; right: -8px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--ra-primary);
    color: #fff; font-size: 0.65rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    z-index: 2; box-shadow: 0 3px 8px rgba(13,148,136,.35); border: 2px solid #fff;
}

.ra-sol-card__body {
    display: flex; flex-direction: column; gap: 0.5rem; flex: 1;
}
.ra-sol-card__title {
    font-size: 0.97rem; font-weight: 700; color: var(--ra-text); line-height: 1.35; margin: 0;
}
.ra-sol-card__desc {
    font-size: 0.8rem; color: var(--ra-muted); line-height: 1.65; flex: 1; margin: 0;
}
.ra-sol-card__tags {
    list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.3rem; justify-content: center;
}
.ra-sol-card__tags li {
    font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    color: var(--ra-primary); background: rgba(13,148,136,0.09); border-radius: 999px; padding: 0.2rem 0.55rem;
}

/* ─── BENEFITS SECTION ─── */
.ra-benefits {
    padding: 5rem 0 5.5rem;
    background: #fff;
}

.ra-benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    text-align: center;
    border: 1px solid var(--ra-border);
    box-shadow: 0 2px 12px rgba(13,148,136,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.ra-benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,148,136,0.13); }

.ra-benefit-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
}
.ra-benefit-icon--teal   { background: rgba(13,148,136,0.1);  color: var(--ra-primary); }
.ra-benefit-icon--blue   { background: rgba(8,145,178,0.1);   color: #0891b2; }
.ra-benefit-icon--green  { background: rgba(16,185,129,0.1);  color: var(--ra-accent); }
.ra-benefit-icon--pink   { background: rgba(244,63,94,0.08);  color: #f43f5e; }

.ra-benefit-card__title {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--ra-text);
    margin-bottom: 0.4rem;
}
.ra-benefit-card__desc {
    font-size: 0.82rem;
    color: var(--ra-muted);
    line-height: 1.65;
    margin: 0;
}

/* ─── CTA override ─── */
.ra-cta { background: linear-gradient(135deg, var(--ra-dark) 0%, var(--ra-primary) 100%); }
.ra-cta .abt-cta__eyebrow { color: #6ee7b7; }
.ra-cta .abt-cta__title span { color: #6ee7b7; }

/* ─── RESPONSIVE ─── */
@media (max-width: 991.98px) {
    .ra-hero { min-height: unset; padding: 110px 0 60px; }
    .ra-sol-card__title { font-size: .92rem; }
    .ra-sol-card__desc  { font-size: .78rem; }
}

@media (max-width: 575.98px) {
    .ra-hero { padding: 110px 0 40px; }
    .ra-hero__title { font-size: clamp(2rem, 9vw, 2.8rem); }
    .ra-hero__tagline { font-size: 1.05rem; }
    .ra-hero__desc { font-size: .9rem; }
    .ra-hero__specs { flex-wrap: wrap; }
    .ra-spec-pill { flex: 1 1 100%; min-width: 0; width: 100%; }
    .ra-hero__chem-card { display: none; }

    .ra-features { padding: 3rem 0; }
    .ra-feat-card { padding: 1.5rem 1.1rem; }
    .ra-feat-card__title { font-size: .92rem; }

    .ra-solutions { padding: 3rem 0 3.5rem; }
    .ra-solutions__arrow-bar { gap: 0.5rem; }
    .ra-arrow-label { font-size: .65rem; }
    .ra-benefits { padding: 3rem 0 3.5rem; }
    .ra-benefit-card { padding: 1.25rem 1rem; }

    .ra-section-heading { font-size: 1.55rem; }
    .ra-section-sub { font-size: .9rem; }
}


/* ========================================================
   PIPELINE PAGE  (pl-*)
   ======================================================== */

.pl-page { background: #fff; }

/* --- Hero --- */
.pl-hero {
    padding: 80px 0 68px;
    background: linear-gradient(135deg, #faf5ff 0%, #eff6ff 55%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}

.pl-hero__bg-blob {
    position: absolute;
    top: -120px;
    left: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(168,85,247,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.pl-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #6b7280;
    margin-bottom: 22px;
}
.pl-breadcrumb a { color: #6b7280; text-decoration: none; }
.pl-breadcrumb a:hover { color: #7c3aed; }
.pl-breadcrumb span { color: #9ca3af; }

.pl-hero__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 10px;
}

.pl-hero__title span {
    background: linear-gradient(90deg, #ec4899 20%, #7c3aed 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pl-hero__subtitle {
    font-size: 1.05rem;
    color: #475569;
    font-weight: 400;
    margin-bottom: 14px;
}

.pl-hero__divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #7c3aed);
    border-radius: 2px;
    margin-bottom: 28px;
}

.pl-hero__info {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.pl-hero__beaker-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: rgba(124,58,237,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
}

.pl-hero__text { flex: 1; }

.pl-hero__text p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 8px;
}

.pl-hero__text p:last-child { margin-bottom: 0; }

.pl-hero__text strong {
    color: #ec4899;
    font-weight: 600;
}

/* Status badges */
.pl-status-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
@media (max-width: 991.98px) {
    .pl-status-badges { padding-top: 14px; }
}

.pl-status-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 22px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.pl-status-badge--purple { background: linear-gradient(90deg, #6d28d9, #9333ea); }
.pl-status-badge--pink   { background: linear-gradient(90deg, #db2777, #f43f5e); }
.pl-status-badge--blue   { background: linear-gradient(90deg, #1d4ed8, #2563eb); }

.pl-status-badge__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Timeline Section --- */
.pl-timeline-section {
    padding: 64px 0 48px;
    background: #fff;
}

.pl-programs-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.pl-programs-track {
    position: absolute;
    top: 106px;
    left: calc(10% + 20px);
    right: 32px;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed 0%, #2563eb 30%, #7c3aed 55%, #ec4899 75%, #2563eb 100%);
    z-index: 0;
}

.pl-programs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.pl-timeline-arrow {
    flex-shrink: 0;
    margin-left: 4px;
    position: relative;
    top: -106px;
}

.pl-program {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 4px;
}

.pl-program__img-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.pl-img--purple { border-color: #7c3aed; box-shadow: 0 0 0 5px rgba(124,58,237,0.12); }
.pl-img--blue   { border-color: #2563eb; box-shadow: 0 0 0 5px rgba(37,99,235,0.12); }
.pl-img--pink   { border-color: #ec4899; box-shadow: 0 0 0 5px rgba(236,72,153,0.12); }

.pl-program__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl-program__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.77rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.pl-program__badge--purple { background: #6d28d9; }
.pl-program__badge--blue   { background: #2563eb; }
.pl-program__badge--pink   { background: #db2777; }

.pl-program__title {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.pl-program__title--purple { color: #6d28d9; }
.pl-program__title--blue   { color: #2563eb; }
.pl-program__title--pink   { color: #db2777; }

.pl-program__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px 11px;
    line-height: 1.3;
    text-align: left;
}

.pl-program__status svg {
    color: #2563eb;
    flex-shrink: 0;
}

/* --- Platform Info Bar --- */
.pl-bottom-info {
    background: #f8fafc;
    padding: 44px 0;
    border-top: 1px solid #e9edf2;
    border-bottom: 1px solid #e9edf2;
}

.pl-platform-desc {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.pl-platform-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124,58,237,0.10), rgba(236,72,153,0.10));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    flex-shrink: 0;
}

.pl-platform-desc p {
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.75;
    margin: 0;
}

.pl-highlight-pink { color: #db2777; font-weight: 600; }
.pl-highlight-blue { color: #1d4ed8; font-weight: 600; }

.pl-pillars {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.pl-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex: 1;
    min-width: 90px;
}

.pl-pillar__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-pillar__icon--purple { background: rgba(109,40,217,0.08); color: #6d28d9; }
.pl-pillar__icon--blue   { background: rgba(37,99,235,0.08);  color: #2563eb; }
.pl-pillar__icon--pink   { background: rgba(219,39,119,0.08); color: #db2777; }

.pl-pillar__label {
    font-size: 0.77rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.35;
}

/* --- Licensing Banner --- */
.pl-licensing {
    background: linear-gradient(90deg, #6d28d9 0%, #1d4ed8 60%, #6d28d9 100%);
    padding: 24px 0;
}

.pl-licensing__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pl-licensing__left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pl-licensing__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pl-licensing__title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
    white-space: nowrap;
}

.pl-licensing__divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.pl-licensing__items {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.92);
    font-size: 0.88rem;
    font-weight: 500;
}

.pl-licensing__dot { opacity: 0.45; }

/* Slightly larger banner when placed at top of page — offset for the fixed header */
.pl-licensing--top { padding: calc(97px + 22px) 0 30px; }
.pl-licensing--top .pl-licensing__icon { width: 54px; height: 54px; }
.pl-licensing--top .pl-licensing__title { font-size: 1.05rem; }
.pl-licensing--top .pl-licensing__items { font-size: 0.95rem; }

/* --- Brochure Download CTA --- */
.pl-brochure-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 14px;
    padding: 15px 22px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #db2777, #f472b6);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(219,39,119,0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pl-brochure-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(219,39,119,0.36);
    color: #fff;
}
.pl-brochure-cta svg { flex-shrink: 0; }

/* --- Xnova Platform Banner --- */
.pl-xnova-banner { padding: 0 0 56px; background: #fff; }
.pl-xnova-banner__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15,23,42,0.10);
}

/* --- Brochure Modal --- */
.pl-brochure-modal .modal-dialog { max-width: 1100px; }
.pl-brochure-modal .modal-content { border-radius: 20px; border: none; overflow: hidden; }
.pl-brochure-modal .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 34px;
    height: 34px;
    padding: 0;
    background-color: #fff;
    background-size: 12px;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.pl-brochure-info {
    padding: 44px 40px;
    background: linear-gradient(160deg, #faf5ff 0%, #fff 60%);
}
.pl-brochure-info__eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7c3aed;
    margin-bottom: 8px;
}
.pl-brochure-info h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 18px;
}
.pl-brochure-info p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 14px;
}
.pl-brochure-info ul { margin: 0 0 16px; padding-left: 20px; }
.pl-brochure-info ul li {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 8px;
}
.pl-brochure-info p strong { color: #0f172a; }
.pl-brochure-note {
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 0 !important;
}

.pl-brochure-form-col { background: #f8fafc; padding: 40px 32px; }
.pl-brochure-form-col .ct-form-card {
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}
.pl-brochure-form-lead {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}
.pl-brochure-submit { width: 100%; justify-content: center; }
.pl-brochure-note-secure { justify-content: center; margin-top: 16px; }

@media (max-width: 991.98px) {
    .pl-brochure-info { padding: 36px 28px; }
    .pl-brochure-form-col { padding: 32px 24px; }
}
@media (max-width: 575.98px) {
    .pl-brochure-info { padding: 28px 20px; }
    .pl-brochure-form-col { padding: 28px 20px; }
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .pl-program__img-wrap { width: 150px; height: 150px; }
    .pl-programs-track { top: 91px; }
    .pl-timeline-arrow { top: -91px; }
}

@media (max-width: 991px) {
    .pl-programs { grid-template-columns: repeat(3, 1fr); gap: 28px 12px; }
    .pl-programs-track { display: none; }
    .pl-timeline-arrow { display: none; }
    .pl-program__img-wrap { width: 150px; height: 150px; }
    .pl-pillars { justify-content: flex-start; }
}

@media (max-width: 575px) {
    .pl-programs { grid-template-columns: repeat(2, 1fr); gap: 24px 8px; }
    .pl-hero__info { flex-direction: column; gap: 12px; }
    .pl-licensing__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .pl-licensing__divider { display: none; }
    .pl-licensing__title { font-size: 0.82rem; white-space: normal; }
    .pl-hero { padding: 56px 0 48px; }
}


/* ========================================================
   CONTACT PAGE  (ct-*)
   ======================================================== */

.ct-page { background: #f8fafc; }

/* --- Hero --- */
.ct-hero {
    padding: 140px 0 56px;
    background: linear-gradient(135deg, #061c63 0%, #088ac7 100%);
    position: relative;
    overflow: hidden;
}

.ct-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
    pointer-events: none;
}

.ct-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
}
.ct-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.ct-breadcrumb a:hover { color: #fff; }
.ct-breadcrumb span { color: rgba(255,255,255,0.45); }

.ct-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}
.ct-hero__title span { color: rgba(255,255,255,0.75); }

.ct-hero__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    margin: 0;
}

/* --- Main Section --- */
.ct-main {
    padding: 64px 0 80px;
}

/* --- Contact Info --- */
.ct-info__heading {
    font-size: 1.45rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.ct-info__sub {
    font-size: 0.92rem;
    color: #64748b;
    margin-bottom: 28px;
}

.ct-info-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s;
}
.ct-info-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }

.ct-info-card--usa {
    border-left: 3px solid #061c63;
}

.ct-info-card:not(.ct-info-card--usa) {
    border-left: 3px solid #088ac7;
}

.ct-info-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.ct-info-card__flag {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.ct-info-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.ct-info-card__role {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
}

.ct-info-card__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.5;
}

.ct-info-item a {
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}
.ct-info-item a:hover { color: #088ac7; }

.ct-info-item__icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.ct-icon--blue  { background: rgba(8,138,199,0.10); color: #088ac7; }
.ct-icon--navy  { background: rgba(6,28,99,0.08);   color: #061c63; }

/* Quick links */
.ct-quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.ct-quick-links__label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.ct-quick-chip {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #088ac7;
    background: rgba(8,138,199,0.08);
    border: 1px solid rgba(8,138,199,0.2);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.ct-quick-chip:hover {
    background: #088ac7;
    color: #fff;
}

/* --- Form Card --- */
.ct-form-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.ct-form-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.ct-form-card__sub {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 28px;
}

.ct-form-card__header {
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 24px;
}

/* Form fields */
.ct-form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.ct-required { color: #ef4444; }

.ct-input-wrap {
    position: relative;
}

.ct-input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.ct-input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #0f172a;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    font-family: inherit;
}

.ct-input:focus {
    border-color: #088ac7;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(8,138,199,0.12);
}

.ct-input--error { border-color: #ef4444 !important; }
.ct-input--error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,0.12) !important; }
.ct-input--valid { border-color: #22c55e; }

.ct-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.ct-textarea {
    padding: 12px 14px;
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

/* Error messages */
.ct-error {
    font-size: 0.78rem;
    color: #ef4444;
    display: none;
}
.ct-error--show { display: block; }

/* Char count */
.ct-char-count {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: right;
    margin-top: -2px;
}
.ct-char-count--ok { color: #22c55e; }

/* Success alert */
.ct-alert {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 16px;
}
.ct-alert--show { display: flex; }
.ct-alert--success {
    background: rgba(34,197,94,0.10);
    border: 1px solid rgba(34,197,94,0.3);
    color: #15803d;
}
.ct-alert--error {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.28);
    color: #b91c1c;
}

/* ── Success Panel ── */
.ct-success-panel {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 56px 32px 48px;
    min-height: 340px;
}
.ct-success-panel--show { display: flex; }

.ct-success-panel__icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(34,197,94,0.12);
    border: 2px solid rgba(34,197,94,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    margin-bottom: 24px;
    animation: successPop 0.45s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes successPop {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.ct-success-panel__title {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin: 0 0 12px;
}
.ct-success-panel__msg {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 380px;
    margin: 0 0 32px;
}
.ct-success-panel__msg strong { color: var(--bs-secondary); }

.ct-done-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 36px;
    background: var(--bs-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
    box-shadow: 0 4px 18px rgba(8,138,199,0.30);
}
.ct-done-btn:hover {
    background: #0673a8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8,138,199,0.38);
}
.ct-done-btn:active { transform: translateY(0); }

/* Form footer */
.ct-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.ct-form__note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 0;
}

/* Submit button */
.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(90deg, #061c63, #088ac7);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}
.ct-submit-btn:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.ct-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.ct-submit-btn__spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ctSpin 0.7s linear infinite;
}

.ct-submit-btn--loading .ct-submit-btn__icon    { display: none; }
.ct-submit-btn--loading .ct-submit-btn__spinner { display: block; }

@keyframes ctSpin { to { transform: rotate(360deg); } }

/* --- Responsive --- */
@media (max-width: 991px) {
    .ct-form-card { padding: 28px 24px; }
}

@media (max-width: 575px) {
    .ct-hero { padding: 100px 0 44px; }
    .ct-main  { padding: 40px 0 60px; }
    .ct-form-card { padding: 22px 18px; }
    .ct-form__footer { flex-direction: column; align-items: flex-start; }
    .ct-submit-btn { width: 100%; justify-content: center; }
}


/* ========================================================
   FAQ PAGE  (fq-*)
   ======================================================== */

.fq-page { background: #f8fafc; }

/* --- Hero --- */
.fq-hero {
    padding: 140px 0 52px;
    background: linear-gradient(135deg, #061c63 0%, #088ac7 100%);
    position: relative;
    overflow: hidden;
}

.fq-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
    pointer-events: none;
}

.fq-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
}
.fq-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.fq-breadcrumb a:hover { color: #fff; }
.fq-breadcrumb span { color: rgba(255,255,255,0.4); }

.fq-hero__title {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}
.fq-hero__title span { color: rgba(255,255,255,0.75); }

.fq-hero__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 20px;
}

.fq-hero__stats {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fq-stat {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.fq-stat strong { color: #fff; }
.fq-stat-dot { color: rgba(255,255,255,0.35); }

/* --- Tabs Bar --- */
.fq-tabs-wrap {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.25s;
}
.fq-tabs-wrap--stuck {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.fq-tabs {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.fq-tabs::-webkit-scrollbar { display: none; }

.fq-tab {
    flex-shrink: 0;
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    background: none;
    border: none;
    border-bottom: 2.5px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    line-height: 1;
}
.fq-tab:hover { color: #088ac7; }
.fq-tab.active {
    color: #088ac7;
    border-bottom-color: #088ac7;
}

/* --- FAQ Content Section --- */
.fq-content {
    padding: 52px 0 80px;
}

.fq-category--hidden { display: none; }

/* --- Category Header --- */
.fq-category__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.fq-category__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fq-icon--blue   { background: rgba(8,138,199,0.10); color: #088ac7; }
.fq-icon--navy   { background: rgba(6,28,99,0.09);   color: #061c63; }
.fq-icon--purple { background: rgba(124,58,237,0.10); color: #7c3aed; }
.fq-icon--teal   { background: rgba(20,184,166,0.10); color: #0d9488; }
.fq-icon--pink   { background: rgba(219,39,119,0.10); color: #db2777; }

.fq-category__title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 3px;
}

.fq-category__sub {
    font-size: 0.87rem;
    color: #64748b;
    margin: 0;
}

/* --- Accordion --- */
.fq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fq-item {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 14px !important;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.fq-item:hover {
    border-color: rgba(8,138,199,0.3) !important;
}

.fq-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    background: #fff !important;
    box-shadow: none !important;
    border: none;
    width: 100%;
    text-align: left;
    line-height: 1.4;
}
.fq-btn:not(.collapsed) {
    color: #088ac7 !important;
    background: rgba(8,138,199,0.04) !important;
}
.fq-btn::after {
    margin-left: auto;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 24 24' stroke='%23088ac7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    transition: transform 0.25s;
    content: "";
}
.fq-btn:not(.collapsed)::after {
    transform: rotate(180deg);
}

.fq-btn__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(8,138,199,0.10);
    color: #088ac7;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
    padding: 0 6px;
}
.fq-btn:not(.collapsed) .fq-btn__num {
    background: #088ac7;
    color: #fff;
}

.fq-body {
    padding: 4px 22px 20px calc(22px + 28px + 14px) !important;
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.8;
}
.fq-body strong { color: #0f172a; }
.fq-body em { color: #64748b; }

/* --- Bottom CTA --- */
.fq-cta {
    background: linear-gradient(135deg, #061c63 0%, #088ac7 100%);
    padding: 52px 0;
}

.fq-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.fq-cta__title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.fq-cta__desc {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.78);
    margin: 0;
}

.fq-cta__btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.fq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}
.fq-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.fq-cta-btn--primary {
    background: #fff;
    color: #061c63;
}
.fq-cta-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.fq-cta-btn--outline:hover { border-color: #fff; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .fq-tab { padding: 13px 16px; font-size: 0.82rem; }
}

@media (max-width: 767px) {
    .fq-cta__inner { flex-direction: column; align-items: flex-start; gap: 22px; }
    .fq-cta__btns { width: 100%; }
    .fq-cta-btn { flex: 1; justify-content: center; }
}

@media (max-width: 575px) {
    .fq-hero { padding: 100px 0 42px; }
    .fq-content { padding: 36px 0 60px; }
    .fq-btn { padding: 16px 16px !important; font-size: 0.9rem !important; }
    .fq-body { padding: 4px 16px 18px 16px !important; }
    .fq-btn__num { display: none; }
    .fq-category__header { gap: 12px; }
    .fq-category__icon { width: 42px; height: 42px; border-radius: 10px; }
    .fq-category__title { font-size: 1.2rem; }
    .fq-tab { padding: 12px 13px; font-size: 0.78rem; }
}


/* =====================================================
   RESPONSIVE POLISH — Cross-device fixes
   ===================================================== */

/* Touch devices: prevent hover transforms sticking on tap */
@media (hover: none) {
    .dt-card:hover { transform: none; box-shadow: 0 8px 28px rgba(0,0,0,.12); }
    .ing-card:hover { transform: none; }
    .bak-feat-card:hover { transform: none; box-shadow: 0 6px 20px rgba(124,58,237,.06); border-color: rgba(124,58,237,.08) !important; }
    .ra-feat-card:hover  { transform: none; box-shadow: 0 6px 20px rgba(13,148,136,.06); }
    .bak-sol-card:hover  { transform: none; box-shadow: 0 6px 20px rgba(0,0,0,.06); border-color: rgba(124,58,237,.1); }
    .bak-sol-card:hover .bak-sol-card__img { transform: none; }
    .ra-sol-card:hover   { transform: none; box-shadow: 0 6px 20px rgba(0,0,0,.06); }
    .ra-sol-card:hover .ra-sol-card__img { transform: none; }
}

/* FAQ hero stats — allow wrap on narrow screens */
.fq-hero__stats { flex-wrap: wrap; }

/* Section sub-text slightly smaller on phones */
@media (max-width: 575.98px) {
    .bak-section-sub,
    .ra-section-sub { font-size: .875rem; }
}

/* Landscape phones: prevent awkwardly tall hero sections */
@media (max-width: 767.98px) and (orientation: landscape) {
    .hero-section { min-height: unset; padding: 90px 0 3rem; }
    .bak-hero { min-height: unset; padding: 100px 0 3rem; }
    .ra-hero  { min-height: unset; padding: 100px 0 3rem; }
}

/* Footer link text on extra-small phones */
@media (max-width: 575.98px) {
    .footer-links-list li a { font-size: .8rem; }
    .footer-heading { font-size: .83rem; }
}

/* About stats: single column on very small phones (320-400px) */
@media (max-width: 400px) {
    .abt-stats { grid-template-columns: 1fr !important; }
}

/* Pipeline programs: centre the orphaned last card in 2-col grid */
@media (max-width: 575px) {
    .pl-program:last-child { grid-column: 1 / -1; max-width: 200px; margin: 0 auto; }
}

/* CTA sections — tighter vertical padding on phones */
@media (max-width: 575.98px) {
    .bak-cta { padding: 3rem 0 !important; }
    .ra-cta  { padding: 3rem 0 !important; }
    .abt-cta { padding: 3rem 0 2.5rem !important; }
}

/* About mission/vision cards — match height within each row on tablet */
@media (min-width: 576px) and (max-width: 991.98px) {
    .abt-mv-card { height: 100%; }
}


/* ========================================================
   SERVICES PAGE  (sv-*)
   ======================================================== */

.sv-page { background: #f8fafc; }

/* --- Hero --- */
.sv-hero {
    padding: 140px 0 68px;
    background: linear-gradient(135deg, #061c63 0%, #088ac7 100%);
    position: relative;
    overflow: hidden;
}

.sv-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sv-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.12;
}
.sv-blob--1 {
    width: 480px; height: 480px;
    background: #fff;
    top: -120px; right: -80px;
}
.sv-blob--2 {
    width: 320px; height: 320px;
    background: #7c3aed;
    bottom: -80px; left: 10%;
}

.sv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
.sv-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.sv-breadcrumb a:hover { color: #fff; }
.sv-breadcrumb span { color: rgba(255,255,255,0.4); }

.sv-hero__inner { position: relative; z-index: 1; max-width: 760px; }

.sv-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
}
.sv-hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px; height: 2px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
}

.sv-hero__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}
.sv-hero__title span {
    background: linear-gradient(90deg, #93c5fd, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sv-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 28px;
}

.sv-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sv-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
}

/* --- Overview Image --- */
.sv-overview {
    padding: 52px 0 20px;
    background: #f8fafc;
}

.sv-overview__img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(6,28,99,0.10);
    background: #fff;
}

.sv-overview__img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Services Section --- */
.sv-services {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.sv-service {
    padding: 56px 0;
}

/* .sv-service__content { max-width: 540px; } */

.sv-service__icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.sv-icon--blue   { background: rgba(8,138,199,0.10);  color: #088ac7; }
.sv-icon--purple { background: rgba(124,58,237,0.10); color: #7c3aed; }
.sv-icon--teal   { background: rgba(13,148,136,0.10); color: #0d9488; }
.sv-icon--pink   { background: rgba(219,39,119,0.10); color: #db2777; }

.sv-service__num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 10px;
}

.sv-service__title {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: #061c63;
    line-height: 1.2;
    margin-bottom: 16px;
}

.sv-service__desc {
    font-size: 0.97rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 22px;
}

.sv-service__points {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-service__points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #334155;
}
.sv-service__points li::before {
    content: '';
    flex-shrink: 0;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #088ac7;
}

.sv-service__img-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(6,28,99,0.10);
    background: #fff;
}

.sv-service__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.sv-service__img-wrap:hover .sv-service__img { transform: scale(1.02); }

/* Divider between services */
.sv-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0 20%, #e2e8f0 80%, transparent);
}

/* --- CTA --- */
.sv-cta {
    background: linear-gradient(135deg, #061c63 0%, #088ac7 100%);
    padding: 60px 0;
}

.sv-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
}

.sv-cta__title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.sv-cta__desc {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin: 0;
    line-height: 1.7;
}

.sv-cta__btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.sv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}
.sv-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.sv-cta-btn--primary { background: #fff; color: #061c63; }
.sv-cta-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.sv-cta-btn--outline:hover { border-color: #fff; }

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .sv-service { padding: 44px 0; }
    .sv-service__content { max-width: 100%; }
    .sv-service__title { font-size: 1.5rem; }
}

@media (max-width: 767.98px) {
    .sv-hero { padding: 110px 0 52px; }
    .sv-cta__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .sv-cta__btns { width: 100%; }
    .sv-cta-btn { flex: 1; justify-content: center; }
    .sv-cta__title { font-size: 1.5rem; }
}

@media (max-width: 575.98px) {
    .sv-hero { padding: 100px 0 44px; }
    .sv-overview { padding: 36px 0 12px; }
    .sv-services { padding: 36px 0 52px; }
    .sv-service { padding: 32px 0; }
    .sv-service__title { font-size: 1.3rem; }
    .sv-service__desc { font-size: .92rem; }
    .sv-cta { padding: 40px 0; }
    .sv-cta__title { font-size: 1.35rem; }
}

/* ====================================================
   XNOVA TECHNOLOGY PLATFORM PAGE
   ==================================================== */

/* --- Hero --- */
.xn-hero {
    position: relative;
    padding: 140px 0 70px;
    background: linear-gradient(140deg, #f5f3ff 0%, #ede9fe 40%, #faf5ff 70%, #f0f9ff 100%);
    overflow: hidden;
}
.xn-hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.xn-blob { position: absolute; border-radius: 50%; filter: blur(70px); }
.xn-blob--1 { width: 480px; height: 480px; background: rgba(124,58,237,.12); top: -140px; right: -100px; }
.xn-blob--2 { width: 340px; height: 340px; background: rgba(217,70,239,.09); bottom: -80px; left: 6%; }
.xn-blob--3 { width: 240px; height: 240px; background: rgba(8,138,199,.08); top: 45%; right: 26%; }

.xn-hero__inner { position: relative; z-index: 1; max-width: 760px; }

.xn-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
    color: #7c3aed; background: rgba(124,58,237,.08); border: 1px solid rgba(124,58,237,.18);
    padding: .4rem 1.05rem; border-radius: 999px; margin-bottom: 18px;
}

.xn-hero__title {
    font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 800; line-height: 1.1;
    color: #1e0a3c; letter-spacing: -.02em; margin-bottom: 18px;
}
.xn-hero__title span {
    background: linear-gradient(90deg, #7c3aed, #d946ef 55%, #4f46e5);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.xn-hero__subtitle { font-size: 1.05rem; color: #475569; line-height: 1.75; max-width: 600px; margin-bottom: 28px; }

.xn-hero__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.xn-badge {
    display: inline-block; padding: 7px 18px; border-radius: 100px; font-size: .8rem; font-weight: 600;
    background: #fff; color: #4c1d95; border: 1px solid rgba(124,58,237,.18);
    box-shadow: 0 2px 10px rgba(124,58,237,.06);
}

/* --- Capability banner --- */
.xn-banner { padding: 0 0 70px; background: linear-gradient(140deg, #f5f3ff 0%, #ede9fe 40%, #faf5ff 70%, #f0f9ff 100%); }
.xn-banner__frame {
    border-radius: 24px; overflow: hidden; background: #fff;
    box-shadow: 0 20px 60px rgba(76,29,149,.12);
}
.xn-banner__img { width: 100%; height: auto; display: block; }

/* --- Features section wrapper --- */
.xn-features { padding: 30px 0 40px; background: #fff; }

.xn-feature { padding: 56px 0; }

.xn-feature__eyebrow {
    display: inline-flex; align-items: center; font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em; color: #7c3aed;
    background: rgba(124,58,237,.08); padding: .32rem .95rem; border-radius: 999px; margin-bottom: 14px;
}

.xn-feature__title { font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 800; color: #1e0a3c; line-height: 1.2; margin-bottom: 16px; letter-spacing: -.01em; }

.xn-feature__desc { font-size: .97rem; color: #475569; line-height: 1.8; margin-bottom: 22px; }

.xn-feature__sublabel { font-size: .92rem; font-weight: 700; color: #1e0a3c; margin-bottom: 12px; }

.xn-feature__points { list-style: none; padding: 0; margin: 0 0 4px; display: flex; flex-direction: column; gap: 10px; }
.xn-feature__points li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; font-weight: 500; color: #334155; line-height: 1.5; }
.xn-feature__points li::before {
    content: ''; flex-shrink: 0; margin-top: 7px; width: 7px; height: 7px; border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #d946ef);
}

.xn-feature__img-wrap { position: relative; }
.xn-feature__img { width: 100%; height: auto; display: block; filter: drop-shadow(0 18px 40px rgba(76,29,149,.14)); transition: transform .5s ease; }
.xn-feature__img-wrap:hover .xn-feature__img { transform: scale(1.015); }

.xn-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(124,58,237,.18) 20%, rgba(124,58,237,.18) 80%, transparent); margin: 0 auto; max-width: 1100px; }

/* --- CTA --- */
.xn-cta { background: linear-gradient(135deg, #1e0a3c 0%, #7c3aed 55%, #d946ef 100%); padding: 60px 0; }
.xn-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.xn-cta__title { font-size: 1.9rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.xn-cta__desc { font-size: .98rem; color: rgba(255,255,255,.82); max-width: 520px; margin: 0; line-height: 1.7; }
.xn-cta__btns { display: flex; align-items: center; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.xn-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 10px; font-size: .93rem; font-weight: 700; text-decoration: none; transition: opacity .2s, transform .15s; white-space: nowrap; }
.xn-cta-btn:hover { opacity: .88; transform: translateY(-1px); }
.xn-cta-btn--primary { background: #fff; color: #4c1d95; }
.xn-cta-btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.xn-cta-btn--outline:hover { border-color: #fff; }

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .xn-hero { padding: 110px 0 60px; }
    .xn-feature { padding: 40px 0; }
    .xn-feature__title { font-size: 1.5rem; }
}
@media (max-width: 767.98px) {
    .xn-hero { padding: 100px 0 50px; }
    .xn-banner { padding: 0 0 50px; }
    .xn-banner__frame { border-radius: 16px; }
    .xn-cta__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .xn-cta__btns { width: 100%; }
    .xn-cta-btn { flex: 1; justify-content: center; }
}
@media (max-width: 575.98px) {
    .xn-hero { padding: 90px 0 40px; }
    .xn-feature { padding: 32px 0; }
    .xn-feature__title { font-size: 1.3rem; }
    .xn-feature__desc { font-size: .92rem; }
    .xn-cta { padding: 40px 0; }
    .xn-cta__title { font-size: 1.35rem; }
}
