:root {
    /* Core Colors - Light Theme */
    --bg-base: #ffffff;
    --bg-surface: #f8f9fa;
    --bg-glass: rgba(255, 255, 255, 0.7);
    
    /* Text */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    
    /* Accents */
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-orange: #f59e0b;
    --accent-pink: #ec4899;
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    
    /* Borders */
    --border-glass: rgba(0, 0, 0, 0.08);
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

#particle-canvas {
    width: 100vw;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
}

/* Base Components */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.accent-badge {
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
    margin-bottom: 2rem;
}

/* Typography Enhancements */
.highlight-text-wrapper, .typing-container {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    min-width: 320px;
}

@media (min-width: 768px) {
    .typing-container { min-width: 650px; }
}

.highlight {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cursor {
    display: inline-block;
    width: 4px;
    height: 1em;
    background: var(--gradient-brand);
    margin-left: 5px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
    position: relative;
    top: -4px;
    border-radius: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Interactive Panels */
.interactive-panel {
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.interactive-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.card-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.interactive-panel:hover .card-bg-gradient {
    opacity: 1;
}

.card-bg-gradient.blue { background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 70%); }
.card-bg-gradient.purple { background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 70%); }
.card-bg-gradient.green { background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.15), transparent 70%); }
.card-bg-gradient.orange { background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.15), transparent 70%); }

.bento-content {
    position: relative;
    z-index: 1;
}

.text-blue { color: var(--accent-blue); }
.text-purple { color: var(--accent-purple); }
.text-green { color: var(--accent-green); }

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* Buttons */
.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition-spring);
    overflow: hidden;
}

.cta-button.primary {
    background: #111827;
    color: #ffffff;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    background: #000000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-button.secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}
.cta-button.secondary:hover {
    background: rgba(0,0,0,0.05);
}

.full-width {
    width: 100%;
}

/* Sections Base */
section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
}
.text-center .section-subtitle { margin: 0 auto; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
    background: url('images/download.png') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.5));
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 1000px;
    z-index: 10;
}

.main-logo {
    height: 64px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.05));
}

.headline {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.sub-headline {
    font-size: clamp(1.125rem, 1.8vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 650px;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Video Placeholder */
.video-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(240,240,250,0.4));
    border: 1px solid rgba(255,255,255,1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.15);
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.play-icon {
    width: 64px;
    height: 64px;
    color: var(--accent-blue);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.video-container:hover .play-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Integration Logos Carousel */
.integration-logos {
    padding: 3rem 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-glass);
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.02) 50%, transparent);
}

.integration-text {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 4rem;
    padding-left: 4rem;
    animation: scroll 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.crm-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition-smooth);
    filter: grayscale(100%);
    cursor: default;
}

.crm-logo i {
    width: 32px;
    height: 32px;
}

