:root {
    --primary-color: #ffba00;
    --secondary-color: #14202e;
    --dark-color: #1a1a1a;
    --light-gray: #f8f9fa;
    --text-gray: #6c757d;
    --white: #ffffff;
    --success-color: #25d366;
    --brocado-orange: #ff6b35;
    --brocado-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}
/* Brocado Food Section - Vibrant Design */
.brocado-section-vibrant {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.brocado-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(20, 32, 46, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 107, 53, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Container */
.brocado-section-vibrant .container {
    position: relative;
    z-index: 3;
}

/* Header */
.brocado-header-vibrant {
    margin-bottom: 60px;
}

.brocado-logo-vibrant img {
    max-height: 70px;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.section-title-vibrant {
    font-size: 3.5rem;
    font-weight: 900;
    color: #14202e;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-vibrant {
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-vibrant::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ff6b35);
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.7; transform: scaleX(1.05); }
}

.section-subtitle-vibrant {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* CTA Button */
.btn-cta-vibrant {
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    border: none;
    color: white;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    position: relative;
    overflow: hidden;
}

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

.btn-cta-vibrant:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.5);
    color: white;
    text-decoration: none;
}

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

.btn-cta-vibrant.secondary {
    background: linear-gradient(135deg, #14202e, #2d3748);
    box-shadow: 0 8px 25px rgba(20, 32, 46, 0.3);
}

.btn-cta-vibrant.secondary:hover {
    box-shadow: 0 12px 35px rgba(20, 32, 46, 0.4);
}

/* Three Pillars */
.pillars-title-vibrant {
    font-size: 1.6rem;
    font-weight: 600;
    color: #14202e;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.pillar-badge {
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.pillar-separator {
    color: #cbd5e1;
    font-weight: 300;
    font-size: 1.2rem;
}

.pillars-grid-vibrant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.pillar-card-vibrant {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.pillar-card-vibrant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.tech-card::before {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=600');
}

.sustainability-card::before {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=600');
}

.growth-card::before {
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=600');
}

.pillar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card-vibrant:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff8c00;
}

.pillar-card-vibrant:hover::before {
    opacity: 0.25;
}

.pillar-card-vibrant:hover .pillar-overlay {
    opacity: 1;
}

.pillar-icon-vibrant {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
    position: relative;
    z-index: 2;
}

.pillar-icon-vibrant i {
    font-size: 2rem;
    color: white;
}

.pillar-content-vibrant {
    position: relative;
    z-index: 2;
}

.pillar-card-vibrant h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #14202e;
    margin-bottom: 15px;
}

.pillar-card-vibrant p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Content Sections */
.content-section-vibrant {
    padding-right: 30px;
}

.problem-section-vibrant,
.solution-section-vibrant,
.how-it-works-vibrant {
    margin-bottom: 50px;
}

.problem-section-vibrant {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #ef4444;
    position: relative;
}

.problem-icon-vibrant {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.problem-icon-vibrant i {
    color: white;
    font-size: 1.2rem;
}

.problem-title-vibrant,
.solution-title-vibrant,
.how-title-vibrant {
    font-size: 1.8rem;
    font-weight: 700;
    color: #14202e;
    margin-bottom: 20px;
}

.problem-text-vibrant {
    font-size: 1.1rem;
    color: #7f1d1d;
    line-height: 1.7;
    margin: 0;
}

/* Benefits Grid */
.benefits-grid-vibrant {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.benefit-card-vibrant {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 20px;
}

.benefit-card-vibrant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.restaurants-card::before {
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=600');
}

.delivery-card::before {
    background-image: url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?w=600');
}

.customers-card::before {
    background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=600');
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card-vibrant:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #ff8c00;
}

.benefit-card-vibrant:hover::before {
    opacity: 0.2;
}

.benefit-card-vibrant:hover .benefit-overlay {
    opacity: 1;
}

.benefit-icon-vibrant {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.benefit-icon-vibrant i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content-vibrant {
    position: relative;
    z-index: 2;
}

.benefit-card-vibrant h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.benefit-card-vibrant p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Features Grid */
.features-grid-vibrant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card-vibrant {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid transparent;
}

.feature-card-vibrant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.erp-card::before {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=600');
}

.network-card::before {
    background-image: url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?w=600');
}

.app-card::before {
    background-image: url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?w=600');
}

.support-card::before {
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=600');
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-vibrant:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #ff8c00;
}

.feature-card-vibrant:hover::before {
    opacity: 0.2;
}

.feature-card-vibrant:hover .feature-overlay {
    opacity: 1;
}

.feature-icon-vibrant {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.3);
    position: relative;
    z-index: 2;
}

.feature-icon-vibrant i {
    font-size: 1.5rem;
    color: white;
}

.feature-content-vibrant {
    position: relative;
    z-index: 2;
}

.feature-card-vibrant h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #14202e;
    margin-bottom: 10px;
}

.feature-card-vibrant p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Mockup Section */
.mockup-section-vibrant {
    padding-left: 30px;
}

.expansion-map-vibrant {
    background: linear-gradient(135deg, #fff, #f8fafc);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #e2e8f0;
}

.expansion-map-vibrant h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #14202e;
    margin-bottom: 25px;
}

.expansion-flow-vibrant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.expansion-step-vibrant {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-icon-vibrant {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.expansion-step-vibrant.active .step-icon-vibrant {
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.step-icon-vibrant i {
    font-size: 1.5rem;
    color: white;
}

.expansion-step-vibrant span {
    font-weight: 600;
    color: #14202e;
    font-size: 0.9rem;
}

.expansion-arrow-vibrant {
    font-size: 1.5rem;
    color: #ff8c00;
    font-weight: bold;
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Phone Mockup */
.phone-mockup-vibrant {
    display: flex;
    justify-content: center;
}

.phone-frame-vibrant {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #14202e, #2d3748);
    border-radius: 35px;
    padding: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-frame-vibrant::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #64748b;
    border-radius: 3px;
}

.phone-screen-vibrant {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.phone-header-vibrant {
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    padding: 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-logo-vibrant img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.phone-status-vibrant {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-dot-vibrant {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.phone-content-vibrant {
    flex: 1;
    padding: 25px 20px;
    overflow-y: auto;
}

.stats-bar-vibrant {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    border: 2px solid #e2e8f0;
}

.stat-vibrant {
    text-align: center;
}

.stat-number-vibrant {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-vibrant {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.restaurant-list-vibrant {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.restaurant-item-vibrant {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.restaurant-item-vibrant.featured {
    border-color: #ff8c00;
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.2);
}

.restaurant-item-vibrant:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.restaurant-logo-vibrant {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.restaurant-logo-vibrant.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.restaurant-logo-vibrant.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.restaurant-logo-vibrant.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.restaurant-info-vibrant {
    flex: 1;
}

.restaurant-name-vibrant {
    font-weight: 700;
    color: #14202e;
    font-size: 1rem;
    margin-bottom: 5px;
}

.restaurant-details-vibrant {
    display: flex;
    gap: 12px;
    margin-bottom: 5px;
}

.delivery-time-vibrant,
.rating-vibrant {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.rating-vibrant {
    color: #fbbf24;
    font-weight: 600;
}

.restaurant-status-vibrant {
    font-size: 0.8rem;
    color: #22c55e;
    font-weight: 600;
}

.restaurant-badge-vibrant {
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(255, 140, 0, 0.3);
}

.app-feature-vibrant {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
}

.app-feature-vibrant i {
    font-size: 1.2rem;
}

/* Final CTA */
.final-cta-vibrant {
    background: linear-gradient(135deg, #fff, #f8fafc);
    border-radius: 25px;
    padding: 60px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-top: 70px;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.final-cta-vibrant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.final-cta-vibrant > * {
    position: relative;
    z-index: 2;
}

.cta-title-vibrant {
    font-size: 2.5rem;
    font-weight: 800;
    color: #14202e;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-subtitle-vibrant {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 45px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons-vibrant {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.contact-links-vibrant {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-link-vibrant {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #14202e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 25px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-link-vibrant:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.contact-link-vibrant.whatsapp:hover {
    color: #25d366;
    border-color: #25d366;
}

.contact-link-vibrant.email:hover {
    color: #ff8c00;
    border-color: #ff8c00;
}

.contact-link-vibrant i {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title-vibrant {
        font-size: 2.5rem;
    }
    
    .pillars-grid-vibrant {
        grid-template-columns: 1fr;
    }
    
    .features-grid-vibrant {
        grid-template-columns: 1fr;
    }
    
    .content-section-vibrant,
    .mockup-section-vibrant {
        padding-left: 0;
        padding-right: 0;
    }
    
    .phone-frame-vibrant {
        width: 280px;
        height: 560px;
    }
    
    .expansion-flow-vibrant {
        flex-direction: column;
        gap: 20px;
    }
    
    .expansion-arrow-vibrant {
        transform: rotate(90deg);
    }
    
    .contact-links-vibrant {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-title-vibrant {
        font-size: 2rem;
    }
    
    .pillars-title-vibrant {
        flex-direction: column;
        gap: 10px;
    }
    
    .benefit-card-vibrant {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

