:root {
    --primary-color: #0056b3;
    --secondary-color: #f57c00;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: url('image/bg.jpg') center center / cover fixed no-repeat;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

.section {
    padding: 80px 0;
    background: transparent;
}

.hero > .container,
.section > .container,
.cta-section > .container {
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 34px;
    padding: 42px clamp(24px, 4vw, 42px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: #e65100;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

.claim-freebies-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
    transition: all 0.3s ease;
}

.claim-freebies-btn:hover {
    background: linear-gradient(135deg, #ee5a24, #d63031);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
    color: white;
}

.claim-freebies-btn i {
    animation: gift-playful 3s ease-in-out infinite;
}

@keyframes gift-playful {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    10% {
        transform: translateY(-4px) rotate(-5deg) scale(1.1);
    }
    20% {
        transform: translateY(-2px) rotate(3deg) scale(1);
    }
    30% {
        transform: translateY(-5px) rotate(-3deg) scale(1.15);
    }
    40% {
        transform: translateY(-1px) rotate(2deg) scale(1);
    }
    50% {
        transform: translateY(-6px) rotate(-8deg) scale(1.2);
    }
    60% {
        transform: translateY(-2px) rotate(4deg) scale(1);
    }
    70% {
        transform: translateY(-4px) rotate(-2deg) scale(1.1);
    }
    80% {
        transform: translateY(-1px) rotate(6deg) scale(1);
    }
    90% {
        transform: translateY(-3px) rotate(-4deg) scale(1.15);
    }
}

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

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

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

.btn-white:hover {
    background-color: #f0f0f0;
}

/* Header */
.header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
}

.nav {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    width: 250px;
    background-color: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    text-align: left;
    border-radius: 8px;
    z-index: 1001;
    margin-top: 15px;
}

.nav-list.active {
    display: flex;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
}

.nav-list a:hover {
    color: var(--secondary-color);
}

.nav-list .nav-btn {
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-toggle {
    display: flex;
    font-size: 24px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    color: #000;
    border: 2px solid #000;
}

.device-view-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    color: #000;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.device-view-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.device-view-toggle i {
    transition: all 0.3s ease;
}

.device-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.device-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Device View Simulation */
body.view-desktop .container {
    max-width: 100%;
}

body.view-desktop .about-bubbles-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

body.view-desktop .bubble-center-link {
    display: block;
}

body.view-desktop .bubble-center-img {
    display: block;
}

body.view-desktop .bubble-side-avatar {
    opacity: 1 !important;
    transform: translateY(-50%) translateX(0) !important;
}

/* Auto mode - show avatar on desktop (>= 1024px) when bubbles expanded */
@media (min-width: 1024px) {
    body:not(.view-mobile):not(.view-tablet) .bubbles-container.bubbles-expanded:not(.bubble-detail-open) + .bubble-side-avatar {
        opacity: 1 !important;
        transform: translateY(-50%) translateX(0) !important;
    }
}

body.view-tablet .container {
    max-width: 768px;
    margin: 0 auto;
}

body.view-tablet .bubble-side-avatar {
    display: none;
    position: absolute;
    top: 50%;
    right: -40px;
    width: 100px;
    height: auto;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

body.view-tablet .bubble-center-link {
    display: block;
}

body.view-tablet .bubble-center-img {
    display: block;
}

body.view-mobile .bubble-center-link {
    display: block !important;
}

body.view-mobile .bubble-center-img {
    display: block !important;
}

body.view-mobile .bubble-outer-glass {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    box-shadow: inset -10px -10px 20px rgba(0, 86, 179, 0.1), inset 10px 10px 20px rgba(255, 255, 255, 0.8), 0 15px 30px rgba(0, 86, 179, 0.15), 0 0 0 6px rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 50% !important;
    justify-content: center !important;
    align-items: center !important;
}

body.view-mobile .bubble-inner-core {
    display: flex !important;
    width: 64% !important;
    height: 64% !important;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e3f2fd) !important;
    box-shadow: 0 8px 16px rgba(0, 86, 179, 0.15), inset -5px -5px 15px rgba(0, 86, 179, 0.1) !important;
    border-radius: 50% !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

body.view-tablet .bubble-outer-glass {
    display: flex;
}

body.view-tablet .bubble-inner-core {
    display: flex;
}

body.view-tablet .bubbles-container {
    max-width: 400px; /* Tablet scale */
    left: 0; /* Override base left: -38px */
}

body.view-mobile .container {
    max-width: 375px;
    margin: 0 auto;
}

body.view-tablet,
body.view-mobile {
    overflow-x: hidden;
}

body.view-tablet .hero-content h1,
body.view-mobile .hero-content h1 {
    font-size: 28px;
}

body.view-mobile .hero-content h1 {
    font-size: 24px;
}

body.view-tablet .pricing-grid,
body.view-tablet .ind-grid,
body.view-tablet .support-grid,
body.view-tablet .process-steps,
body.view-mobile .pricing-grid,
body.view-mobile .ind-grid,
body.view-mobile .support-grid,
body.view-mobile .process-steps {
    grid-template-columns: 1fr;
}

body.view-tablet .nav-list,
body.view-mobile .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    width: 250px;
    background-color: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

body.view-tablet .nav-list.active,
body.view-mobile .nav-list.active {
    display: flex;
}

/* Mobile header optimizations */
body.view-mobile .logo-img {
    max-height: 30px;
}

body.view-tablet .claim-freebies-btn span,
body.view-mobile .claim-freebies-btn span {
    display: none;
}

body.view-tablet .claim-freebies-btn,
body.view-mobile .claim-freebies-btn {
    padding: 8px;
    width: 36px;
    height: 36px;
    justify-content: center;
}

body.view-tablet .claim-freebies-btn i,
body.view-mobile .claim-freebies-btn i {
    font-size: 18px;
    margin: 0;
}

body.view-mobile .workshop-suite-btn {
    display: none;
}

/* Mobile hero spacing */
body.view-mobile .hero-content h1 {
    margin-bottom: 30px;
}

body.view-mobile .hero-content p {
    margin-top: 25px;
}

body.view-mobile .hero-visual {
    margin: 20px 0;
    width: 100%;
}

/* Mobile layout for device view toggle */
body.view-mobile .hero-container {
    flex-direction: column;
}

body.view-mobile .hero-content-wrapper {
    order: 0;
}

body.view-mobile .hero-content {
    order: 0;
}

body.view-mobile .hero-visual {
    order: 1;
}

body.view-mobile .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    order: 2;
}

body.view-mobile .hero-buttons .btn {
    width: 100%;
    text-align: center;
}

body.view-mobile .img-comp-container {
    height: 250px;
    width: 100%;
}

body.view-mobile .img-comp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile about section layout */
body.view-mobile .about-container {
    flex-direction: column;
}

body.view-mobile .about-text-column {
    order: 0;
}

body.view-mobile .about-bubbles-column {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    position: relative;
}

/* Mobile view only - avatar positioning */
body.view-mobile .bubble-side-avatar {
    position: absolute !important;
    top: 35% !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) translateX(72px) !important;
    width: 240px !important;
    height: auto !important;
    opacity: 0 !important;
    z-index: 5 !important;
    transition: opacity 0.4s ease !important;
    pointer-events: none !important;
}

/* Mobile view only - hide avatar when big bubble is showing (not expanded) */
body.view-mobile .bubbles-container:not(.bubbles-expanded) + .bubble-side-avatar {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Mobile view only - show avatar when bubbles expanded (big bubble hidden) */
body.view-mobile .bubbles-container.bubbles-expanded + .bubble-side-avatar {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Mobile view only - ensure central bubble is visible by default */
body.view-mobile .bubble-center-link {
    opacity: 1 !important;
    pointer-events: auto !important;
    display: flex !important;
    width: 60% !important;
    height: 60% !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 50% !important;
}

/* Mobile view only - hide central bubble when expanded */
body.view-mobile .bubbles-container.bubbles-expanded .bubble-center-link {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Mobile view only - ensure central bubble is always visible when not expanded with bubble glass and logo */
body.view-mobile .bubbles-container:not(.bubbles-expanded) .bubble-center-link {
    opacity: 1 !important;
    pointer-events: auto !important;
    display: flex !important;
    visibility: visible !important;
    width: 60% !important;
    height: 60% !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 50% !important;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.7), rgba(255,255,255,0.4)) !important;
    box-shadow: inset -10px -10px 20px rgba(0, 86, 179, 0.15), inset 10px 10px 20px rgba(255, 255, 255, 0.9), 0 15px 30px rgba(0, 86, 179, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(3px) !important;
    -webkit-backdrop-filter: blur(3px) !important;
}

/* Mobile view only - ensure bubble glass effect is visible when big bubble is showing */
body.view-mobile .bubbles-container:not(.bubbles-expanded) .bubble-outer-glass {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    box-shadow: inset -10px -10px 20px rgba(0, 86, 179, 0.1), inset 10px 10px 20px rgba(255, 255, 255, 0.8), 0 15px 30px rgba(0, 86, 179, 0.15), 0 0 0 6px rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    justify-content: center !important;
    align-items: center !important;
}

body.view-mobile .bubbles-container:not(.bubbles-expanded) .bubble-inner-core {
    display: flex !important;
    width: 64% !important;
    height: 64% !important;
    border-radius: 50% !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e3f2fd) !important;
    box-shadow: 0 8px 16px rgba(0, 86, 179, 0.15), inset -5px -5px 15px rgba(0, 86, 179, 0.1) !important;
}

/* Mobile view only - ensure logo image is visible when big bubble is showing */
body.view-mobile .bubbles-container:not(.bubbles-expanded) .bubble-center-img {
    display: block !important;
    width: 80px !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain !important;
}

body.view-mobile .bubbles-container:not(.bubbles-expanded) .click-me-label {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body.view-mobile .bubbles-container:not(.bubbles-expanded) .brand-text {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Mobile view only - bubble positioning */
body.view-mobile .bubbles-expanded .bubble-btn {
    position: absolute !important;
    top: -60px !important; /* Moved up by 3 text lines (approx 60px) */
    left: 30% !important;
    width: 80px !important;
    height: 80px !important;
    z-index: 10 !important;
    opacity: 0 !important; /* Hidden by default, only active-bubble is visible */
    pointer-events: auto !important; /* Make clickable/tappable */
}

/* Mobile view only - fix bubbles container sizing */
body.view-mobile .bubbles-container {
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
}

/* Mobile view only - fix bubble content scrolling - match accessory-detail pattern */
body.view-mobile .bubble-btn.active {
    overflow: hidden !important;
    -webkit-overflow-scrolling: touch !important;
}

body.view-mobile .bubble-btn.active .bubble-content {
    display: flex !important;
    opacity: 1 !important;
    flex: 1 !important;
    min-height: 0 !important;
    max-height: 100% !important;
    padding: 24px !important;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    will-change: scroll-position !important;
}

body.view-mobile .bubbles-expanded .bubble-btn.active-bubble {
    opacity: 1 !important;
    animation: mobileFlyIn 0.5s ease-out forwards !important;
    display: block !important;
    visibility: visible !important;
}

body.view-mobile .bubbles-expanded .bubble-btn.hiding-bubble {
    animation: mobileFlyOut 0.5s ease-in forwards !important;
}

@keyframes mobileFlyIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateX(-200%) translateY(-100%) rotate(-45deg);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) translateX(-100%) translateY(-50%) rotate(-22deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) translateX(0) translateY(0) rotate(0deg);
    }
}

@keyframes mobileFlyOut {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) translateX(0) translateY(0) rotate(0deg);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) translateX(-100%) translateY(50%) rotate(22deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translateX(-200%) translateY(100%) rotate(45deg);
    }
}


