/* ============================================================
   landing.css — shared styles for all Breinrock landing pages
   Source of truth: extracted from inline <style> blocks.
   Do NOT add page-specific overrides here.
============================================================ */

* {
            color: #fff;
        }

        /* Logo Slider Styles */
        .logo-slider {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        /* Full Width Logo Slider */
        .logo-slider-fullwidth {
            overflow: hidden;
            width: 100vw;
            position: relative;
            margin-left: calc(-50vw + 50%);
        }

        .logo-slider-track {
            display: flex;
            animation: scroll 20s linear infinite;
            width: calc(200px * 16);
            /* 8 logos * 2 sets * 200px each */
        }

        .logo-item {
            flex: 0 0 200px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 20px;
            font-size: 1.5rem;
            font-weight: bold;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .logo-item:hover {
            opacity: 1;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-200px * 8));
                /* Move by half the total width */
            }
        }

        /* Pause animation on hover */
        .logo-slider:hover .logo-slider-track {
            animation-play-state: paused;
        }

        /* Glassmorphic text styling - 3D Oyster Effect */
        .glassmorphic-text {
            background:
                radial-gradient(ellipse at top, rgba(255, 255, 255, 0.1) 0%, transparent 10%),
                linear-gradient(135deg,
                    rgba(255, 255, 255, 0.3) 0%,
                    rgba(255, 255, 255, 0.05) 30%,
                    rgba(255, 255, 255, 0.05) 50%,
                    rgba(0, 0, 0, 0.1) 70%);
            backdrop-filter: blur(25px) saturate(200%) brightness(50%);
            -webkit-backdrop-filter: blur(20px) saturate(200%) brightness(59%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px 8px 15px 8px;
            padding: 10px 20px 10px 24px;
            display: inline-block;
            margin: 10px 0;
            box-shadow:
                0 15px 50px 0 rgba(31, 38, 135, 0.4),
                0 5px 20px 0 rgba(0, 0, 0, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.6),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1),
                inset 2px 0 0 rgba(255, 255, 255, 0.3),
                inset -2px 0 0 rgba(0, 0, 0, 0.1);
            font-weight: 300;
            letter-spacing: 0.5px;
            font-size: 15px;
            position: relative;
            overflow: hidden;
            transform: perspective(1000px) rotateX(5deg) rotateY(-2deg);
            transition: all 0.3s ease;
        }

        .glassmorphic-text:hover {
            transform: perspective(1000px) rotateX(2deg) rotateY(-1deg) scale(1.02);
            box-shadow:
                0 20px 60px 0 rgba(31, 38, 135, 0.5),
                0 8px 25px 0 rgba(0, 0, 0, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.7),
                inset 0 -2px 0 rgba(0, 0, 0, 0.15),
                inset 2px 0 0 rgba(255, 255, 255, 0.4),
                inset -2px 0 0 rgba(0, 0, 0, 0.15);
        }

        .glassmorphic-text::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.2),
                    transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }

            100% {
                left: 100%;
            }
        }

        .advantage {
            background-color: rgb(12, 13, 41);
            border-radius: 10px;
            padding: 2rem 1.5rem;
            margin: 0 0.25rem 1rem 0.25rem !important;
            flex: 0 0 calc(25% - 0.5rem) !important;
            max-width: calc(25% - 0.5rem) !important;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        .advantage h4 {
            margin-bottom: 1rem;
            flex-shrink: 0;
            padding: 0;
        }

        .advantage p {
            flex: 1;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
        }

        .advantage:last-child {
            margin-right: 0;
        }

        @media (max-width: 991.98px) {
            .advantage {
                flex: 0 0 calc(50% - 0.5rem) !important;
                max-width: calc(50% - 0.5rem) !important;
            }
        }

        @media (max-width: 767.98px) {
            .advantage {
                flex: 0 0 100% !important;
                max-width: 100% !important;
                margin: 0 0 1rem 0 !important;
            }
        }

        /* Comparison Table Styles - Now in style.css */

        /* Contact Landing Background Styles */
        .contactlanding-bg {
            background-image: url('imgs/landingcontact.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            min-height: 60vh;
            position: relative;
            display: flex;
            align-items: center;
            margin: 0 2rem;
            border-radius: 25px;
            overflow: hidden;
        }

        .contactlanding-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .contactwrapper-landing {
            position: relative;
            z-index: 2;
        }

        .contactcontent-landing {
            position: relative;
            z-index: 2;
        }

        /* Analytics Container */
        .analytics-container {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .analytics-div {
            position: absolute;
            width: 150px;
            height: 150px;
            opacity: 0;
            transform: scale(0.3);
            animation: analyticsAppear 2s ease-out forwards;
        }

        .analytics-pie {
            top: 25%;
            left: 3%;
            animation-delay: 0.5s;
        }

        .analytics-graph {
            top: 25%;
            right: 3%;
            animation-delay: 1s;
        }

        /* Glassmorphic Background */
        .glassmorphic-bg {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.1) 0%,
                    rgba(255, 255, 255, 0.05) 50%,
                    rgba(255, 255, 255, 0.1) 100%);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .glassmorphic-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg,
                    transparent 30%,
                    rgba(255, 255, 255, 0.1) 50%,
                    transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
        }

        /* Pie Chart Styles */
        .pie-chart {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: relative;
            margin-bottom: 12px;
            animation: pieRotate 4s ease-in-out infinite;
        }

        .pie-slice {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            clip-path: polygon(50% 50%, 50% 0%, 100% 0%);
            transform-origin: 50% 50%;
        }

        .slice-1 {
            background: linear-gradient(45deg, #4CAF50, #66BB6A);
            transform: rotate(0deg);
            animation: sliceGrow 1.5s ease-out 2s forwards;
        }

        .slice-2 {
            background: linear-gradient(45deg, #2196F3, #42A5F5);
            transform: rotate(120deg);
            animation: sliceGrow 1.5s ease-out 2.2s forwards;
        }

        .slice-3 {
            background: linear-gradient(45deg, #FF9800, #FFB74D);
            transform: rotate(240deg);
            animation: sliceGrow 1.5s ease-out 2.4s forwards;
        }

        .pie-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: centerPulse 2s ease-in-out 2.5s infinite;
        }

        .percentage {
            font-size: 12px;
            font-weight: bold;
            color: #333;
        }

        /* Line Graph Styles */
        .line-graph {
            width: 100px;
            height: 60px;
            margin-bottom: 12px;
        }

        .graph-svg {
            width: 100%;
            height: 100%;
        }

        .graph-line {
            fill: none;
            stroke: #4CAF50;
            stroke-width: 2;
            stroke-dasharray: 200;
            stroke-dashoffset: 200;
            animation: lineDraw 2s ease-out 2s forwards;
        }

        .data-point {
            fill: #4CAF50;
            opacity: 0;
            animation: pointAppear 0.3s ease-out forwards;
        }

        .data-point:nth-child(2) {
            animation-delay: 2.2s;
        }

        .data-point:nth-child(3) {
            animation-delay: 2.4s;
        }

        .data-point:nth-child(4) {
            animation-delay: 2.6s;
        }

        .data-point:nth-child(5) {
            animation-delay: 2.8s;
        }

        .data-point:nth-child(6) {
            animation-delay: 3s;
        }

        .data-point:nth-child(7) {
            animation-delay: 3.2s;
        }

        .data-point:nth-child(8) {
            animation-delay: 3.4s;
        }

        .chart-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            text-align: center;
            animation: labelFade 1s ease-out 3.5s forwards;
            opacity: 0;
        }

        /* Animations */
        @keyframes analyticsAppear {
            0% {
                opacity: 0;
                transform: scale(0.3) rotate(-10deg);
            }

            50% {
                opacity: 0.8;
                transform: scale(1.1) rotate(5deg);
            }

            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        @keyframes pieRotate {

            0%,
            100% {
                transform: rotate(0deg);
            }

            50% {
                transform: rotate(5deg);
            }
        }

        @keyframes sliceGrow {
            0% {
                clip-path: polygon(50% 50%, 50% 50%, 50% 50%);
            }

            100% {
                clip-path: polygon(50% 50%, 50% 0%, 100% 0%);
            }
        }

        @keyframes centerPulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        @keyframes lineDraw {
            0% {
                stroke-dashoffset: 200;
            }

            100% {
                stroke-dashoffset: 0;
            }
        }

        @keyframes pointAppear {
            0% {
                opacity: 0;
                transform: scale(0);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes labelFade {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .analytics-div {
                width: 100px;
                height: 100px;
            }

            .analytics-pie {
                top: 20%;
                left: 2%;
            }

            .analytics-graph {
                top: 20%;
                right: 2%;
            }

            .pie-chart {
                width: 50px;
                height: 50px;
            }

            .pie-center {
                width: 25px;
                height: 25px;
            }

            .percentage {
                font-size: 9px;
            }

            .line-graph {
                width: 70px;
                height: 45px;
            }
        }

        @media (max-width: 480px) {
            .analytics-div {
                width: 80px;
                height: 80px;
            }

            .analytics-pie {
                top: 15%;
                left: 1%;
            }

            .analytics-graph {
                top: 15%;
                right: 1%;
            }

            .pie-chart {
                width: 40px;
                height: 40px;
            }

            .pie-center {
                width: 20px;
                height: 20px;
            }

            .percentage {
                font-size: 8px;
            }

            .line-graph {
                width: 60px;
                height: 35px;
            }
        }

        /* Award Section Styles */
        .award-section {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.05) 0%,
                    rgba(255, 255, 255, 0.02) 50%,
                    rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .award-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .company-logos {
            gap: 3rem;
        }

        .company-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .company-logo:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .company-logo img {
            height: 80px;
            width: auto;
            object-fit: contain;
        }

        /* Responsive Design for Award Section */
        @media (max-width: 768px) {
            .award-title {
                font-size: 2.5rem;
                margin-bottom: 2rem;
            }

            .company-logos {
                gap: 2rem;
            }

            .company-logo img {
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .award-title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }

            .company-logos {
                gap: 1.5rem;
            }

            .company-logo img {
                height: 50px;
            }
        }

        /* Comparison Table Responsive Styles - Now in style.css */

        /* Responsive heading tweaks (smaller on phones) */
        .hero-title {
            font-weight: 700;
        }

        .compare-title {
            font-weight: 700;
        }

        .cta-title {
            font-weight: 700;
        }

        @media (max-width: 767.98px) {
            .hero-title {
                font-size: 2rem !important;
            }

            .compare-title {
                font-size: 1.75rem !important;
            }

            .cta-title {
                font-size: 1.75rem !important;
            }
        }

        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 1.75rem !important;
            }

            .compare-title {
                font-size: 1.5rem !important;
            }

            .cta-title {
                font-size: 1.5rem !important;
            }
        }

.store-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }
        .store-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-width: 190px;
            padding: 10px 18px;
            border-radius: 12px;
            color: #fff;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.15;
        }
        .store-badge:hover, .store-badge:focus-visible {
            background: rgba(62, 116, 214, 0.22);
            border-color: #3E74D6;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(62, 116, 214, 0.28);
            text-decoration: none;
        }
        .store-badge:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
        .store-badge:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(62, 116, 214, 0.2); }
        .store-badge-icon { width: 28px; height: 28px; flex: 0 0 28px; display: block; }
        .store-badge-text { display: flex; flex-direction: column; text-align: left; }
        .store-badge-line1 { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.4px; opacity: 0.85; }
        .store-badge-line2 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.2px; }
        @media (max-width: 575.98px) {
            .store-badge { min-width: 0; flex: 1 1 calc(50% - 14px); padding: 9px 14px; }
            .store-badge-line2 { font-size: 1rem; }
        }

