/* ===================================
   AXIOMADS HOMEPAGE HERO STYLES - FINAL 2ADVANCED
   ================================= */

/* Hero Section Container */
.axiomads-hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #1e1b4b 0%, 
        #312e81 25%, 
        #4c1d95 50%, 
        #581c87 75%, 
        #1e1b4b 100%);
}

/* Soft Radial Gradient Background Elements */
.axiomads-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 85% 25%, rgba(147, 51, 234, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 85%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

/* Star Field */
.axiomads-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 160px 30px, white, transparent),
        radial-gradient(1px 1px at 200px 90px, white, transparent),
        radial-gradient(1px 1px at 240px 50px, white, transparent),
        radial-gradient(2px 2px at 280px 10px, white, transparent),
        radial-gradient(1px 1px at 320px 70px, white, transparent),
        radial-gradient(1px 1px at 360px 40px, white, transparent),
        radial-gradient(2px 2px at 400px 80px, white, transparent),
        radial-gradient(1px 1px at 440px 20px, white, transparent),
        radial-gradient(1px 1px at 480px 60px, white, transparent),
        radial-gradient(2px 2px at 520px 90px, white, transparent),
        radial-gradient(1px 1px at 560px 30px, white, transparent),
        radial-gradient(1px 1px at 600px 70px, white, transparent),
        radial-gradient(2px 2px at 640px 40px, white, transparent),
        radial-gradient(1px 1px at 680px 10px, white, transparent),
        radial-gradient(1px 1px at 720px 80px, white, transparent),
        radial-gradient(2px 2px at 760px 50px, white, transparent);
    background-repeat: repeat;
    background-size: 800px 100px;
    opacity: 0.6;
    animation: axiomads-stars-twinkle 8s linear infinite;
    pointer-events: none;
}

@keyframes axiomads-stars-twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

/* Dynamic Particles Container */
.axiomads-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Appearing/Disappearing Particles */
.axiomads-dynamic-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
}

.axiomads-dynamic-particle-1 {
    left: 15%;
    top: 25%;
    animation: axiomads-particle-appear 6s infinite ease-in-out;
}

.axiomads-dynamic-particle-2 {
    left: 75%;
    top: 35%;
    animation: axiomads-particle-appear 8s infinite ease-in-out 2s;
}

.axiomads-dynamic-particle-3 {
    left: 45%;
    top: 60%;
    animation: axiomads-particle-appear 7s infinite ease-in-out 4s;
}

.axiomads-dynamic-particle-4 {
    left: 85%;
    top: 75%;
    animation: axiomads-particle-appear 9s infinite ease-in-out 1s;
}

.axiomads-dynamic-particle-5 {
    left: 25%;
    top: 80%;
    animation: axiomads-particle-appear 5s infinite ease-in-out 3s;
}

.axiomads-dynamic-particle-6 {
    left: 65%;
    top: 20%;
    animation: axiomads-particle-appear 10s infinite ease-in-out 5s;
}

.axiomads-dynamic-particle-7 {
    left: 35%;
    top: 45%;
    animation: axiomads-particle-appear 6.5s infinite ease-in-out 2.5s;
}

.axiomads-dynamic-particle-8 {
    left: 90%;
    top: 55%;
    animation: axiomads-particle-appear 7.5s infinite ease-in-out 4.5s;
}

@keyframes axiomads-particle-appear {
    0%, 20%, 80%, 100% { 
        opacity: 0; 
        transform: scale(0.5) translateY(0px);
    }
    40%, 60% { 
        opacity: 1; 
        transform: scale(1) translateY(-10px);
    }
}

/* Space-like Animated Lines */
.axiomads-animated-line {
    position: absolute;
    opacity: 0;
}

.axiomads-line-1 {
    width: 200px;
    height: 1px;
    left: 10%;
    top: 30%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent);
    animation: axiomads-line-appear 12s infinite ease-in-out;
}

.axiomads-line-2 {
    width: 150px;
    height: 1px;
    right: 15%;
    top: 60%;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.6), transparent);
    animation: axiomads-line-appear 15s infinite ease-in-out 3s;
}

.axiomads-line-3 {
    width: 1px;
    height: 120px;
    left: 70%;
    top: 20%;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.6), transparent);
    animation: axiomads-line-appear 18s infinite ease-in-out 6s;
}

.axiomads-line-4 {
    width: 180px;
    height: 1px;
    left: 30%;
    bottom: 25%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.6), transparent);
    animation: axiomads-line-appear 14s infinite ease-in-out 9s;
}