/* Tablet layout */
body.view-tablet .hero-container {
    flex-direction: row;
    gap: 40px;
}

body.view-tablet .hero-left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.view-tablet .hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

body.view-tablet .hero-visual {
    flex: 1;
}

/* Desktop layout (default - no view class) */
.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-content {
    flex: 1;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.mobile-workshop-suite {
    display: none;
}

body.view-tablet .mobile-workshop-suite,
body.view-mobile .mobile-workshop-suite {
    display: block;
}

/* Hero Section */
.hero {
    background: transparent;
    color: var(--text-dark);
    padding: 100px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Group content and buttons together on desktop/tablet */
.hero-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-content {
    flex: 1;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 1;
    color: var(--text-light);
}

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

.hero-visual {
    flex: 1;
}

/* Image Comparison Slider */
.img-comp-container {
    position: relative;
    height: 400px; /* Fixed height for consistency */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    background-color: #f0f0f0; /* Placeholder color */
}

.img-comp-img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-comp-img img {
    display: block;
    width: 100%; /* Ensure image fills width */
    height: 100%; /* Ensure image fills height */
    object-fit: cover; /* Maintain aspect ratio */
}

.img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: 3px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(255, 0, 0, 0.5);
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
        transform: translate(-50%, -50%) scale(1);
    }
}

