/* ============================================
   LANDING PAGE STYLES
   Integrated with design-tokens.css
   ============================================ */

/* Layout components */
.container { 
    max-width: var(--container-max); 
    margin: 0 auto; 
    padding: 0 var(--space-6); 
}

section.section { 
    padding: var(--space-20) 0; 
    position: relative; 
}

@media (max-width: 768px) {
    section.section { 
        padding: var(--space-12) 0; 
    }
}

.section--alt { background: var(--bg-soft); }
.section--divider { border-top: 1px solid var(--border); }
.section--dark { background: #050811; color: #fff; }
.section--brand { background: var(--primary); color: var(--white); }

.section__head { 
    text-align: center; 
    margin-bottom: var(--space-12); 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
}

@media (max-width: 768px) {
    .section__head { 
        margin-bottom: var(--space-8); 
    }
}

.section__actions {
    text-align: center;
    margin-top: var(--space-12);
}

.eyebrow { 
    color: var(--primary); 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: var(--tracking-wider); 
    font-size: var(--text-xs); 
    margin-bottom: var(--space-3); 
    display: block; 
}

.h2 { 
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); 
    line-height: var(--leading-tight); 
    letter-spacing: var(--tracking-tight); 
    margin-bottom: var(--space-4); 
    font-weight: 800; 
    color: var(--text); 
}

.section--dark .h2, .section--dark .eyebrow { color: #fff; }
.section--brand .h2 { color: var(--white); }

.sub { 
    color: var(--text-secondary); 
    font-size: var(--text-lg); 
    line-height: var(--leading-relaxed); 
}

.section--dark .sub { color: rgba(255,255,255,0.6); }
.section--brand .sub { color: rgba(255,255,255,0.8); }

/* Hero Section */
.hero { 
    padding: var(--space-20) 0; 
    overflow: hidden; 
}

.hero--brand { 
    background: var(--primary); 
    color: var(--white); 
    padding: 140px 0 100px; 
    margin-top: 0; 
    position: relative;
}

.hero__row { 
    display: grid; 
    grid-template-columns: 1.1fr 0.9fr; 
    gap: var(--space-16); 
    align-items: center; 
}

@media (max-width: 1024px) {
    .hero__row {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
    }
    
    .hero--brand {
        padding: 120px 0 60px;
    }
}

.hero__viz { 
    border-radius: 24px; 
    padding: 0;
    position: relative; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3); 
    background: #fff;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg); 
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

@media (max-width: 1024px) {
    .hero__viz {
        max-width: 600px;
        margin: 0 auto;
        transform: none;
    }
}

.hero__viz:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.h1 { 
    font-size: clamp(36px, 8vw, 64px); 
    line-height: 1.1; 
    letter-spacing: -0.03em; 
    margin: 0 0 20px 0; 
    font-weight: 800; 
}

.lead { 
    font-size: clamp(17px, 2.5vw, 22px); 
    color: rgba(255,255,255,0.9); 
    max-width: 540px; 
    margin-bottom: 32px; 
    line-height: 1.6; 
    font-weight: 500;
}

@media (max-width: 1024px) {
    .lead {
        margin-left: auto;
        margin-right: auto;
    }
}

.chip-row {
    display: flex;
    gap: 12px;
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .chip-row {
        justify-content: center;
        gap: 8px;
        margin-bottom: var(--space-4);
    }
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(var(--primary-rgb), 0.06);
    color: var(--primary);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    white-space: nowrap;
}

.chip i {
    font-size: 10px;
    opacity: 0.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-top: var(--space-6);
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
}

.hero-metrics {
    margin-top: 40px;
    display: flex;
    gap: 24px;
}

@media (max-width: 640px) {
    .hero-metrics {
        justify-content: center;
        gap: 16px;
    }
}

.hero-metrics .m {
    display: flex;
    flex-direction: column;
}

.hero-metrics b {
    font-size: 28px;
    line-height: 1.2;
}

.hero-metrics span {
    font-size: 14px;
    opacity: 0.8;
}

/* Common components */
.card, .tcard, .faq-item, .hl-card, .video-card, .offer__left, .form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card:hover, .tcard:hover, .faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.tcard--accent::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
}

