/* ==========================================================================
   pages.css — Shared landing page styles
   Extracted from: home, about, contact, services, marketing blade files
   ========================================================================== */

/* ===== Page Accent Theming =====
   Default accent is blue. Override --page-accent-rgb on page wrappers
   for different theme colors (e.g., marketing uses amber). */

.about-page-wrapper,
.contact-page-wrapper,
.services-page-wrapper,
.marketing-page-wrapper {
    --page-accent-rgb: 75, 140, 200;
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #000000 0%, #050a15 50%, #0a1628 100%);
}

.marketing-page-wrapper {
    --page-accent-rgb: 245, 158, 11;
}

.home-page-wrapper {
    --page-accent-rgb: 75, 140, 200;
    position: relative;
    min-height: 100vh;
    background: transparent;
}


/* ===== Network Canvas Background ===== */

.about-network-bg-full,
.contact-network-bg-full,
.services-network-bg-full,
.marketing-network-bg-full {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.about-network-bg-full canvas,
.contact-network-bg-full canvas,
.services-network-bg-full canvas,
.marketing-network-bg-full canvas {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#homeNetworkCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* ===== Hero Section (about, contact, services, marketing) ===== */

.about-hero-section,
.contact-hero-section,
.services-hero-section,
.marketing-hero-section {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 40px;
}

.about-hero-content,
.contact-hero-content,
.services-hero-content,
.marketing-hero-content {
    text-align: center;
}

.about-hero-icon,
.contact-hero-icon,
.services-hero-icon,
.marketing-hero-icon {
    width: 100px;
    height: 100px;
    background: rgba(var(--page-accent-rgb), 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(var(--page-accent-rgb), 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

/* Each icon gets its own animation referencing page-specific pulse-glow */
.about-hero-icon {
    animation: heroIconPop 0.6s cubic-bezier(0.4, 0, 0.2, 1) both, page-pulse-glow-blue 3s ease-in-out 0.6s infinite;
}
.contact-hero-icon {
    animation: heroIconPop 0.6s cubic-bezier(0.4, 0, 0.2, 1) both, page-pulse-glow-blue 3s ease-in-out 0.6s infinite;
}
.services-hero-icon {
    animation: heroIconPop 0.6s cubic-bezier(0.4, 0, 0.2, 1) both, page-pulse-glow-blue 3s ease-in-out 0.6s infinite;
}
.marketing-hero-icon {
    background: rgba(var(--page-accent-rgb), 0.15);
    animation: heroIconPop 0.6s cubic-bezier(0.4, 0, 0.2, 1) both, page-pulse-glow-amber 3s ease-in-out 0.6s infinite;
}

.about-hero-icon i,
.contact-hero-icon i,
.services-hero-icon i {
    font-size: 48px;
    color: var(--primary-blue, #4B8CC8);
}

.marketing-hero-icon i {
    font-size: 48px;
    color: #f59e0b;
}

.about-hero-content h1,
.contact-hero-content h1,
.services-hero-content h1,
.marketing-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 15px;
    text-shadow: 0 0 60px rgba(var(--page-accent-rgb), 0.4);
    animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.marketing-hero-content h1 {
    text-shadow: 0 0 60px rgba(var(--page-accent-rgb), 0.3);
}

.about-hero-content .subtitle,
.contact-hero-content .subtitle,
.services-hero-content .subtitle,
.marketing-hero-content .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 450px;
    margin: 0 auto;
    animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.marketing-hero-content .subtitle {
    margin: 0 auto 20px;
}


/* ===== Pulse Glow Keyframes ===== */

@keyframes page-pulse-glow-blue {
    0%, 100% { box-shadow: 0 0 30px rgba(75, 140, 200, 0.2); }
    50% { box-shadow: 0 0 50px rgba(75, 140, 200, 0.4); }
}

@keyframes page-pulse-glow-amber {
    0%, 100% { box-shadow: 0 0 30px rgba(245, 158, 11, 0.2); }
    50% { box-shadow: 0 0 50px rgba(245, 158, 11, 0.4); }
}


/* ===== Content Section ===== */

.about-content-section,
.contact-content-section,
.services-content-section,
.marketing-content-section {
    position: relative;
    z-index: 1;
    padding: 20px 0 80px;
}


/* ===== Section Title Row (about, marketing) ===== */

.section-title-row {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-row h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white, #ffffff);
    text-shadow: 0 0 40px rgba(var(--page-accent-rgb), 0.3);
}


/* ===== CTA Section (about, services, marketing) ===== */

.about-cta-section,
.services-cta-section,
.marketing-cta-section {
    background: rgba(var(--page-accent-rgb), 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(var(--page-accent-rgb), 0.2);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.about-cta-section.animate-in,
.marketing-cta-section.animate-in {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.services-cta-section.animate-in {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.about-cta-section h2,
.services-cta-section h2,
.marketing-cta-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 10px;
}

.services-cta-section h2 {
    margin-bottom: 25px;
}

.about-cta-section p,
.marketing-cta-section p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}


/* ===== CTA Buttons ===== */

.about-cta-btn,
.services-cta-btn,
.marketing-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-cta-btn {
    background: linear-gradient(135deg, #4B8CC8, #5a9fd4);
    box-shadow: 0 8px 30px rgba(75, 140, 200, 0.3);
}

.about-cta-btn:hover {
    background: linear-gradient(135deg, #3a7ab8, #4B8CC8);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(75, 140, 200, 0.4);
    color: white;
}

.services-cta-btn {
    background: linear-gradient(135deg, #0088cc, #00a0dc);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.4);
}

.services-cta-btn:hover {
    background: linear-gradient(135deg, #0077b5, #0088cc);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 136, 204, 0.5);
    color: white;
}

.marketing-cta-btn {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}

.marketing-cta-btn:hover {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.4);
    color: white;
}

.about-cta-btn i {
    font-size: 1.4rem;
}

.services-cta-btn i {
    font-size: 1.6rem;
}

.marketing-cta-btn i {
    font-size: 1.4rem;
}




/* ===== Glass Card Base (stat-card, feature-card, value-card, service-card, marketing-service-card) ===== */

.stat-card,
.feature-card,
.value-card,
.service-card,
.marketing-service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.service-card {
    border-radius: 16px;
    padding: 28px;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(40px) scale(0.95);
}

.stat-card {
    padding: 30px 20px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.feature-card {
    padding: 30px;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card {
    padding: 35px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.marketing-service-card {
    padding: 30px;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* --- animate-in triggers --- */

.stat-card.animate-in {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.stat-card:nth-child(1).animate-in { animation-delay: 0.1s; }
.stat-card:nth-child(2).animate-in { animation-delay: 0.2s; }
.stat-card:nth-child(3).animate-in { animation-delay: 0.3s; }
.stat-card:nth-child(4).animate-in { animation-delay: 0.4s; }

.feature-card.animate-in {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.feature-card:nth-child(1).animate-in { animation-delay: 0.05s; }
.feature-card:nth-child(2).animate-in { animation-delay: 0.1s; }
.feature-card:nth-child(3).animate-in { animation-delay: 0.15s; }
.feature-card:nth-child(4).animate-in { animation-delay: 0.2s; }
.feature-card:nth-child(5).animate-in { animation-delay: 0.25s; }
.feature-card:nth-child(6).animate-in { animation-delay: 0.3s; }

.value-card.animate-in {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.value-card:nth-child(1).animate-in { animation-delay: 0.1s; }
.value-card:nth-child(2).animate-in { animation-delay: 0.2s; }
.value-card:nth-child(3).animate-in { animation-delay: 0.3s; }

.service-card.animate-in {
    animation: cardFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-card:nth-child(1).animate-in { animation-delay: 0.05s; }
.service-card:nth-child(2).animate-in { animation-delay: 0.1s; }
.service-card:nth-child(3).animate-in { animation-delay: 0.15s; }
.service-card:nth-child(4).animate-in { animation-delay: 0.2s; }
.service-card:nth-child(5).animate-in { animation-delay: 0.25s; }
.service-card:nth-child(6).animate-in { animation-delay: 0.3s; }
.service-card:nth-child(7).animate-in { animation-delay: 0.35s; }
.service-card:nth-child(8).animate-in { animation-delay: 0.4s; }
.service-card:nth-child(9).animate-in { animation-delay: 0.45s; }

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.marketing-service-card.animate-in {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.marketing-service-card:nth-child(1).animate-in { animation-delay: 0.05s; }
.marketing-service-card:nth-child(2).animate-in { animation-delay: 0.1s; }
.marketing-service-card:nth-child(3).animate-in { animation-delay: 0.15s; }
.marketing-service-card:nth-child(4).animate-in { animation-delay: 0.2s; }
.marketing-service-card:nth-child(5).animate-in { animation-delay: 0.25s; }
.marketing-service-card:nth-child(6).animate-in { animation-delay: 0.3s; }


/* --- Card hover states --- */

.stat-card:hover {
    background: rgba(75, 140, 200, 0.1);
    border-color: rgba(75, 140, 200, 0.3);
    transform: translateY(-5px);
}

.feature-card:hover {
    background: rgba(75, 140, 200, 0.1);
    border-color: rgba(75, 140, 200, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(75, 140, 200, 0.15);
}

.service-card:hover {
    background: rgba(75, 140, 200, 0.1);
    border-color: rgba(75, 140, 200, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(75, 140, 200, 0.2);
}

.value-card:hover {
    transform: translateY(-5px);
}

.marketing-service-card:hover {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.1);
}


/* --- Card content typography --- */

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue, #4B8CC8);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number .plus-sign {
    font-size: 2rem;
    vertical-align: top;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.feature-card h3,
.service-card h3,
.marketing-service-card h3 {
    font-weight: 600;
    color: var(--white, #ffffff);
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 1.15rem;
}

.service-card h3 {
    font-size: 1.1rem;
}

.marketing-service-card h3 {
    font-size: 1.15rem;
}

.feature-card p,
.service-card p,
.marketing-service-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

.marketing-service-card p {
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white, #ffffff);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}


/* ===== Icon Containers (feature, service, value) ===== */

.feature-icon,
.service-card .service-icon,
.marketing-service-card .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(75, 140, 200, 0.15);
    border: 1px solid rgba(75, 140, 200, 0.3);
    margin: 0 auto 20px;
}

.feature-card:hover .feature-icon {
    background: rgba(75, 140, 200, 0.25);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary-blue, #4B8CC8);
}

/* services page .service-icon */
.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(75, 140, 200, 0.15);
    border: 1px solid rgba(75, 140, 200, 0.3);
    margin: 0 auto 18px;
}

.service-card:hover .service-icon {
    background: rgba(75, 140, 200, 0.25);
    transform: scale(1.1);
}

.service-card .service-icon i {
    font-size: 26px;
    color: var(--primary-blue, #4B8CC8);
}

/* marketing page .service-icon */
.marketing-service-card .service-icon {
    width: 64px;
    height: 64px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    margin: 0 auto 20px;
}

.marketing-service-card:hover .service-icon {
    background: rgba(245, 158, 11, 0.25);
    transform: scale(1.1);
}

.marketing-service-card .service-icon i {
    font-size: 28px;
    color: #f59e0b;
}

/* value icons */
.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vision-card .value-icon {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.team-card .value-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.values-card .value-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.value-icon i {
    font-size: 30px;
    color: white;
}


/* ===== Value card hover variants ===== */

.vision-card:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
}

.team-card:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
}

.values-card:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.4);
}


/* ===== Grid Layouts ===== */

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.values-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.marketing-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}


/* ===== Mission / Info Card (about, marketing) ===== */

.mission-card,
.marketing-info-card {
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.mission-card {
    background: rgba(75, 140, 200, 0.08);
    border: 1px solid rgba(75, 140, 200, 0.2);
    margin-bottom: 50px;
}

.marketing-info-card {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-bottom: 60px;
}

.mission-card.animate-in,
.marketing-info-card.animate-in {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mission-icon,
.info-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon {
    background: linear-gradient(135deg, #4B8CC8, #5a9fd4);
}

.info-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.mission-icon i,
.info-icon i {
    font-size: 36px;
    color: white;
}

.mission-content h2,
.info-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 12px;
}

.mission-content p,
.info-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}


/* ===== Marketing-specific: Coming Soon / Status ===== */

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both, badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(245, 158, 11, 0.2); }
}

.service-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(245, 158, 11, 0.8);
    background: rgba(245, 158, 11, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    animation: dot-blink 1.5s ease-in-out infinite;
}

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


/* ===== Responsive: Shared Hero 768px ===== */

@media (max-width: 768px) {
    .about-hero-content h1,
    .contact-hero-content h1,
    .services-hero-content h1,
    .marketing-hero-content h1 {
        font-size: 2.25rem;
    }

    .about-hero-icon,
    .contact-hero-icon,
    .services-hero-icon,
    .marketing-hero-icon {
        width: 80px;
        height: 80px;
    }

    .about-hero-icon i,
    .contact-hero-icon i,
    .services-hero-icon i,
    .marketing-hero-icon i {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 24px;
    }

    .about-cta-section,
    .services-cta-section,
    .marketing-cta-section {
        padding: 35px 25px;
    }

    .about-cta-btn,
    .services-cta-btn,
    .marketing-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }

    .mission-card,
    .marketing-info-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .marketing-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marketing-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-hero-section,
    .contact-hero-section,
    .services-hero-section,
    .marketing-hero-section {
        padding: 100px 0 30px;
    }

    .about-hero-content h1,
    .contact-hero-content h1,
    .services-hero-content h1,
    .marketing-hero-content h1 {
        font-size: 1.85rem;
    }

    .about-hero-content .subtitle,
    .contact-hero-content .subtitle,
    .services-hero-content .subtitle,
    .marketing-hero-content .subtitle {
        font-size: 1rem;
    }

    .about-hero-icon,
    .contact-hero-icon,
    .services-hero-icon,
    .marketing-hero-icon {
        width: 70px;
        height: 70px;
    }

    .about-hero-icon i,
    .contact-hero-icon i,
    .services-hero-icon i,
    .marketing-hero-icon i {
        font-size: 30px;
    }

    .stat-card {
        padding: 15px 10px;
        border-radius: 14px;
        /* Ensure visibility on mobile */
        opacity: 1 !important;
        transform: none !important;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-number .plus-sign {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .section-title-row h2 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 25px 20px;
        /* Ensure visibility on mobile */
        opacity: 1 !important;
        transform: none !important;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 22px;
    }

    .feature-card h3 {
        font-size: 1.05rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .values-row {
        gap: 15px;
    }

    .value-card {
        padding: 25px 20px;
        /* Ensure visibility on mobile */
        opacity: 1 !important;
        transform: none !important;
    }

    .value-icon {
        width: 55px;
        height: 55px;
    }

    .value-icon i {
        font-size: 24px;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }

    .about-cta-section,
    .services-cta-section,
    .marketing-cta-section {
        padding: 30px 20px;
        /* Ensure visibility on mobile */
        opacity: 1 !important;
        transform: none !important;
    }

    .about-cta-section h2,
    .marketing-cta-section h2 {
        font-size: 1.4rem;
    }

    .about-cta-section p,
    .marketing-cta-section p {
        font-size: 0.95rem;
    }

    .about-cta-btn,
    .marketing-cta-btn {
        font-size: 1rem;
        padding: 14px 25px;
    }

    .about-cta-btn i,
    .marketing-cta-btn i {
        font-size: 1.2rem;
    }

    .mission-card {
        padding: 25px 20px;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .mission-icon i {
        font-size: 28px;
    }

    .mission-content h2 {
        font-size: 1.4rem;
    }

    .mission-content p {
        font-size: 0.95rem;
    }
}