.img-comp-overlay {
    z-index: 2; /* Initially on top */
    width: 50%; /* Start at 50% */
}

/* Labels for Before/After */
.label-before, .label-after {
    position: absolute;
    bottom: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none; /* Let clicks pass through */
    transition: opacity 0.3s ease; /* For smooth dimming */
}

.label-before {
    z-index: 1; /* Under the overlay image, but visible if overlay is clipped? No. */
    /* Wait, if overlay is clipped, content inside it is clipped.
       So label-before should be inside the overlay div.
       label-after should be inside the background div.
    */
    left: 20px;
}

.label-after {
    right: 20px;
}

/* About Section */
.about {
    background: transparent;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text-column {
    flex: 1;
}

.about-bubbles-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px; /* Reduced by 20% from 500px */
}

.bubble-side-avatar {
    position: absolute;
    right: -145px;
    top: 50%;
    width: clamp(155px, 25vw, 252px);
    height: auto;
    transform: translateY(-50%) translateX(20px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease;
}



.bubbles-container.bubbles-expanded:not(.bubble-detail-open) + .bubble-side-avatar {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    visibility: visible;
}

.bubbles-container.bubble-detail-open + .bubble-side-avatar,
.bubbles-container:not(.bubbles-expanded) + .bubble-side-avatar {
    opacity: 0 !important;
    transform: translateY(-50%) translateX(20px);
}

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.separator {
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
}

.about-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 100%;
}

/* Services Section */
.services {
    background: transparent;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card,
.addon-item,
.industry-item,
.ind-card,
.price-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.card > *,
.addon-item > *,
.industry-item > *,
.ind-card > *,
.price-card > * {
    position: relative;
    z-index: 2;
}

.card::after,
.addon-item::after,
.industry-item::after,
.ind-card::after,
.price-card::after {
    content: "";
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 44%;
    max-width: 150px;
    aspect-ratio: 1 / 1;
    background: url('image/ehover.png') no-repeat right bottom / contain;
    opacity: 0;
    transform: translate3d(16px, 16px, 0) scale(0.92);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--secondary-color);
}

.card:hover::after,
.addon-item:hover::after,
.industry-item:hover::after,
.ind-card:hover::after,
.price-card:hover::after {
    opacity: 0.45;
    transform: translate3d(0, 0, 0) scale(1);
}

.card-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Infrastructure */
.infrastructure {
    background-color: white;
}

.infra-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.infra-content {
    flex: 1;
}

.infra-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.separator-left {
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin-bottom: 30px;
}

.infra-visual {
    flex: 1;
}

.visual-img-alt {
    width: 100%;
    height: auto; /* Allow full image height */
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2500;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal-overlay.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.video-modal-dialog {
    background: #000;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    padding: 20px 20px 24px;
}

.video-modal-body h2 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 16px;
    text-align: left;
}

.video-modal-timer {
    color: #ffeb3b;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center;
}

.video-modal-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
}

.video-modal-frame iframe,
.video-modal-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    z-index: 2;
}

.video-modal-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.25s ease;
    pointer-events: auto;
    cursor: pointer;
    z-index: 0;
}

.video-modal-frame.is-poster-hidden .video-modal-poster,
.video-modal-frame.is-playing .video-modal-poster {
    opacity: 0;
    pointer-events: none;
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.coming-soon-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2100;
    padding: 20px;
}

.coming-soon-modal-overlay.active {
    display: flex;
}

.coming-soon-modal-dialog {
    position: relative;
    width: min(460px, 100%);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    padding: 28px 24px 24px;
    text-align: center;
}

.coming-soon-body h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.coming-soon-subtitle {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.coming-soon-body p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.coming-soon-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-color);
    font-size: 22px;
    cursor: pointer;
}

.chatbot-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2500;
    width: max-content;
}

.chatbot-toggle {
    display: inline-block;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    line-height: 0;
}

.chatbot-toggle-image {
    width: clamp(110px, 11.5vw, 155px);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 86, 179, 0.22));
}

