/* 
 * GMB AI - Main Stylesheet 
 * Palette: Google Blue (#4285F4), Green (#34A853), Red (#EA4335), Yellow (#FBBC05)
 * Theme: Full Color Injection
 */

:root {
    /* Color Palette - Premium */
    --primary-blue: #2962FF;
    /* Deeper, richer blue */
    --accent-green: #00C853;
    /* More vibrant green */
    --accent-red: #D50000;
    --accent-yellow: #FFD600;

    --bg-white: #FFFFFF;
    --bg-light: #F4F7F9;
    /* Cooler light background */
    --bg-grey: #ECEFF1;

    --text-dark: #263238;
    /* Blue-gray dark */
    --text-grey: #546E7A;
    --text-light: #CFD8DC;

    /* Modern Shadows */
    --shadow-sm: 0 2px 8px rgba(40, 50, 60, 0.05);
    --shadow-md: 0 8px 24px rgba(40, 50, 60, 0.08);
    --shadow-lg: 0 16px 48px rgba(40, 50, 60, 0.12);
    --shadow-xl: 0 24px 64px rgba(40, 50, 60, 0.16);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3),
        0 0 0 2px var(--bg-white),
        0 0 0 4px var(--accent-red);
    /* Fun multi-layer border/shadow */
    transform: translateY(-1px);
}

.btn-green {
    background-color: var(--accent-green);
    color: white;
}

.btn-green:hover {
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: rgba(66, 133, 244, 0.05);
}

/* Typography Colors */
.text-center {
    text-align: center;
}

.text-blue {
    color: var(--primary-blue);
}

.text-green {
    color: var(--accent-green);
}

.text-red {
    color: var(--accent-red);
}

.text-yellow {
    color: var(--accent-yellow);
}

.btn-outline-red {
    background-color: transparent;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
}

.btn-outline-red:hover {
    background-color: rgba(234, 67, 53, 0.05);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    color: var(--text-grey);
    margin-bottom: 1rem;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Header & Nav - 4 Color Border */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-white);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    border-top: 4px solid;
    border-image: linear-gradient(to right,
            var(--primary-blue) 25%,
            var(--accent-red) 25%, var(--accent-red) 50%,
            var(--accent-yellow) 50%, var(--accent-yellow) 75%,
            var(--accent-green) 75%) 1;
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

/* Multicolor Logo Text */
.logo-g {
    color: var(--primary-blue);
}

.logo-m {
    color: var(--accent-red);
}

.logo-b {
    color: var(--accent-yellow);
}

