/* KLAVATO - EXACT ADOBE FLOATING HEADER & HERO DESIGN SYSTEM */
:root {
    --bg-hero-dark: #060911;
    --bg-white: #ffffff;
    --bg-slate: #f8fafc;
    --bg-card: #ffffff;
    --violet-primary: #dc2626;
    --violet-hover: #b91c1c;
    --violet-dark: #b91c1c;
    --violet-light: #fff1f1;
    --violet-glow: rgba(220, 38, 38, 0.25);
    --text-white: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-subtle: #e2e8f0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-primary);
    font-family: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* STANDARD FULL-WIDTH TOP NAVIGATION BANNER HEADER */
/* STANDARD FULL-WIDTH TOP NAVIGATION BANNER HEADER */
.adobe-floating-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 0;
}

.adobe-floating-header {
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    height: 72px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.adobe-brand-group {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.adobe-brand-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.adobe-brand-name-text {
    font-family: 'Jost', 'Montserrat', 'Futura', 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #e10600;
    text-transform: uppercase;
    letter-spacing: 3.5px;
}

.header-purple-pill {
    background: #000000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: none;
    margin-left: 8px;
}

.header-purple-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
}

.btn-purple-header-pill {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: none;
    transition: all 0.2s ease;
}

.btn-purple-header-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    background: #1e293b;
    border-color: #1e293b;
}

.adobe-menu-row {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.adobe-menu-link {
    color: #000000 !important;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

.adobe-menu-link:hover {
    color: #e10600 !important;
}

/* HEADER DROPDOWN SUBMENU FOR PRODUCTS */
.adobe-menu-row li {
    position: relative;
}

.adobe-menu-row li.has-dropdown:hover .adobe-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.adobe-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    width: 230px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    padding: 10px 0;
    margin-top: 12px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

.adobe-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 30px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
    transform: rotate(45deg);
}

.adobe-dropdown-item {
    padding: 0;
}

.adobe-dropdown-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.adobe-dropdown-item a:hover {
    background: #f8fafc;
    color: #b91c1c;
}

.adobe-dropdown-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 100px;
    background: #f1f5f9;
    color: #b91c1c;
    margin-left: auto;
}

/* MOBILE SUBMENU */
.mobile-submenu-list {
    list-style: none;
    padding-left: 16px;
    margin-top: 6px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-submenu-link {
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* PRODUCTS SECONDARY SUB-HEADER SUBMENU BAR */
.products-sub-header-bar {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    margin-top: 72px;
    position: relative;
    z-index: 990;
}

.products-sub-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sub-header-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

.products-sub-menu-list {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
}

.products-sub-menu-item {
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-sub-menu-item:hover {
    color: #b91c1c;
    background: #fff1f1;
    border-color: rgba(220, 38, 38, 0.3);
}

.products-sub-menu-item.highlight {
    color: #ffffff;
    background: linear-gradient(135deg, #b91c1c 0%, #e10600 100%);
    border-color: #b91c1c;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

.products-sub-menu-item.highlight:hover {
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.4);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .products-sub-header-bar {
        margin-top: 72px;
    }
    .products-sub-header-container {
        height: auto;
        padding: 12px 16px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .products-sub-menu-list {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px;
    }
}

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

.grid-apps-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.btn-signin-pill {
    background: transparent;
    color: #000000 !important;
    border: 1.5px solid #000000;
    padding: 9px 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-signin-pill:hover {
    background: #000000;
    color: #ffffff !important;
    border-color: #000000;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SLIDESHOW BANNER (FULL-BLEED MONOLITHIC HERO)
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-slideshow-section {
    width: 100%;
    max-width: 100%;
    margin-top: 72px; /* starts directly below fixed 72px header */
    margin-bottom: 0;
    padding: 0;
}

.hero-slideshow-container {
    position: relative;
    width: 100%;
    height: 560px;
    border-radius: 0;
    overflow: hidden;
    background: #090d16;
    box-shadow: none;
}

.slideshow-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.8s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
    z-index: 2;
}

/* Slide Background Image */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
}

/* Dark gradient overlay for text legibility */
.slide-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 10, 18, 0.92) 0%, rgba(8, 10, 18, 0.75) 45%, rgba(8, 10, 18, 0.15) 100%);
    pointer-events: none;
}

/* Text Content Container (Left Side) */
.slide-content-left {
    position: relative;
    z-index: 5;
    max-width: 650px;
    padding: 125px 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slide-main-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.6px;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.slide-main-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
    max-width: 560px;
}

/* Rounded Pill CTA Button */
.slide-pill-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.slide-pill-cta-btn:hover {
    background: #e2e8f0;
    color: #020617;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* TRUST BADGES (RIGHT SIDE) */
.slide-trust-badge-top {
    position: absolute;
    top: 36px;
    right: 48px;
    z-index: 5;
}

.trust-badge-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 3px solid #f1f5f9;
}

.badge-year {
    font-size: 11px;
    font-weight: 800;
    color: #b91c1c;
    letter-spacing: 1px;
    line-height: 1;
}

.badge-text {
    font-size: 9px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
    margin: 3px 0 1px 0;
    padding: 0 4px;
}

.badge-sub {
    font-size: 7px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
}

.slide-trust-badge-bottom {
    position: absolute;
    bottom: 36px;
    right: 48px;
    z-index: 5;
    display: flex;
    gap: 10px;
}

.badge-mini-pill {
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 11px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ── CONTROLS BAR (BOTTOM ARROWS + DOTS) ── */
.slideshow-controls-bar {
    position: absolute;
    bottom: 36px;
    left: 80px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
}

.slide-nav-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    padding: 0;
}

.slide-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: #ffffff;
    transform: scale(1.08);
}

.slide-dots-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slide-dots-container .slide-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slide-dots-container .slide-dot.active {
    background: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.slide-dots-container .slide-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
}

/* ── PROGRESS BAR ── */
.slide-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 10;
}

.slide-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #b91c1c, #ef4444, #fca5a5);
    transition: width 0.1s linear;
}

/* ── RESPONSIVE DESIGN ── */
@media (max-width: 1024px) {
    .hero-slideshow-section { padding: 0; margin-top: 72px; width: 100%; max-width: 100%; }
    .hero-slideshow-container { height: 580px; border-radius: 0; }
    .slide-content-left { padding: 160px 0 0 40px; max-width: 90%; }
    .slide-main-title { font-size: 34px; }
    .slideshow-controls-bar { left: 40px; bottom: 28px; }
}

