/* ========================================
   MapFlow Landing Page
   Premium Dark Theme - Inspired by Unreal/Adobe
   Colors from logo: Orange #ff6f00, Yellow #ffc107, Blue #2196f3
   ======================================== */

/* CSS Variables */
:root {
    /* Background colors */
    --bg-dark: #0d0d12;
    --bg-primary: #111118;
    --bg-secondary: #16161f;
    --bg-card: #1c1c28;
    --bg-elevated: #222230;

    /* Brand colors from logo */
    --orange: #ff6f00;
    --orange-light: #ff9100;
    --yellow: #ffc107;
    --blue: #2196f3;
    --blue-light: #64b5f6;
    --red: #e53935;

    /* Accent gradient */
    --gradient-primary: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    --gradient-cta: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);

    /* Text colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #606078;

    /* Utility */
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(255, 111, 0, 0.2);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--orange-light);
}

ul {
    list-style: none;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-cta);
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 111, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 111, 0, 0.4);
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--orange);
    color: var(--orange);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 18, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--text-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Background image layer */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../Header_eyes.png') center center / cover no-repeat;
    z-index: 0;
}

/* Gradient overlay for text readability - more opaque */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 18, 0.5) 0%,
        rgba(13, 13, 18, 0.65) 50%,
        rgba(13, 13, 18, 0.9) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-icon {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(255, 111, 0, 0.6));
}

.hero-title {
    max-width: 760px;
    width: 100%;
    height: auto;
    margin-top: 0.75rem;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7));
}

.hero-tagline {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 0, 0, 0.6);
}

/* Hero subtitle - main value proposition */
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

