/* =====================================================
   ZMO LICENSE - DARK/LIGHT MODE TOGGLE DESIGN SYSTEM
   Premium UI with Theme Switching Support
   ===================================================== */

/* CSS Variables - Default Dark Mode */
:root {
    /* Primary Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-gradient-hover: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    --primary-color: #667eea;
    --primary-dark: #5a67d8;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;

    /* Background Colors - Dark Theme (Default) */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);

    /* Text Colors - Dark Theme */
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --text-accent: #e2e8f0;

    /* Border & Shadow - Dark Theme */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(102, 126, 234, 0.3);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.2);
    --hero-bg: transparent;
    --hero-gradient: radial-gradient(ellipse at 20% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
                     radial-gradient(ellipse at 80% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
                     radial-gradient(ellipse at 40% 40%, rgba(240, 147, 251, 0.05) 0%, transparent 40%);

    /* Spacing */
    --section-padding: 100px;
    --card-padding: 2rem;
    --container-max: 1400px;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Light Mode Variables */
[data-theme="light"] {
    /* Primary Colors */
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --primary-gradient-hover: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --secondary-color: #7c3aed;
    --accent-color: #ec4899;

    /* Background Colors - Light Theme */
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-hover: rgba(255, 255, 255, 0.95);

    /* Text Colors - Light Theme */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-accent: #1f2937;

    /* Border & Shadow - Light Theme */
    --border-color: rgba(0, 0, 0, 0.08);
    --border-glow: rgba(79, 70, 229, 0.3);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 30px rgba(79, 70, 229, 0.15);
    --hero-bg: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 50%, #fdf2f8 100%);
    --hero-gradient: none;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

/* Animated Background Mesh */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-gradient);
    pointer-events: none;
    z-index: -1;
    animation: meshMove 20s ease-in-out infinite;
}

[data-theme="light"] body::before {
    animation: none;
    background: 
        radial-gradient(circle at 15% 50%, rgba(79, 70, 229, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(124, 58, 237, 0.03) 0%, transparent 25%);
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* =====================================================
   THEME TOGGLE BUTTON
   ===================================================== */

.theme-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.theme-toggle i {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.theme-toggle .fa-sun {
    display: none;
}

[data-theme="light"] .theme-toggle .fa-moon {
    display: none;
}

[data-theme="light"] .theme-toggle .fa-sun {
    display: block;
}

/* Mobile adjustment for toggle */
@media (max-width: 768px) {
    .theme-toggle {
        top: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* =====================================================
   NAVIGATION - Premium Glass Navbar
   ===================================================== */

.custom-navbar {
    background: rgba(10, 10, 15, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .custom-navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.custom-navbar.scrolled {
    background: rgba(10, 10, 15, 0.95) !important;
    padding: 0.75rem 0;
    box-shadow: var(--shadow-soft);
}

[data-theme="light"] .custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    gap: 0.2rem;
    position: relative;
}

[data-theme="light"] .navbar-brand {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.brand-tech {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 10px 28px rgba(102, 126, 234, 0.18);
    display: inline-block;
    animation: brandBounce 0.9s ease-out 1;
}

.brand-sub {
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.8em;
    opacity: 0.86;
    display: inline-block;
    animation: brandBounce 0.9s ease-out 0.08s 1;
}

@keyframes brandBounce {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.96);
    }
    40% {
        opacity: 1;
        transform: translateY(0) scale(1.04);
    }
    65% {
        transform: translateY(-3px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.navbar-brand:hover {
    transform: translateY(-1px);
    box-shadow: none;
}

[data-theme="light"] .navbar-brand:hover {
    box-shadow: none;
}

.header-logo {
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
    transition: var(--transition-fast);
}

.navbar-brand:hover .header-logo {
    transform: translateY(-1px) scale(1.03);
}

[data-theme="light"] .header-logo {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Navigation Links */
.navbar-nav {
    gap: 0.35rem;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 0.85rem 1.25rem !important;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link,
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.nav-menu-icon {
    width: 1.9rem;
    height: 1.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-size: 0.8rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .nav-menu-icon {
    background: rgba(79, 70, 229, 0.05);
    border-color: rgba(79, 70, 229, 0.08);
    color: var(--primary-color);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--text-primary) !important;
    background: var(--bg-glass);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

[data-theme="light"] .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(79, 70, 229, 0.05);
    border-color: rgba(79, 70, 229, 0.08);
}

.navbar-nav .nav-link:hover::before {
    width: 60%;
}

.navbar-nav .nav-link:hover .nav-menu-icon {
    background: rgba(102, 126, 234, 0.16);
    border-color: rgba(102, 126, 234, 0.22);
    transform: scale(1.04);
}

[data-theme="light"] .navbar-nav .nav-link:hover .nav-menu-icon {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.15);
}

/* Dropdown Styling */
.navbar .dropdown {
    position: relative;
}

.dropdown-menu {
    background: rgba(18, 18, 26, 0.95) !important;
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color) !important;
    border-radius: 18px !important;
    padding: 0.75rem !important;
    margin-top: 0.75rem !important;
    box-shadow: var(--shadow-soft), var(--shadow-glow);
    animation: dropdownFade 0.3s ease-out;
    display: none;
    position: absolute !important;
    top: 100%;
    left: 0;
    z-index: 1000;
}

[data-theme="light"] .dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.navbar .dropdown .dropdown-menu.show {
    display: block;
}

@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

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

.dropdown-item {
    color: var(--text-secondary) !important;
    padding: 0.8rem 1rem !important;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    color: var(--text-primary) !important;
    background: var(--bg-glass) !important;
    padding-left: 1.25rem !important;
}

[data-theme="light"] .dropdown-item:hover {
    color: var(--primary-color) !important;
    background: rgba(79, 70, 229, 0.05) !important;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.license-menu {
    min-width: 290px !important;
    max-width: 320px;
}

.license-menu li {
    display: block;
    list-style: none;
}

.license-menu .dropdown-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: normal;
}

.license-menu .menu-icon {
    width: 1.1rem;
    min-width: 1.1rem;
    text-align: center;
    color: var(--primary-color);
    opacity: 0.95;
}

@media (min-width: 992px) {
    .navbar .dropdown {
        padding-bottom: 0.4rem;
        margin-bottom: -0.4rem;
    }

    .navbar .dropdown > .dropdown-menu {
        margin-top: 0 !important;
        top: calc(100% - 0.15rem);
    }

    .license-menu {
        min-width: 760px !important;
        max-width: 820px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.5rem;
        align-items: start;
        padding: 1rem !important;
    }

    .navbar .dropdown .license-menu.show,
    .navbar .dropdown:hover > .license-menu {
        display: grid;
    }

    .license-menu li {
        width: 100%;
    }
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 14px !important;
    padding: 0.55rem 0.7rem !important;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .navbar-toggler {
    border-color: rgba(79, 70, 229, 0.12) !important;
    background: rgba(79, 70, 229, 0.04);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.18) !important;
}

.navbar-toggler-icon {
    filter: brightness(1.15);
}

[data-theme="light"] .navbar-toggler-icon {
    filter: contrast(1.2);
}

/* Primary Button */
.btn-primary {
    background: var(--primary-gradient) !important;
    border: none !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.header-cta {
    gap: 0.7rem;
    padding-inline: 1.35rem !important;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.32);
}

.header-cta .nav-button-icon {
    width: 1.8rem;
    height: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.8rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Secondary Button */
.btn-success {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-primary) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: var(--transition-fast);
}

[data-theme="light"] .btn-success {
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

.btn-success:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-2px);
}

[data-theme="light"] .btn-success:hover {
    background: rgba(79, 70, 229, 0.05) !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

/* =====================================================
   HERO SECTION - Premium Glass Morphism
   ===================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--hero-bg);
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary-gradient);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

[data-theme="light"] .hero-section::before {
    filter: blur(150px);
    opacity: 0.1;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

[data-theme="light"] .hero-section::after {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    opacity: 0.2;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.glass-box {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-soft);
    animation: fadeInUp 1s ease-out;
}

[data-theme="light"] .glass-box {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5);
}

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

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 2.5rem;
}

.hero-copy {
    text-align: left;
    max-width: 640px;
}

.hero-showcase {
    position: relative;
}

.showcase-panel {
    position: relative;
    min-height: 560px;
    padding: 1.5rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(102, 126, 234, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 60px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

[data-theme="light"] .showcase-panel {
    background:
        radial-gradient(circle at top, rgba(79, 70, 229, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.55));
    border-color: rgba(79, 70, 229, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 24px 50px rgba(15, 23, 42, 0.08);
}

.showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

[data-theme="light"] .showcase-label {
    background: rgba(79, 70, 229, 0.06);
    border-color: rgba(79, 70, 229, 0.1);
}

.showcase-orbit {
    position: relative;
    min-height: 470px;
    margin-top: 1rem;
}

.showcase-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(240px, 30vw, 320px);
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    padding: clamp(1.2rem, 2vw, 1.65rem) clamp(1rem, 2vw, 1.35rem);
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(102, 126, 234, 0.14), transparent 58%),
        rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.24);
}

[data-theme="light"] .showcase-center {
    background:
        radial-gradient(circle at top, rgba(79, 70, 229, 0.1), transparent 58%),
        rgba(255, 255, 255, 0.76);
    border-color: rgba(79, 70, 229, 0.12);
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.1);
}

.showcase-center-logo {
    width: clamp(68px, 8vw, 84px);
    height: clamp(68px, 8vw, 84px);
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 10px 20px rgba(102, 126, 234, 0.22));
}

.showcase-center strong {
    display: block;
    color: var(--text-primary);
    font-size: clamp(1.1rem, 2vw, 1.32rem);
    margin-bottom: 0.45rem;
    letter-spacing: 0.02em;
}

.showcase-center span {
    display: block;
    color: var(--text-secondary);
    font-size: clamp(0.86rem, 1.4vw, 0.94rem);
    line-height: 1.6;
    max-width: min(220px, 100%);
    margin: 0 auto;
}

.license-bubble {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 150px;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    background: rgba(10, 10, 15, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
    animation: heroDrift 6s ease-in-out infinite;
}

[data-theme="light"] .license-bubble {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(79, 70, 229, 0.08);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.license-bubble img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.license-bubble span {
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 700;
}

.bubble-cpanel { top: 9%; left: 12%; animation-delay: 0s; }
.bubble-litespeed { top: 8%; right: 13%; animation-delay: 0.5s; }
.bubble-cloudlinux { top: 25%; left: 7%; animation-delay: 1s; }
.bubble-fleetssl { top: 26%; right: 8%; animation-delay: 1.5s; }
.bubble-cpnginx { top: 46%; left: 8%; animation-delay: 2s; }
.bubble-directadmin { top: 47%; right: 9%; animation-delay: 2.5s; }
.bubble-jetbackup { bottom: 16%; left: 12%; animation-delay: 3s; }
.bubble-softaculous { bottom: 15%; right: 12%; animation-delay: 3.5s; }
.bubble-imunify { bottom: 7%; left: calc(50% - 90px); animation-delay: 4s; min-width: 180px; justify-content: center; }

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

.hero-feature-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-feature-strip span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

[data-theme="light"] .hero-feature-strip span {
    background: rgba(79, 70, 229, 0.05);
}

.hero-feature-strip i {
    color: var(--primary-color);
}

.license-detail-hero {
    min-height: auto;
    padding: 150px 0 70px;
}

.license-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2.5rem;
    align-items: center;
}

.license-detail-copy {
    max-width: 680px;
}

.license-reading-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.license-reading-card {
    padding: 1.15rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .license-reading-card {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(79, 70, 229, 0.08);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.05);
}

.license-reading-card h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.license-reading-card p {
    margin: 0;
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.license-detail-panel {
    padding: 1.4rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(102, 126, 234, 0.15), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 55px rgba(0, 0, 0, 0.16);
}

[data-theme="light"] .license-detail-panel {
    background:
        radial-gradient(circle at top, rgba(79, 70, 229, 0.1), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
    border-color: rgba(79, 70, 229, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 24px 45px rgba(15, 23, 42, 0.08);
}

.license-detail-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.license-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 700;
}

[data-theme="light"] .license-hero-chip {
    background: rgba(79, 70, 229, 0.05);
    border-color: rgba(79, 70, 229, 0.1);
}

.license-hero-chip img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.license-hero-chip i {
    color: var(--primary-color);
}

.license-hero-main {
    border-radius: 24px;
    padding: 1.35rem;
    background: rgba(10, 10, 15, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .license-hero-main {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(79, 70, 229, 0.08);
}

.license-hero-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.license-hero-brand img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.license-hero-brand strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.18rem;
    margin-bottom: 0.2rem;
}

.license-hero-brand span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.license-hero-points {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.license-hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    line-height: 1.65;
}

[data-theme="light"] .license-hero-points li {
    background: rgba(79, 70, 229, 0.04);
    border-color: rgba(79, 70, 229, 0.08);
}

.license-hero-points i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.cpanel-hero {
    min-height: auto;
    padding: 150px 0 70px;
}

.cpanel-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2.5rem;
    align-items: center;
}

.cpanel-hero-copy {
    max-width: 680px;
}

.cpanel-reading-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.cpanel-reading-card {
    padding: 1.15rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .cpanel-reading-card {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(79, 70, 229, 0.08);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.05);
}

.cpanel-reading-card h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.cpanel-reading-card p {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.cpanel-hero-showcase {
    position: relative;
}

.cpanel-hero-panel {
    padding: 1.4rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(102, 126, 234, 0.15), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 55px rgba(0, 0, 0, 0.16);
}

[data-theme="light"] .cpanel-hero-panel {
    background:
        radial-gradient(circle at top, rgba(79, 70, 229, 0.1), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
    border-color: rgba(79, 70, 229, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 24px 45px rgba(15, 23, 42, 0.08);
}

.cpanel-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cpanel-brand-chip,
.cpanel-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 700;
}

[data-theme="light"] .cpanel-brand-chip,
[data-theme="light"] .cpanel-status-chip {
    background: rgba(79, 70, 229, 0.05);
    border-color: rgba(79, 70, 229, 0.1);
}

.cpanel-brand-chip img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.cpanel-status-chip i {
    color: var(--primary-color);
}

.cpanel-main-card {
    border-radius: 24px;
    padding: 1.3rem;
    background: rgba(10, 10, 15, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .cpanel-main-card {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(79, 70, 229, 0.08);
}

.cpanel-main-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.cpanel-main-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.cpanel-main-card-head strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.cpanel-main-card-head span {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.cpanel-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.cpanel-mini-card {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .cpanel-mini-card {
    background: rgba(79, 70, 229, 0.04);
    border-color: rgba(79, 70, 229, 0.08);
}

.cpanel-mini-card i {
    display: inline-flex;
    width: 2.1rem;
    height: 2.1rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.12);
}

.cpanel-mini-card strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    font-size: 0.96rem;
}

.cpanel-mini-card span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

.hero-badge {
    display: inline-block;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

[data-theme="light"] .hero-badge {
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

[data-theme="light"] .hero-title {
    background: linear-gradient(135deg, #111827 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn {
    padding: 1rem 2.5rem !important;
    font-size: 1rem !important;
}

.hero-btn-secondary {
    padding: 1rem 2.5rem !important;
    font-size: 1rem !important;
}

/* =====================================================
   BUNDLE OFFER SECTION
   ===================================================== */

.bundle-offer-section {
    position: relative;
    padding: 0 0 var(--section-padding);
}

.bundle-offer-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.75rem;
    padding: 2rem;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.bundle-offer-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(102, 126, 234, 0.2), transparent 35%),
        radial-gradient(circle at 100% 100%, rgba(240, 147, 251, 0.12), transparent 30%);
    pointer-events: none;
}

.bundle-offer-copy,
.bundle-offer-panel {
    position: relative;
    z-index: 1;
}

.bundle-offer-copy {
    padding: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.bundle-offer-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.bundle-offer-heading {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.bundle-offer-discount {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 0.6rem 1rem;
    border-radius: 16px;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 18px 40px rgba(102, 126, 234, 0.28);
    animation: offerFloat 3.5s ease-in-out infinite;
}

.bundle-offer-heading h2 {
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 800;
    margin: 0;
    color: var(--text-primary);
}

.bundle-offer-text {
    max-width: 36rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.bundle-offer-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    margin-bottom: 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bundle-offer-price strong {
    display: block;
    font-size: 2.4rem;
    line-height: 1;
    background: linear-gradient(135deg, #a7a084 0%, #da1c38 48%, #4f0ee7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 14px 34px rgba(251, 113, 133, 0.18);
}

.bundle-offer-price span {
    display: block;
    margin-top: 0.35rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 700;
}

.bundle-offer-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bundle-offer-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-accent);
    font-weight: 600;
}

.bundle-offer-points i,
.bundle-list i {
    color: var(--primary-color);
}

.bundle-offer-panel {
    display: grid;
    gap: 1rem;
    animation: fadeInUp 0.9s ease-out 0.1s both;
}

.bundle-stack-card {
    position: relative;
    padding: 1.4rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.bundle-stack-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.bundle-stack-primary {
    animation: offerSlide 8s ease-in-out infinite;
}

.bundle-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.bundle-stack-warning {
    background: linear-gradient(180deg, rgba(245, 87, 108, 0.12), rgba(255, 255, 255, 0.03));
}

.bundle-stack-title {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.bundle-stack-title i {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(102, 126, 234, 0.15);
    color: var(--primary-color);
}

.bundle-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.bundle-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    color: var(--text-secondary);
    line-height: 1.65;
}

.bundle-list.compact {
    gap: 0.65rem;
}

.bundle-list.warning i {
    color: #f87171;
}

.bundle-offer-note {
    margin: 0;
    padding: 0.9rem 1rem 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

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

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

/* =====================================================
   SECTION TITLES - Premium Typography
   ===================================================== */

.title-container {
    position: relative;
    padding: 3rem 0;
}

.decorated-title {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

[data-theme="light"] .decorated-title {
    background: linear-gradient(135deg, #111827 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.decorated-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.para-underline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.8;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .section-title {
    background: linear-gradient(135deg, #111827 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* =====================================================
   PRICING CARDS - Premium Glass Cards
   ===================================================== */

.all-licenses {
    padding: var(--section-padding) 0;
    position: relative;
}

[data-theme="light"] .all-licenses {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: var(--card-padding);
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .pricing-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: var(--bg-glass-hover);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow), var(--shadow-soft);
}

[data-theme="light"] .pricing-card:hover {
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), var(--shadow-glow);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.license-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    transition: var(--transition-fast);
}

[data-theme="dark"] .license-logo {
    filter: brightness(0) invert(1) drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
}

[data-theme="dark"] .license-logo.plesk-logo {
    filter: brightness(0) invert(1) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55));
}

[data-theme="dark"] .license-logo.cpnginx-logo {
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
}

[data-theme="dark"] .license-logo.whmreseller-logo {
    filter: brightness(1.12) contrast(1.08) saturate(1.05) drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
}

[data-theme="light"] .license-logo {
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.pricing-card:hover .license-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 12px rgba(102, 126, 234, 0.3));
}

[data-theme="light"] .pricing-card:hover .license-logo {
    filter: drop-shadow(0 8px 12px rgba(79, 70, 229, 0.2));
}

.pricing-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.pricing-card h6 {
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

.pricing-card h6 p {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.pricing-card h6 p::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0 0.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.action-wrap {
    margin-top: auto;
}

.action-wrap p {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.action-wrap strong {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   FEATURE CARDS - Premium Grid
   ===================================================== */

.system-features {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.03) 50%, transparent 100%);
}

[data-theme="light"] .system-features {
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 50%, #ffffff 100%);
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .feature-card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

[data-theme="light"] .feature-card::after {
    background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

[data-theme="light"] .feature-card:hover {
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), var(--shadow-glow);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

iframe[title*="chat"],
iframe[title*="Chat"],
iframe[title*="Tawk"],
div[id*="tawk"] iframe {
    transition: var(--transition-fast);
}

.whatsapp-icon {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 9999;
}

.whatsapp-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

@media (min-width: 992px) {
    iframe[title*="chat"],
    iframe[title*="Chat"],
    iframe[title*="Tawk"],
    div[id*="tawk"] iframe {
        right: 24px !important;
        left: auto !important;
        bottom: 24px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    iframe[title*="chat"],
    iframe[title*="Chat"],
    iframe[title*="Tawk"],
    div[id*="tawk"] iframe {
        right: 18px !important;
        left: auto !important;
        bottom: 18px !important;
        max-width: calc(100vw - 36px) !important;
    }
}

@media (max-width: 767px) {
    .whatsapp-icon {
        left: 12px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }

    iframe[title*="chat"],
    iframe[title*="Chat"],
    iframe[title*="Tawk"],
    div[id*="tawk"] iframe {
        right: 12px !important;
        left: auto !important;
        bottom: 14px !important;
        max-width: calc(100vw - 24px) !important;
    }
}

/* =====================================================
   FOOTER - Premium Dark Footer
   ===================================================== */

.footer {
    background: var(--bg-secondary) !important;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    margin-top: 0;
}

[data-theme="light"] .footer {
    background: #ffffff !important;
}

.footer h5,
.footer h6 {
    color: var(--text-primary) !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h5::after,
.footer h6::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer p {
    color: var(--text-secondary) !important;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary) !important;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '\\2192';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition-fast);
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--text-primary) !important;
    padding-left: 20px;
}

[data-theme="light"] .footer-links a:hover {
    color: var(--primary-color) !important;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer hr {
    border-color: var(--border-color);
    margin: 3rem 0 2rem;
}

.footer-copy {
    color: var(--text-muted);
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.payment-icons i:hover {
    color: var(--text-primary);
    transform: translateY(-3px);
}

[data-theme="light"] .payment-icons i:hover {
    color: var(--primary-color);
}

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

@media (min-width: 768px) and (max-width: 991px) {
    .all-licenses .col-md-3,
    .pricing-section .col-md-4 {
        width: 50%;
        flex: 0 0 auto;
    }

    .license-detail-hero,
    .cpanel-hero {
        padding: 132px 0 60px;
    }

    .product-page-hero .hero-container {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .license-detail-shell {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .license-detail-copy {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .license-reading-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-page-hero .license-detail-copy,
    .product-page-hero .cpanel-hero-copy {
        max-width: 760px;
    }

    .license-reading-card,
    .cpanel-reading-card {
        text-align: left;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .hero-feature-strip,
    .hero-buttons {
        justify-content: center;
    }

    .showcase-panel {
        min-height: auto;
        max-width: 760px;
        margin: 0 auto;
    }

    .showcase-orbit {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        margin-top: 1.25rem;
    }

    .showcase-center {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        transform: none;
        grid-column: 1 / -1;
        margin-bottom: 0.5rem;
    }

    .license-bubble {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        min-width: 0;
        width: 100%;
        animation: none;
        transform: none !important;
    }

    .license-detail-shell {
        grid-template-columns: 1fr;
    }

    .license-detail-copy {
        max-width: 100%;
        text-align: center;
    }

    .license-reading-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .license-hero-brand {
        flex-direction: column;
        text-align: center;
    }

    .license-detail-head,
    .cpanel-panel-top,
    .cpanel-main-card-head {
        justify-content: center;
        text-align: center;
    }

    .license-detail-showcase,
    .cpanel-hero-showcase {
        width: 100%;
    }

    .license-detail-panel,
    .cpanel-hero-panel {
        max-width: 760px;
        margin: 0 auto;
    }

    .product-page-hero .glass-box {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .cpanel-hero-shell {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cpanel-hero-copy {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .cpanel-reading-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cpanel-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .bundle-offer-shell {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .bundle-offer-copy {
        text-align: center;
        padding: 0.5rem 0;
    }

    .bundle-offer-kicker,
    .bundle-offer-discount {
        margin-left: auto;
        margin-right: auto;
    }

    .bundle-offer-text {
        margin-left: auto;
        margin-right: auto;
    }

    .bundle-offer-price {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .bundle-offer-points {
        justify-content: center;
    }

    .bundle-stack-grid {
        grid-template-columns: 1fr;
    }

    .navbar .dropdown {
        position: relative;
    }

    .custom-navbar {
        position: static !important;
    }

    .navbar-nav .nav-link:hover {
        background: transparent !important;
        color: var(--text-secondary) !important;
    }

    .navbar-nav .nav-link:hover::before {
        width: 0;
    }

    .dropdown-item:hover {
        background: transparent !important;
        color: var(--text-secondary) !important;
        padding-left: 1rem !important;
    }

    .dropdown-item:hover::before {
        transform: scaleY(0);
    }

    .navbar-nav {
        gap: 0.15rem;
    }

    .navbar-nav .nav-link,
    .header-cta {
        justify-content: flex-start;
    }

    .header-cta {
        width: 100%;
        margin-top: 0.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .hero-feature-strip,
    .hero-buttons {
        justify-content: center;
    }

    .decorated-title {
        font-size: 2rem;
    }

    .glass-box {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }

    .license-detail-hero,
    .cpanel-hero {
        padding: 128px 0 58px;
    }

    .product-page-hero .hero-container {
        width: min(100%, 940px);
    }

    .navbar-collapse {
        background: rgba(10, 10, 15, 0.98);
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
        border: 1px solid var(--border-color);
    }

    [data-theme="light"] .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .dropdown-menu {
        background: rgba(255, 255, 255, 0.05) !important;
        border: none !important;
        box-shadow: none !important;
        position: static !important;
        width: 100%;
    }

    .license-menu {
        min-width: 100% !important;
        max-width: 100%;
        position: static !important;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .license-menu li {
        width: 100%;
    }

    [data-theme="light"] .dropdown-menu {
        background: rgba(255, 255, 255, 0.95) !important;
    }

    .showcase-panel {
        min-height: auto;
        padding: 1.25rem;
        max-width: 760px;
        margin: 0 auto;
    }

    .showcase-orbit {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
        margin-top: 1rem;
    }

    .showcase-center {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        transform: none;
        grid-column: 1 / -1;
        margin-bottom: 0.35rem;
    }

    .license-bubble {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        min-width: 0;
        width: 100%;
        animation: none;
        transform: none !important;
    }

    .license-detail-shell,
    .cpanel-hero-shell {
        gap: 2rem;
    }

    .license-detail-copy,
    .cpanel-hero-copy {
        margin: 0 auto;
    }

    .product-page-hero .license-detail-copy,
    .product-page-hero .cpanel-hero-copy {
        max-width: 760px;
    }

    .license-detail-copy .hero-feature-strip,
    .cpanel-hero-copy .hero-feature-strip,
    .license-detail-copy .hero-buttons,
    .cpanel-hero-copy .hero-buttons {
        justify-content: center;
    }

    .license-detail-copy .hero-badge,
    .cpanel-hero-copy .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .license-detail-showcase,
    .cpanel-hero-showcase {
        width: 100%;
    }

    .license-detail-panel,
    .cpanel-hero-panel {
        max-width: 760px;
        margin: 0 auto;
    }

    .product-page-hero .glass-box {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }

    .product-page-hero .license-detail-shell,
    .product-page-hero .cpanel-hero-shell {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 1.75rem;
    }

    .product-page-hero .license-reading-grid,
    .product-page-hero .cpanel-reading-grid {
        grid-template-columns: 1fr;
    }

    .product-page-hero .license-detail-head,
    .product-page-hero .cpanel-panel-top {
        flex-direction: column;
        align-items: stretch;
    }

    .product-page-hero .license-hero-chip,
    .product-page-hero .cpanel-brand-chip,
    .product-page-hero .cpanel-status-chip {
        width: 100%;
        justify-content: center;
    }

    .litespeed-hero .license-detail-copy,
    .litespeed-hero .license-detail-panel {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .litespeed-hero .license-detail-shell {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 1.75rem;
    }

    .litespeed-hero .license-reading-grid {
        grid-template-columns: 1fr;
    }

    .litespeed-hero .license-detail-head {
        flex-direction: column;
        align-items: stretch;
    }

    .litespeed-hero .license-hero-chip {
        width: 100%;
        justify-content: center;
    }

    .license-detail-head,
    .cpanel-panel-top {
        justify-content: center;
    }

    .license-hero-main,
    .cpanel-main-card {
        text-align: left;
    }

    .cpanel-hero-shell {
        grid-template-columns: 1fr;
    }

    .cpanel-hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .cpanel-reading-grid {
        grid-template-columns: 1fr;
    }

    .cpanel-main-card-head {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .bundle-offer-section {
        padding-bottom: 60px;
    }

    .bundle-offer-heading h2 {
        font-size: 2.15rem;
    }

    .bundle-offer-price strong {
        font-size: 2rem;
    }

    .bundle-offer-points span {
        width: 100%;
        justify-content: center;
        border-radius: 18px;
    }

    :root {
        --section-padding: 60px;
        --card-padding: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .product-page-hero .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 1rem;
    }

    .product-page-hero .hero-text {
        font-size: 0.98rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-feature-strip {
        gap: 0.6rem;
    }

    .hero-feature-strip span {
        width: 100%;
        justify-content: center;
    }

    .showcase-orbit {
        grid-template-columns: 1fr;
    }

    .showcase-center {
        padding: 1.15rem 1rem;
    }

    .showcase-label {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .license-detail-panel {
        padding: 1.2rem;
    }

    .license-detail-head {
        flex-direction: column;
        align-items: stretch;
    }

    .license-reading-grid,
    .cpanel-reading-grid,
    .cpanel-mini-grid {
        grid-template-columns: 1fr;
    }

    .license-detail-shell,
    .cpanel-hero-shell {
        gap: 1.5rem;
    }

    .product-page-hero .glass-box {
        padding: 2rem 1rem;
        margin: 0 0.75rem;
    }

    .license-detail-copy,
    .cpanel-hero-copy {
        text-align: center;
    }

    .product-page-hero .license-detail-copy,
    .product-page-hero .cpanel-hero-copy,
    .product-page-hero .license-detail-panel,
    .product-page-hero .cpanel-hero-panel {
        max-width: 100%;
    }

    .license-detail-copy .hero-feature-strip,
    .cpanel-hero-copy .hero-feature-strip {
        flex-direction: column;
        align-items: stretch;
    }

    .license-detail-copy .hero-feature-strip span,
    .cpanel-hero-copy .hero-feature-strip span {
        width: 100%;
        justify-content: center;
    }

    .license-reading-card,
    .cpanel-reading-card,
    .license-hero-points li,
    .cpanel-mini-card {
        text-align: left;
    }

    .license-hero-brand,
    .cpanel-main-card-head {
        flex-direction: column;
        text-align: center;
    }

    .license-hero-brand img,
    .cpanel-main-logo {
        margin: 0 auto;
    }

    .license-hero-chip,
    .cpanel-brand-chip,
    .cpanel-status-chip {
        width: 100%;
        justify-content: center;
    }

    .license-detail-panel,
    .cpanel-hero-panel,
    .license-hero-main,
    .cpanel-main-card {
        border-radius: 22px;
    }

    .product-page-hero .license-detail-panel,
    .product-page-hero .cpanel-hero-panel {
        padding: 1rem;
    }

    .product-page-hero .license-detail-copy,
    .product-page-hero .license-detail-showcase,
    .product-page-hero .license-detail-panel,
    .product-page-hero .license-hero-main,
    .product-page-hero .cpanel-hero-copy,
    .product-page-hero .cpanel-hero-showcase,
    .product-page-hero .cpanel-hero-panel,
    .product-page-hero .cpanel-main-card {
        width: 100%;
        min-width: 0;
    }

    .product-page-hero .license-hero-brand span,
    .product-page-hero .license-reading-card p,
    .product-page-hero .license-hero-points li span,
    .product-page-hero .cpanel-reading-card p,
    .product-page-hero .cpanel-main-card-head span,
    .product-page-hero .cpanel-mini-card span {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .litespeed-hero .license-detail-panel,
    .litespeed-hero .license-hero-main {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .litespeed-hero .license-hero-points li {
        padding: 0.8rem 0.85rem;
    }

    .litespeed-hero .license-detail-copy,
    .litespeed-hero .license-detail-showcase,
    .litespeed-hero .license-detail-panel,
    .litespeed-hero .license-hero-main {
        width: 100%;
        min-width: 0;
    }

    .litespeed-hero .license-hero-brand span,
    .litespeed-hero .license-reading-card p,
    .litespeed-hero .license-hero-points li span {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .cpanel-mini-grid {
        grid-template-columns: 1fr;
    }

    .cpanel-panel-top {
        flex-direction: column;
        align-items: stretch;
    }

    .license-detail-hero,
    .cpanel-hero {
        padding: 118px 0 48px;
    }

    .section-title,
    .decorated-title {
        font-size: 1.75rem;
    }

    .pricing-card {
        margin-bottom: 1.5rem;
    }

    .theme-toggle {
        top: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* =====================================================
   ANIMATIONS & EFFECTS
   ===================================================== */

.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

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

/* Loading Animation for Cards */
.pricing-card,
.feature-card {
    opacity: 0;
    animation: cardReveal 0.6s ease-out forwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Glow Effect for Important Elements */
.glow {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

[data-theme="light"] .glow {
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}

/* Text Gradient Utility */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Utility */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

/* =====================================================
   BUNDLE OFFER OVERRIDES
   Keeps the promo section stable when older cached/theme rules conflict
   ===================================================== */

section.bundle-offer-section {
    position: relative;
    padding: 0 0 var(--section-padding) !important;
}

section.bundle-offer-section .bundle-offer-shell {
    position: relative;
    display: grid !important;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
    gap: 1.75rem !important;
    padding: 2rem !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    background: var(--bg-glass) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-soft) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

section.bundle-offer-section .bundle-offer-copy,
section.bundle-offer-section .bundle-offer-panel {
    position: relative;
    z-index: 1;
}

section.bundle-offer-section .bundle-offer-price {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    padding: 1.25rem 1.4rem !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

section.bundle-offer-section .bundle-stack-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
}

section.bundle-offer-section .bundle-stack-card {
    padding: 1.4rem !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

section.bundle-offer-section .bundle-offer-price strong {
    display: block;
    font-size: 2.4rem !important;
    line-height: 1 !important;
}

@media (max-width: 991px) {
    section.bundle-offer-section .bundle-offer-shell {
        grid-template-columns: 1fr !important;
        padding: 1.5rem !important;
    }

    section.bundle-offer-section .bundle-offer-price {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: center !important;
    }

    section.bundle-offer-section .bundle-stack-grid {
        grid-template-columns: 1fr !important;
    }
}
