
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', sans-serif;
    background: #fff;
    color: #1a1a1a;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ============= NAVIGATION ============= */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.2rem 0;
}

nav .nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.8px;
    text-decoration: none;
    color: #000;
}
textarea {
resize: none !important;
height: 120px !important;	
}

.nav-logo span {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav .nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #0ea5e9;
}

.nav-cta {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: #fff !important;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.25);
}

/* ============= HERO ============= */
.hero {
    padding: 4rem 0 2.5rem;
    text-align: center;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}

.hero-pretitle {
    font-size: 0.85rem;
    color: #0ea5e9;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    color: #000;
}

.hero h1 span {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: #555;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    max-width: 680px;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.btn {
    padding: 1.1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: #fff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.3);
}

.btn-outline {
    background: transparent;
    color: #0ea5e9;
    border: 2px solid #e5e7eb;
}

.btn-outline:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

/* ============= MARQUEE — RIGHT TO LEFT ============= */
.marquee-section {
    padding: 0 0 3rem;
    overflow: hidden;
    position: relative;
}

.marquee-label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1.5px;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
    animation: scrollRTL 25s linear infinite;
}

/* Right to left: track moves from right side toward the left */
@keyframes scrollRTL {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #d1d5db;
    white-space: nowrap;
    transition: color 0.3s;
}

.marquee-item:hover {
    color: #0ea5e9;
}

.marquee-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    flex-shrink: 0;
}

/* ============= CHANNELS SECTION ============= */
.channels {
    padding: 4.5rem 3rem;
    border-top: 1px solid #e5e7eb;
}

.channels-container {
    max-width: 1280px;
    margin: 0 auto;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.channel-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
    transition: all 0.3s;
}

.channel-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.08);
    transform: translateY(-4px);
}

.channel-logo {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 0.6rem;
}

.logo-amazon { color: #232f3e; }
.logo-amazon em { color: #ff9900; font-style: normal; }
.logo-walmart { color: #0071ce; }
.logo-walmart em { color: #ffc220; font-style: normal; }
.logo-tiktok { color: #010101; }
.logo-ebay em:nth-child(1) { color: #e53238; font-style: normal; }
.logo-ebay em:nth-child(2) { color: #0064d2; font-style: normal; }
.logo-ebay em:nth-child(3) { color: #f5af02; font-style: normal; }
.logo-ebay em:nth-child(4) { color: #86b817; font-style: normal; }
.logo-shopify { color: #5e8e3e; }
.logo-backmarket { color: #000; }
.logo-temu { color: #fb7701; }

.channel-sub {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* ============= SOLUTIONS SECTION ============= */
.solutions {
    padding: 4.5rem 3rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.solutions-container {
    max-width: 1280px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.solution-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.3s;
}

.solution-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.08);
    transform: translateY(-4px);
}

.solution-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    letter-spacing: -0.4px;
}

.solution-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* ============= WHO WE SERVE ============= */
.audiences {
    padding: 4.5rem 3rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.audiences-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
}

.audiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.audience-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.audience-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.08);
    transform: translateY(-4px);
}

.audience-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
}

.audience-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.audience-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.audience-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.audience-card li {
    font-size: 0.95rem;
    color: #444;
    padding: 0.45rem 0 0.45rem 1.6rem;
    position: relative;
}

.audience-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 800;
}

.card-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 1rem;
}

/* ============= HOW IT WORKS ============= */
.how-works {
    padding: 4.5rem 3rem;
}

.how-works-container {
    max-width: 1280px;
    margin: 0 auto;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step-name {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 0.4rem 1.1rem;
    margin-bottom: 1.2rem;
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

/* ============= OPERATION PROOF ============= */
.proof {
    padding: 4.5rem 3rem;
    background: #0b1120;
    color: #fff;
}

.proof-container {
    max-width: 1280px;
    margin: 0 auto;
}

.proof .section-header h2 {
    color: #fff;
}

.proof .section-header p {
    color: #9ca3af;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.proof-stat {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.proof-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Monaco', 'Menlo', monospace;
}

.proof-label {
    font-size: 0.85rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
}

/* ============= RESULTS ============= */
.results {
    padding: 4.5rem 3rem;
    background: #f9fafb;
}

.results-container {
    max-width: 1280px;
    margin: 0 auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.result-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.metric {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(6, 182, 212, 0.05));
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: 900;
    color: #0ea5e9;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.quote-section p {
    font-size: 1.05rem;
    color: #1a1a1a;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.quote-author strong {
    color: #0ea5e9;
    font-weight: 800;
    display: block;
}

.quote-author {
    font-size: 0.9rem;
    color: #666;
}

/* ============= FINAL CTA ============= */
.final-cta {
    padding: 4.5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, #f0f9ff, #ecfdf5);
    border-top: 1px solid #e5e7eb;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #000;
}

.final-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.final-cta-subtext {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1.5rem;
}

/* ============= MODAL ============= */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(11, 17, 32, 0.6);
    padding: 1.5rem;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-box {
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.modal-box h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #000;
}

.modal-box p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.modal-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #1a1a1a;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font: inherit;
    font-size: 0.95rem;
    margin: 0.5rem 0;

}
.wpcf7 form .wpcf7-response-output {
margin: 0 !important;

}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: #0ea5e9;
}

.modal-form textarea {
    min-height: 110px;
    resize: vertical;
}

/* ============= FOOTER ============= */
footer {
    background: #0b1120;
    color: #9ca3af;
    padding: 3.5rem 3rem 2rem;
}

footer .container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #0ea5e9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #0ea5e9;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
    nav .nav-container {
        padding: 0 1.5rem;
    }

    nav .nav-links {
        display: none;
    }

    .hero {
        padding: 3.5rem 0 2.5rem;
    }

    .hero-inner {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-cta {
        flex-direction: column;
        padding: 0 1.5rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .marquee-item {
        font-size: 1.8rem;
    }

    .audiences,
    .how-works,
    .proof,
    .results,
    .final-cta {
        padding: 3.5rem 1.5rem;
    }

    .audiences-grid,
    .how-steps,
    .results-grid,
    .channels-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .channels,
    .solutions {
        padding: 3.5rem 1.5rem;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics-row {
        grid-template-columns: 1fr;
    }

    .section-header h2,
    .final-cta h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-page .container {
        padding: 0 1.5rem;
    }
}

/* ============= LEGAL PAGES ============= */
.legal-page {
    padding: 4rem 0 20rem;
}

.legal-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3rem;
}

.legal-page h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 1.5rem;
}

.legal-page p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}
