/* ================================================
   PREMIUM SALES PAGE STYLES
   High-Converting, Beautiful Design
   ================================================ */

.sales-page {
    background: #FAFAFA;
}

/* ================================================
   FLOATING CTA
   ================================================ */
.floating-cta {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
    border-radius: 12px;
}

.floating-cta.visible {
    bottom: 24px;
}

.floating-cta .btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

/* ================================================
   HEADER
   ================================================ */
.header-sales {
    background: white;
    border-bottom: 1px solid #E5E7EB;
}

/* ================================================
   HERO - PREMIUM
   ================================================ */
.hero-premium {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: pulse 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 16px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title-sm {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #8B5CF6;
    margin-bottom: 16px;
    letter-spacing: 0;
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 48px;
    font-weight: 400;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    max-width: 700px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #8B5CF6;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.15);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #8B5CF6;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 600;
}

/* Hero CTA */
.hero-cta-group {
    text-align: left;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border-radius: 12px;
}

.btn-price {
    font-size: 24px;
    font-weight: 900;
    margin-left: 8px;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: #6B7280;
}

/* ================================================
   TRUST BANNER - ANIMATED TICKER
   ================================================ */
.trust-banner {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 16px 0;
    border-top: 2px solid #F59E0B;
    border-bottom: 2px solid #F59E0B;
    overflow: hidden;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    animation: scroll-ticker 12s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.ticker-text {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    padding: 0;
    letter-spacing: -0.3px;
}

.ticker-highlight {
    position: relative;
    color: #8B5CF6;
    font-weight: 800;
    display: inline-block;
    padding-bottom: 4px;
}

.ticker-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -2px;
    right: -2px;
    height: 3px;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='3' viewBox='0 0 200 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2 Q 10 0.5, 20 1.5 T 40 2 T 60 1.5 T 80 2 T 100 1.5 T 120 2 T 140 1.5 T 160 2 T 180 1.5 T 200 2' stroke='%238B5CF6' stroke-width='2.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 200px 3px;
    background-position: 0 bottom;
}

@keyframes scroll-ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-33.33%, 0, 0);
    }
}

/* Pause on hover */
.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

.trust-text {
    text-align: center;
    font-size: 16px;
    color: #374151;
    margin: 0;
}

/* ================================================
   SECTION COMMON
   ================================================ */
section {
    padding: 80px 0;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.section-title-center {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================
   PROBLEM SECTION
   ================================================ */
.section-problem {
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.problem-card {
    text-align: center;
    padding: 32px 24px;
    border: 2px solid #FEE2E2;
    border-radius: 16px;
    background: #FFF5F5;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.15);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
}

.callout-box {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-left: 4px solid #F59E0B;
    padding: 32px;
    border-radius: 12px;
}

.callout-text {
    font-size: 18px;
    color: #92400E;
    margin: 0;
}

/* ================================================
   VALUE TIMELINE
   ================================================ */
.section-value {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.value-header {
    margin-bottom: 64px;
}

.value-timeline {
    max-width: 900px;
    margin: 0 auto 48px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + 48px);
    background: linear-gradient(180deg, #8B5CF6 0%, transparent 100%);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
}

.timeline-number {
    font-size: 32px;
    font-weight: 900;
    color: white;
}

.timeline-content {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #8B5CF6;
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.1);
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.timeline-content > p {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-list li {
    padding: 12px 0 12px 32px;
    font-size: 15px;
    color: #4B5563;
    position: relative;
}

.timeline-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: 700;
    font-size: 18px;
}

/* ================================================
   DELIVERABLES
   ================================================ */
.section-deliverables {
    background: white;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.deliverable-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.deliverable-card:hover {
    border-color: #8B5CF6;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.15);
}

.deliverable-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.deliverable-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.deliverable-card p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
}

.value-box {
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    border-left: 4px solid #8B5CF6;
    padding: 32px;
    border-radius: 12px;
}

.value-statement {
    font-size: 18px;
    color: #5B21B6;
    margin: 0;
}

.highlight-text {
    background: #FBBF24;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    color: #92400E;
}

/* ================================================
   FIT SECTION
   ================================================ */
.section-fit {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.fit-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.fit-column {
    padding: 32px;
    border-radius: 16px;
    border: 2px solid;
}

.fit-yes {
    background: #F0FDF4;
    border-color: #86EFAC;
}

.fit-no {
    background: #FEF2F2;
    border-color: #FCA5A5;
}

.fit-column h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.fit-yes h3 {
    color: #15803D;
}

.fit-no h3 {
    color: #B91C1C;
}

.fit-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fit-column li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.fit-column li:last-child {
    border-bottom: none;
}

.fit-yes li {
    color: #166534;
}

.fit-no li {
    color: #991B1B;
}

/* ================================================
   TEAM PREMIUM
   ================================================ */
.section-team-premium {
    background: white;
}

.team-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.team-card-premium {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team-card-premium:hover {
    border-color: #8B5CF6;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.15);
}

.team-photo-large {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.team-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-premium h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.team-card-premium .team-role {
    font-size: 14px;
    color: #8B5CF6;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio-short {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.linkedin-link {
    display: inline-block;
    color: #0077B5;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    color: #005582;
    transform: translateX(4px);
}

.team-value-prop {
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.team-value-prop p {
    font-size: 18px;
    color: #5B21B6;
    margin: 0;
}

/* ================================================
   PRICING
   ================================================ */
.section-pricing {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.pricing-explanation {
    margin-top: 48px;
}

.pricing-intro {
    font-size: 20px;
    color: #374151;
    margin-bottom: 32px;
    text-align: center;
}

.pricing-reasons {
    display: grid;
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-reason {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
}

.pricing-reason h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.pricing-reason p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
}

.pricing-guarantee {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border: 2px solid #60A5FA;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.pricing-guarantee h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1E40AF;
    margin-bottom: 16px;
}

.pricing-guarantee p {
    font-size: 18px;
    color: #1E3A8A;
    margin: 0;
}

/* ================================================
   FAQ
   ================================================ */
.section-faq {
    background: white;
}

.faq-grid {
    display: grid;
    gap: 24px;
    margin-top: 48px;
}

.faq-item {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #8B5CF6;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* ================================================
   FINAL CTA
   ================================================ */
.section-final-cta {
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    padding: 100px 0;
}

.final-cta-box {
    background: white;
    padding: 64px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    text-align: center;
}

.final-cta-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 32px;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
    padding-left: 0;
    list-style-position: inside;
}

.next-steps li {
    font-size: 18px;
    color: #374151;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
}

.next-steps li:last-child {
    border-bottom: none;
}

.final-note {
    margin-top: 24px;
    font-size: 14px;
    color: #6B7280;
}

/* ================================================
   INLINE CTA
   ================================================ */
.cta-inline {
    text-align: center;
    margin-top: 48px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-stats,
    .problem-grid,
    .deliverables-grid,
    .team-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .hero-stats,
    .problem-grid,
    .deliverables-grid,
    .fit-columns,
    .team-grid-premium {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
    }

    .timeline-number {
        font-size: 24px;
    }

    .final-cta-box {
        padding: 40px 24px;
    }
}