/* Technical line - Maya/Arnold/etc */
.hero-badge {
    display: block;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--text-muted);
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Micro-text - additional details */
.hero-microtext {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn-primary {
    box-shadow: 0 4px 30px rgba(255, 111, 0, 0.5);
}

.hero-cta .btn-secondary {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 111, 0, 0.15);
    border-color: var(--orange);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    z-index: 10;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
        opacity: 1;
    }
    50% {
        transform: rotate(45deg) translateY(10px);
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ========================================
   UNIVERSAL WORKFLOW SECTION
   ======================================== */
.universal {
    background: var(--bg-secondary);
}

.universal h2 {
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.universal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.universal-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}

.universal-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.universal-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.universal-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.universal-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.howitworks {
    background: var(--bg-primary);
}

.howitworks h2 {
    margin-bottom: 0.5rem;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    min-width: 160px;
    flex: 1;
    max-width: 200px;
    position: relative;
    transition: all var(--transition);
}

.step:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--gradient-cta);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.step h3 {
    color: var(--orange);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--orange);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step {
        max-width: 100%;
        width: 100%;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

/* ========================================
   PROOF BAR
   ======================================== */
.proof-bar {
    background: var(--bg-secondary);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
section {
    padding: 100px 0;
}

section:nth-child(even) {
    background: var(--bg-secondary);
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem {
    background: var(--bg-primary);
}

.problem h2 {
    margin-bottom: 3rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.problem-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.problem-card:hover {
    border-color: var(--red);
}

.problem-card.highlight {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(229, 57, 53, 0.05) 100%);
    border-color: var(--red);
}

.problem-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.problem-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution {
    background: var(--bg-dark);
    text-align: center;
}

.solution h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.before, .after {
    background: var(--bg-card);
    padding: 2.5rem 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    min-width: 200px;
}

.before {
    border-color: var(--red);
}

.after {
    border-color: var(--orange);
    box-shadow: var(--shadow-glow);
}

.before .label, .after .label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.before .label { color: var(--red); }
.after .label { color: var(--orange); }

.before .time, .after .time {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.arrow {
    font-size: 3rem;
    color: var(--orange);
}

/* ========================================
   DEMO SECTION
   ======================================== */
.demo {
    background: var(--bg-secondary);
    text-align: center;
}

.demo-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

/* ========================================
   FEATURES SECTION (TABS)
   ======================================== */
.features {
    background: var(--bg-primary);
}

.features h2 {
    margin-bottom: 3rem;
}

.features-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.tab-btn:hover {
    border-color: var(--orange);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--gradient-cta);
    color: #000;
    border-color: transparent;
}

.tab-content {
    display: none;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.tab-content.active {
    display: grid;
}

.tab-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--orange);
}

.tab-text ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tab-text li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.tab-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
}

.tab-text li strong {
    color: var(--text-primary);
}

.tab-image img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* ========================================
   USE CASES
   ======================================== */
.usecases {
    background: var(--bg-secondary);
}

.usecases h2 {
    margin-bottom: 3rem;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.usecase-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.usecase-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.usecase-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.usecase-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.usecase-card p {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison {
    background: var(--bg-primary);
}

.comparison h2 {
    margin-bottom: 3rem;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

th, td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background: var(--bg-elevated);
    font-weight: 600;
    color: var(--text-primary);
}

th:first-child {
    border-radius: var(--radius-lg) 0 0 0;
}

th:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
}

td {
    color: var(--text-secondary);
}

td:first-child {
    font-weight: 500;
    color: var(--text-primary);
}

tr:last-child td {
    border-bottom: none;
}

.yes {
    color: #4caf50 !important;
    font-weight: 600;
}

.no {
    color: var(--red) !important;
}

.partial {
    color: var(--yellow) !important;
}

/* Highlight column for MapFlow */
th.highlight-col,
td.highlight-col {
    background: rgba(255, 111, 0, 0.08);
}

th.highlight-col {
    color: var(--orange);
}

/* ========================================
   CREDIBILITY
   ======================================== */
.credibility {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.credibility-content {
    max-width: 700px;
    margin: 0 auto;
}

.credibility-subtitle {
    font-size: 1.1rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.credibility p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.credibility-points {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.credibility-points span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========================================
   PRICING TRANSITION
   ======================================== */
.pricing-transition {
    background: var(--bg-primary);
    padding: 60px 0;
    text-align: center;
}

.transition-text {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
    background: var(--bg-dark);
    text-align: center;
}

.pricing h2 {
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-light);
}

.pricing-card.featured {
    border-color: var(--orange);
    box-shadow: 0 0 30px rgba(255, 111, 0, 0.15);
}

.pricing-card.featured:hover {
    box-shadow: 0 8px 40px rgba(255, 111, 0, 0.25);
    transform: translateY(-6px) scale(1.02);
}

.pricing-card.featured::before {
    background: var(--gradient-primary);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-cta);
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

/* Most popular badge */
.pricing-popular {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: rgba(255, 111, 0, 0.15);
    border: 1px solid rgba(255, 111, 0, 0.3);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

/* Recommended text for Team */
.pricing-recommended {
    text-align: center;
    font-size: 0.85rem;
    color: var(--orange);
    margin-bottom: 1rem;
    font-weight: 500;
}

.pricing-header {
    margin-bottom: 1rem;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-price {
    margin: 0.75rem 0;
}

.pricing-price .currency {
    font-size: 1.25rem;
    vertical-align: top;
    color: var(--orange);
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ROI message under price */
.pricing-roi {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.5rem 0;
    font-style: italic;
}

.pricing-term {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.pricing-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features .check {
    color: #4caf50;
    font-weight: bold;
    flex-shrink: 0;
}

/* Reassurance badges */
.pricing-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

.reassurance-badge {
    padding: 8px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition);
}

.reassurance-badge:hover {
    border-color: var(--orange);
    color: var(--text-primary);
}

/* Pricing note under button */
.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Enhanced button hover for pricing cards */
.pricing-card .btn-primary {
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card .btn-primary:hover {
    box-shadow: 0 8px 40px rgba(255, 111, 0, 0.5);
    transform: translateY(-3px);
}

.pricing-card.featured .btn-primary:hover {
    box-shadow: 0 10px 50px rgba(255, 111, 0, 0.6);
}

/* Secure checkout */
.cta-secure {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-popular {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .pricing-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .pricing-recommended {
        font-size: 0.8rem;
    }

    .pricing-price .amount {
        font-size: 2.5rem;
    }

    .pricing-roi {
        font-size: 0.75rem;
    }

    .pricing-reassurance {
        gap: 0.75rem;
    }

    .reassurance-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .pricing-trust-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px) scale(1);
    }
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    background: var(--bg-secondary);
}

.faq h2 {
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.faq-item h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-dark) 100%);
    text-align: center;
    padding: 120px 0;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   SUPPORT
   ======================================== */
.support {
    background: var(--bg-secondary);
    text-align: center;
    padding: 60px 0;
}

.support h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.support .note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-brand span {
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Publisher logo - discreet */
.footer-publisher {
    display: block;
    margin-top: 1.5rem;
    opacity: 0.4;
    transition: opacity var(--transition);
}

.footer-publisher:hover {
    opacity: 0.7;
}

.footer-publisher img {
    max-width: 180px;
    height: auto;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .tab-content {
        grid-template-columns: 1fr;
    }

    .tab-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .scroll-indicator {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        min-height: 90vh;
    }

    .hero-icon {
        width: 140px;
    }

    .hero-title {
        max-width: 400px;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-microtext {
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .before-after {
        flex-direction: column;
        gap: 1rem;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .tab-buttons {
        gap: 4px;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .tab-content {
        padding: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 0.75rem 1rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 95%;
    max-height: 95%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--orange);
}

/* ========================================
   FLOATING CHAT WIDGET
   ======================================== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-cta);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 111, 0, 0.4);
    transition: all var(--transition);
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 111, 0, 0.5);
}

.chat-toggle svg {
    width: 26px;
    height: 26px;
    color: #000;
}

.chat-toggle .icon-close {
    display: none;
}

.chat-widget.active .chat-toggle .icon-chat {
    display: none;
}

.chat-widget.active .chat-toggle .icon-close {
    display: block;
}

/* Chat Popup */
.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all var(--transition);
}

.chat-widget.active .chat-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: var(--gradient-cta);
    padding: 16px 20px;
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
}

.chat-body {
    padding: 20px;
}

.chat-intro {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-input,
.chat-textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.chat-input:focus,
.chat-textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.chat-input::placeholder,
.chat-textarea::placeholder {
    color: var(--text-muted);
}

.chat-textarea {
    resize: none;
    min-height: 100px;
}

.chat-submit {
    width: 100%;
    margin-top: 4px;
}

/* Success message */
.chat-success {
    text-align: center;
    padding: 30px 20px;
}

.chat-success svg {
    width: 50px;
    height: 50px;
    color: #4caf50;
    margin-bottom: 16px;
}

.chat-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-popup {
        width: calc(100vw - 40px);
        right: 0;
    }

    .chat-toggle {
        width: 54px;
        height: 54px;
    }
}

/* YouTube Button */
.demo-youtube-link {
    text-align: center;
    margin-top: 30px;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FF0000;
    color: white;
    border: 2px solid #FF0000;
    transition: var(--transition);
}

.btn-youtube:hover {
    background: #CC0000;
    border-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

.btn-youtube svg {
    flex-shrink: 0;
}