.chatbot-widget.chatbot-open .chatbot-toggle {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.94);
    pointer-events: none;
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(420px, calc(100vw - 32px));
    max-height: min(78vh, 720px);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
    transform-origin: bottom right;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 86, 179, 0.15);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.chatbot-panel.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}

.chatbot-panel-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chatbot-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px 12px;
    background: linear-gradient(135deg, var(--primary-color), #0d47a1);
    color: #ffffff;
}

.chatbot-panel-header h3 {
    margin: 0;
    font-size: 1.05rem;
}

.chatbot-close {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.chatbot-panel-body {
    padding: 0;
    background: #f7f9fc;
}

.chatbot-panel-flow {
    overflow-y: auto;
}

.chatbot-form {
    padding: 20px 18px 18px;
}

.chatbot-step {
    display: none;
}

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

.chatbot-survey-card {
    padding: 4px 2px 2px;
}

.chatbot-survey-progress {
    margin-bottom: 16px;
}

.chatbot-survey-counter {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.chatbot-survey-bar {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(0, 86, 179, 0.12);
    overflow: hidden;
}

.chatbot-survey-bar-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--secondary-color), #ffb347);
    transition: width 0.25s ease;
}

.chatbot-question {
    color: var(--text-dark);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
}

.chatbot-question + .chatbot-question {
    margin-top: 18px;
}

.chatbot-input,
.chatbot-textarea {
    width: 100%;
    border: 1px solid rgba(0, 86, 179, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font: inherit;
    padding: 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-input:focus,
.chatbot-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.14);
}

.chatbot-textarea {
    resize: vertical;
    min-height: 92px;
}

.chatbot-survey-answer {
    min-height: 132px;
}

.chatbot-survey-hint {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.chatbot-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.chatbot-action-btn {
    min-width: 96px;
    padding: 10px 18px;
    font-size: 0.95rem;
}

.chatbot-action-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.chatbot-action-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.chatbot-error {
    color: #b3261e;
    font-size: 0.86rem;
    margin-top: 8px;
}

.chatbot-status {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.45;
}

.chatbot-status.is-loading {
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-color);
}

.chatbot-status.is-error {
    background: rgba(179, 38, 30, 0.08);
    color: #b3261e;
}

.chatbot-status.is-success {
    background: rgba(46, 125, 50, 0.08);
    color: #2e7d32;
}

.console-window-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3200;
}

.console-window-overlay.active {
    display: flex;
}

.console-window {
    width: min(92vw, 680px);
    min-height: 360px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #111827;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.console-window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #0b1220;
    color: #e5eefc;
    font-size: 0.95rem;
    font-weight: 700;
}

.console-window-close {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

.console-window-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    min-height: 308px;
    font-family: Consolas, "Courier New", monospace;
    color: #b7f7c5;
}

.console-window-output {
    flex: 1;
    padding: 16px;
    border-radius: 14px;
    background: #050a13;
    border: 1px solid rgba(183, 247, 197, 0.12);
    overflow-y: auto;
    max-height: 260px;
}

.console-window-output p {
    margin: 0 0 10px;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

.console-window-output p:last-child {
    margin-bottom: 0;
}

.console-window-input {
    width: 100%;
    border: 1px solid rgba(183, 247, 197, 0.18);
    border-radius: 12px;
    background: #050a13;
    color: #d8ffe0;
    font: inherit;
    padding: 12px 14px;
}

.console-window-input:focus {
    outline: none;
    border-color: rgba(183, 247, 197, 0.4);
    box-shadow: 0 0 0 3px rgba(183, 247, 197, 0.08);
}

.construction-modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.62);
    z-index: 3300;
}

.construction-modal-overlay.active {
    display: flex;
}

.construction-modal {
    position: relative;
    width: min(92vw, 420px);
    padding: 28px 24px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    color: var(--text-dark);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.construction-modal h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.construction-modal p {
    margin-bottom: 18px;
    line-height: 1.55;
}

.construction-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-color);
    font-size: 22px;
    cursor: pointer;
}

.modal-cta-glow {
    display: block;
    margin: 20px auto 0;
    padding-left: 32px;
    padding-right: 32px;
    animation: modal-cta-pulse 1.5s infinite;
}

@keyframes modal-cta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.7);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 20px 4px rgba(245, 124, 0, 0.9);
        transform: translateY(-1px);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.7);
        transform: translateY(0);
    }
}

/* Implementation Support */
.implementation {
    background-color: var(--primary-color);
    color: white;
}

.implementation h2 {
    color: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.support-item i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.support-item h4 {
    color: white;
    font-size: 20px;
}

/* Add-ons */
.addons {
    background: transparent;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
}

/* Mobile view only - accessories grid 2 columns, 8 rows */
body.view-mobile .addons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

body.view-mobile .addon-item {
    padding: 8px;
    border-radius: 12px;
}

body.view-mobile .addon-item-media {
    border-radius: 10px;
}

body.view-mobile .addon-item span {
    font-size: 12px;
}

.addon-item {
    position: relative;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 18px;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--border-color);
    display: block;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 0;
}

.addon-item-media {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.addon-item-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.18) 35%, rgba(0, 0, 0, 0) 68%);
    pointer-events: none;
    z-index: 1;
}

.addon-item-media .bubble-icon-video,
.addon-item-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.addon-item-media .bubble-icon-video {
    background: #ffffff;
}

.addon-item-tight-media {
    padding: 8px;
}

.addon-item-tight-media .addon-item-media {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
}

.addon-item span {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.22;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.95), 0 0 18px rgba(255, 255, 255, 0.55), 0 3px 12px rgba(0, 0, 0, 0.82);
}