/* Demo CTA styles */
        #demo-cta .demo-wrapper {
            background: rgb(12, 13, 41);
            border-radius: 20px;
            margin: 0 2rem;
        }

        #demo-cta .demo-divider {
            width: 1px;
            height: 100%;
            background: rgba(255, 255, 255, 0.7);
        }

        #demo-cta .demo-list {
            list-style: none;
            padding-left: 0;
        }

        #demo-cta .demo-list li {
            position: relative;
            padding-left: 1.25rem;
            margin-bottom: .75rem;
        }

        #demo-cta .demo-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 0;
            color: #fff;
        }

        /* Glassy inputs */
        #demo-cta .demo-input {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.16) 0%,
                    rgba(255, 255, 255, 0.08) 50%,
                    rgba(255, 255, 255, 0.16) 100%);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 14px;
            padding: .9rem 1.1rem;
            backdrop-filter: blur(12px) saturate(160%);
            -webkit-backdrop-filter: blur(12px) saturate(160%);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }

        #demo-cta .demo-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        #demo-cta .form-select.demo-input {
            background-color: #fff;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 16px 12px;
            color: #000;
            border-color: rgba(0, 0, 0, 0.2);
        }

        #demo-cta .demo-input:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.45);
            box-shadow: 0 0 0 .2rem rgba(62, 116, 214, .35), 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        /* Placeholder and invalid states */
        #demo-cta .demo-form select:invalid {
            color: rgba(0, 0, 0, 0.55);
        }

        #demo-cta .demo-form select option {
            background-color: #fff;
            color: #000;
        }

        /* Glossy Dynamic CTA Buttons - Landing Page Only */
        /* Main CTA Buttons */
        .button.button1,
        .contactbutton.button1,
        #demo-cta .demo-btn,
        .button.button1.px-4 {
            background: linear-gradient(135deg, 
                rgba(62, 116, 214, 0.5) 0%,
                rgba(80, 140, 240, 0.5) 25%,
                rgba(100, 160, 255, 0.3) 50%,
                rgba(80, 140, 240, 0.1) 75%,
                rgba(62, 116, 214, 0.5) 100%);
            background-size: 200% 200%;
            color: #fff !important;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 12px;
            padding: 12px 32px;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 0 20px rgba(62, 116, 214, 0.6),
                0 0 40px rgba(62, 116, 214, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            animation: gradientShift 3s ease infinite, glowPulse 2s ease-in-out infinite;
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Sign up now button - 20% less prominent */
        #homebutton {
            background: linear-gradient(135deg, 
                rgba(62, 116, 214, 0.8) 0%,
                rgba(80, 140, 240, 0.8) 25%,
                rgba(100, 160, 255, 0.8) 50%,
                rgba(80, 140, 240, 0.8) 75%,
                rgba(62, 116, 214, 0.8) 100%);
            background-size: 200% 200%;
            color: #fff !important;
            border: 2px solid rgba(255, 255, 255, 0.32);
            border-radius: 12px;
            padding: 12px 32px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 0 16px rgba(62, 116, 214, 0.48),
                0 0 32px rgba(62, 116, 214, 0.32),
                0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.24),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            animation: gradientShift 3s ease infinite, glowPulseSubdued 2s ease-in-out infinite;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0.8;
        }
        
        /* Get in touch buttons - subdued default, effects on hover only */
        .navbar-nav .button.button1 {
            background: linear-gradient(135deg, 
                rgba(62, 116, 214, 0.7) 0%,
                rgba(80, 140, 240, 0.7) 25%,
                rgba(100, 160, 255, 0.7) 50%,
                rgba(80, 140, 240, 0.7) 75%,
                rgba(62, 116, 214, 0.7) 100%);
            background-size: 200% 200%;
            border: 2px solid rgba(255, 255, 255, 0.25);
            box-shadow: 
                0 0 10px rgba(62, 116, 214, 0.3),
                0 0 20px rgba(62, 116, 214, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
            animation: none;
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.8s ease;
        }
        
        .navbar-nav .button.button1::before {
            opacity: 0;
            transition: opacity 0.6s ease;
        }
        
        .navbar-nav .button.button1:hover {
            background: linear-gradient(135deg, 
                rgba(62, 116, 214, 1) 0%,
                rgba(80, 140, 240, 1) 25%,
                rgba(100, 160, 255, 1) 50%,
                rgba(80, 140, 240, 1) 75%,
                rgba(62, 116, 214, 1) 100%);
            border: 2px solid rgba(255, 255, 255, 0.4);
            box-shadow: 
                0 0 20px rgba(62, 116, 214, 0.6),
                0 0 40px rgba(62, 116, 214, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            animation: gradientShift 3s ease infinite, glowPulseGradual 3s ease-in-out infinite;
            animation-delay: 0s, 0.4s;
            transform: translateY(-2px) scale(1.02);
            transition: 0.5s;
        }
        
        .navbar-nav .button.button1:hover::before {
            opacity: 1;
            transition: opacity 0.8s ease;
        }
        
        /* Ensure text is visible - override any conflicting styles */
        .button.button1,
        .contactbutton.button1,
        #demo-cta .demo-btn,
        .button.button1.px-4,
        #homebutton,
        .navbar-nav .button.button1 {
            visibility: visible !important;
        }
        
        .button.button1,
        .contactbutton.button1,
        #demo-cta .demo-btn,
        .button.button1.px-4 {
            opacity: 1 !important;
        }

        /* Ensure button text is visible above shine effect */
        .button.button1,
        .contactbutton.button1,
        #demo-cta .demo-btn,
        .button.button1.px-4,
        #homebutton,
        .navbar-nav .button.button1 {
            position: relative;
        }
        
        .button.button1,
        .contactbutton.button1,
        #demo-cta .demo-btn,
        .button.button1.px-4,
        #homebutton,
        .navbar-nav .button.button1 {
            z-index: 1;
        }


        /* Shine/Reflection Effect - Behind text */
        .button.button1::before,
        .contactbutton.button1::before,
        #demo-cta .demo-btn::before,
        .button.button1.px-4::before,
        #homebutton::before,
        .navbar-nav .button.button1::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 70%
            );
            transform: rotate(45deg);
            animation: shine 3s infinite;
            pointer-events: none;
            z-index: 0;
        }
        
        /* Subdued shine for Sign up now button */
        #homebutton::before {
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.24) 50%,
                transparent 70%
            );
        }
        
        /* Ensure text is on top */
        .button.button1,
        .contactbutton.button1,
        #demo-cta .demo-btn,
        .button.button1.px-4,
        #homebutton,
        .navbar-nav .button.button1 {
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        /* Hover State */
        .button.button1:hover,
        .contactbutton.button1:hover,
        #demo-cta .demo-btn:hover,
        .button.button1.px-4:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 
                0 0 30px rgba(62, 116, 214, 0.8),
                0 0 60px rgba(62, 116, 214, 0.6),
                0 6px 20px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.6);
            animation: gradientShift 2s ease infinite, glowPulse 1.5s ease-in-out infinite;
        }
        
        /* Sign up now hover - slightly less prominent */
        #homebutton:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 
                0 0 24px rgba(62, 116, 214, 0.64),
                0 0 48px rgba(62, 116, 214, 0.48),
                0 6px 20px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.32),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.48);
            animation: gradientShift 2s ease infinite, glowPulseSubdued 1.5s ease-in-out infinite;
            opacity: 0.9;
        }

        /* Active State */
        .button.button1:active,
        .contactbutton.button1:active,
        #demo-cta .demo-btn:active,
        .button.button1.px-4:active,
        .navbar-nav .button.button1:active,
        #homebutton:active {
            transform: translateY(0) scale(0.98);
            box-shadow: 
                0 0 15px rgba(62, 116, 214, 0.5),
                0 0 30px rgba(62, 116, 214, 0.3),
                0 2px 10px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        #homebutton:active {
            box-shadow: 
                0 0 12px rgba(62, 116, 214, 0.4),
                0 0 24px rgba(62, 116, 214, 0.24),
                0 2px 10px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.16);
        }

        /* Animations */
        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes glowPulse {
            0%, 100% {
                box-shadow: 
                    0 0 20px rgba(62, 116, 214, 0.6),
                    0 0 40px rgba(62, 116, 214, 0.4),
                    0 4px 15px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
            }
            50% {
                box-shadow: 
                    0 0 25px rgba(62, 116, 214, 0.8),
                    0 0 50px rgba(62, 116, 214, 0.6),
                    0 4px 15px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.4);
            }
        }
        
        @keyframes glowPulseSubdued {
            0%, 100% {
                box-shadow: 
                    0 0 16px rgba(62, 116, 214, 0.48),
                    0 0 32px rgba(62, 116, 214, 0.32),
                    0 4px 15px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.24);
            }
            50% {
                box-shadow: 
                    0 0 20px rgba(62, 116, 214, 0.64),
                    0 0 40px rgba(62, 116, 214, 0.48),
                    0 4px 15px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.32);
            }
        }
        
        @keyframes glowPulseGradual {
            0% {
                box-shadow: 
                    0 0 10px rgba(62, 116, 214, 0.3),
                    0 0 20px rgba(62, 116, 214, 0.2),
                    0 4px 15px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2),
                    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            }
            30% {
                box-shadow: 
                    0 0 15px rgba(62, 116, 214, 0.45),
                    0 0 30px rgba(62, 116, 214, 0.3),
                    0 4px 15px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.25),
                    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            }
            50% {
                box-shadow: 
                    0 0 20px rgba(62, 116, 214, 0.6),
                    0 0 40px rgba(62, 116, 214, 0.4),
                    0 4px 15px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3),
                    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            }
            70% {
                box-shadow: 
                    0 0 25px rgba(62, 116, 214, 0.75),
                    0 0 50px rgba(62, 116, 214, 0.5),
                    0 4px 15px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.35),
                    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            }
            100% {
                box-shadow: 
                    0 0 20px rgba(62, 116, 214, 0.6),
                    0 0 40px rgba(62, 116, 214, 0.4),
                    0 4px 15px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3),
                    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            }
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        @media (max-width: 767.98px) {
            #demo-cta .demo-wrapper {
                margin: 0 1rem;
            }

            #demo-cta .demo-divider {
                display: none;
            }
        }

        /* Demo Popup Styles */
        .demo-popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .demo-popup-overlay.show {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .demo-popup-content {
            background: rgb(12, 13, 41);
            border-radius: 20px;
            max-width: 900px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.8);
            transition: transform 0.3s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .demo-popup-overlay.show .demo-popup-content {
            transform: scale(1);
        }

        .demo-popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .demo-popup-close {
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }

        .demo-popup-close:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .demo-popup-body {
            padding: 2rem;
        }

        @media (max-width: 768px) {
            .demo-popup-content {
                width: 95%;
                margin: 1rem;
            }

            .demo-popup-header {
                padding: 1rem 1.5rem;
            }

            .demo-popup-body {
                padding: 1.5rem;
            }
        }

        /* Prevent text wrapping in navigation buttons */
        .navbar-nav .button {
            white-space: nowrap;
        }

        /* Hero Section - 2 Column Layout: Table Left, Content Right */
        #landingpage-hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            padding-bottom: 60px;
        }
        
        #landingpage-hero .container {
            height: 100%;
        }
        
        #landingpage-hero .row {
            align-items: center;
        }
        
        /* Comparison Table in Hero */
        #landingpage-hero .comparison-card {
            margin-bottom: 0;
        }
        
        #landingpage-hero .comparison-table {
            font-size: 0.9rem;
        }
        
        #landingpage-hero .comparison-table thead th {
            padding: 1rem 0.75rem;
            font-size: 0.9rem;
        }
        
        #landingpage-hero .comparison-table tbody td {
            padding: 1rem 0.75rem;
            font-size: 0.85rem;
        }
        
        #landingpage-hero .hero-title {
            text-align: left !important;
            max-width: 100%;
            line-height: 1.3;
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        #landingpage-hero .hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 100%;
        }
        
        #landingpage-hero .button-wrap {
            text-align: left;
        }

        /* Reduce hero subheading size */
        #landingpage-hero .glassmorphic-text {
            font-size: .85rem;
            text-align: left;
        }

        /* Tablet - Stack columns */
        @media (max-width: 991.98px) {
            #landingpage-hero {
                padding-top: 80px;
                padding-bottom: 40px;
                min-height: auto;
            }
            
            #landingpage-hero .comparison-table {
                font-size: 0.85rem;
            }
            
            #landingpage-hero .comparison-table thead th {
                padding: 0.875rem 0.5rem;
                font-size: 0.85rem;
            }
            
            #landingpage-hero .comparison-table tbody td {
                padding: 0.875rem 0.5rem;
                font-size: 0.8rem;
            }
            
            #landingpage-hero .hero-title {
                font-size: 2rem !important;
                text-align: center !important;
                margin-top: 2rem !important;
            }
            
            #landingpage-hero .hero-description {
                font-size: 1rem !important;
                text-align: center !important;
            }
            
            #landingpage-hero .button-wrap {
                text-align: center !important;
            }
            
            #landingpage-hero .glassmorphic-text {
                font-size: .75rem;
                text-align: center !important;
                display: block !important;
                margin-left: auto !important;
                margin-right: auto !important;
                width: fit-content;
            }
        }
        
        /* Mobile - Center aligned */
        @media (max-width: 767.98px) {
            #landingpage-hero {
                padding-top: 60px;
                padding-bottom: 30px;
            }
            
            #landingpage-hero .comparison-card {
                padding: 1.5rem;
            }
            
            #landingpage-hero .comparison-table {
                font-size: 0.8rem;
            }
            
            #landingpage-hero .comparison-table thead th {
                padding: 0.75rem 0.5rem;
                font-size: 0.8rem;
            }
            
            #landingpage-hero .comparison-table tbody td {
                padding: 0.75rem 0.5rem;
                font-size: 0.75rem;
            }
            
            #landingpage-hero .hero-title {
                font-size: 1.75rem !important;
            }
            
            #landingpage-hero .hero-description {
                font-size: 0.95rem !important;
            }
        }

        /* Hide contact section glassmorphic analytics on mobile */
        @media (max-width: 767.98px) {
            #contactlanding .analytics-container {
                display: none;
            }
        }

        /* Fix double accordion buttons on landing.html FAQ section only */
        #faqAccordion .accordion-button::after {
            display: none !important;
        }

        /* Fix double accordion buttons on prepaid cards section */
        #prepaidCardsAccordion .accordion-button::after {
            display: none !important;
        }

        /* Prepaid Cards Section Styling */
        .prepaid-cards-heading {
            font-size: 2.5rem !important;
            font-weight: 700 !important;
            text-align: left !important;
            letter-spacing: 1px;
            font-family: 'Montserrat', sans-serif;
        }

        /* Smooth accordion transitions */
        #prepaidCardsAccordion .accordion-collapse {
            transition: height 0.35s ease;
        }

        #prepaidCardsAccordion .accordion-collapse.collapsing {
            transition: height 0.35s ease;
        }

        /* Ensure all card GIFs are the same size */
        #card-gif-display {
            max-width: 600px !important;
            max-height: 380px !important;
            width: auto;
            height: auto;
            object-fit: contain;
        }

