/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --color-primary: #ff6b35;
    --color-primary-dark: #e55a2b;
    --color-secondary: #4a90e2;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-text-light: #808080;
    --color-text-dark: #1a1a1a;
    --color-background: #0a0a0a;
    --color-background-soft: #141414;
    --color-background-muted: #1f1f1f;
    --color-border: #333333;
    --color-border-light: #2a2a2a;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    --border-radius: 12px;
    --border-radius-large: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-background);
    overflow-x: hidden;
    font-feature-settings: 'rlig' 1, 'calt' 1;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text);
}
.logo-icon {
    font-size: 24px;
}
/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition);
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--color-text);
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--color-text);
    border-radius: 1px;
    transition: var(--transition);
}
/* Navigation Stats */
.nav-stats {
    display: none;
    align-items: center;
    gap: 16px;
}
.stat-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--color-background-soft);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}
.stat-icon {
    font-size: 14px;
}
@media (min-width: 1200px) {
    .nav-stats {
        display: flex;
    }
}
/* Buttons */
.btn-primary, .btn-primary-large {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
}
.btn-primary-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}
.btn-primary:hover, .btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}
.btn-arrow {
    font-size: 18px;
    transition: var(--transition);
}
.btn-primary:hover .btn-arrow, .btn-primary-large:hover .btn-arrow {
    transform: translateX(4px);
}
/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--gradient-background);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
        transform: scale(1.02);
    }
}
.badge-icon {
    font-size: 16px;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text);
    letter-spacing: -0.02em;
}
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description {
    font-size: 20px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-cta {
    margin-bottom: 48px;
}
.email-capture {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    align-items: stretch;
}
.email-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius);
    background: var(--color-background);
    color: var(--color-text);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}
.email-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.email-input::placeholder {
    color: var(--color-text-muted);
}
.email-submit {
    flex-shrink: 0;
    white-space: nowrap;
}
.cta-info {
    margin-top: 16px;
}
.cta-note {
    font-size: 14px;
    color: var(--color-text-light);
}
/* Social Proof Mini */
.social-proof-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}
.proof-avatars {
    font-size: 20px;
}
.proof-text {
    font-size: 14px;
    color: var(--color-text-muted);
}
/* Demo Section */
.demo-section {
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    background: var(--color-background-soft);
    padding: 8px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}
.demo-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
    min-width: 140px;
    justify-content: center;
}
.demo-tab:hover {
    background: var(--color-background-muted);
    color: var(--color-text);
}
.demo-tab.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-soft);
}
.tab-icon {
    font-size: 16px;
}
.video-container {
    position: relative;
}
.demo-display {
    display: none;
}
.demo-display.active {
    display: block;
}
.demo-preview {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    cursor: pointer;
    transition: var(--transition);
}
.demo-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 80px -12px rgba(0, 0, 0, 0.6);
}
.demo-browser {
    background: var(--color-background-muted);
    min-height: 400px;
    border: 1px solid var(--color-border);
}
.browser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--color-background-soft);
    border-bottom: 1px solid var(--color-border);
}
.browser-dots {
    display: flex;
    gap: 6px;
}
.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-text-light);
}
.browser-dots span:first-child { background: #ff5f5f; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:last-child { background: #27ca3f; }
.browser-url {
    background: var(--color-background);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    flex: 1;
    max-width: 300px;
}
.browser-content {
    padding: 24px;
    min-height: 320px;
}
/* Lead Generation Demo */
.marketplace-item {
    display: flex;
    gap: 16px;
    background: var(--color-background-soft);
    padding: 16px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    margin-bottom: 16px;
}
.item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 8px;
    flex-shrink: 0;
}
.item-details {
    flex: 1;
}
.item-title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}
.item-location {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}
.profit-indicator {
    font-size: 14px;
    color: #10b981;
    font-weight: 500;
}
.ai-actions {
    background: var(--color-background);
    padding: 16px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}
