:root {
    --sales-primary: #f59e0b;
    --sales-secondary: #ef4444;
    --sales-bg: #030712;
}

body.sales-tunnel {
    background: var(--sales-bg);
    overflow-x: hidden;
}

.sales-nav {
    padding: 20px 8%;
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.sales-hero {
    padding: 80px 8% 30px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.sales-hero .badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: var(--sales-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.sales-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-orange {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sales-hero p {
    font-size: 1.3rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 40px;
}

.sales-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #f59e0b, #ef4444);
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: sales-pulse 2s infinite;
}

.sales-cta-main:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px rgba(239, 68, 68, 0.6);
}

@keyframes sales-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.trust-bar {
    padding: 40px 8%;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    color: #4b5563;
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0.6;
}

.problem-section {
    padding: 20px 8%;
    background: linear-gradient(to bottom, #000, #030712);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.problem-card {
    padding: 40px;
    background: #0a0e1a;
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: 20px;
    transition: 0.3s;
}

.problem-card:hover {
    border-color: var(--sales-primary);
    background: rgba(245, 158, 11, 0.03);
    transform: translateY(-5px);
}

.problem-card .icon-x {
    color: #ef4444;
    font-size: 2rem;
    margin-bottom: 20px;
}

.solution-section {
    padding: 20px 8%;
}

.solution-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.solution-img img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checklist {
    list-style: none;
    margin-top: 30px;
}

.checklist li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.checklist li b { color: var(--sales-primary); }

.proof-stats {
    display: flex;
    justify-content: space-around;
    padding: 50px 5%;
    background: linear-gradient(135deg, #0a0b1e, #1e1b4b);
    border-radius: 30px;
    margin: 60px 8%;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--sales-primary);
}

.offer-card {
    max-width: 900px;
    margin: 60px auto;
    padding: 50px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
    border-radius: 40px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    text-align: center;
    position: relative;
}

.urgency-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    color: white;
    padding: 8px 25px;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
}

/* Premium Elements for Clients Page */
.hero-visual-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 60% 40%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(239, 68, 68, 0.05) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

.video-placeholder {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-placeholder:hover {
    transform: scale(1.02);
    border-color: var(--sales-primary) !important;
}

.step-indicator {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.step-indicator:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--sales-primary);
    transform: translateY(-10px);
}

.step-num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(245, 158, 11, 0.1);
    margin-bottom: -20px;
}

.how-it-works {
    padding: 30px 8%;
    background: radial-gradient(circle at 10% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(239, 68, 68, 0.05) 0%, transparent 40%);
}

.step-indicator {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.step-indicator {
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-indicator:hover {
    background: rgba(245, 158, 11, 0.05);
    border-color: var(--sales-primary);
    transform: translateY(-8px);
}

.step-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 158, 11, 0.3);
    margin-bottom: 20px;
}

.sales-cta-main {
    animation: sales-pulse 2s infinite;
}

@keyframes sales-pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* Responsiveness */
@media (max-width: 1024px) {
    .sales-hero h1 { font-size: 2.2rem; }
    .problem-grid, .solution-feature { grid-template-columns: 1fr; gap: 15px;}
    section { padding: 25px 5% !important; }
}
