.hero-section {
    padding: 140px 0 160px;
    background: #f4f4f5;
    /* Premium soft grey */
    position: relative;
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #3f3f46;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.promo-card {
    background: white;
    border-radius: 0px;
    padding: 12px;
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
}

.promo-image {
    width: 100%;
    border-radius: 0px;
    display: block;
}

.logo-marquee-container {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.logo-marquee {
    display: flex;
    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: #ff5c3d1a;
}

.process-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 0px;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5c3d;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon-box {
    background: #ff5c3d;
    color: white;
    transform: scale(1.1);
}

.process-step-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 10px;
    font-weight: 800;
    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;
}

/* ==========================================================================
    NEW HERO SECTION - PREMIUM GLASS & TYPE FOCUS
    ========================================================================== */
.hero-section {
    padding: 180px 0 200px;
    background: #e25d0108;
    /* Lighter, cleaner base */
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    /* Enable 3D space */
}

/* Background Typography */
.hero-bg-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5vw;
    /* Massive */
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 0, 0, 0.02);
    /* Very subtle */
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    font-family: 'Outfit', sans-serif;
}

/* Red Hue Glow */
.hero-red-glow {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 57, 17, 0.3) 0%, rgba(255, 65, 108, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(120px);
}

/* Focal Point Container */
.hero-stage {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 700px;
    width: 100%;
    gap: 40px;
}

/* Left Area */
.hero-area-left {
    flex: 1.5;
    max-width: 800px;
    z-index: 10;
    text-align: left;
}

/* Center Area */
.hero-area-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Right Area */
.hero-area-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 10;
}

/* Video Box - Cleaned and ensured relative sizing */
.hero-video-box {
    position: relative;
    width: 360px;
    height: 480px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 0 12px rgba(255, 255, 255, 0.05);
    background: #000;
    transform: rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-video-box:hover {
    transform: rotateY(0deg) scale(1.02);
}

.hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Center: Brand Stack */
.brand-card-stack {
    position: relative;
    height: 300px;
    width: 300px;
    margin: 0 auto;
    /* Center it */
}

.brand-glass-card {
    position: absolute;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 0px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s ease;
}

.brand-glass-card:nth-child(1) {
    top: 0;
    z-index: 3;
    transform: scale(1);
}

.brand-glass-card:nth-child(2) {
    top: 100px;
    z-index: 2;
    transform: scale(0.95);
    opacity: 0.8;
    filter: blur(1px);
}

.brand-glass-card:nth-child(3) {
    top: 200px;
    z-index: 1;
    transform: scale(0.9);
    opacity: 0.6;
    filter: blur(2px);
}

@media (max-width: 768px) {
    .brand-card-stack {
        transform: translateY(40px) !important;
        /* Move down significantly */
        transform-origin: center top;
        scale: 0.9;
    }

    /* Reduce spread/animation on mobile */
    .brand-glass-card:nth-child(2) {
        top: 60px;
    }

    .brand-glass-card:nth-child(3) {
        top: 120px;
    }
}

.hero-card-right:hover .brand-glass-card:nth-child(2) {
    top: 90px;
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.hero-card-right:hover .brand-glass-card:nth-child(3) {
    top: 180px;
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.card-chip {
    width: 40px;
    height: 28px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    border-radius: 6px;
}

/* Connecting Lines */
.connector-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0), rgba(99, 102, 241, 0.5), rgba(99, 102, 241, 0));
    z-index: 1;
    width: 300px;
}

.connector-left {
    top: 55%;
    left: 25%;
    transform: rotate(-15deg);
}

.connector-right {
    top: 45%;
    right: 25%;
    transform: rotate(15deg);
}

.connector-dot {
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid #6366f1;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px #6366f1;
}

/* ==========================================================================
    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(255, 92, 61, 0.1) 0%,
            rgba(255, 65, 108, 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: 900;
    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: #ff4d29;
    color: white;
    padding: 10px 20px;
    border-radius: 0px;
    font-weight: 800;
    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: 800;
    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: 800;
    color: #ff4d29;
    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: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #ff4d29;
    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: #ff4d29;
}

.faq-question {
    font-size: 18px;
    font-weight: 800;
    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: #ff4d29;
    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: #ff4d29;
}

.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.8rem !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;
    }
}