.action-item {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    padding-left: 4px;
}
/* Negotiation Demo */
.chat-messages {
    background: var(--color-background);
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--color-border);
    min-height: 200px;
}
.message {
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.4;
}
.message.seller {
    background: var(--color-background-soft);
    color: var(--color-text);
    margin-left: auto;
    text-align: right;
}
.message.ai {
    background: var(--gradient-primary);
    color: white;
    margin-right: auto;
}
.message.typing {
    background: var(--color-background-muted);
    color: var(--color-text-muted);
    font-style: italic;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.negotiation-stats {
    background: var(--color-background-soft);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}
.negotiation-stats .stat {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}
/* Nurturing Demo */
.nurturing-pipeline {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.pipeline-stage {
    min-width: 180px;
    background: var(--color-background-soft);
    border-radius: var(--border-radius);
    padding: 16px;
    border: 1px solid var(--color-border);
}
.stage-title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
    font-size: 14px;
    text-align: center;
}
.lead-card {
    background: var(--color-background);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    border: 1px solid var(--color-border);
}
/* Analytics Demo */
.analytics-dashboard {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.metric-cards {
    display: flex;
    gap: 16px;
}
.metric-card {
    background: var(--color-background-soft);
    padding: 16px;
    border-radius: var(--border-radius);
    flex: 1;
    border: 1px solid var(--color-border);
    text-align: center;
}
.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.metric-label {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}
.metric-change {
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
}
.chart-placeholder {
    background: var(--color-background-soft);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid var(--color-border);
    height: 150px;
    display: flex;
    align-items: end;
    justify-content: center;
}
.chart-bars {
    display: flex;
    gap: 8px;
    align-items: end;
    height: 100px;
}
.bar {
    width: 20px;
    background: var(--gradient-primary);
    border-radius: 2px 2px 0 0;
    min-height: 20px;
}
/* Play Overlay */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}
.demo-preview:hover .play-overlay {
    background: rgba(0, 0, 0, 0.8);
}
.play-button {
    margin-bottom: 16px;
    transition: var(--transition);
}
.demo-preview:hover .play-button {
    transform: scale(1.1);
}
.demo-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}
/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}
/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
/* How it Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--color-background-soft);
}
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}
.step-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
}
.icon-bg {
    font-size: 32px;
}
.step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}
.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}
.step-content p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
}
/* Features Section */
.features {
    padding: 100px 0;
    background: var(--color-background);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}
.feature-card {
    background: var(--color-background);
    padding: 32px;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: rgba(255, 107, 53, 0.2);
}
.feature-icon {
    margin-bottom: 24px;
}
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}
.feature-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 15px;
}
/* Grand Slam Offer Section (Enhanced for Pre-Launch) */
.grand-slam-offer {
    padding: 100px 0;
    background: var(--color-background-soft);
    position: relative;
}
.grand-slam-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.value-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}
.value-card {
    background: var(--color-background);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}
.value-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--color-text);
    line-height: 1.3;
}
.value-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}
.core-offer {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.1);
    position: relative;
}
.core-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.guarantee-card {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
    background: rgba(255, 107, 53, 0.05);
}
.guarantee-card h3 {
    color: var(--color-primary);
}
.total-value {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--color-background);
    border-radius: var(--border-radius-large);
    border: 1px solid var(--color-border);
    position: relative;
    z-index: 2;
}
.total-value p {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-text);
}
.value-amount {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 24px;
}

/* Purchase Section Styles */
.purchase-section {
    margin-top: 32px;
    text-align: center;
}

.btn-purchase {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 24px 48px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 320px;
    margin: 0 auto;
}

.btn-purchase::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-purchase:hover::before {
    left: 100%;
}

.btn-purchase:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.4);
}

.btn-purchase:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.3);
}