.addon-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.accessory-detail-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    backdrop-filter: none;
    z-index: 2400;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.accessory-detail-overlay.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.accessory-detail-dialog {
    width: min(92vw, 640px);
    height: min(92vw, 640px);
    max-height: 88vh;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.accessory-detail-body {
    width: 100%;
    height: 100%;
}

.accessory-detail-body .bubble-content {
    display: flex;
    opacity: 1;
    height: 100%;
    padding: 24px;
    overflow-y: auto;
}

.accessory-detail-body .bubble-close-btn {
    position: sticky;
    top: 0;
    margin-left: auto;
}

/* Problem Solution */
.problem-solution {
    background: transparent;
}

.ps-container {
    display: flex;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    overflow: hidden;
}

.ps-box {
    flex: 1;
    padding: 60px;
}

.problem {
    background-color: #ffebee;
    color: #c62828;
}

.solution {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.ps-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.ps-box p {
    font-size: 18px;
    font-weight: 500;
}

/* Mobile view only - stack problem/solution boxes vertically */
body.view-mobile .ps-container {
    flex-direction: column;
}

body.view-mobile .ps-box {
    padding: 30px;
}

/* Industries */
.industries {
    background: transparent;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
}

/* Mobile view only - industries grid 2 columns, 2 rows */
body.view-mobile .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

body.view-mobile .industry-item {
    padding: 8px;
    border-radius: 12px;
}

body.view-mobile .industry-item span {
    font-size: 12px;
}

.industry-item {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 18px;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--border-color);
    display: block;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 0;
    appearance: none;
    -webkit-appearance: none;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.industry-item-media {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.industry-item-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.18) 35%, rgba(0, 0, 0, 0) 68%);
    pointer-events: none;
    z-index: 1;
}

.industry-item-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.industry-item span {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.22;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.95), 0 0 18px rgba(255, 255, 255, 0.55), 0 3px 12px rgba(0, 0, 0, 0.82);
}

.industry-detail-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    backdrop-filter: none;
    z-index: 2450;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.industry-detail-overlay.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.industry-detail-dialog {
    position: relative;
    width: min(92vw, 640px);
    height: min(92vw, 640px);
    max-height: 88vh;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.industry-detail-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.industry-detail-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 18px;
}

.industry-detail-title {
    margin: 0 56px 12px 8px;
    color: var(--primary-color);
    font-size: 1.35rem;
    text-align: left;
}

.industry-detail-image-wrap {
    flex: 1;
    border-radius: 18px;
    background: #f8f9fa;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.industry-detail-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #ffffff;
}

/* Pricing */
.pricing {
    background: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 18px;
    margin-bottom: 40px;
}

.price-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    overflow: visible;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--secondary-color);
    color: white;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(245, 124, 0, 0.28);
    z-index: 3;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price-card .price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.price-card p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.price-card .btn {
    margin-top: auto;
}

.pricing-disclaimer {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    font-size: 14px;
}