.axiomads-line-5 {
    width: 1px;
    height: 100px;
    right: 25%;
    top: 40%;
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.6), transparent);
    animation: axiomads-line-appear 16s infinite ease-in-out 12s;
}

@keyframes axiomads-line-appear {
    0%, 15%, 85%, 100% { 
        opacity: 0; 
        transform: scale(0.8);
    }
    30%, 70% { 
        opacity: 1; 
        transform: scale(1);
    }
}

/* Shooting Stars */
.axiomads-shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0;
}

.axiomads-shooting-star::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, white);
    transition: width 0.3s ease;
}

.axiomads-shooting-star-1 {
    left: -50px;
    top: 20%;
    animation: axiomads-shooting-star-1 20s infinite linear;
}

.axiomads-shooting-star-2 {
    left: -50px;
    top: 60%;
    animation: axiomads-shooting-star-2 25s infinite linear 8s;
}

.axiomads-shooting-star-3 {
    left: -50px;
    top: 80%;
    animation: axiomads-shooting-star-3 30s infinite linear 15s;
}

@keyframes axiomads-shooting-star-1 {
    0%, 10%, 90%, 100% { 
        opacity: 0; 
        transform: translateX(0) translateY(0);
    }
    15%, 85% { 
        opacity: 1; 
    }
    15% {
        transform: translateX(0) translateY(0);
    }
    85% {
        transform: translateX(calc(100vw + 100px)) translateY(-50px);
    }
}

@keyframes axiomads-shooting-star-2 {
    0%, 8%, 92%, 100% { 
        opacity: 0; 
        transform: translateX(0) translateY(0);
    }
    12%, 88% { 
        opacity: 1; 
    }
    12% {
        transform: translateX(0) translateY(0);
    }
    88% {
        transform: translateX(calc(100vw + 100px)) translateY(-30px);
    }
}

@keyframes axiomads-shooting-star-3 {
    0%, 6%, 94%, 100% { 
        opacity: 0; 
        transform: translateX(0) translateY(0);
    }
    10%, 90% { 
        opacity: 1; 
    }
    10% {
        transform: translateX(0) translateY(0);
    }
    90% {
        transform: translateX(calc(100vw + 100px)) translateY(-40px);
    }
}

/* Floating Social Icons */
.axiomads-floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.axiomads-floating-icon {
    position: absolute;
    animation: axiomads-float 8s ease-in-out infinite;
}

.axiomads-floating-icon-1 { left: 15%; top: 25%; animation-delay: 0s; }
.axiomads-floating-icon-2 { right: 15%; top: 30%; animation-delay: 1s; }
.axiomads-floating-icon-3 { left: 20%; top: 60%; animation-delay: 2s; }
.axiomads-floating-icon-4 { right: 20%; top: 65%; animation-delay: 3s; }
.axiomads-floating-icon-5 { left: 10%; top: 45%; animation-delay: 4s; }
.axiomads-floating-icon-6 { right: 10%; top: 50%; animation-delay: 5s; }
.axiomads-floating-icon-7 { left: 25%; top: 80%; animation-delay: 6s; }
.axiomads-floating-icon-8 { right: 25%; top: 85%; animation-delay: 7s; }

.axiomads-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.4), 
                0 0 40px rgba(147, 51, 234, 0.2),
                0 0 60px rgba(147, 51, 234, 0.1);
}

.axiomads-social-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.6), 
                0 0 60px rgba(147, 51, 234, 0.4),
                0 0 90px rgba(147, 51, 234, 0.2);
}