@media (max-width: 768px) {
    /* HERO SLIDESHOW MOBILE: MOVE TEXT LOWER (RIGHT ABOVE BOTTOM CONTROLS) */
    .hero-slideshow-section { padding: 0; margin-top: 64px; width: 100%; max-width: 100%; }
    .hero-slideshow-container { height: 580px; min-height: 580px; border-radius: 0; }
    .slide-content-left {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        height: 100% !important;
        padding: 0 20px 85px 20px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .slide-main-title { font-size: 24px !important; line-height: 1.2 !important; margin-bottom: 8px !important; }
    .slide-main-desc { font-size: 13px !important; line-height: 1.45 !important; margin-bottom: 16px !important; }
    .slide-pill-cta-btn { font-size: 13px !important; padding: 10px 22px !important; align-self: flex-start !important; }
    .slideshow-controls-bar { left: 20px !important; bottom: 20px !important; z-index: 10 !important; }

    /* AI CHATBOX SECTION MOBILE: ALIGN BUTTON & TEXT ON SAME LINE */
    .KLAVATO-purple-bar-section {
        padding: 60px 16px 60px 16px !important;
    }
    .purple-chatbox-longbar {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 8px 12px 8px 16px !important;
        margin: 16px 0 !important;
        border-radius: 50px !important;
        gap: 8px !important;
    }
    .purple-chatbox-left {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        flex: 1 !important;
        min-width: 0 !important;
    }
    .purple-chatbox-icon {
        width: 36px !important;
        height: 36px !important;
        padding: 4px !important;
        flex-shrink: 0 !important;
    }
    .purple-chatbox-text {
        font-size: 13.5px !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        text-align: left !important;
    }
    .purple-chatbox-sendbtn {
        width: 38px !important;
        height: 38px !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* PURPLE FLOATING PROMPT PILLS ON MOBILE: ALIGN ON SAME ROW AT BOTTOM */
    .purple-bar-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
    }
    .floating-pill {
        position: static !important;
        font-size: 11.5px !important;
        padding: 7px 14px !important;
        margin: 3px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 30px !important;
        white-space: nowrap !important;
    }
}

/* ==========================================================================
   SPLIT HERO SECTION (MATCHING REFERENCE IMAGE - PERFECT COMPACT BANNER)
/* ==========================================================================
   SPLIT HERO SECTION (PURPLE TOP SPACE + PROPORTIONED PANEL)
   ========================================================================== */
.split-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 460px;
    margin-top: 96px; /* Top page space filled with purple */
    background: #b91c1c;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .split-hero-container {
        grid-template-columns: 1.05fr 0.95fr;
        height: 480px;
    }
}

/* LEFT SIDE IMAGE COLUMN - FITS FULL PHOTO TOP TO BOTTOM */
.split-hero-image-col {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b91c1c;
}

.split-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* RIGHT SIDE SOLID PURPLE PANEL */
.split-hero-content-col {
    background: #b91c1c; /* Vibrant solid purple matching reference layout */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px 44px 0 44px;
    position: relative;
    box-sizing: border-box;
    height: 100%;
}

.split-hero-text-box {
    max-width: 560px;
}

.split-hero-tag {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
    display: inline-block;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 2px;
}

.split-hero-title {
    font-family: 'Plus Jakarta Sans', 'Space Grotesk', system-ui, sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.8px;
    color: #ffffff;
    margin-bottom: 14px;
}

.split-hero-subtext {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.94);
    font-weight: 500;
    margin-bottom: 0;
}

/* BOTTOM FLUSH ACTION BUTTONS (MATCHING REFERENCE IMAGE) */
.split-hero-bottom-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: calc(100% + 88px); /* Flush to edges of right column */
    margin-left: -44px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.split-btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.btn-left-action {
    background: #b91c1c; /* Deep solid purple */
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-left-action:hover {
    background: #581c87;
    color: #ffffff;
}

.btn-right-action {
    background: #581c87; /* Darker solid purple accent */
    color: #ffffff;
}

.btn-right-action:hover {
    background: #991b1b;
    color: #ffffff;
}

.adobe-sub-tagline {
    font-size: 15px;
    font-weight: 800;
    color: #fee2e2;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.adobe-giant-heading {
    font-size: 76px;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -2.5px;
    color: #ffffff;
    margin-bottom: 24px;
}

.adobe-giant-heading span {
    display: block;
}

.adobe-hero-subtext {
    font-size: 18px;
    color: #fee2e2;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 520px;
}

.btn-free-trial-white {
    background: #ffffff;
    color: #581c87;
    border: none;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: none;
}

.btn-free-trial-white:hover {
    background: #fee2e2;
    color: #7f1d1d;
    transform: translateY(-2px);
    box-shadow: none;
}

/* RIGHT HERO IMAGE CONTAINER */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 620px;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(248, 113, 113, 0.35);
}