/* Process */
.process {
    background-color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.process-card {
    position: relative;
}

.process-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.process-content {
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-card h4 {
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    background: transparent;
    color: var(--text-dark);
    text-align: center;
    padding: 80px 0;
}

.hero .btn-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero .btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.cta-section .btn-white {
    background-color: var(--primary-color);
    color: #ffffff;
}

.cta-section .btn-white:hover {
    background-color: #00448d;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #222;
    color: #ccc;
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* Mobile view only - compact footer layout */
body.view-mobile .footer {
    padding: 40px 0 20px;
}

body.view-mobile .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

/* Mobile view only - First footer col spans full width, hide contact col */
body.view-mobile .footer-container .footer-col:nth-child(1) {
    grid-column: span 2;
}

body.view-mobile .footer-container .footer-col:nth-child(4) {
    display: none;
}

body.view-mobile .footer-col h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

body.view-mobile .footer-col p {
    font-size: 14px;
}

body.view-mobile .footer-col ul li {
    margin-bottom: 8px;
}

body.view-mobile .footer-col ul li a {
    font-size: 14px;
}

body.view-mobile .footer-bottom {
    font-size: 12px;
    padding-top: 15px;
}

/* Bubbles Section Styles - 3D Circle */
.bubbles-section {
    padding: 80px 0;
    background-color: #f0f7ff;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center, #f0f7ff 0%, #e1effe 100%);
    display: none; /* Hide original section styles if element is removed */
}

/* Bubbles Container */
.bubbles-container {
    position: relative;
    width: 100%;
    max-width: 400px; /* Reduced by 20% from 500px */
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto;
    left: -38px;
    /* Hardware acceleration */
    transform: translateZ(0);
    will-change: transform;
}

.bubble-btn {
    position: absolute;
    width: 14.4%; /* Reduced by 20% from 18% */
    height: 14.4%; /* Reduced by 20% from 18% */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    
    /* 3D Bubble Effect - Safer Fallback */
    background: rgba(255, 255, 255, 0.9); /* Fallback for no-backdrop-filter */
    
    box-shadow: 
        inset -10px -10px 20px rgba(0, 86, 179, 0.15),
        inset 10px 10px 20px rgba(255, 255, 255, 1),
        0 10px 20px rgba(0, 86, 179, 0.15),
        0 0 0 4px rgba(255, 255, 255, 0.4);
        
    border: 1px solid rgba(255, 255, 255, 0.6);
    
    color: var(--primary-color);
    
    /* Initial Hidden State (Centered) */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-720deg);
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
}

/* Modern Browser Support */
@supports ((-webkit-backdrop-filter: blur(4px)) or (backdrop-filter: blur(4px))) {
    .bubble-btn {
        background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(227, 242, 253, 0.6));
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
}

.bubbles-expanded .bubble-btn {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
    pointer-events: auto;
    cursor: pointer;
}


/* Expansion Styles */
.bubble-btn.active {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 26.4vmax !important; /* Reduced by 20% from 33vmax */
    height: 26.4vmax !important; /* Reduced by 20% from 33vmax */
    z-index: 9999 !important;
    
    /* Animation Sequence:
       1. Expand/Move: 0.8s
       2. Morph Shape: 0.5s delayed by 1.5s
    */
    transition: 
        top 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        left 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        width 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        height 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        border-radius 0.5s ease 1.5s, /* Delayed shape change */
        background 0.5s ease;
        
    border-radius: 20px; /* Final state: Curved Square */
    
    /* Ensure content is visible and layout is handled */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: white; /* Solid background for readability */
    
    /* Safari-specific fixes */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* Safari-specific bubble fixes */
@supports (-webkit-appearance: none) {
    .bubble-btn.active {
        /* Force hardware acceleration in Safari */
        -webkit-transform: translate(-50%, -50%) translateZ(0);
        transform: translate(-50%, -50%) translateZ(0);
        
        /* Prevent Safari from jumping during animation */
        -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                        top 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                        left 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                        width 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                        height 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                        border-radius 0.5s ease 1.5s,
                        background 0.5s ease;
        transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                    top 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                    left 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                    width 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                    height 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                    border-radius 0.5s ease 1.5s,
                    background 0.5s ease;
    }
    
    /* Ensure other bubbles remain clickable in Safari */
    .bubbles-container.bubbles-expanded .bubble-btn:not(.active) {
        -webkit-transform: translate(0, 0) scale(1) rotate(0deg) translateZ(0);
        transform: translate(0, 0) scale(1) rotate(0deg) translateZ(0);
        pointer-events: auto;
    }
    
    .bubbles-container.bubbles-expanded .bubble-btn:not(.active):hover {
        -webkit-transform: translate(0, 0) scale(1) rotate(0deg) translateZ(0);
        transform: translate(0, 0) scale(1) rotate(0deg) translateZ(0);
    }
}

/* Initial Content State */
.bubble-initial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.bubble-btn.active .bubble-initial {
    display: none; /* Hide initial content when active */
}

/* Expanded Content State */
.bubble-content {
    display: none;
    flex-direction: column;
    padding: 16px; /* Reduced by 20% from 20px */
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.5s ease 0.5s; /* Fade in after expansion */
    font-family: 'Archivo Narrow', sans-serif; /* Use Archivo Narrow */
}

/* Slick Orange Scrollbar */
.bubble-content::-webkit-scrollbar {
    width: 6px;
}

.bubble-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.bubble-content::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.bubble-content::-webkit-scrollbar-thumb:hover {
    background: #e65100;
}

.bubble-btn.active .bubble-content {
    display: flex;
    opacity: 1;
}

.bubble-close-btn {
    position: absolute;
    top: 16px; /* Reduced by 20% from 20px */
    right: 16px; /* Reduced by 20% from 20px */
    background: none;
    border: none;
    font-size: 16px; /* Reduced by 20% from 20px */
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    width: 25.6px; /* Reduced by 20% from 32px */
    height: 25.6px; /* Reduced by 20% from 32px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.bubble-close-btn:hover {
    background: rgba(0,0,0,0.1);
}

.bubble-content h3 {
    font-size: 1.6rem; /* Smaller heading */
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    margin-top: 10px;
    font-weight: 700;
    text-align: center;
}

.bubble-content p {
    font-size: 0.95rem; /* Smaller text */
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 12px; /* Reduced spacing */
    text-align: left;
}

.bubble-hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bubble-hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 12px 0 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bubble-subtitle {
    font-size: 1.05rem !important;
    font-weight: 600;
    color: var(--secondary-color) !important;
    margin: 0 !important;
    font-style: italic;
    text-align: left;
}

.bubble-content h4 {
    font-size: 1.2rem; /* Smaller h4 */
    color: var(--primary-color);
    margin: 20px 0 12px;
    border-bottom: 2px solid var(--secondary-color); /* Orange line */
    padding-bottom: 4px;
    font-weight: 600;
    text-align: center;
}

.bubble-content h5 {
    font-size: 1.05rem; /* Smaller h5 */
    color: var(--text-dark);
    font-weight: 700;
    margin: 16px 0 8px;
    text-align: center;
}

.bubble-list {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.bubble-list li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem; /* Smaller list text */
}

.bubble-list li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.bubble-footer-text {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--secondary-color); /* Orange line */
    text-align: center;
    font-style: italic;
    color: var(--text-light) !important;
    font-size: 0.9rem; /* Smaller footer text */
}

/* Bubble Icon Image (Small View) */
.bubble-icon-img-container {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: white;
}

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

.bubble-icon-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

.bubble-icon-img-container i {
    margin-bottom: 0 !important;
    font-size: 0.96rem; /* Reduced by 20% from 1.2rem */
}

.bubble-btn i {
    font-size: 1.2rem; /* Reduced by 20% from 1.5rem */
    margin-bottom: 4px;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
    transition: transform 0.5s ease;
}

.bubble-btn span {
    font-weight: 600; /* Slightly lighter weight */
    font-size: 0.56rem; /* Reduced by 20% from 0.7rem */
    color: var(--text-dark);
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    width: 100%;
    padding: 0 5px;
    line-height: 1.1;
    font-family: 'Archivo Narrow', sans-serif; /* Use Archivo Narrow for label too */
}

/* Central Bubble - Nested 3D Design */
.bubble-center-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35.2%; /* Reduced by 20% from 44% */
    height: 35.2%; /* Reduced by 20% from 44% */
    z-index: 600; /* Highest priority (Tier 1) */
    text-decoration: none;
    color: inherit; /* Prevent default link color */
    animation: float-center 7s ease-in-out infinite;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
    pointer-events: auto; /* Ensure it captures clicks */
    touch-action: manipulation; /* Improve touch response */
    user-select: none; /* Prevent text selection */
}

.bubble-outer-glass {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    
    /* Fallback */
    background: rgba(255, 255, 255, 0.4);
    
    box-shadow: 
        inset -10px -10px 20px rgba(0, 86, 179, 0.1),
        inset 10px 10px 20px rgba(255, 255, 255, 0.8),
        0 15px 30px rgba(0, 86, 179, 0.15),
        0 0 0 6px rgba(255, 255, 255, 0.3);
        
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

@supports ((-webkit-backdrop-filter: blur(2px)) or (backdrop-filter: blur(2px))) {
    .bubble-outer-glass {
        background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.4), rgba(255,255,255,0.1) 60%, rgba(255,255,255,0.05));
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }
}