.purchase-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.purchase-price {
    font-size: 32px;
    font-weight: 800;
    margin: 4px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.purchase-subtext {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.payment-security {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.security-icons {
    font-size: 16px;
}

.security-text {
    font-weight: 500;
}

/* Loading state for purchase button */
.btn-purchase.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-purchase.loading .purchase-text::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { color: transparent; text-shadow: 0.25em 0 0 transparent, 0.5em 0 0 transparent; }
    40% { color: white; text-shadow: 0.25em 0 0 transparent, 0.5em 0 0 transparent; }
    60% { text-shadow: 0.25em 0 0 white, 0.5em 0 0 transparent; }
    80%, 100% { text-shadow: 0.25em 0 0 white, 0.5em 0 0 white; }
}

/* Hero Purchase Button Styles */
.hero-purchase-section {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.btn-purchase-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 28px 56px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.btn-purchase-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-purchase-hero:hover::before {
    left: 100%;
}

.btn-purchase-hero:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
}

.btn-purchase-hero:active {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.4);
}

.purchase-text-hero {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.purchase-price-hero {
    font-size: 42px;
    font-weight: 800;
    margin: 6px 0;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.purchase-subtext-hero {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.hero-payment-security {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.hero-payment-security .security-icons {
    font-size: 18px;
}

.hero-payment-security .security-text {
    font-weight: 500;
}

/* Loading state for hero purchase button */
.btn-purchase-hero.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-purchase-hero.loading .purchase-text-hero::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-purchase {
        padding: 20px 32px;
        min-width: 280px;
        font-size: 16px;
    }
    
    .purchase-text {
        font-size: 16px;
    }
    
    .purchase-price {
        font-size: 28px;
    }
    
    .purchase-subtext {
        font-size: 12px;
    }
    
    .btn-purchase-hero {
        padding: 24px 40px;
        font-size: 18px;
    }
    
    .purchase-text-hero {
        font-size: 18px;
    }
    
    .purchase-price-hero {
        font-size: 36px;
    }
    
    .purchase-subtext-hero {
        font-size: 13px;
    }
}
.launch-pricing {
    margin-top: 16px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}
.launch-price {
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 800;
}
.pricing-warning {
    margin-top: 12px !important;
    font-size: 14px !important;
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}
/* Testimonials Section (Enhanced with Image Support) */
.testimonials {
    padding: 100px 0;
    background: var(--color-background);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}
.testimonial-card {
    background: var(--color-background-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-large);
    padding: 32px;
    position: relative;
    transition: var(--transition);
    text-align: center;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}
.testimonial-image {
    margin-bottom: 24px;
    position: relative;
}
.testimonial-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-border);
}
.testimonial-avatar-fallback {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-border);
}
.avatar-initials {
    font-size: 48px;
    font-weight: 700;
    color: white;
}
.testimonial-content {
    margin-bottom: 24px;
}
.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    font-style: italic;
}
.testimonial-author {
    margin-bottom: 16px;
}
.author-name {
    font-weight: 600;
    color: var(--color-text);
    font-size: 18px;
    margin-bottom: 4px;
}
.author-title {
    font-size: 14px;
    color: var(--color-text-muted);
}
.testimonial-result {
    background: var(--color-background);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
}
/* Beta Stats */
.beta-stats {
    margin-top: 64px;
    padding: 48px 0;
    background: var(--color-background-soft);
    border-radius: var(--border-radius-large);
    border: 1px solid var(--color-border);
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}
.beta-stats .stat-item {
    text-align: center;
}
.beta-stats .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.beta-stats .stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}
/* Final CTA Section (Pre-Launch Enhanced) */
.final-cta {
    padding: 100px 0;
    background: var(--gradient-background);
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(74, 144, 226, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.cta-visual {
    margin-bottom: 32px;
}
.cta-icon {
    font-size: 64px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
    letter-spacing: -0.02em;
}
.cta-content p {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}
/* CTA Video */
.cta-video {
    margin: 32px 0;
}
.cta-video .video-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.zech-video {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: var(--border-radius-large);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-large);
}
.zech-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(74, 144, 226, 0.2) 0%, transparent 50%);
    pointer-events: none;
}
.zech-video:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 80px -12px rgba(0, 0, 0, 0.4);
}
.zech-video .play-button {
    margin-bottom: 16px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}