.t-quote { font-style: italic; color: var(--text-muted); margin-bottom: var(--space-4); }
.t-name { font-weight: 800; display: block; }
.t-role { color: var(--text-muted); font-size: 14px; }

/* FAQ Accordion */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.faq-item {
    cursor: pointer;
    padding: 0;
}

.faq-q {
    width: 100%;
    padding: var(--space-5) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    font-weight: 700;
    text-align: left;
    color: var(--text);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--space-6);
    color: var(--text-secondary);
}

.faq-item.is-open .faq-a {
    max-height: 500px;
    padding-bottom: var(--space-6);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-item.is-open .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

/* Offer & Form */
.offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.offer-banner {
    display: inline-block;
    background: linear-gradient(90deg, #ef4444, #f97316);
    color: #fff;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 12px;
    margin-bottom: var(--space-4);
}

.spots { margin-top: var(--space-6); }
.spots__track {
    height: 8px;
    background: var(--bg-soft);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: var(--space-2);
}
.spots__fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 99px;
}

.note-urgent {
    display: inline-block;
    color: #ef4444;
    font-weight: 700;
    background: rgba(239, 68, 68, 0.05);
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: var(--space-4);
}

/* Footer moved to app-components.css */

.newsletter-text {
    font-size: 14px;
    margin-bottom: var(--space-4);
}

.footer-form {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 8px 12px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.footer-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-btn:hover {
    background: var(--primary-hover);
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.socials a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.legal-row {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

.dot {
    width: 3px;
    height: 3px;
    background: #475569;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .foot {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }
}

@media (max-width: 768px) {
    .foot {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    .foot-brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .socials {
        justify-content: center;
    }
    
    .footer-form {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .legal-row {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: var(--d, 0s);
}

/* Visual Refinements */
.section__head .h2 { position: relative; padding-bottom: 12px; }
.section__head .h2::after {
    content: ""; position: absolute; left: 50%; transform: translateX(-50%);
    bottom: 0; width: 60px; height: 3px; border-radius: 99px;
    background: var(--gradient-primary);
}

.hero::after {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                       linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px; pointer-events: none;
}

.steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-8); }
.steps::before { 
    content: ""; position: absolute; top: 44px; left: 0; right: 0; 
    height: 2px; background: var(--border); z-index: 0; 
}
.step { position: relative; z-index: 1; background: var(--white); }

@media (max-width: 768px) {
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .legal-row { flex-direction: column; gap: 16px; text-align: center; }
}

.showcase-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: var(--space-4); }
.showcase-cta-row { margin-top: var(--space-4); display: flex; gap: 12px; flex-wrap: wrap; }

.badge--chip { 
    background: rgba(255,255,255,0.1); 
    border: 1px solid rgba(255,255,255,0.2); 
    padding: 4px 12px; 
    border-radius: var(--radius-full); 
    font-size: 12px; 
    font-weight: 600; 
}

/* Testimonials Section */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--space-6); }
.tcard { background: #fff; border: 1px solid #e2e8f0; border-radius: var(--radius-2xl); padding: var(--space-8); transition: all 0.3s ease; }
.tcard:hover { border-color: #0a3bff; transform: translateY(-4px); }
.tcard--accent { background: #f8fafc; }
.stars { color: #fbbf24; margin-bottom: 16px; }
.t-quote { font-size: 15px; color: #1e293b; margin-bottom: 20px; line-height: 1.6; }
.t-name { font-weight: 800; font-size: 14px; }
.t-role { color: #64748b; font-size: 12px; }

/* Showcase Section */
.showcase { 
    padding: var(--space-20) 0; 
    background: var(--primary); 
    color: var(--white); 
    position: relative; 
    overflow: hidden; 
}

.showcase__row { 
    display: grid; 
    grid-template-columns: 0.8fr 1.2fr; 
    gap: var(--space-12); 
    align-items: center; 
}

.video-card { 
    position: relative; 
    aspect-ratio: 16/9; 
    background: #000; 
    border-radius: var(--radius-2xl); 
    overflow: hidden; 
    box-shadow: var(--shadow-2xl);
}

.video-card iframe { 
    width: 100%; 
    height: 100%; 
    border: none; 
}

/* Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.work-item {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.thumb-16x9 {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-sm);
}

.thumb-16x9 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover .thumb-16x9 img {
    transform: scale(1.05);
}

.play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s ease;
}

.work-item:hover .play-badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

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

@media (max-width: 640px) {
    .work-grid { grid-template-columns: 1fr; }
}

.faq-section { padding: var(--space-8) 0; background: var(--bg); }
.faq-head { text-align: center; margin-bottom: var(--space-8); }
.faq-head-eyebrow { color: var(--primary); margin-bottom: var(--space-4); }
.faq-head-h2 { color: var(--text); margin-bottom: var(--space-4); }
.faq-head-sub { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.faq-head-sub a { color: var(--primary); text-decoration: none; font-weight: 600; }
.faq-list-container { max-width: 900px; margin: 0 auto; display: grid; gap: var(--space-4); }

.faq-footer { 
    text-align: center; 
    margin-top: var(--space-14); 
    padding: var(--space-10); 
    background: var(--bg-soft); 
    border-radius: var(--radius-lg); 
    border: 1px solid var(--border); 
}

.faq-footer-p1 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: var(--space-4); }
.faq-footer-p2 { font-size: 15px; color: var(--text-muted); margin-bottom: var(--space-6); }
.faq-footer-cta { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }
.faq-footer-btn { font-size: 16px; padding: 14px 28px; }

/* Buttons */
.btn { 
    display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2); 
    font-weight: 700; border: 1.5px solid transparent; cursor: pointer; 
    transition: all var(--transition-base); min-height: 52px; 
    padding: 0 var(--space-8); border-radius: var(--radius-full); font-size: var(--text-base);
    text-decoration: none;
}

.btn--primary { 
    background: var(--white); 
    color: var(--primary); 
    box-shadow: var(--shadow-lg); 
}

.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); background: var(--bg-soft); }

.btn--secondary { 
    background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: var(--white); 
}

.btn--secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.section:not(.hero--brand):not(.section--dark) .btn--primary {
    background: #0a3bff;
    color: var(--white);
}

.section:not(.hero--brand):not(.section--dark) .btn--secondary {
    background: var(--bg-canvas); border-color: var(--border); color: var(--text);
}

.section:not(.hero--brand):not(.section--dark) .btn--secondary:hover { background: var(--bg-soft); border-color: var(--text-light); }

/* Trust Section */
.trust { padding: var(--space-8) 0; background: var(--bg); border-bottom: 1px solid var(--border); }
.trust__row { display: flex; gap: var(--space-12); flex-wrap: wrap; align-items: center; justify-content: center; }
.logo-pill { opacity: 0.4; transition: all var(--transition-base); filter: grayscale(100%); display: flex; align-items: center; justify-content: center; }
.logo-pill:hover { opacity: 0.8; filter: grayscale(0%); transform: scale(1.05); }
.logo-img { height: 24px; width: auto; object-fit: contain; }
.trace-logo-text { font-weight: 900; font-size: 20px; letter-spacing: 2px; color: #000; }

/* About Section */
.about__grid {
    display: grid; 
    grid-template-columns: 1.1fr 0.9fr; 
    gap: var(--space-16); 
    align-items: center; 
}

@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
}

.hl-card {
    background: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 640px) {
    .hl-card {
        padding: var(--space-6);
    }
}

.stat-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.stat-box {
    text-align: center;
    padding: var(--space-6);
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
}

@media (max-width: 480px) {
    .stat-pair {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .stat-box {
        padding: var(--space-4);
    }
}

.stat-val {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .stat-pair { grid-template-columns: 1fr; }
}

/* Packages Section */
.cards { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: var(--space-8); 
}

@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (max-width: 640px) {
    .cards {
        grid-template-columns: 1fr;
    }
}

.card { 
    background: #fff; 
    border: 1px solid #e2e8f0; 
    border-radius: var(--radius-xl); 
    padding: var(--space-8); 
    transition: all 0.3s ease; 
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (max-width: 480px) {
    .card {
        padding: var(--space-6);
    }
}

.card:hover { transform: translateY(-8px); border-color: #0a3bff; }

.card .badge {
    position: absolute;
    top: -12px;
    right: var(--space-6);
    background: var(--gradient-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.card .chip-sm { background: #f1f5f9; color: #64748b; padding: 4px 12px; border-radius: 99px; font-size: 11px; font-weight: 700; text-transform: uppercase; display: inline-block; margin-bottom: 16px; align-self: flex-start; }
.card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.card .price { font-size: 32px; font-weight: 900; color: #0a3bff; margin-bottom: 24px; display: flex; align-items: baseline; gap: 4px; }
.card .price small { font-size: 14px; color: #64748b; font-weight: 500; }
.card .btn { width: 100%; border-radius: 8px !important; margin-top: auto; }

.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.checklist li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--success);
    font-size: 12px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    margin-bottom: 24px;
}

.meta-row span { color: var(--text-muted); }
.meta-row b { color: var(--text); font-weight: 700; }

/* About Section Refinements */
.about__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.about__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: var(--space-4);
}

.hl-card__title {
    font-size: 20px;
    letter-spacing: -0.01em;
    margin: 0.25rem 0 0.75rem;
    font-weight: 800;
}

.hl-card .sub {
    text-align: left;
    margin-bottom: var(--space-4);
}

/* Producers Section */
.producers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

@media (max-width: 768px) {
    .producers-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        margin-top: var(--space-8);
    }
}

.producer-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.metric {
    padding: var(--space-6);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.metric__val {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.metric__label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.producer-cta {
    margin-top: var(--space-12);
    text-align: center;
}

@media (max-width: 640px) {
    .producer-cta {
        margin-top: var(--space-8);
    }
    
    .producer-cta .btn {
        width: 100%;
    }
}

.producer-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.producer-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.producer-card__status {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.8), 0 2px 8px rgba(0,0,0,0.1);
}

.status-dot--online {
    background: #10b981;
    animation: pulse 2s infinite;
}

.status-dot--offline {
    background: #6b7280;
}

.producer-card__media {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    overflow: hidden;
}

.producer-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producer-card__avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 48px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.producer-card__content {
    padding: var(--space-6);
}

.producer-card__head {
    margin-bottom: var(--space-4);
}

.producer-card__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 4px;
    line-height: 1.2;
}

.producer-card__specialization {
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.producer-card__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

@media (max-width: 380px) {
    .producer-card__metrics {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
}

.producer-card__metric {
    text-align: center;
}

.producer-card__metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
    font-size: 12px;
}

.producer-card__metric-val {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.producer-card__metric-lbl {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

.producer-card__actions {
    display: flex;
    gap: var(--space-3);
}

.producer-card__actions .btn {
    flex: 1;
    min-height: 44px;
    font-size: 14px;
    padding: 0 var(--space-4);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Checklist component (shared) */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8) 0;
    display: grid;
    gap: var(--space-3);
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    font-size: 14px;
    margin-top: 2px;
}

.section--dark .checklist li {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .hero__row, .about__grid, .offer {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__viz {
        order: -1;
        transform: none;
    }
    
    .hero__actions, .about__actions, .hero-metrics, .trust__row {
        justify-content: center;
    }
    
    .about__content .checklist li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .producers-grid {
        grid-template-columns: 1fr;
    }
}

/* Process Section */
.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-8);
    position: relative;
    margin-top: var(--space-12);
}

.steps::before {
    content: "";
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    background: var(--white);
    text-align: center;
}

.pill {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto var(--space-4);
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
}

.step__icon {
    font-size: 32px;
    margin-bottom: var(--space-4);
}

.step__title {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: var(--space-2);
    color: var(--text);
}

.step__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Producer Metrics */
.producer-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-14);
    padding-top: var(--space-12);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.metric__val {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: var(--space-2);
}

.metric__label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.producer-cta {
    text-align: center;
    margin-top: var(--space-16);
}

@media (max-width: 768px) {
    .producer-metrics {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
}

/* Producer Card Enhancements */
.producer-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.producer-card__avatar {
    width: 100%;
    height: 100%;
    background: var(--slate-100);
    color: var(--slate-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: var(--space-16) var(--space-6);
    color: var(--slate-500);
}

.empty-state i {
    font-size: 48px;
    margin-bottom: var(--space-4);
    opacity: 0.3;
}

.empty-state p {
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
}

/* Trust Section */
.logo-text {
    font-weight: 700;
    color: var(--slate-900);
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-4);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.faq-q {
    font-weight: 700;
    font-size: 17px;
    padding: var(--space-6) var(--space-8);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-5);
    background: var(--white);
    transition: background 0.3s ease;
    color: var(--text);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.is-open .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

.faq-a {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    padding: 0 var(--space-8);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.link-primary {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-primary:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* FAQ Interaction */
.faq-item.is-open .faq-a {
    max-height: 500px;
    padding-bottom: var(--space-6);
}

.faq-item.is-open .faq-toggle {
    transform: rotate(45deg);
}

.faq-a-inner {
    padding-bottom: var(--space-6);
    border-top: 1px solid var(--border-subtle);
}

.faq-a p {
    margin: var(--space-5) 0 0;
}

/* Video Showcase Section Refinements */
.showcase .eyebrow {
    color: #dbeafe;
}

.showcase .h2 {
    color: #fff;
}

.showcase .sub {
    color: #e2e8f0;
}

.showcase__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: var(--space-8);
}

.showcase__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: var(--space-4);
}

/* Animations */
@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
    }
    
    .steps::before {
        display: none;
    }
}

/* Contact Section */
.contact-card { background: var(--bg); border-radius: var(--radius-2xl); overflow: hidden; border: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; }
.contact-info { padding: var(--space-12); background: var(--bg-soft); border-right: 1px solid var(--border); }
.contact-cta { padding: var(--space-12); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.contact-info h3, .contact-cta h3 { margin-bottom: var(--space-4); color: var(--text); }
.contact-list { list-style: none; padding: 0; margin: var(--space-8) 0; display: grid; gap: var(--space-4); }
.contact-list li { display: flex; align-items: center; gap: var(--space-4); color: var(--text-secondary); }
.contact-list i { color: var(--primary); width: 20px; text-align: center; }
.social-links { display: flex; gap: var(--space-4); margin-top: var(--space-8); }
.social-links a { width: 44px; height: 44px; border-radius: var(--radius-lg); background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text); transition: all var(--transition-base); text-decoration: none; }
.social-links a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { border-right: none; border-bottom: 1px solid var(--border); padding: var(--space-8); }
    .contact-cta { padding: var(--space-8); }
}

/* Public Navbar Styles */
/* --- Button Variations --- */
.btn--sm { padding: 8px 20px !important; font-size: 14px !important; }
.btn--text { background: transparent !important; color: inherit !important; border: none !important; box-shadow: none !important; padding: 8px 16px !important; }
.btn--text:hover { color: var(--primary) !important; background: rgba(var(--primary-rgb), 0.05) !important; }

/* Site Header moved to app-components.css */

/* Animations moved to app-components.css */

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about__grid { grid-template-columns: 1fr; gap: var(--space-10); }
    .steps { grid-template-columns: repeat(3, 1fr); }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    /* Layout Adjustments */
    .hero--brand { padding: 120px 0 60px; }
    .hero__row { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero .lead { margin: 0 auto 32px; }
    .hero-cta-row { justify-content: center; }
    .hero-metrics { justify-content: center; margin: 0 auto; flex-wrap: wrap; gap: 32px; }
    .hero__viz { transform: none !important; margin: 0 auto; max-width: 600px; }
    .steps, .cards, .testimonials-grid { grid-template-columns: 1fr; }
    .stat-pair { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .brand-logo { height: 36px !important; }
    .nav__list { top: 52px; }
}