.hero-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(26, 8, 48, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(248, 113, 113, 0.4);
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* BOTTOM HERO CAROUSEL / TAB STRIP */
.adobe-bottom-carousel-strip {
    max-width: 1400px;
    margin: 40px auto 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-cards-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    flex: 1;
}

.carousel-card {
    background: rgba(26, 8, 48, 0.7);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(248, 113, 113, 0.3);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.carousel-card:hover {
    background: rgba(185, 28, 28, 0.85);
    border-color: rgba(248, 113, 113, 0.6);
}

.carousel-card.active {
    background: #ffffff;
    color: #7f1d1d;
    border-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.carousel-card-title {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-card-arrow {
    font-size: 14px;
    font-weight: 800;
}

.carousel-next-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.carousel-next-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* SECTION CONTAINERS */
.page-section {
    padding: 100px 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px auto;
}

.section-tag {
    color: var(--violet-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-headline {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1.2px;
}

.section-subtext {
    font-size: 18px;
    color: var(--text-secondary);
}

/* WHITE CARDS GRID */
.white-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.white-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.white-card:hover {
    border-color: var(--violet-primary);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.14);
    transform: translateY(-6px);
}

.card-icon-avatar {
    width: 60px;
    height: 60px;
    background: var(--violet-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet-primary);
    margin-bottom: 24px;
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.card-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* FOOTER - RICH PURPLE & VIOLET THEME */
.global-site-footer {
    background: linear-gradient(180deg, #7f1d1d 0%, #1e053a 100%);
    border-top: 1px solid rgba(248, 113, 113, 0.3);
    color: #ffffff;
    padding: 60px 32px 40px 32px;
}

.footer-legal-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(233, 213, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13.5px;
    color: #fee2e2;
    font-weight: 500;
}

.footer-legal-bar a {
    color: #fee2e2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-bar a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* KLAVATO - 4-COLUMN PRICING TABLE STYLES (PURPLE BACKGROUND & WHITE TEXT) */
/* KLAVATO - 4-COLUMN PRICING TABLE STYLES (RED BACKGROUND & WHITE TEXT) */
.pricing-section-wrapper {
    background: radial-gradient(circle at 50% 30%, rgba(220, 38, 38, 0.4) 0%, rgba(45, 10, 10, 0.98) 70%), #2a0808;
    padding: 90px 24px;
    border-top: 1px solid rgba(248, 113, 113, 0.25);
    border-bottom: 1px solid rgba(248, 113, 113, 0.25);
    color: #ffffff;
}

.pricing-section-container {
    max-width: 1440px;
    margin: 0 auto;
}

.pricing-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px auto;
}

.pricing-main-headline {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.2px;
    margin-bottom: 14px;
}

.pricing-sub-headline {
    font-size: 18px;
    color: #fee2e2;
    line-height: 1.5;
}

.norton-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.norton-price-card {
    background: rgba(60, 12, 12, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(248, 113, 113, 0.3);
    border-radius: 20px;
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.norton-price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(248, 113, 113, 0.7);
    box-shadow: 0 20px 45px rgba(220, 38, 38, 0.4);
}

/* Deluxe Column Highlight */
.norton-price-card.pop-deluxe {
    border-color: #f87171;
}

.pop-badge-pill {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 18px;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.5);
}

/* Advanced Column (Highest Plan - Has Everything!) */
.norton-price-card.adv-highest {
    background: rgba(75, 15, 15, 0.95);
    border: 2px solid #ef4444;
    padding-top: 52px;
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.35);
}

.adv-banner-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #b91c1c, #ef4444);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 8px;
    text-align: center;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.plan-subtitle-sm {
    font-size: 14px;
    color: #f87171;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-title-lg {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.year-selector-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.year-pill-btn {
    background: #dc2626;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
}

.year-pill-btn.outlined {
    background: transparent;
    border: 1px solid rgba(248, 113, 113, 0.5);
    color: #fee2e2;
}

.price-big-display {
    font-size: 54px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1.5px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.price-big-display span:first-child {
    font-size: 54px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.5px;
}

.price-big-display span:last-child:not(:first-child) {
    font-size: 14px;
    font-weight: 600;
    color: #fee2e2;
    letter-spacing: 0;
}

.price-monthly-breakdown {
    font-size: 13px;
    font-weight: 700;
    color: #fee2e2;
    text-align: center;
    margin-bottom: 12px;
}

.price-renew-legal {
    font-size: 11px;
    color: #fca5a5;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 26px;
}

.btn-yellow-pill {
    background: #facc15;
    color: #000000;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-bottom: 28px;
    box-shadow: none;
    transition: all 0.2s ease;
}

.btn-yellow-pill:hover {
    background: #ffffff;
    color: #7f1d1d;
    transform: translateY(-2px);
    box-shadow: none;
}

.check-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    font-size: 13px;
    color: #ffffff;
}

.check-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
    color: #ffffff;
}

.check-features-list li strong {
    color: #ffffff;
}

.check-features-list li svg {
    color: #f87171;
    flex-shrink: 0;
    margin-top: 2px;
}

/* KLAVATO - DOME GUARD SECTION STYLES */
.dome-guard-section {
    background: #ffffff;
    padding: 100px 32px;
    border-bottom: 1px solid #e2e8f0;
}

.dome-guard-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.dome-guard-img-frame {
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    border: 1px solid #e2e8f0;
    position: relative;
}

.dome-guard-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dome-guard-badge-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(16px);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.dome-guard-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* KLAVATO - EYE-CATCHING PERIMETER SECTION TYPOGRAPHY & BULLETS */
.dome-guard-tag {
    color: #dc2626;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fee2e2;
    padding: 6px 16px;
    border-radius: 30px;
}

.dome-guard-headline {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -2px;
    margin-bottom: 22px;
    line-height: 1.08;
    font-family: 'Outfit', sans-serif;
}

.dome-guard-headline span {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dome-guard-lead {
    font-size: 19px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 32px;
    font-weight: 500;
}

.dome-guard-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.dome-guard-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.5;
}

.dome-guard-bullets li .bullet-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fee2e2;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.btn-purple-rectangle {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: #ffffff !important;
    border: none;
    padding: 16px 38px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: none;
    transition: all 0.25s ease;
}

.btn-purple-rectangle:hover {
    transform: translateY(-2px);
    box-shadow: none;
    background: linear-gradient(135deg, #f87171 0%, #991b1b 100%);
}

/* KLAVATO - SOLO / FAMILY / BUSINESS & ANNUAL / MONTHLY PLAN SWITCHER */
.pricing-controls-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 28px auto 44px auto;
}

.pricing-category-switcher-bar, .pricing-cycle-switcher-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px;
    border-radius: 40px;
    backdrop-filter: blur(12px);
}

.plan-switch-btn, .cycle-switch-btn {
    background: transparent;
    border: none;
    color: #fca5a5;
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-switch-btn:hover, .cycle-switch-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.plan-switch-btn.active {
    background: #facc15;
    color: #7f1d1d;
    box-shadow: none;
}

.cycle-switch-btn.active {
    background: linear-gradient(135deg, #e10600 0%, #b91c1c 100%);
    color: #ffffff;
    box-shadow: none;
}

.discount-tag-pill {
    background: #4ade80;
    color: #064e3b;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

/* KLAVATO - CLEAN INTERACTIVE FEATURE SHOWCASE SLIDER & UPGRADED PILLS */
.feature-showcase-section {
    padding: 100px 32px;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    text-align: center;
}

.feature-tabs-pill-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 48px auto;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.feature-tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #475569;
    padding: 12px 24px;
    border-radius: 36px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-tab-btn:hover {
    color: #b91c1c;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-tab-btn.active {
    background: linear-gradient(135deg, #e10600 0%, #b91c1c 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(225, 6, 0, 0.35);
    transform: scale(1.02);
}

/* KLAVATO - 4-PILLAR SECURITY GRID & MODULE SHOWCASE */
.security-grid-section {
    padding: 100px 32px;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
}

.security-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 56px;
}

.security-pillar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.security-pillar-card:hover {
    transform: translateY(-4px);
    border-color: #dc2626;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.12);
}

.pillar-preview-header {
    background: #0f172a;
    border-radius: 16px;
    padding: 24px;
    color: #ffffff;
    margin-bottom: 28px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.pillar-badge-tag {
    display: inline-block;
    background: var(--violet-light);
    color: var(--violet-primary);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.pillar-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.pillar-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pillar-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.pillar-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.pillar-bullet-item svg {
    color: #dc2626;
    flex-shrink: 0;
}

/* KLAVATO - ULTRA-PREMIUM PURPLE TRUST BADGES SECTION */
.purple-trust-section {
    padding: 100px 32px;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    text-align: center;
}

/* PURPLE LONG CHATBOX BAR WITH SCATTERED FLOATING PROMPTS (PRIMARY HERO SECTION) */
/* PURPLE CHATBOX SECTION (KLAVATO AI GUARDIAN) */
/* RED LONG CHATBOX BAR WITH SCATTERED FLOATING PROMPTS (PRIMARY HERO SECTION) */
/* RED CHATBOX SECTION (KLAVATO AI GUARDIAN) */
.KLAVATO-purple-bar-section {
    padding: 72px 24px 80px 24px;
    margin-top: 0;
    background: radial-gradient(circle at 70% 30%, rgba(220, 38, 38, 0.4) 0%, rgba(45, 10, 10, 0.95) 70%), #2a0808;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.KLAVATO-purple-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.KLAVATO-purple-bar-header {
    max-width: 720px;
    margin: 0 auto 36px auto;
}

.purple-bar-headline {
    font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #ffffff;
}

.purple-bar-headline .ai-text-purple-highlight {
    color: #fca5a5;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.purple-bar-subtext {
    font-size: 16px;
    color: #fee2e2;
    line-height: 1.55;
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
}

/* PROMPT PILLS & CHATBAR CONTAINER */
.purple-bar-wrapper {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pills-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.floating-pill {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-pill:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: #f87171;
    color: #b91c1c;
    box-shadow: 0 10px 28px rgba(239, 68, 68, 0.4);
}

/* THE CHATBOX LONG BAR */
.purple-chatbox-longbar {
    width: 100%;
    max-width: 720px;
    margin: 6px auto;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(239, 68, 68, 0.45);
    border-radius: 50px;
    padding: 12px 16px 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.purple-chatbox-longbar:hover {
    transform: translateY(-2px);
    border-color: #ef4444;
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.25);
}

.purple-chatbox-left {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.purple-chatbox-icon {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    flex-shrink: 0;
    box-shadow: none;
}

.chatbox-company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.purple-chatbox-text {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.4px;
}

.purple-chatbox-sendbtn {
    background: #dc2626;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.purple-chatbox-longbar:hover .purple-chatbox-sendbtn {
    background: #ef4444;
    transform: scale(1.12);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.5);
}
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slide-category-pill {
    background: rgba(225, 6, 0, 0.12);
    color: #dc2626;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.slide-title-text {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.slide-description {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}

.slide-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.slide-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}

.slide-checklist li strong {
    color: #0f172a;
}

/* SLIDER ARROW CONTROLS & DOTS */
.slider-arrow-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.slider-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #fee2e2;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.08);
}

.slider-arrow-btn:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
    transform: scale(1.08);
}

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

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

.slider-dot.active {
    width: 28px;
    border-radius: 10px;
    background: #dc2626;
}

/* ADVANCED AI GUARDIAN SHOWCASE SECTION (BENTO MATRIX LAYOUT) */
.ai-guardian-showcase-section {
    padding: 110px 32px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfaff 100%);
    border-bottom: 1px solid #f1f5f9;
}

.ai-guardian-showcase-container {
    max-width: 1380px;
    margin: 0 auto;
}

.ai-guardian-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 56px auto;
}

.ai-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(225, 6, 0, 0.12);
    border: 1px solid rgba(225, 6, 0, 0.3);
    color: #dc2626;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.pulse-dot-purple {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e10600;
    box-shadow: 0 0 10px #f87171;
}

.ai-guardian-headline {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -1.8px;
    line-height: 1.25;
    margin-bottom: 18px;
    padding-bottom: 6px;
    background: linear-gradient(135deg, #0f172a 15%, #991b1b 65%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-guardian-subtext {
    font-size: 17px;
    color: #475569;
    line-height: 1.65;
    font-weight: 500;
}

/* BENTO GRID: LEFT MEDIA CARD + RIGHT 2x2 MATRIX */
.ai-guardian-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    align-items: stretch;
}

/* LEFT MEDIA CARD */
.ai-bento-media-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(225, 6, 0, 0.25);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ai-media-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ai-media-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-bento-media-card:hover .ai-media-img-wrapper img {
    transform: scale(1.05);
}

.ai-media-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 30%, rgba(15, 23, 42, 0.85) 100%);
}

.ai-media-floating-telemetry {
    position: relative;
    z-index: 3;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.telemetry-pill {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.telemetry-pill.sub {
    background: rgba(220, 38, 38, 0.35);
    border-color: rgba(248, 113, 113, 0.4);
    font-size: 12px;
    color: #fee2e2;
}

.pulse-dot-green {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0BDA51;
    box-shadow: 0 0 12px #00FF41;
    animation: pulseGlowGreen 2s infinite;
}

@keyframes pulseGlowGreen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(11, 218, 81, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(11, 218, 81, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(11, 218, 81, 0); }
}

/* RIGHT 2x2 BENTO CARDS */
.ai-bento-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ai-bento-card {
    background: #ffffff;
    border: 1px solid #fee2e2;
    border-radius: 24px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.05);
    position: relative;
    overflow: hidden;
}

.ai-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e10600, #b91c1c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-bento-card:hover {
    transform: translateY(-6px);
    border-color: #e10600;
    box-shadow: 0 20px 45px rgba(225, 6, 0, 0.16);
}

.ai-bento-card:hover::before {
    opacity: 1;
}

.bento-card-icon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.bento-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e10600 0%, #b91c1c 100%);
    color: #ffffff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(225, 6, 0, 0.25);
}

.bento-tag-sm {
    font-size: 10px;
    font-weight: 800;
    color: #dc2626;
    background: rgba(225, 6, 0, 0.12);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.bento-card-title {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.4px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.bento-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.55;
    font-weight: 500;
}

.ai-guardian-cta-row {
    text-align: center;
    margin-top: 48px;
}

/* INTERACTIVE ACCORDION DROPDOWN FEATURE SECTION STYLES */
.guardian-accordion-section {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid #fee2e2;
}

.guardian-accordion-header {
    text-align: center;
    margin-bottom: 40px;
}

.guardian-accordion-headline {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.guardian-accordion-subheadline {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.guardian-accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.guardian-accordion-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

details.guardian-accordion-item {
    background: #ffffff;
    border: 1px solid #fee2e2;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.04);
}

details.guardian-accordion-item[open] {
    border-color: #e10600;
    box-shadow: 0 10px 30px rgba(225, 6, 0, 0.12);
    background: #faf5ff;
}

details.guardian-accordion-item summary {
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    transition: color 0.2s ease;
}

details.guardian-accordion-item summary::-webkit-details-marker {
    display: none;
}

details.guardian-accordion-item summary:hover {
    color: #dc2626;
}

.accordion-title-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-icon-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(225, 6, 0, 0.12);
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.accordion-chevron-icon {
    width: 20px;
    height: 20px;
    color: #e10600;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

details.guardian-accordion-item[open] .accordion-chevron-icon {
    transform: rotate(180deg);
}

.accordion-content-body {
    padding: 0 24px 20px 70px;
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    font-weight: 500;
}

.purple-trust-section {
    padding: 100px 32px;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    text-align: center;
}

.purple-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.purple-trust-card {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 12px !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible !important;
}

.purple-trust-card::before {
    display: none !important;
}

.purple-trust-card:hover {
    transform: translateY(-8px);
    box-shadow: none !important;
}

.purple-badge-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e10600 0%, #b91c1c 100%);
    border: 4px solid #ffffff;
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    position: relative;
    transition: transform 0.3s ease;
    text-shadow: none !important;
}

.purple-badge-circle::after {
    display: none !important;
}

.purple-trust-card:hover .purple-badge-circle {
    transform: scale(1.08);
    box-shadow: none !important;
}

.purple-badge-unit {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.95;
    margin-top: -2px;
    color: #ffffff;
    text-shadow: none !important;
}

.purple-trust-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.purple-trust-subtext {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    font-weight: 500;
    max-width: 240px;
}

.feature-slide-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    transition: all 0.3s ease;
}

.slide-graphic-frame {
    background: #0f172a;
    border-radius: 20px;
    padding: 32px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.25);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.slide-category-pill {
    display: inline-block;
    background: var(--violet-light);
    color: var(--violet-primary);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.slide-title-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.slide-desc-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.slide-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.slide-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.slide-bullet-item svg {
    color: var(--violet-primary);
    flex-shrink: 0;
}

/* EXPERT GUIDANCE BLOG SECTION STYLES */
.KLAVATO-blog-section {
    padding: 100px 32px 110px 32px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.KLAVATO-blog-container {
    max-width: 1380px;
    margin: 0 auto;
}

.KLAVATO-blog-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 56px auto;
}

.KLAVATO-blog-headline {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.12;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #0f172a 15%, #991b1b 65%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.KLAVATO-blog-subtext {
    font-size: 17px;
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
}

.KLAVATO-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

@media (max-width: 640px) {
    .KLAVATO-blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: #ffffff;
    border: 1px solid #fee2e2;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: #e10600;
    box-shadow: 0 20px 45px rgba(225, 6, 0, 0.16);
}

.blog-card-media {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #0f172a;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.06);
}

.blog-tag-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 24px 22px 26px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    letter-spacing: -0.4px;
    margin-bottom: 12px;
}

.blog-card-snippet {
    font-size: 14px;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.blog-author-name {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

.blog-read-link {
    font-size: 13px;
    font-weight: 800;
    color: #dc2626;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-read-link {
    color: #b91c1c;
}

/* ==========================================================================
   MOBILE HEADER & LIQUID/ICE MOBILE MENU DRAWER (RESPONSIVE SYSTEM)
   ========================================================================== */

/* 3-BAR HAMBURGER BUTTON (HIDDEN ON DESKTOP) */
.mobile-hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-hamburger-btn .bar {
    width: 22px;
    height: 2.5px;
    background-color: #000000;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* HAMBURGER ANIMATION WHEN OPEN */
.mobile-hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ═══════════ SKY-STYLE CLEAN WHITE ACCORDION MOBILE MENU OVERLAY DRAWER ═══════════ */
.mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: #ffffff;
    z-index: 999999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0.25s;
    pointer-events: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    padding: 0;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0s;
    pointer-events: auto;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    background: #ffffff;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-accordion-item {
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-accordion-header,
.mobile-direct-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: #ffffff;
    border: none;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-accordion-header:hover,
.mobile-direct-link:hover {
    background: #f8fafc;
    color: #b91c1c;
}

.mobile-direct-link.highlight-purple {
    color: #b91c1c;
    font-weight: 800;
}

.mobile-chevron-icon {
    color: #475569;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.mobile-accordion-item.active .mobile-chevron-icon {
    transform: rotate(180deg);
    color: #b91c1c;
}

.mobile-accordion-header.active {
    color: #0f172a;
    background: #ffffff;
    font-weight: 700;
}

.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #f8fafc;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-accordion-item.active .mobile-accordion-content {
    border-top: 1px solid #edf2f7;
}

.mobile-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px 14px 32px;
    color: #334155;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.mobile-submenu-list li:last-child .mobile-submenu-link {
    border-bottom: none;
}

.mobile-submenu-link:hover {
    background: #f1f5f9;
    color: #b91c1c;
}

.mobile-sub-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 100px;
    background: #e2e8f0;
    color: #475569;
    margin-left: auto;
}

.mobile-sub-badge.popular {
    background: rgba(220, 38, 38, 0.12);
    color: #b91c1c;
}

.mobile-sub-badge.suite {
    background: #b91c1c;
    color: #ffffff;
}

.mobile-menu-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: #ffffff;
    margin-top: auto;
    border-top: 1px solid #e2e8f0;
}

/* RED MOBILE HEADER CTA BUTTON */
.mobile-header-cta-btn {
    display: none;
    background: #e10600;
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid #e10600;
    white-space: nowrap;
    transition: all 0.2s ease;
    z-index: 1001;
}

.mobile-header-cta-btn:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

/* ==========================================================================
   MOBILE RESPONSIVE MEDIA QUERIES (MAX-WIDTH: 992px & 768px)
   ========================================================================== */
@media (max-width: 992px) {
    .adobe-menu-row,
    .adobe-header-right-actions {
        display: none !important;
    }

    .adobe-floating-header-wrapper {
        padding: 0;
        top: 0;
    }

    .adobe-floating-header {
        height: 64px !important;
        padding: 0 16px !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .mobile-hamburger-btn {
        display: flex !important;
        order: 1 !important;
        margin: 0 !important;
    }

    .adobe-brand-group {
        order: 2 !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
        z-index: 1001 !important;
    }

    .mobile-header-cta-btn {
        display: none !important;
    }

    /* MEET KLAVATO GUARDIAN HERO SECTION ON MOBILE */
    .KLAVATO-purple-bar-section {
        padding: 110px 20px 80px 20px !important;
        min-height: auto !important;
    }

    .purple-bar-headline {
        font-size: 36px !important;
        line-height: 1.15 !important;
        letter-spacing: -1px !important;
    }

    .purple-bar-subtext {
        font-size: 16px !important;
    }

    .purple-bar-wrapper {
        padding: 30px 0 40px 0 !important;
    }

    /* SCATTERED PILLS MOBILE LAYOUT */
    .floating-pill {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        display: inline-flex !important;
        margin: 6px !important;
        font-size: 12.5px !important;
        padding: 10px 18px !important;
        animation: none !important;
    }

    .purple-chatbox-longbar {
        border-radius: 50px !important;
        padding: 10px 14px 10px 16px !important;
        margin: 20px 0 !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }

    .purple-chatbox-left {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: auto !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    .purple-chatbox-icon {
        width: 38px !important;
        height: 38px !important;
        padding: 4px !important;
        flex-shrink: 0 !important;
    }

    .purple-chatbox-text {
        font-size: 13.5px !important;
        line-height: 1.25 !important;
    }

    .purple-chatbox-sendbtn {
        width: 38px !important;
        height: 38px !important;
        flex-shrink: 0 !important;
    }

    /* COMPLETE DIGITAL PROTECTION GRID ON MOBILE */
    .dome-guard-section {
        padding: 60px 20px !important;
    }

    .dome-guard-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .dome-guard-headline {
        font-size: 32px !important;
    }

    /* PRICING GRID ON MOBILE */
    .pricing-section-wrapper {
        padding: 60px 16px !important;
    }

    .norton-pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* BLOG GRID ON MOBILE */
    .KLAVATO-blog-section {
        padding: 60px 16px !important;
    }

    .KLAVATO-blog-grid {
        grid-template-columns: 1fr !important;
    }

    .KLAVATO-blog-headline {
        font-size: 30px !important;
    }

    /* FOOTER ON MOBILE */
    .footer-top-brand-strip {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px !important;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* RECTANGULAR VIOLET SQUARE FREE TRIAL BUTTON */
.btn-violet-square-btn {
    background: #e10600;
    color: #ffffff !important;
    border: 1px solid #e10600;
    padding: 10px 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: none;
}

.btn-violet-square-btn:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(225, 6, 0, 0.25);
}

/* HEADER MEGA MENU DROPDOWN SYSTEM */
.menu-item-has-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 9px;
    margin-left: 4px;
    transition: transform 0.25s ease;
    display: inline-block;
}

.menu-item-has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.mega-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 620px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1200;
}

.menu-item-has-dropdown:hover .mega-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mega-menu-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
    width: 680px;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.2s ease;
}

.mega-menu-item:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.mega-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mega-menu-item strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.mega-menu-item span {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.3;
    display: block;
}

/* LIVE CYBERSECURITY THREAT TICKER (HOMEPAGE) */
.live-threat-counter-section {
    background: linear-gradient(180deg, #090d16 0%, #04060b 100%);
    padding: 64px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.live-threat-container {
    max-width: 1400px;
    margin: 0 auto;
}

.live-threat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.live-badge-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pulse-dot-green {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px #22c55e;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.live-threat-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
}

.live-rate-tag {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(167, 139, 250, 0.4);
    color: #c4b5fd;
    font-family: 'Space Grotesk', monospace;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
}

.live-threat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.live-threat-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.live-threat-card:hover {
    transform: translateY(-4px);
    border-color: #dc2626;
}

.live-stat-number {
    font-family: 'Space Grotesk', monospace;
    font-size: 40px;
    font-weight: 800;
    color: #4ade80;
    letter-spacing: -1px;
    margin-bottom: 8px;
    line-height: 1.1;
}

.live-stat-number.violet { color: #f87171; }
.live-stat-number.red { color: #f87171; }
.live-stat-number.blue { color: #38bdf8; }

.live-stat-label {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.live-stat-subtext {
    font-size: 12px;
    color: #94a3b8;
}

/* USE CASES PAGE STYLES */
.use-cases-hero {
    background: linear-gradient(180deg, #090d16 0%, #170b2c 100%);
    padding: 130px 24px 70px 24px;
    text-align: center;
    color: #ffffff;
}

.use-cases-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.use-cases-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.25);
    border: 1px solid rgba(167, 139, 250, 0.4);
    color: #c4b5fd;
    font-family: 'Space Grotesk', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.use-cases-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -1.2px;
}

.use-cases-subtext {
    font-size: 17px;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 36px;
}

.use-cases-tab-bar {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px;
    border-radius: 50px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.use-case-tab-btn {
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.use-case-tab-btn.active, .use-case-tab-btn:hover {
    background: #b91c1c;
    color: #ffffff;
}

.use-cases-main-section {
    padding: 80px 24px;
    background: #ffffff;
}

.use-cases-main-container {
    max-width: 1300px;
    margin: 0 auto;
}

.use-case-panel {
    display: none;
}

.use-case-panel.active {
    display: block;
}

.use-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.use-case-tag-pill {
    color: #b91c1c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.use-case-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.use-case-lead {
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 28px;
}

.fact-callout-box {
    background: #f8fafc;
    border-left: 4px solid #b91c1c;
    padding: 18px 22px;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 14px;
    font-size: 14px;
    color: #1e293b;
    line-height: 1.55;
    margin-bottom: 32px;
}

.fact-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.subsection-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.use-case-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.use-case-feature-list li {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.55;
}

.use-case-feature-list li strong {
    color: #0f172a;
}

.use-case-cta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-outline-dark {
    border: 1px solid #0f172a;
    color: #0f172a;
    background: transparent;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline-dark:hover {
    background: #0f172a;
    color: #ffffff;
}

.use-case-card-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
    height: 480px;
}

.use-case-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-stat-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 24px;
    border-radius: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-big {
    font-family: 'Space Grotesk', monospace;
    font-size: 36px;
    font-weight: 800;
    color: #4ade80;
}

.stat-lbl {
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
}

/* ==========================================================================
   SOLID DEEP BLACK ENTERPRISE FOOTER (#000000 WITH WHITE WRITING)
   ========================================================================== */
.global-site-footer {
    background: #000000 !important;
    color: #ffffff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 64px 0 40px 0;
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* NAVIGATION GRID WITH LOGO ON RIGHT */
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 36px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #ffffff !important;
    margin-bottom: 22px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-link-item a {
    font-size: 14.5px;
    color: #cbd5e1 !important;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link-item a:hover {
    color: #ffffff !important;
    transform: translateX(4px);
}

.footer-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    display: inline-block;
    flex-shrink: 0;
}

/* RIGHT SIDE IMAGE LOGO ONLY */
.footer-logo-side-col {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 4px;
}

.footer-side-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-side-logo-img:hover {
    transform: scale(1.06);
    opacity: 1;
}

/* BOTTOM BAR WITH LEGAL LINKS ONLY */
.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13.5px;
}

.footer-legal-links span {
    color: #64748b;
    font-weight: 500;
}

.footer-legal-links a {
    color: #cbd5e1 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #ef4444 !important;
    text-decoration: underline;
}

/* RESPONSIVE FOOTER MEDIA QUERIES */
@media (max-width: 1100px) {
    .mega-dropdown-menu { display: none !important; }
    .live-threat-grid { grid-template-columns: repeat(2, 1fr); }
    .use-case-grid { grid-template-columns: 1fr; gap: 36px; }
    .use-case-card-visual { height: 320px; }
    .footer-nav-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 32px; }
    .footer-logo-side-col { justify-content: flex-start; padding-top: 16px; }
}

@media (max-width: 640px) {
    .live-threat-grid { grid-template-columns: 1fr; }
    .use-cases-headline { font-size: 32px; }
    .use-case-title { font-size: 26px; }
    .footer-nav-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 28px; }
    .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ═══════════ DOWNLOAD KLAVATO SECTION ═══════════ */
.KLAVATO-download-section {
    padding: 100px 32px;
    background: linear-gradient(180deg, #0b0f19 0%, #030712 100%);
    color: #ffffff;
    border-top: 1px solid rgba(225, 6, 0, 0.2);
}

.KLAVATO-download-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.download-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(225, 6, 0, 0.12);
    border: 1px solid rgba(225, 6, 0, 0.35);
    color: #f87171;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-main-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 12px;
}

.download-sub-headline {
    font-size: 17px;
    color: #94a3b8;
    max-width: 680px;
    margin: 0 auto 48px auto;
    line-height: 1.6;
}

.download-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.download-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-4px);
    border-color: #e10600;
    box-shadow: 0 20px 40px rgba(225, 6, 0, 0.2);
}

.download-card.primary-win {
    border-color: rgba(225, 6, 0, 0.5);
    background: linear-gradient(145deg, #1e1b4b 0%, #0f172a 100%);
    box-shadow: 0 16px 40px rgba(220, 38, 38, 0.25);
}

.download-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.os-icon-box {
    font-size: 32px;
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.os-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 2px 0;
}

.os-spec {
    font-size: 12px;
    color: #ef4444;
    font-weight: 600;
}

.download-card-desc {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 28px;
}

.btn-download-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #b91c1c 0%, #e10600 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 24px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
}

.btn-download-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(225, 6, 0, 0.5);
    color: #ffffff;
}

.btn-download-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.25s ease;
}

.btn-download-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #e10600;
    color: #ffffff;
}

.download-meta-legal {
    font-size: 12px;
    color: #64748b;
    margin-top: 14px;
    text-align: center;
}

@media (max-width: 992px) {
    .download-cards-grid { grid-template-columns: 1fr; }
    .download-main-headline { font-size: 32px; }
}

/* ═══════════ MONZO-STYLE VERTICAL SPLIT CARDS GRID SECTION ═══════════ */
.nanny-monzo-card-section {
    padding: 70px 0 90px 0;
    background: #ffffff;
}

.nanny-monzo-vertical-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.monzo-vertical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
    max-width: 1320px;
    margin: 0 auto;
}

.monzo-vertical-card {
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px rgba(220, 38, 38, 0.3);
    border: 1px solid rgba(225, 6, 0, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: linear-gradient(135deg, #b91c1c 0%, #b91c1c 50%, #dc2626 100%);
}

.monzo-vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(225, 6, 0, 0.5);
}

/* TOP MEDIA BOX (TOP COLOR BLOCK WITH IMAGE MOCKUP) */
.monzo-vcard-top {
    height: 280px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

/* CARDS TOP: FULL COVER IMAGES (NO BACKGROUND) */
.monzo-vcard-top.top-nanny,
.monzo-vcard-top.top-scam,
.monzo-vcard-top.top-dataremover {
    background: transparent;
    padding: 0;
}

.monzo-vcard-top.top-nanny .monzo-vcard-img-frame,
.monzo-vcard-top.top-scam .monzo-vcard-img-frame,
.monzo-vcard-top.top-dataremover .monzo-vcard-img-frame {
    border-radius: 0;
    box-shadow: none;
}

/* CARD 2 TOP: ELECTRIC BLUE/INDIGO BACKGROUND */
.monzo-vcard-top.top-vpn {
    background: linear-gradient(135deg, #3b82f6 0%, #4f46e5 100%);
}

/* CARD 3 TOP: VIBRANT VIOLET/PURPLE BACKGROUND */
.monzo-vcard-top.top-darkweb {
    background: linear-gradient(135deg, #dc2626 0%, #e10600 100%);
}

.monzo-vcard-img-frame {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: transform 0.5s ease;
}

.monzo-vertical-card:hover .monzo-vcard-img-frame {
    transform: scale(1.04);
}

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

/* BOTTOM SECTION: VIBRANT PURPLE & VIOLET WITH WHITE TYPOGRAPHY */
.monzo-vcard-bottom {
    background: linear-gradient(135deg, #b91c1c 0%, #b91c1c 50%, #dc2626 100%);
    padding: 36px 32px 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    color: #ffffff;
}

.monzo-vcard-headline {
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, -apple-system, sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.4px;
}

.monzo-vcard-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.65;
    margin-bottom: 32px;
}

.monzo-vcard-btn {
    display: inline-block;
    width: fit-content;
    border: 1.5px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.monzo-vcard-btn:hover {
    background: #ffffff;
    color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.35);
}

.monzo-vcard-bottom.vcard-bottom-red {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ef4444 100%) !important;
}

.vcard-bottom-red .monzo-vcard-btn:hover {
    color: #dc2626 !important;
}

@media (max-width: 1024px) {
    .monzo-vertical-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .monzo-vcard-top {
        height: 250px;
    }
}

/* ═══════════ KLAVATO BLOG & SECURITY INSIGHTS SECTION ═══════════ */
.klavato-blog-section {
    padding: 85px 0 95px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.klavato-blog-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.klavato-blog-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 56px auto;
}

.klavato-blog-pill-badge {
    display: inline-block;
    background: #f1f5f9;
    color: #b91c1c;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
}

.klavato-blog-main-headline {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.klavato-blog-sub-headline {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

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

.klavato-blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.klavato-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
    border-color: #e10600;
}

.klavato-blog-img-box {
    height: 190px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.klavato-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.klavato-blog-card:hover .klavato-blog-img {
    transform: scale(1.06);
}

.klavato-blog-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #e10600;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.klavato-blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.klavato-blog-meta {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 12px;
}

.klavato-blog-card-title {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.klavato-blog-card:hover .klavato-blog-card-title {
    color: #b91c1c;
}

.klavato-blog-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.klavato-blog-link-btn {
    font-size: 14px;
    font-weight: 700;
    color: #b91c1c;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.klavato-blog-card:hover .klavato-blog-link-btn {
    gap: 10px;
}

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

@media (max-width: 640px) {
    .klavato-blog-grid {
        grid-template-columns: 1fr;
    }
    .klavato-blog-main-headline {
        font-size: 28px;
    }
}

.antivirus-hero-sky-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    background: #e10600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px 24px;
    text-align: center;
    box-sizing: border-box;
}

.sky-hero-content {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 2;
}

.sky-hero-title {
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 54px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin: 0;
    text-shadow: none;
}

.sky-hero-subtitle {
    font-size: 22px;
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 14px 0;
    line-height: 1.5;
    text-shadow: none;
    opacity: 0.95;
}

.sky-hero-blue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #e10600 !important;
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 800;
    padding: 15px 44px;
    border-radius: 8px;
    border: 1px solid #ffffff;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sky-hero-blue-btn:hover {
    background: #f8fafc;
    color: #b91c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .antivirus-hero-sky-section {
        min-height: 440px;
        padding: 120px 20px 50px 20px;
    }
    .sky-hero-title {
        font-size: 34px;
        letter-spacing: -0.8px;
    }
    .sky-hero-subtitle {
        font-size: 17px;
    }
}

/* ═══════════ SKY PROTECT SLIDE-UP CARD SECTION ═══════════ */
.sky-slide-card-section {
    position: relative;
    z-index: 10;
    background: #ffffff;
    border-radius: 0;
    margin-top: 0;
    padding: 95px 24px 105px 24px;
    color: #0f172a;
    box-shadow: none;
    transform: translateY(70px);
    opacity: 0.3;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s ease;
    will-change: transform, opacity;
}

.sky-slide-card-section.slide-up-active {
    transform: translateY(0);
    opacity: 1;
}

.sky-slide-card-header {
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, opacity 0.8s ease 0.15s;
}

.sky-slide-card-section.slide-up-active .sky-slide-card-header {
    opacity: 1;
    transform: translateY(0);
}

.sky-card-headline {
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 58px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -2px;
    line-height: 1.12;
    margin: 0 0 16px 0;
}

.sky-card-subhead {
    font-size: 20px;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
    margin: 0 0 24px 0;
}

.sky-shield-arch-wrapper {
    display: flex;
    justify-content: center;
    margin: 32px 0 10px 0;
}

.sky-shield-arch-icon {
    width: 90px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.sky-shield-arch-icon:hover {
    transform: scale(1.08);
}

.sky-shield-arch-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 20px rgba(0, 56, 255, 0.25));
}

.av-features-grid-light {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

.av-feature-card-light {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.av-feature-card-light:hover {
    transform: translateY(-5px);
    border-color: #0038ff;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 56, 255, 0.12);
}

.av-icon-box-light {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #e0e7ff;
    color: #0038ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.av-card-title-light {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.av-card-desc-light {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .av-features-grid-light {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sky-slide-card-section {
        border-radius: 0;
        margin-top: 0;
        padding: 60px 20px 70px 20px;
    }
    .sky-card-headline {
        font-size: 38px;
        letter-spacing: -1px;
    }
    .sky-card-subhead {
        font-size: 16px;
    }
}

/* ═══════════ SKY AUTOMATED SCAN SECTION (REFERENCE IMAGE MATCH) ═══════════ */
.sky-auto-scan-section {
    padding: 100px 24px 110px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.sky-arch-scan-button-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.sky-arch-scan-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sky-arch-scan-btn:hover {
    transform: scale(1.05);
}

.sky-arch-border-frame {
    position: relative;
    width: 240px;
    height: 260px;
    border-radius: 100px 100px 36px 36px;
    padding: 6px;
    background: linear-gradient(135deg, #ff3b30 0%, #ff9500 30%, #af52de 70%, #0038ff 100%);
    box-shadow: 0 20px 45px rgba(0, 56, 255, 0.25);
    overflow: hidden;
}

.sky-arch-inner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 94px 94px 30px 30px;
    display: block;
    transition: transform 0.6s ease;
}

.sky-arch-scan-btn:hover .sky-arch-inner-img {
    transform: scale(1.08);
}

.sky-arch-overlay-gradient {
    position: absolute;
    inset: 6px;
    border-radius: 94px 94px 30px 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(15, 23, 42, 0.65) 100%);
}

.sky-arch-scan-icon-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 56, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 56, 255, 0.5);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.sky-arch-scan-btn:hover .sky-arch-scan-icon-badge {
    background: #0038ff;
    box-shadow: 0 12px 32px rgba(0, 56, 255, 0.75);
    transform: translateX(-50%) translateY(-2px);
}

.scan-radar-svg {
    width: 20px;
    height: 20px;
}

.scan-btn-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.sky-auto-scan-title {
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin: 0 0 16px 0;
}

.sky-auto-scan-subtitle {
    font-size: 19px;
    color: #64748b;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 400;
}

@media (max-width: 768px) {
    .sky-auto-scan-title {
        font-size: 34px;
        letter-spacing: -0.8px;
    }
    .sky-auto-scan-subtitle {
        font-size: 16px;
    }
    .sky-arch-border-frame {
        width: 190px;
        height: 210px;
        border-radius: 76px 76px 26px 26px;
    }
}

/* ═══════════ SKY PROTECT STYLE COLLAPSIBLE ACCORDION SECTION ═══════════ */
.sky-accordion-section {
    padding: 95px 24px 105px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.sky-accordion-container {
    max-width: 880px;
    margin: 0 auto;
}

.sky-accordion-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.sky-accordion-main-headline {
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin: 0 0 16px 0;
}

.sky-accordion-sub-headline {
    font-size: 19px;
    color: #64748b;
    line-height: 1.55;
    font-weight: 400;
    margin: 0;
}

.sky-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sky-accordion-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sky-accordion-card.active {
    border-color: #e10600;
    box-shadow: 0 8px 24px rgba(225, 6, 0, 0.12);
}

.sky-accordion-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: background 0.2s ease;
}

.sky-accordion-btn:hover {
    background: #f8fafc;
}

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

.sky-accordion-icon-box {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: none;
    color: #e10600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sky-accordion-icon-box svg {
    width: 24px;
    height: 24px;
}

.sky-accordion-card.active .sky-accordion-icon-box {
    background: transparent;
    border: none;
    color: #b91c1c;
}

.sky-accordion-item-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.sky-accordion-chevron-icon {
    width: 20px;
    height: 20px;
    color: #64748b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sky-accordion-card.active .sky-accordion-chevron-icon {
    transform: rotate(180deg);
    color: #0038ff;
}

.sky-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.sky-accordion-body-content {
    padding: 0 28px 24px 86px;
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
}

@media (max-width: 640px) {
    .sky-accordion-main-headline {
        font-size: 34px;
        letter-spacing: -0.8px;
    }
    .sky-accordion-sub-headline {
        font-size: 16px;
    }
    .sky-accordion-btn {
        padding: 18px 20px;
    }
    .sky-accordion-body-content {
        padding: 0 20px 20px 20px;
    }
}

/* ═══════════ SKY PROTECT MINIMAL FAQ ACCORDION SECTION (MATCHING SCREENSHOT) ═══════════ */
.sky-faq-minimal-section {
    padding: 100px 24px 110px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.sky-faq-minimal-container {
    max-width: 820px;
    margin: 0 auto;
}

.sky-faq-minimal-header {
    text-align: center;
    margin-bottom: 56px;
}

.sky-faq-minimal-title {
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin: 0 0 16px 0;
}

.sky-faq-minimal-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
    max-width: 540px;
    margin: 0 auto;
}

.sky-faq-minimal-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

.sky-faq-minimal-item {
    border-bottom: 1px solid #e2e8f0;
}

.sky-faq-minimal-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: color 0.2s ease;
}

.sky-faq-minimal-btn:hover .sky-faq-minimal-q {
    color: #e10600;
}

.sky-faq-minimal-item.active .sky-faq-minimal-q {
    color: #e10600;
    font-weight: 700;
}

.sky-faq-minimal-q {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #0f172a;
    margin: 0;
    transition: color 0.2s ease;
}

.sky-faq-minimal-chevron {
    width: 18px;
    height: 18px;
    color: #64748b;
    transition: transform 0.3s ease, color 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.sky-faq-minimal-item.active .sky-faq-minimal-chevron {
    transform: rotate(180deg);
    color: #e10600;
}

.sky-faq-minimal-answer-box {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sky-faq-minimal-answer {
    padding: 0 0 24px 0;
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
}

.sky-faq-more-wrapper {
    text-align: center;
}

.sky-faq-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e10600;
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sky-faq-more-btn:hover {
    background: #b91c1c;
    text-decoration: none;
    opacity: 1;
}

@media (max-width: 640px) {
    .sky-faq-minimal-title {
        font-size: 34px;
        letter-spacing: -0.8px;
    }
    .sky-faq-minimal-btn {
        padding: 18px 0;
    }
    .sky-faq-minimal-q {
        font-size: 16px;
    }
}

/* ═══════════ KLAVATO DELUXE DEDICATED HERO SECTION ═══════════ */
.deluxe-hero-section {
    position: relative;
    width: 100%;
    background: #f8fafc;
    padding: 140px 0 0 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 1px solid #e2e8f0;
}

.deluxe-hero-content {
    max-width: 880px;
    margin: 0 auto 36px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.deluxe-hero-title {
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin: 0;
}

.deluxe-hero-subtitle {
    font-size: 20px;
    color: #475569;
    font-weight: 500;
    margin: 0 0 10px 0;
    line-height: 1.5;
    max-width: 760px;
}

.deluxe-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #b91c1c;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 44px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 24px rgba(225, 6, 0, 0.35);
}

.deluxe-hero-btn:hover {
    background: #991b1b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(185, 28, 28, 0.5);
    color: #ffffff !important;
}

.deluxe-hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.deluxe-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 768px) {
    .deluxe-hero-section {
        padding: 110px 16px 0 16px;
    }
}

/* ═══════════ KLAVATO DELUXE PRODUCTS GRID SECTION (EXACT MATCH FOR USER SCREENSHOT) ═══════════ */
.deluxe-products-grid-section {
    padding: 80px 24px 90px 24px;
    background: #f4f7fb !important; /* Cool light blue-gray background matching screenshot */
    border-bottom: 1px solid #e2e8f0;
    color: #0f172a !important;
}

.deluxe-products-container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Header layout: Device mockup on left + Title on right */
.deluxe-products-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 50px;
    text-align: left;
}

.deluxe-header-devices-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.deluxe-header-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deluxe-products-title {
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #b91c1c !important; /* Purple writing requested by user! */
    letter-spacing: -1.2px;
    line-height: 1.15;
    margin: 0 0 6px 0;
}

.deluxe-products-subtitle {
    font-size: 17px;
    color: #475569 !important;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.deluxe-sub-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a !important;
    margin: 20px 0 6px 0;
}

.deluxe-sub-desc {
    font-size: 15.5px;
    color: #475569 !important;
    font-weight: 500;
    margin: 0 0 4px 0;
    line-height: 1.45;
}

.deluxe-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* White card styling matching screenshot */
.deluxe-feature-card {
    background: #ffffff !important;
    border-radius: 6px;
    padding: 32px 36px 36px 36px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.025);
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.deluxe-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(220, 38, 38, 0.1);
}

.deluxe-card-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #b91c1c !important; /* Purple circular badge */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
    flex-shrink: 0;
}

.gradient-shield-text {
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 38px;
    font-weight: 800;
    margin-top: 14px;
    margin-bottom: 0;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.deluxe-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b !important;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.deluxe-card-desc {
    font-size: 14.5px;
    color: #475569 !important;
    line-height: 1.55;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 860px) {
    .deluxe-products-header-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .deluxe-header-devices-img {
        height: 90px;
    }
    .deluxe-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .deluxe-products-title {
        font-size: 32px;
    }
    .deluxe-feature-card {
        padding: 28px 24px;
    }
}

/* MOBILE DRAWER SIGN IN BUTTON STABILITY */
.mobile-menu-cta-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 24px !important;
    padding: 0 16px 24px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.mobile-menu-cta-group .btn-signin-pill {
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    height: 48px !important;
    line-height: 1 !important;
    margin: 0 !important;
    background: transparent !important;
    color: #000000 !important;
    border: 1.5px solid #000000 !important;
}