.zech-video:hover .play-button {
    transform: scale(1.1);
}
.zech-video .video-overlay {
    text-align: center;
    position: relative;
    z-index: 2;
}
.zech-video .video-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}
.zech-video .video-duration {
    font-size: 14px;
    opacity: 0.8;
}
/* Final Email Capture */
.email-capture-final {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    align-items: stretch;
}
.email-input-final {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius);
    background: var(--color-background);
    color: var(--color-text);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}
.email-input-final:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.email-input-final::placeholder {
    color: var(--color-text-muted);
}
.email-submit-final {
    flex-shrink: 0;
    white-space: nowrap;
}
.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-muted);
}
.guarantee-icon {
    color: #10b981;
    font-size: 16px;
}
.cta-urgency {
    margin-top: 24px;
    text-align: center;
}
.urgency-text {
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
    animation: pulse-urgent 2s infinite;
}
@keyframes pulse-urgent {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 107, 53, 0.5);
    }
}
/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--color-background-soft);
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 24px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding-right: 16px;
}
.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    flex: 1;
}
.faq-toggle {
    font-size: 24px;
    color: var(--color-text-muted);
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-background);
    border: 1px solid var(--color-border);
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 16px;
}
.faq-answer p {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}
/* Footer */
.footer {
    background: var(--color-background-soft);
    color: var(--color-text);
    padding: 60px 0 32px;
    border-top: 1px solid var(--color-border);
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .logo {
    color: var(--color-text);
    margin-bottom: 16px;
}
.footer-tagline {
    color: var(--color-text-muted);
    font-size: 15px;
}
.footer-column h4 {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
    font-size: 16px;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}
.footer-column ul li a:hover {
    color: var(--color-primary);
}
.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
    text-align: center;
    color: var(--color-text-light);
    font-size: 14px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
  
    .nav-stats {
        display: none;
    }
  
    .mobile-menu-btn {
        display: flex;
    }
  
    .hero {
        padding: 100px 0 60px;
    }
  
    .hero-title {
        font-size: 2.5rem;
    }
  
    .hero-description {
        font-size: 18px;
    }
  
    .email-capture, .email-capture-final {
        flex-direction: column;
        max-width: 100%;
        gap: 16px;
    }
  
    .email-input, .email-input-final {
        width: 100%;
    }
  
    .email-submit, .email-submit-final {
        width: 100%;
        justify-content: center;
    }
  
    .demo-tabs {
        flex-wrap: wrap;
        gap: 6px;
    }
  
    .demo-tab {
        min-width: 120px;
        padding: 10px 16px;
        font-size: 13px;
    }
  
    .tab-icon {
        font-size: 14px;
    }
  
    .demo-section {
        max-width: 100%;
        margin-left: 16px;
        margin-right: 16px;
    }
  
    .browser-content {
        padding: 16px;
    }
  
    .metric-cards {
        flex-direction: column;
        gap: 12px;
    }
  
    .nurturing-pipeline {
        flex-direction: column;
    }
  
    .pipeline-stage {
        min-width: auto;
    }
  
    .stats-grid, .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
  
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
  
    .workflow-steps {
        gap: 32px;
    }
  
    .features-grid {
        grid-template-columns: 1fr;
    }
  
    .value-stack-grid {
        grid-template-columns: 1fr;
    }
  
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
  
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
  
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
  
    .container {
        padding: 0 16px;
    }
  
    .social-proof-mini {
        flex-direction: column;
        gap: 8px;
    }
}
@media (max-width: 480px) {
    .hero-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
  
    .btn-primary-large {
        width: 100%;
        justify-content: center;
    }
  
    .stats-grid, .stats-container {
        grid-template-columns: 1fr;
    }
  
    .step-icon {
        width: 60px;
        height: 60px;
    }
  
    .icon-bg {
        font-size: 24px;
    }
  
    .feature-card {
        padding: 24px;
    }
  
    .testimonial-image img,
    .testimonial-avatar-fallback {
        height: 150px;
    }
  
    .avatar-initials {
        font-size: 36px;
    }
}
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Focus styles for accessibility */
button:focus-visible, a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
  
    html {
        scroll-behavior: auto;
    }
}