.crm-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.crm-logo.kommo:hover { color: #facc15; }
.crm-logo.rd:hover { color: #3b82f6; }
.crm-logo.hubspot:hover { color: #f97316; }
.crm-logo.mautic:hover { color: #6366f1; }
.crm-logo.salesforce:hover { color: #0ea5e9; }
.crm-logo.omnie:hover { color: #10b981; }

@keyframes scroll {
    to {
        transform: translateX(calc(-33.333% - 1.33rem)); 
        /* 3 groups, we shift 1/3 of the total width */
    }
}

/* Services section (Cards) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    padding: 2.5rem;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid var(--border-glass);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
}

.border-bottom {
    border-bottom: 1px solid var(--border-glass);
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-box { background: rgba(16, 185, 129, 0.1); color: var(--accent-green); }

.service-body p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
}

.bento-card {
    padding: 2.5rem;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
}

.bento-card.span-2 {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.span-2 {
        grid-column: span 1;
    }
}

.layout-horizontal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.icon-wrap.glowing {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.bento-card:hover .icon-wrap.glowing {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1) rotate(5deg);
}

.bento-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.bento-card p {
    color: var(--text-secondary);
}

.filter-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pill {
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
}

.chart-mock {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 12px;
    border: 1px solid var(--border-glass);
}

.chart-bar {
    flex: 1;
    background: var(--gradient-brand);
    border-radius: 4px;
    animation: growBar 1.5s ease-out forwards;
    transform-origin: bottom;
}

@keyframes growBar {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

/* CRM Setup Section */
.crm-setup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.crm-setup-grid > div {
    min-width: 0;
}

@media (max-width: 900px) {
    .crm-setup-grid { grid-template-columns: 1fr; }
}

.setup-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.setup-benefits p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.mini-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
}

.icon-blue { color: var(--accent-blue); }
.blue-box { background: rgba(59, 130, 246, 0.1); }

.pipeline-mock {
    padding: 1.5rem;
    border-radius: 24px;
}

.pipeline-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.pipeline-header .title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}

.pipeline-body {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.pipe-column {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(0,0,0,0.02);
    padding: 0.75rem;
    border-radius: 12px;
}

.pipe-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.pipe-card {
    height: 48px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.pipe-card.ghost {
    background: transparent;
    border: 1px dashed var(--border-glass);
    box-shadow: none;
    opacity: 0.5;
}

.blue-card { border-left: 3px solid var(--accent-blue); }
.purple-card { border-left: 3px solid var(--accent-purple); }
.orange-card { border-left: 3px solid var(--accent-orange); }
.green-card { border-left: 3px solid var(--accent-green); }

/* Timeline */
.timeline-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.timeline-step {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.step-content {
    padding: 1.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-wrapper {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-column {
    flex: 1;
    min-width: 300px;
}

.pricing-column.wide-column {
    flex: 2;
    min-width: 400px;
}

@media (max-width: 800px) {
    .pricing-column.wide-column { min-width: 300px; }
}

.pricing-card {
    padding: 2.5rem;
    border-radius: 32px;
    height: 100%;
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
}

.simple-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
}

.clean-list {
    list-style: none;
    padding: 0;
}

.plan-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-glass);
}

.plan-list li:last-child {
    border-bottom: none;
}

.price-pill {
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    font-weight: 600;
}

.price-pill.highlight-pill {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
}

.price-pill.outline-pill {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
}

.table-container {
    background: rgba(255,255,255,0.5);
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid var(--border-glass);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.pricing-row:last-child { border-bottom: none; }

.pricing-row .price.highlight {
    color: var(--accent-green);
    font-weight: 700;
}

.voip-grid {
    display: flex;
    gap: 1rem;
}

.voip-item {
    flex: 1;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.voip-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.voip-icon i {
    color: var(--accent-blue);
}

.voip-price {
    font-size: 1.75rem;
    font-weight: 700;
}
.voip-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 800px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info, .contact-form-wrapper {
    padding: 3rem;
    border-radius: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.method-item:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.95);
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.method-val {
    font-size: 1.2rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.25rem;
}

.glass-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: var(--transition-smooth);
    color: var(--text-primary);
}

.glass-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.glass-input::placeholder {
    color: var(--text-muted);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-glass);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo-img {
    height: 48px;
    width: auto;
}

.micro-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-nav a:hover {
    color: var(--accent-blue);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Mobile Responsiveness Rules */
@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    .hero {
        padding: 6rem 0 3rem;
    }
    .headline {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    .highlight-text-wrapper, .typing-container {
        min-width: auto;
        white-space: normal;
    }
    .sub-headline {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    .cta-group {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
        gap: 1rem;
    }
    .cta-button {
        width: 100%;
    }
    .video-container {
        aspect-ratio: auto;
        padding: 2.5rem 1rem;
        margin: 2rem 0;
    }
    .video-placeholder span {
        font-size: 0.9rem;
    }
    .container {
        padding: 0 1.25rem;
    }
    .bento-card, .card, .pricing-card, .contact-info, .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.span-2 {
        grid-column: span 1;
    }
    .pricing-wrapper {
        flex-direction: column;
    }
    .pricing-column.wide-column {
        min-width: 100%;
    }
    .timeline-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .timeline-step {
        width: 100%;
    }
    .timeline-line {
        display: none;
    }
    .voip-grid {
        flex-direction: column;
    }
    .crm-setup-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .marquee-track {
        gap: 2rem;
        padding-left: 2rem;
    }
    @keyframes scroll {
        to {
            transform: translateX(calc(-33.333% - 0.666rem)); 
        }
    }
    
    /* Small layout fixes for mobile */
    .icon-wrap.glowing {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    .bento-card h4 {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
