/* ==========================================================================
    HERO MOZ STYLE - MODERN DATA FOCUS
    ========================================================================== */
.hero-moz-section {
    position: relative;
    padding: 160px 0 0px;
    background: linear-gradient(rgba(0, 12, 29, 0.8), rgba(0, 12, 29, 0.9)), url('../img/back.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    color: white;
}

/* Dynamic Texture (Grid/Waves) */
.hero-moz-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(37, 99, 235, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.hero-moz-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.dashboard-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.4);
    padding: 24px;
    color: #18181b;
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin-left: auto;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}

.mockup-score-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.score-circle {
    width: 60px;
    height: 60px;
    border: 5px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    position: relative;
}

.score-blue { border-top-color: #004687; }

.floating-report-cta {
    position: absolute;
    bottom: -60px;
    right: -60px;
    z-index: 21;
}

.ai-badge-circle {
    position: absolute;
    top: 50%;
    left: -40px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
    color: #000;
    z-index: 21;
    animation: float-ai 5s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes float-ai {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, -20px) scale(1.05); }
}

.hero-logo-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0, 0, 0, 0.05);
    padding: 40px 0;
    margin-top: 80px;
    position: relative;
    z-index: 5;
}

.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.hero-curve svg {
    fill: white;
}

.logo-marquee-container {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.logo-marquee {

    overflow: hidden;
    user-select: none;
    gap: 80px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marquee 30s linear infinite;
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-logo {
    height: 32px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.marquee-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

.founder-avatars {
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 0px;
    border: 2px solid white;
    margin-left: -12px;
    background: #e2e2e7;
}

.avatar:first-child {
    margin-left: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    background: white;
    padding: 40px;
    border-radius: 0px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.08);
    border-color: #0046871a;
}

.process-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 0px;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004687;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon-box {
    background: #004687;
    color: white;
    transform: scale(1.1);
}

.process-step-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 10px;
    font-weight: 700;
    color: #e2e2e7;
    letter-spacing: 0.1em;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 700;
    color: #71717a;
}

.trust-visual-section {
    padding: 69px 0;
    background: #f4f4f5;
    /* Premium soft grey */
    text-align: center;
    overflow: hidden;
}

.trust-image-wrapper {
    perspective: 1000px;
    margin-bottom: 60px;
}

.trust-animated-img {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 0px;
    transform: scale(0.9);
    transition: transform 0.1s ease-out;
}

.testimonial-marquee-section {
    padding: 100px 0 160px;
    background: #f4f4f5;
    position: relative;
    overflow: hidden;
}

.testimonial-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 32px;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: marquee-scroll 40s linear infinite;
    flex-shrink: 0;
}