.bubble-inner-core {
    width: 64%; /* Responsive 140/220 */
    height: 64%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e3f2fd);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 
        0 8px 16px rgba(0, 86, 179, 0.15),
        inset -5px -5px 15px rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    animation: float-inner 5s ease-in-out infinite alternate;
    will-change: transform;
}

.bubble-inner-core i {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.brand-text {
    font-weight: 800;
    font-size: 12.8px; /* Reduced by 20% from 16px */
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--text-dark);
    display: none; /* Initially hidden */
}

.click-me-label {
    font-weight: 800;
    font-size: 12.8px; /* Reduced by 20% from 16px */
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--secondary-color);
    animation: mischief 1.5s infinite ease-in-out;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Show Brand Text when Expanded */
.bubbles-expanded .brand-text {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

/* Hide Click Me when Expanded */
.bubbles-expanded .click-me-label {
    display: none;
}

@keyframes mischief {
    0% { transform: rotate(0deg) scale(1); color: var(--secondary-color); }
    25% { transform: rotate(-5deg) scale(1.1); color: #ff3366; } /* Pink/Red */
    50% { transform: rotate(3deg) scale(1.05); color: #6633ff; } /* Purple */
    75% { transform: rotate(-3deg) scale(1.15); color: #ff9933; } /* Orange-Red */
    100% { transform: rotate(0deg) scale(1); color: var(--secondary-color); }
}

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

@keyframes float-center {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

@keyframes float-inner {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-5px) scale(1.02); }
}

/* Positioning in Circle (Expanded) */
/* Back/Top Bubbles (Tier 3 - Smallest) */
.bubbles-expanded .bubble-1 {
    top: 1.0%;
    left: 38.8%;
    animation: float-margin 5s ease-in-out infinite 0s;
    z-index: 400;
    transform: scale(0.85);
}

.bubbles-expanded .bubble-2 {
    top: 18.0%;
    left: 77.0%;
    animation: float-margin 5.2s ease-in-out infinite 0.1s;
    z-index: 400;
    transform: scale(0.85);
}

.bubbles-expanded .bubble-3 {
    top: 32.0%;
    left: 82.0%;
    animation: float-margin 5.4s ease-in-out infinite 0.2s;
    z-index: 400;
    transform: scale(0.85);
}

.bubbles-expanded .bubble-4 {
    top: 48.0%;
    left: 80.5%;
    animation: float-margin 5s ease-in-out infinite 0.3s;
    z-index: 500;
}

.bubbles-expanded .bubble-5 {
    top: 63.0%;
    left: 73.0%;
    animation: float-margin 5.2s ease-in-out infinite 0.4s;
    z-index: 500;
}

/* Front/Bottom Bubbles (Tier 2 - Bigger) */
.bubbles-expanded .bubble-6 {
    top: 75.0%;
    left: 60.0%;
    animation: float-margin 5.4s ease-in-out infinite 0.5s;
    z-index: 500;
}

.bubbles-expanded .bubble-7 {
    top: 82.0%;
    left: 44.5%;
    animation: float-margin 5s ease-in-out infinite 0.6s;
    z-index: 500;
}

.bubbles-expanded .bubble-8 {
    top: 80.0%;
    left: 27.5%;
    animation: float-margin 5.2s ease-in-out infinite 0.7s;
    z-index: 500;
}

.bubbles-expanded .bubble-9 {
    top: 72.0%;
    left: 13.0%;
    animation: float-margin 5.4s ease-in-out infinite 0.8s;
    z-index: 500;
}

.bubbles-expanded .bubble-10 {
    top: 58.0%;
    left: 3.5%;
    animation: float-margin 5s ease-in-out infinite 0.9s;
    z-index: 500;
}

.bubbles-expanded .bubble-11 {
    top: 42.0%;
    left: 0.5%;
    animation: float-margin 5.2s ease-in-out infinite 1s;
    z-index: 500;
}

.bubbles-expanded .bubble-12 {
    top: 25.0%;
    left: 3.0%;
    animation: float-margin 5.4s ease-in-out infinite 1.1s;
    z-index: 400;
    transform: scale(0.85);
}

.bubbles-expanded .bubble-13 {
    top: 11.5%;
    left: 10.5%;
    animation: float-margin 5s ease-in-out infinite 1.2s;
    z-index: 400;
    transform: scale(0.85);
}

.bubbles-expanded .bubble-14 {
    top: 4.5%;
    left: 21.5%;
    animation: float-margin 5.2s ease-in-out infinite 1.3s;
    z-index: 400;
    transform: scale(0.85);
}

/* Back/Top Bubbles (Tier 3 - Smallest) */
.bubbles-expanded .bubble-15 {
    top: 2.8%;
    left: 54.5%;
    animation: float-margin 5.4s ease-in-out infinite 1.4s;
    z-index: 400;
    transform: scale(0.85);
}

.bubbles-expanded .bubble-16 {
    top: 8.0%;
    left: 68.0%;
    animation: float-margin 5s ease-in-out infinite 1.5s;
    z-index: 400;
    transform: scale(0.85);
}

.bubbles-expanded .bubble-17 {
    top: 18.5%;
    left: 6.6%;
    animation: float-margin 5.2s ease-in-out infinite 1.6s;
    z-index: 400;
    transform: scale(0.85);
}

.bubbles-expanded .bubble-18 {
    top: 8.6%;
    left: 15.8%;
    animation: float-margin 5.4s ease-in-out infinite 1.7s;
    z-index: 400;
    transform: scale(0.85);
}

.bubbles-expanded .bubble-19 {
    top: 2.2%;
    left: 27.7%;
    animation: float-margin 5s ease-in-out infinite 1.8s;
    z-index: 400;
    transform: scale(0.85);
}

/* Floating Animation using Margin to avoid Transform conflict */
@keyframes float-margin {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -15px; }
}

/* Hover Effects - Only for devices with hover capability */
@media (hover: hover) {
    .bubble-center-link:hover .bubble-outer-glass {
        transform: scale(1.1);
        box-shadow: 
            inset -10px -10px 30px rgba(0, 86, 179, 0.2),
            inset 10px 10px 30px rgba(255, 255, 255, 1),
            0 30px 60px rgba(0, 86, 179, 0.25),
            0 0 0 12px rgba(255, 255, 255, 0.5);
    }

    .bubble-center-link:hover .bubble-inner-core {
        transform: scale(1.05);
    }

    .bubble-btn:hover {
        transform: scale(1.5) translateY(-10px); /* Significant growth */
        background: radial-gradient(circle at 30% 30%, #ffffff, #e3f2fd);
        box-shadow: 
            inset -5px -5px 15px rgba(0, 86, 179, 0.2),
            inset 10px 10px 20px rgba(255, 255, 255, 1),
            0 25px 50px rgba(0, 86, 179, 0.3), /* Deep shadow */
            0 0 20px rgba(255, 255, 255, 0.8); /* Glow */
        z-index: 10;
        cursor: pointer;
    }

    .bubble-btn:hover i {
        transform: rotateY(360deg); /* 3D Spin */
        color: var(--primary-color);
    }
}

/* Click Effect */
.bubble-btn:active {
    transform: scale(0.95);
    box-shadow: 
        inset 5px 5px 10px rgba(0, 86, 179, 0.1),
        0 5px 10px rgba(0,0,0,0.1);
}

/* Responsive - Fallback to grid on mobile */
@media (max-width: 768px) {
    /* Navigation */
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        border-radius: 8px;
        cursor: pointer;
        color: white;
        font-size: 20px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .workshop-suite-btn,
    .claim-freebies-btn {
        font-size: 12px;
        padding: 6px 12px;
        margin-right: 8px;
    }

    .claim-freebies-btn {
        font-size: 11px;
    }

    .claim-freebies-btn i {
        font-size: 14px;
    }

    /* Header */
    .header-container {
        flex-wrap: nowrap;
        padding: 10px;
        gap: 10px;
    }

    .logo-img {
        max-height: 35px;
        flex-shrink: 0;
    }

    .nav {
        flex-wrap: nowrap;
        gap: 5px;
    }

    .nav-controls {
        gap: 5px;
    }

    .workshop-suite-btn,
    .claim-freebies-btn {
        font-size: 10px;
        padding: 4px 8px;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

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

    /* Grid Layouts */
    .pricing-grid, .ind-grid, .support-grid, .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card.popular {
        transform: none;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* About Section */
    .about-container {
        flex-direction: column;
        gap: 30px;
    }

    /* Bubbles - removed overrides to let body.view-mobile work properly */

    /* Chatbot */
    .chatbot-widget {
        right: 15px;
        bottom: 15px;
        z-index: 9999;
    }

    .chatbot-panel {
        width: min(340px, calc(100vw - 24px));
        bottom: 0;
        max-height: min(82vh, 680px);
    }

    .chatbot-toggle-image {
        width: min(115px, 30vw);
    }

    /* Video Modal */
    .video-modal-dialog {
        max-width: 95vw;
        margin: 20px;
        padding: 15px;
    }

    .video-modal-body h2 {
        font-size: 18px;
    }

    .video-modal-timer {
        font-size: 16px;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Cards */
    .card {
        padding: 20px;
    }

    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Accessory Detail */
    .accessory-detail-dialog {
        width: min(94vw, 540px);
        height: min(94vw, 540px);
        max-height: 84vh;
    }

    /* Industry Detail */
    .industry-detail-dialog {
        width: min(94vw, 540px);
        max-height: 90vh;
    }

    /* Typography */
    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    /* Touch targets */
    .bubble-btn {
        min-width: 44px;
        min-height: 44px;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Spacing */
    section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .workshop-suite-btn,
    .claim-freebies-btn {
        font-size: 11px;
        padding: 5px 10px;
    }

    .claim-freebies-btn span {
        display: none;
    }

    .claim-freebies-btn i {
        margin: 0;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .header-container {
        padding: 10px;
    }

    .logo-img {
        max-height: 35px;
    }
}

/* Mobile view only - active bubble modal positioning - match tablet/desktop behavior */
/* Placed at end to override base .bubble-btn.active rule */
body.view-mobile .bubble-btn.active {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
    width: 90vw !important;
    overflow: hidden !important;
    height: 80vh !important;
    z-index: 9999 !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    -webkit-transform-style: preserve-3d !important;
    transform-style: preserve-3d !important;
    display: flex !important;
    flex-direction: column !important;
}