.axiomads-social-facebook { background: #1877f2; }
.axiomads-social-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.axiomads-social-tiktok { background: #000000; }
.axiomads-social-youtube { background: #ff0000; }
.axiomads-social-linkedin { background: #0077b5; }
.axiomads-social-twitter { background: #1da1f2; }
.axiomads-social-pinterest { background: #bd081c; }
.axiomads-social-snapchat { background: #fffc00; color: #000; }

@keyframes axiomads-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(3deg); }
    66% { transform: translateY(6px) rotate(-3deg); }
}

/* Hero Content */
.axiomads-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 1rem;
}

/* Advanced Badge */
.axiomads-hero-badge {
    margin-bottom: 2rem;
}

.axiomads-advanced-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.4), 
                0 0 60px rgba(147, 51, 234, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: axiomads-badge-glow 4s ease-in-out infinite;
}

.axiomads-advanced-pill i {
    margin-right: 8px;
}

@keyframes axiomads-badge-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(147, 51, 234, 0.4), 
                    0 0 60px rgba(147, 51, 234, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 40px rgba(147, 51, 234, 0.6), 
                    0 0 80px rgba(147, 51, 234, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Main Headline */
.axiomads-hero-headline {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    white-space: nowrap;
}

.axiomads-headline-primary {
    color: white;
}

.axiomads-headline-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: axiomads-text-gradient 4s ease infinite;
}

@keyframes axiomads-text-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtitle */
.axiomads-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 48rem;
    line-height: 1.6;
}

/* CTA Button */
.axiomads-hero-cta {
    background: white;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.axiomads-hero-cta:hover {
    background: #f3f4f6;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.axiomads-hero-cta i {
    margin-right: 8px;
}

/* Role Selection Text */
.axiomads-hero-role-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 4rem;
}

/* Description */
.axiomads-hero-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    max-width: 64rem;
    line-height: 1.6;
    margin-bottom: 4rem;
}

/* Statistics Cards - HORIZONTAL LAYOUT */
.axiomads-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 80rem;
}

.axiomads-stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.axiomads-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.axiomads-stat-blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.axiomads-stat-green {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.axiomads-stat-purple {
    background: rgba(147, 51, 234, 0.1);
    border-color: rgba(147, 51, 234, 0.2);
}

.axiomads-stat-orange {
    background: rgba(251, 146, 60, 0.1);
    border-color: rgba(251, 146, 60, 0.2);
}

.axiomads-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.axiomads-stat-blue .axiomads-stat-number { color: #93c5fd; }
.axiomads-stat-green .axiomads-stat-number { color: #86efac; }
.axiomads-stat-purple .axiomads-stat-number { color: #c4b5fd; }
.axiomads-stat-orange .axiomads-stat-number { color: #fdba74; }

.axiomads-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* ===================================
   AXIOMADS BLOGS SECTION STYLES
   ================================= */

.axiomads-blogs-section {
    padding: 5rem 0;
    background: white;
}

.axiomads-blogs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.axiomads-blogs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.axiomads-blogs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.axiomads-blogs-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.axiomads-blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.axiomads-blog-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.axiomads-blog-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.axiomads-blog-image {
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.axiomads-blog-image-tech {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.axiomads-blog-image-strategy {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.axiomads-blog-image-analytics {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

.axiomads-blog-image-content {
    text-align: center;
}

.axiomads-blog-image-content i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.axiomads-blog-image-tech i { color: #2563eb; }
.axiomads-blog-image-strategy i { color: #059669; }
.axiomads-blog-image-analytics i { color: #7c3aed; }

.axiomads-blog-image-content p {
    font-weight: 600;
    margin: 0;
}

.axiomads-blog-image-tech p { color: #1e40af; }
.axiomads-blog-image-strategy p { color: #047857; }
.axiomads-blog-image-analytics p { color: #6d28d9; }

.axiomads-blog-content {
    padding: 2rem;
}

.axiomads-blog-meta {
    margin-bottom: 1rem;
}

.axiomads-blog-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.axiomads-category-tech { background: #3b82f6; }
.axiomads-category-strategy { background: #10b981; }
.axiomads-category-analytics { background: #8b5cf6; }

.axiomads-blog-read-time {
    margin-left: 0.5rem;
    font-size: 0.875rem;
}

.axiomads-category-tech + .axiomads-blog-read-time { color: #2563eb; }
.axiomads-category-strategy + .axiomads-blog-read-time { color: #059669; }
.axiomads-category-analytics + .axiomads-blog-read-time { color: #7c3aed; }

.axiomads-blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.axiomads-blog-excerpt {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.axiomads-blog-link {
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.axiomads-blog-link i {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.axiomads-blog-link:hover i {
    transform: translateX(4px);
}

.axiomads-blog-card:nth-child(1) .axiomads-blog-link { color: #2563eb; }
.axiomads-blog-card:nth-child(1) .axiomads-blog-link:hover { color: #1d4ed8; }
.axiomads-blog-card:nth-child(2) .axiomads-blog-link { color: #059669; }
.axiomads-blog-card:nth-child(2) .axiomads-blog-link:hover { color: #047857; }
.axiomads-blog-card:nth-child(3) .axiomads-blog-link { color: #7c3aed; }
.axiomads-blog-card:nth-child(3) .axiomads-blog-link:hover { color: #6d28d9; }

.axiomads-blogs-cta {
    text-align: center;
}

.axiomads-view-all-blogs-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.axiomads-view-all-blogs-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.axiomads-view-all-blogs-btn i {
    margin-left: 0.5rem;
}

/* ===================================
   AXIOMADS PATH SECTION STYLES
   ================================= */

.axiomads-path-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.axiomads-path-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.axiomads-path-header {
    text-align: center;
    margin-bottom: 4rem;
}

.axiomads-path-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.axiomads-path-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.axiomads-path-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.axiomads-path-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.axiomads-path-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.axiomads-path-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.875rem;
    color: white;
}

.axiomads-path-icon-advertiser { background: #dbeafe; color: #2563eb; }
.axiomads-path-icon-creator { background: #dcfce7; color: #059669; }
.axiomads-path-icon-publisher { background: #f3e8ff; color: #7c3aed; }

.axiomads-path-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.axiomads-path-card-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.axiomads-path-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.axiomads-path-btn-advertiser {
    background: #2563eb;
}

.axiomads-path-btn-advertiser:hover {
    background: #1d4ed8;
}

.axiomads-path-btn-creator {
    background: #059669;
}

.axiomads-path-btn-creator:hover {
    background: #047857;
}

.axiomads-path-btn-publisher {
    background: #7c3aed;
}

.axiomads-path-btn-publisher:hover {
    background: #6d28d9;
}

/* ===================================
   RESPONSIVE DESIGN
   ================================= */

@media (max-width: 1024px) {
    .axiomads-hero-headline {
        font-size: 3rem;
    }
    
    .axiomads-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .axiomads-floating-icons {
        display: none;
    }
    
    /* Hide some dynamic effects on smaller screens for performance */
    .axiomads-shooting-star,
    .axiomads-animated-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .axiomads-hero-headline {
        font-size: 2.5rem;
        white-space: normal;
    }
    
    .axiomads-headline-primary,
    .axiomads-headline-gradient {
        display: block;
    }
    
    .axiomads-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .axiomads-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .axiomads-stat-number {
        font-size: 2rem;
    }
    
    .axiomads-blogs-grid {
        grid-template-columns: 1fr;
    }
    
    .axiomads-path-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .axiomads-hero-headline {
        font-size: 2rem;
    }
    
    .axiomads-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .axiomads-hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .axiomads-blogs-title,
    .axiomads-path-title {
        font-size: 2rem;
    }
    
    .axiomads-blogs-subtitle,
    .axiomads-path-subtitle {
        font-size: 1.125rem;
    }
}



/* ===================================
   AXIOMADS TRUSTED BY INDUSTRY LEADERS SECTION STYLES
   ================================= */

.axiomads-trusted-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.axiomads-trusted-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.axiomads-trusted-header {
    text-align: center;
    margin-bottom: 4rem;
}

.axiomads-trusted-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.axiomads-trusted-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.axiomads-trusted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.axiomads-trusted-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.axiomads-trusted-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.axiomads-trusted-google {
    border-color: rgba(59, 130, 246, 0.2);
}

.axiomads-trusted-google:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.axiomads-trusted-facebook {
    border-color: rgba(34, 197, 94, 0.2);
}

.axiomads-trusted-facebook:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1);
}

.axiomads-trusted-tiktok {
    border-color: rgba(236, 72, 153, 0.2);
}

.axiomads-trusted-tiktok:hover {
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.1);
}

.axiomads-trusted-microsoft {
    border-color: rgba(147, 51, 234, 0.2);
}

.axiomads-trusted-microsoft:hover {
    border-color: rgba(147, 51, 234, 0.4);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.1);
}

.axiomads-trusted-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.axiomads-trusted-google .axiomads-trusted-icon {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 25%, #fbbc05 50%, #ea4335 75%);
}

.axiomads-trusted-facebook .axiomads-trusted-icon {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
}

.axiomads-trusted-tiktok .axiomads-trusted-icon {
    background: linear-gradient(135deg, #000000 0%, #ff0050 100%);
}

.axiomads-trusted-microsoft .axiomads-trusted-icon {
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
}

.axiomads-trusted-card:hover .axiomads-trusted-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.axiomads-trusted-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.axiomads-trusted-card-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Responsive Design for Trusted Section */
@media (max-width: 768px) {
    .axiomads-trusted-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .axiomads-trusted-title {
        font-size: 2rem;
    }
    
    .axiomads-trusted-subtitle {
        font-size: 1.125rem;
    }
    
    .axiomads-trusted-card {
        padding: 1.5rem;
    }
    
    .axiomads-trusted-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