.logo-ai {
    color: var(--accent-green);
    margin-left: 4px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

/* 4-Color Nav Hover Effects */
.nav-list li:nth-child(1) .nav-link:hover {
    color: var(--primary-blue);
}

.nav-list li:nth-child(2) .nav-link:hover {
    color: var(--accent-red);
}

.nav-list li:nth-child(3) .nav-link:hover {
    color: var(--accent-yellow);
}

.nav-list li:nth-child(4) .nav-link:hover {
    color: var(--accent-green);
}

/* Underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-list li:nth-child(1) .nav-link:hover::after {
    width: 100%;
    background: var(--primary-blue);
}

.nav-list li:nth-child(2) .nav-link:hover::after {
    width: 100%;
    background: var(--accent-red);
}

.nav-list li:nth-child(3) .nav-link:hover::after {
    width: 100%;
    background: var(--accent-yellow);
}

.nav-list li:nth-child(4) .nav-link:hover::after {
    width: 100%;
    background: var(--accent-green);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding-top: 80px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
    }
}

/* Hero Section - Colorful Blobs */
.hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 100px;
    background: radial-gradient(circle at 10% 10%, rgba(66, 133, 244, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(52, 168, 83, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(251, 188, 5, 0.03) 0%, transparent 30%);
    overflow: hidden;
    position: relative;
}

/* Abstract Blobs */
.hero-section::before {
    content: '';
    position: absolute;
    top: 100px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-red);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(40px);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-grey);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(66, 133, 244, 0.1);
    background: white;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-container:hover .hero-img {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
    border-left: 4px solid var(--accent-green);
}

.badge-top {
    top: -20px;
    right: -20px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img {
        transform: none;
    }

    .hero-container:hover .hero-img {
        transform: none;
    }
}

/* Problem & Solution Sections - Cards with Borders */
.problem-section {
    background-color: var(--bg-grey);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Problem Cards - Red Theme (Default) */
.problem-card {
    border-top: 4px solid var(--accent-red);
}

.problem-card:hover {
    border-color: var(--accent-red);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.icon-red {
    background-color: rgba(234, 67, 53, 0.1);
    color: var(--accent-red);
}

/* Multi-Color Problem Cards Override */
.cards-grid .card:nth-child(1) {
    border-top: 4px solid var(--accent-red);
}

.cards-grid .card:nth-child(1) .icon-box {
    background-color: rgba(234, 67, 53, 0.1);
    color: var(--accent-red);
}

.cards-grid .card:nth-child(2) {
    border-top: 4px solid var(--accent-yellow);
}

.cards-grid .card:nth-child(2) .icon-box {
    background-color: rgba(251, 188, 5, 0.1);
    color: var(--accent-yellow);
}

.cards-grid .card:nth-child(3) {
    border-top: 4px solid var(--primary-blue);
}

.cards-grid .card:nth-child(3) .icon-box {
    background-color: rgba(66, 133, 244, 0.1);
    color: var(--primary-blue);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Solution Section - Green/Blue Theme */
.solution-section {
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: var(--radius-md);
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.feature-block:hover {
    background-color: var(--bg-light);
    border-bottom-color: var(--accent-green);
}

/* Multi-Color Solution Features */
.features-grid .feature-block:nth-child(1):hover {
    border-bottom-color: var(--primary-blue);
}

.features-grid .feature-block:nth-child(1) .feature-icon {
    color: var(--primary-blue);
}

.features-grid .feature-block:nth-child(2):hover {
    border-bottom-color: var(--accent-red);
}

.features-grid .feature-block:nth-child(2) .feature-icon {
    color: var(--accent-red);
}

.features-grid .feature-block:nth-child(3):hover {
    border-bottom-color: var(--accent-yellow);
}

.features-grid .feature-block:nth-child(3) .feature-icon {
    color: var(--accent-yellow);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    position: relative;
    transition: color 0.3s ease;
}

/* Icon glow effect */
.feature-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: currentColor;
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
}

.feature-icon span {
    font-size: 48px;
}

.feature-info h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* How It Works Section - 4 Color Steps */
.how-it-works-section {
    background-color: var(--bg-white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    position: relative;
    padding: 20px;
    transition: 0.3s;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-light);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1;
}

/* Vibrant Step Colors */
.step-card:nth-child(1) {
    border-top: 4px solid var(--primary-blue);
}

.step-card:nth-child(1) .step-number {
    color: var(--primary-blue);
}

.step-card:nth-child(2) {
    border-top: 4px solid var(--accent-red);
}

.step-card:nth-child(2) .step-number {
    color: var(--accent-red);
}

.step-card:nth-child(3) {
    border-top: 4px solid var(--accent-yellow);
}

.step-card:nth-child(3) .step-number {
    color: var(--accent-yellow);
}

.step-card:nth-child(4) {
    border-top: 4px solid var(--accent-green);
}

.step-card:nth-child(4) .step-number {
    color: var(--accent-green);
}

/* Red */
.step-card:nth-child(3) .step-number {
    color: rgba(251, 188, 5, 0.4);
}

/* Yellow */
.step-card:nth-child(4) .step-number {
    color: rgba(52, 168, 83, 0.2);
}

/* Green */

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.95rem;
}

/* QR Section - Yellow Accents */
.qr-section {
    background-color: var(--bg-light);
    overflow: hidden;
}

.qr-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.qr-features {
    list-style: none;
    margin-top: 32px;
}

.qr-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.qr-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent-yellow);
}

.qr-code-box {
    margin: 24px 0;
}

/* Reviews Logic Section - Flow Colors */
.logic-section {
    background-color: var(--bg-white);
}

.logic-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.logic-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.logic-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.logic-item:hover .logic-icon {
    transform: scale(1.1);
}

.logic-text h4 {
    margin-bottom: 4px;
    font-weight: 600;
}

.flow-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: 2px dashed rgba(66, 133, 244, 0.2);
}

.flow-step {
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    border-left: 3px solid var(--primary-blue);
}

.step-ai {
    background: var(--primary-blue);
    color: white;
    border: none;
}

.flow-split {
    display: flex;
    gap: 40px;
    margin-top: 10px;
}

.flow-path {
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* Positive/Negative separation */
.path-good {
    border-bottom: 3px solid var(--accent-green);
}

.path-bad {
    border-bottom: 3px solid var(--accent-red);
}

@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: 1fr 1fr;
    }

    .qr-container,
    .logic-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .qr-features li {
        justify-content: center;
    }

    .logic-item {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section - Strong Blue */
.pricing-section {
    background-color: var(--bg-grey);
}

.pricing-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    border: none;
    overflow: hidden;
    /* 4-Color Top Border */
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(to right, var(--primary-blue) 25%, var(--accent-red) 25% 50%, var(--accent-yellow) 50% 75%, var(--accent-green) 75%) border-box;
    border: 6px solid transparent;
    border-top: 6px solid transparent;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-blue);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 600;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0 30px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    margin-right: 4px;
    position: relative;
    top: -15px;
    color: var(--accent-green);
}

.period {
    font-size: 1rem;
    color: var(--text-grey);
    font-weight: 400;
}

.pricing-features {
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Trust Section */
.trust-section {
    background-color: var(--bg-white);
    padding: 80px 0 60px;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-grey);
    font-weight: 600;
}

.trust-item span.material-icons-outlined {
    font-size: 40px;
    color: var(--primary-blue);
    opacity: 0.8;
}

/* Final CTA Section */
.cta-section {
    background-color: var(--primary-blue);
    color: white;
    padding: 100px 0;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.btn-white {
    background: white;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn-white:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Footer - Colorful hint */
.footer {
    background-color: #202124;
    color: white;
    padding: 60px 0 20px;
    border-top: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.hover-blue:hover {
    color: var(--primary-blue) !important;
}

.hover-red:hover {
    color: var(--accent-red) !important;
}

.hover-yellow:hover {
    color: var(--accent-yellow) !important;
}

.hover-green:hover {
    color: var(--accent-green) !important;
}



.copyright {
    color: var(--text-grey);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.text-white {
    color: white !important;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 30px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.7rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .badge-top {
        right: 0px;
        /* Resetting side overlap */
        top: -10px;
        transform: scale(0.9);
    }

    .hero-section::before,
    .hero-section::after {
        display: none;
        /* Hide abstract blobs on mobile to prevent overflow */
    }
}