﻿/* =================================
Web Development Services Page Styles
================================= */

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stats-item {
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    transition: 0.4s;
}

.stats-number {
    font-size: 54px;
    margin-bottom: 10px;
}

.stats-text {
    font-size: 14px;
    color: var(--text-dim);
}

.stats-item-1 .stats-number { color: var(--primary); }
.stats-item-2 .stats-number { color: var(--secondary); }
.stats-item-3 .stats-number { color: var(--accent); }
.stats-item-4 .stats-number { color: var(--green); }

/* Feature Cards */
.feature-card {
    padding: 30px;
    border-radius: 12px;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.primary { color: var(--primary); }
.feature-icon.secondary { color: var(--secondary); }
.feature-icon.accent { color: var(--accent); }
.feature-icon.green { color: var(--green); }

.feature-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-dim);
}

/* Services Grid - Individual Service Cards */
.service-card {
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.service-card-content {
    flex-grow: 1;
}

.service-card-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card-excerpt {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-card-meta {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    margin-top: 15px;
}

/* Failure Cards */
.failure-card {
    padding: 30px;
    border-radius: 12px;
}

.failure-card h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.failure-card p {
    font-size: 14px;
    color: var(--text-dim);
}

/* Business Type Cards */
.business-type-card {
    padding: 30px;
    border-radius: 12px;
}

.business-type-card h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.business-type-card p {
    font-size: 14px;
    color: var(--text-dim);
}

/* Marketing Wheel */
.marketing-wheel {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    margin: auto;
    position: relative;
    border: 2px dashed rgba(112, 52, 221, 0.2);
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.wheel-item {
    position: absolute;
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    color: #fff;
}

.wheel-item.seo { background: linear-gradient(135deg, #667eea, #764ba2); top: -20px; left: 190px; }
.wheel-item.ads { background: linear-gradient(135deg, #f093fb, #f5576c); top: 90px; right: -20px; }
.wheel-item.social { background: linear-gradient(135deg, #4facfe, #00f2fe); bottom: 90px; right: -20px; }
.wheel-item.email { background: linear-gradient(135deg, #43e97b, #38f9d7); bottom: -20px; left: 190px; }
.wheel-item.ai { background: linear-gradient(135deg, #fa709a, #fee140); bottom: 90px; left: -20px; color: #333; }
.wheel-item.web { background: linear-gradient(135deg, #30cfd0, #330867); top: 90px; left: -20px; }

/* Failure Icons */
.failure-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #6f3cff, #2d7dff);
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.failure-icon-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.failure-icon-2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.failure-icon-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.failure-icon-4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.failure-icon-5 { background: linear-gradient(135deg, #fa709a, #fee140); }
.failure-icon-6 { background: linear-gradient(135deg, #30cfd0, #330867); }

/* Ecosystem */
.ecosystem-flow {
    max-width: 900px;
    margin: 50px auto 40px;
    position: relative;
}

.eco-stage {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
    transition: all 0.3s ease;
}

.eco-stage:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.eco-stage.foundation {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: 2px solid var(--primary);
}

.eco-stage.conversion {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: #fff;
}

.eco-stage.nurture {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: #fff;
}

.eco-stage.result {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    transform: scale(1.05);
}

.eco-stage-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
}

.eco-stage h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 5px 0;
}

.eco-stage p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.stage-title {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Ecosystem Channels */
.eco-channels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.eco-channel {
    background: #fff;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    cursor: pointer;
}

.eco-channel:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.eco-channel i {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.eco-channel strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--dark);
}

.eco-channel small {
    color: var(--text-dim);
    font-size: 12px;
}

.seo-channel {
    border-top: 3px solid #667eea;
    color: #667eea;
}

.seo-channel i {
    color: #667eea;
}

.ppc-channel {
    border-top: 3px solid #f5576c;
    color: #f5576c;
}

.ppc-channel i {
    color: #f5576c;
}

.social-channel {
    border-top: 3px solid #4facfe;
    color: #4facfe;
}

.social-channel i {
    color: #4facfe;
}

.content-channel {
    border-top: 3px solid #43e97b;
    color: #43e97b;
}

.content-channel i {
    color: #43e97b;
}

/* Connector */
.eco-connector {
    height: 40px;
    position: relative;
    margin: 0;
}

.eco-connector:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    transform: translateX(-50%);
}

.eco-connector:after {
    content: 'â†“';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ecosystem Stats */
.ecosystem-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(112, 52, 221, 0.1), rgba(14, 131, 242, 0.1));
    border-radius: 14px;
}

.eco-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.5;
}

.success-icon {
    color: #43e97b;
}

/* Journey Section */
.journey-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px 0;
}

.journey-step {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    width: 180px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.journey-emoji {
    font-size: 45px;
    margin-bottom: 15px;
}

.journey-step h4 {
    font-weight: 700;
    color: var(--dark);
}

.journey-step p {
    font-size: 13px;
    color: var(--text-dim);
}

.journey-arrow {
    font-size: 40px;
    color: #6f3cff;
    font-weight: bold;
}

/* Process Flow */
.process-flow {
    max-width: 1000px;
    margin: 50px auto 60px;
    position: relative;
}

.process-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 35px;
    border-radius: 16px;
    margin: 25px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.process-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(10px);
}

.process-item.result-item {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.15), rgba(56, 249, 215, 0.15));
    border-color: rgba(67, 233, 123, 0.3);
}

.process-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 36px;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.process-item:hover .process-icon {
    transform: scale(1.1) rotate(-5deg);
}

.discovery-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.strategy-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.execution-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.results-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.process-content h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.process-content p {
    color: #d1dce6;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.process-highlight {
    background: rgba(112, 52, 221, 0.2);
    border-left: 3px solid var(--primary);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.process-highlight strong {
    color: #fff;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.process-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-highlight li {
    color: #b8c3d0;
    font-size: 13px;
    padding: 5px 0;
    line-height: 1.6;
}

.process-highlight li:before {
    content: "âœ“ ";
    color: var(--accent);
    font-weight: 700;
    margin-right: 8px;
}

.flow-arrow {
    text-align: center;
    font-size: 28px;
    color: var(--accent);
    font-weight: 700;
    margin: 15px 0;
}

/* Results Showcase */
.results-showcase {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.results-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.result-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 32px;
    color: #fff;
}

.industry-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.healthcare-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.ecom-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.saas-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.result-card h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.company-name {
    color: #d1dce6;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.company-challenge {
    color: #9ca3af;
    font-size: 13px;
    margin: 0 0 20px 0;
    font-style: italic;
}

.result-metric {
    background: rgba(112, 52, 221, 0.25);
    border: 1px solid rgba(112, 52, 221, 0.4);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.metric-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.metric-label {
    display: block;
    font-size: 13px;
    color: #b8c3d0;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 15px;
}

.process-step h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    color: #d1dce6;
    font-size: 14px;
    line-height: 1.6;
}

/* Industry Cards */
.industry-card {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.industry-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.industry-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Trust Box */
.trust-box {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 28px;
    color: #fff;
}

.trust-icon.primary { background: linear-gradient(135deg, #667eea, #764ba2); }
.trust-icon.secondary { background: linear-gradient(135deg, #f093fb, #f5576c); }
.trust-icon.accent { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.trust-icon.green { background: linear-gradient(135deg, #43e97b, #38f9d7); }

.trust-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.trust-box p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .process-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .marketing-wheel {
        width: 400px;
        height: 400px;
    }
    
    .center-circle {
        width: 140px;
        height: 140px;
        font-size: 20px;
    }
    
    .wheel-item {
        width: 90px;
        height: 90px;
        font-size: 13px;
    }
    
    .seo { top: -15px; left: 145px; }
    .ads { top: 75px; right: -15px; }
    .social { bottom: 75px; right: -15px; }
    .email { bottom: -15px; left: 145px; }
    .ai { bottom: 75px; left: -15px; }
    .web { top: 75px; left: -15px; }
}

@media (max-width: 768px) {
    .process-item {
        padding: 25px;
        margin: 20px 0;
    }
    
    .process-content h3 {
        font-size: 18px;
    }
    
    .process-content p {
        font-size: 14px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .results-title {
        font-size: 20px;
    }
    
    .marketing-wheel {
        width: 300px;
        height: 300px;
    }
    
    .center-circle {
        width: 120px;
        height: 120px;
        font-size: 18px;
    }
    
    .wheel-item {
        width: 80px;
        height: 80px;
        font-size: 12px;
    }
    
    .seo { top: -10px; left: 110px; }
    .ads { top: 70px; right: -10px; }
    .social { bottom: 70px; right: -10px; }
    .email { bottom: -10px; left: 110px; }
    .ai { bottom: 70px; left: -10px; }
    .web { top: 70px; left: -10px; }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .eco-channels {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .marketing-wheel {
        width: 250px;
        height: 250px;
    }
    
    .center-circle {
        width: 100px;
        height: 100px;
        font-size: 14px;
    }
    
    .wheel-item {
        width: 65px;
        height: 65px;
        font-size: 11px;
    }
    
    .seo { top: -5px; left: 90px; }
    .ads { top: 55px; right: -5px; }
    .social { bottom: 55px; right: -5px; }
    .email { bottom: -5px; left: 90px; }
    .ai { bottom: 55px; left: -5px; }
    .web { top: 55px; left: -5px; }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-left {
    flex: 1;
}

.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.about-list li {
    padding: 12px 0;
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
}

.about-list i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Hero Text */
.hero-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

.hero-subtitle-end {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.impact-stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.impact-stat-number.primary { color: var(--primary); }
.impact-stat-number.secondary { color: var(--secondary); }
.impact-stat-number.accent { color: var(--accent); }
.impact-stat-number.green { color: var(--green); }

.impact-stat-item p {
    color: #fff;
    font-size: 15px;
    margin: 0;
}

/* Testimonials */
.testimonial-card {
    padding: 30px;
    border-radius: 12px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
}

.testimonial-title {
    font-size: 13px;
    color: var(--text-dim);
}

.testimonial-card-primary {
    border-left: 5px solid var(--primary);
}

.testimonial-card-secondary {
    border-left: 5px solid var(--secondary);
}

.testimonial-card-accent {
    border-left: 5px solid var(--accent);
}

/* Form Styles */
.form-submit-btn {
    width: 100%;
    margin-top: 15px;
}

.form-disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 12px;
    text-align: center;
}

/* CTA Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.trust-item i {
    color: var(--accent);
    font-size: 18px;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    padding: 25px;
    border-radius: 12px;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-content {
    margin-top: 15px;
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}

.faq-content p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .trust-bar {
        gap: 15px;
    }
    
    .trust-item {
        font-size: 13px;
    }
}

/* CTA Section */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-section {
    text-align: center;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