.testimonial-track.reverse {
    animation: marquee-scroll-reverse 40s linear infinite;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-reverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 0px;
    width: 400px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #10b981;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.top-wave-grey {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* ==========================================================================
    HERO MODERN DESIGN - INEXCO STYLE
    ========================================================================== */
.hero-modern-section {
    position: relative;
    padding: 240px 0 160px;
    background: #000c1d; /* Deep Midnight Blue */
    overflow: hidden;
    color: white;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-shape-1 {
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 90%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-shape-2 {
    position: absolute;
    top: -30%;
    right: -15%;
    width: 80%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(29, 78, 216, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

/* Moving World Container */
.world-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.world-pulse {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: world-glow 4s ease-in-out infinite;
    z-index: 5;
}

@keyframes world-glow {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.15); opacity: 0.5; }
}

.rotating-world {
    width: 100%;
    height: 100%;
    z-index: 10;
    position: relative;
    filter: drop-shadow(0 0 50px rgba(37, 99, 235, 0.3));
    animation: float-hero 8s ease-in-out infinite;
}

@keyframes float-hero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.world-connections-svg {
    position: absolute;
    inset: 0;
    z-index: 11;
    animation: rotate-connections 180s linear infinite;
    opacity: 0.5;
}

@keyframes rotate-connections {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Removed conflicting header style stored in header.php */


/* ==========================================================================
    PRICING SECTION - CLEANED & SYNCHRONIZED
    ========================================================================== */
.pricing-section-container {
    position: relative;
}

.pricing-hue-glow {
    position: absolute;
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 1000px;
    background: radial-gradient(circle,
            rgba(29, 78, 216, 0.1) 0%,
            rgba(30, 58, 138, 0.05) 30%,
            rgba(66, 153, 225, 0.02) 60%,
            rgba(255, 255, 255, 0) 80%);
    pointer-events: none;
    z-index: 1;
    filter: blur(100px);
}

.pricing-table-shadow-box {
    background: white;
    border-radius: 0px;
    box-shadow:
        0 0 1px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.03),
        0 40px 100px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: visible;
    /* Important for sticky */
}

.pricing-header-row {
    position: sticky;
    top: 96px;
    background: white;
    z-index: 90;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px 40px 0 0;
    display: flex;
    flex-direction: column;
}

.pricing-header-top {
    width: 100%;
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-header-bottom {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.pricing-header-left,
.feature-name {
    width: 320px;
    min-width: 320px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.pricing-header-left {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-plans-container {
    flex: 1;
    display: flex;
    background: white;
    box-sizing: border-box;
}

.pricing-column {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    background: white;
    box-sizing: border-box;
}

.pricing-column:last-child {
    border-right: none;
}

.plan-name {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: #18181b;
}

.plan-price {
    font-size: 14px;
    font-weight: 700;
    color: #71717a;
    margin-bottom: 16px;
}

.btn-order {
    background: #004687;
    color: white;
    padding: 10px 20px;
    border-radius: 0px;
    font-weight: 700;
    font-size: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-row,
.outlet-row {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.feature-name {
    font-weight: 700;
    color: #18181b;
    display: flex;
    align-items: center;
    padding: 20px 24px;
    font-size: 14px;
    background: #fafafa;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    gap: 10px;
}

.feature-val {
    flex: 1;
    text-align: center;
    font-weight: 700;
    color: #27272a;
    font-size: 15px;
    padding: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.feature-val:last-child {
    border-right: none;
}

.status-check {
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.status-dash {
    width: 24px;
    height: 24px;
    background: #e4e4e7;
    color: #a1a1aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 12px;
}

.outlet-row .feature-name {
    background: white;
}

.brand-logo-small {
    max-height: 24px;
    max-width: 100px;
    object-fit: contain;
    margin-left: auto;
}

.sample-report-link {
    font-size: 11px;
    font-weight: 700;
    color: #004687;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.network-link {
    font-size: 11px;
    font-weight: 700;
    color: #6366f1;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ==========================================================================
    FAQ SECTION - MONOLITHIC ACCORDIONS
    ========================================================================== */
.faq-category-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #004687;
    margin-bottom: 24px;
    display: block;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 32px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:hover .faq-question {
    color: #004687;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #18181b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    opacity: 1;
    margin-top: 24px;
}

.faq-answer p {
    color: #71717a;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 16px;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
}

.faq-answer li {
    color: #71717a;
    font-weight: 600;
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
    font-size: 14px;
}

.faq-answer li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #004687;
    border-radius: 50%;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #d4d4d8;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 14px;
    left: 11px;
    top: 5px;
}

.faq-icon::after {
    width: 14px;
    height: 2px;
    left: 5px;
    top: 11px;
}

.faq-item.active .faq-icon::before {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::after {
    background: #004687;
}

.faq-trust-box {
    background: #fafafa;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-trust-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.faq-author-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}

/* ==========================================================================
    MOBILE RESPONSIVE OVERRIDES
    ========================================================================== */

@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 0 100px;
    }

    .hero-stage {
        flex-direction: column;
        min-height: auto;
        text-align: center;
        gap: 60px;
    }

    .hero-area-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-area-left h1 {
        font-size: 3.5rem !important;
        margin-bottom: 20px;
    }

    .hero-area-center {
        order: 3;
        width: 100%;
    }

    .brand-card-stack {
        width: 100%;
        max-width: 380px;
        height: 280px;
    }

    .brand-glass-card {
        padding: 20px;
    }

    .hero-area-right {
        order: 2;
        justify-content: center;
        width: 100%;
    }

    .hero-video-box {
        width: 100%;
        max-width: 320px;
        border-radius: 30px;
        height: 400px;
        transform: none !important;
    }

    /* Trust Section */
    .trust-text-content h2 {
        font-size: 2.8rem !important;
    }

    /* Trust Section */
    .trust-text-content h2 {
        font-size: 2.8rem !important;
    }

    .pricing-section-container .text-center h2 {
        font-size: 2.8rem !important;
    }

    /* Testimonials */
    .testimonial-card {
        width: 320px;
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .hero-area-left h1 {
        font-size: 2.5rem !important;
    }

    .hero-section {
        padding-top: 60px;
    }

    .antigravity-card {
        padding: 24px !important;
    }

    .pricing-section-container {
        padding-bottom: 80px;
    }

    .logo-marquee-container {
        padding: 40px 0;
    }

    .logo-track {
        gap: 40px;
    }
}