/* ========================================
   AdGenius AI - Modern High-Tech Landing Page
   ======================================== */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #22d3ee;
    --accent: #f472b6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --bg-glass: rgba(18, 18, 26, 0.8);

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);

    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #22d3ee 100%);
    --gradient-hero: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --gradient-glow: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

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

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

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

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

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

.btn-google {
    background: white;
    color: #333;
}

.btn-google:hover {
    background: #f8f9fa;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-plan {
    width: 100%;
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-plan:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover .arrow-icon {
    transform: translateX(4px);
}

.google-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition-base);
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a,
.nav-text {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.nav-text {
    cursor: default;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    left: -100px;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    max-width: 700px;
}

.countdown-banner {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 8px 8px 8px 20px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 0.9rem;
}

.countdown {
    display: flex;
    gap: 16px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
}

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

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    display: none;
}

.creative-preview {
    position: relative;
    padding: 40px;
}

.preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
    backdrop-filter: blur(20px);
}

.main-card {
    max-width: 320px;
}

.card-header {
    margin-bottom: 16px;
}

.score-badge {
    display: inline-flex;
    flex-direction: column;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    padding: 12px 20px;
}

.score-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
    line-height: 1;
}

.score-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.ai-generated-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.card-footer {
    display: flex;
    justify-content: space-between;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.floating-stats {
    position: absolute;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    backdrop-filter: blur(20px);
}

.stats-1 {
    top: 20%;
    right: 10%;
}

.stats-2 {
    bottom: 30%;
    left: -10%;
}

.stats-3 {
    bottom: 10%;
    right: 5%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================================
   Logo Cloud
   ======================================== */

.logo-cloud {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.trust-text {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 8px;
}

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

.trust-subtext {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.logo-marquee {
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ========================================
   Scanner Section
   ======================================== */

.scanner-section {
    padding: 80px 0;
}

.scanner-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scanner-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.scanner-box h2 {
    margin-bottom: 32px;
}

.scanner-input {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.scanner-input input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.scanner-input input:focus {
    border-color: var(--primary);
}

.scanner-input input::placeholder {
    color: var(--text-muted);
}

/* ========================================
   Features Section
   ======================================== */

.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-card.large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.feature-card.wide {
    grid-column: span 2;
}

.feature-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary-light);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.creative-stack {
    position: relative;
    width: 150px;
    height: 150px;
}

.stack-item {
    position: absolute;
    width: 100px;
    height: 120px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: transform var(--transition-base);
    object-fit: cover;
}

.stack-item.item-1 {
    transform: rotate(-15deg) translateX(-20px);
}

.stack-item.item-2 {
    transform: rotate(0deg);
}

.stack-item.item-3 {
    transform: rotate(15deg) translateX(20px);
}

.photo-transform {
    display: flex;
    align-items: center;
    gap: 16px;
}

.before-photo, .after-photo {
    width: 80px;
    height: 100px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.transform-arrow {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.utility-icons {
    display: flex;
    gap: 24px;
}

.utility-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.utility-icon svg {
    width: 40px;
    height: 40px;
    padding: 8px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--primary-light);
}

.utility-icon span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.score-preview {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.score-bar {
    height: 32px;
    background: var(--bg-dark);
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.score-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--success) 0%, #34d399 100%);
    border-radius: var(--radius-full);
}

.score-fill.awareness {
    background: linear-gradient(90deg, var(--warning) 0%, #fbbf24 100%);
}

.score-bar span {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.competitor-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
}

.chart-bar {
    width: 30px;
    background: var(--bg-dark);
    border-radius: 4px 4px 0 0;
    transition: all var(--transition-base);
}

.chart-bar.active {
    background: var(--gradient-primary);
}

/* ========================================
   AI Creatives Section
   ======================================== */

.ai-creatives, .ecommerce-section, .video-section {
    padding: 100px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse > * {
    direction: ltr;
}

.split-content h2 {
    margin-bottom: 16px;
}

.split-content h3 {
    margin-bottom: 16px;
    color: var(--primary-light);
}

.split-content > p {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.feature-list svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.brand-creator {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
}

.creator-panel {
    margin-bottom: 24px;
}

.panel-header {
    font-weight: 600;
    margin-bottom: 12px;
}

.size-selector {
    display: flex;
    gap: 12px;
}

.size-btn {
    flex: 1;
    padding: 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.size-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.preview-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.generated-creative {
    aspect-ratio: 9/16;
    border-radius: var(--radius-md);
    object-fit: cover;
    width: 100%;
}

.creative-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.conversion-score {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--success);
}

.section-badge {
    display: inline-block;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-showcase {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.product-item {
    margin-bottom: 24px;
}

.product-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.style-options {
    display: flex;
    gap: 12px;
}

.style-card {
    flex: 1;
    text-align: center;
}

.style-preview {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.style-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.add-style {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

.prompt-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prompt-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: all var(--transition-base);
}

.prompt-card.active {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.prompt-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    object-fit: cover;
}

.prompt-text {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* ========================================
   Awards Section
   ======================================== */

.awards-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.awards-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.trophy {
    font-size: 3rem;
}

.award-badge p {
    max-width: 500px;
}

.g2-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-item {
    padding: 16px 24px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
}

.badge-visual {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.badge-visual.leader {
    color: #ffd700;
}

.badge-visual.results {
    color: var(--success);
}

.badge-visual.usability {
    color: var(--secondary);
}

.badge-visual.momentum {
    color: var(--accent);
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials {
    padding: 100px 0;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: all var(--transition-base);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-card h5 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.review-source {
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonials-cta {
    text-align: center;
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing {
    padding: 100px 0;
    background: var(--bg-card);
}

.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: var(--bg-dark);
    padding: 6px;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-btn.active {
    background: var(--primary);
    color: white;
}

.save-badge {
    background: var(--success);
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    transition: all var(--transition-base);
}

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

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.plan-header {
    margin-bottom: 24px;
}

.plan-header h3 {
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

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

.plan-for strong {
    color: var(--text-primary);
}

.plan-price {
    margin-bottom: 16px;
}

.price-display {
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 4px;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 8px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
}

.savings {
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.credit-icon {
    font-size: 1.2rem;
}

.credits-amount {
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.plan-features svg {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
}

.billed-text {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.roi-calculator-link {
    text-align: center;
    margin-top: 48px;
}

.roi-calculator-link a {
    color: var(--primary-light);
    text-decoration: none;
}

.roi-calculator-link a:hover {
    text-decoration: underline;
}

/* ========================================
   FAQ Section
   ======================================== */

.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
}

.help-center-link {
    text-align: center;
    margin-top: 32px;
}

.help-center-link a {
    color: var(--primary-light);
    text-decoration: none;
}

/* ========================================
   Final CTA Section
   ======================================== */

.final-cta {
    padding: 100px 0;
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-box h2 {
    position: relative;
    margin-bottom: 16px;
}

.cta-box p {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.cta-box .btn {
    position: relative;
    background: white;
    color: var(--primary-dark);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-tagline {
    margin: 16px 0;
    font-size: 0.9rem;
}

.g2-mini-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.footer-column h4 {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a,
.footer-column span {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover,
.footer-column span:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a,
.footer-links span {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-links span:hover {
    color: var(--text-secondary);
}

.copyright {
    font-size: 0.85rem;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero-visual {
        position: relative;
        width: 100%;
        transform: none;
        margin-top: 48px;
        display: block;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .countdown-banner {
        flex-direction: column;
        padding: 16px;
    }

    .creative-preview {
        display: flex;
        justify-content: center;
    }

    .floating-stats {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card.large,
    .feature-card.wide {
        grid-column: span 2;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .split-layout.reverse {
        direction: ltr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .feature-card.large,
    .feature-card.wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

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

    .billing-toggle {
        flex-direction: column;
        width: 100%;
        border-radius: var(--radius-md);
    }

    .toggle-btn {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

    .cta-box {
        padding: 32px;
    }

    .scanner-input {
        flex-direction: column;
    }

    .utility-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================
   Animations
   ======================================== */

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.5); }
}

.preview-card {
    animation: float 6s ease-in-out infinite;
}

.popular-badge {
    animation: glow 2s ease-in-out infinite;
}

/* Disabled links styling */
.disabled-link {
    color: var(--primary-light);
    cursor: default;
}

.disabled-link:hover {
    text-decoration: underline;
}
