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

:root {
    /* Modern Color Palette */
    --primary-blue: #1e40af;
    --primary-blue-dark: #1e3a8a;
    --primary-blue-light: #3b82f6;
    --teal: #0d9488;
    --teal-light: #14b8a6;
    --teal-dark: #0f766e;
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --accent-orange-dark: #ea580c;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    --white: #ffffff;
    --success: #22c55e;
    --warning: #eab308;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--neutral-700);
    overflow-x: hidden;
    font-size: 16px;
    letter-spacing: -0.025em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.nav-brand:hover {
    opacity: 0.8;
    text-decoration: none;
}

.logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--neutral-600);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn-small {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white !important;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.cta-btn-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn-small:hover::before {
    opacity: 1;
}

.cta-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-btn-small > * {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.08)" points="0,0 1000,400 1000,1000 0,600"/><circle fill="rgba(255,255,255,0.05)" cx="800" cy="200" r="300"/><circle fill="rgba(255,255,255,0.03)" cx="200" cy="800" r="200"/></svg>');
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.highlight {
    color: var(--accent-orange);
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-orange);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
    color: white;
    border: none;
    padding: 20px 32px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-orange-dark) 0%, var(--accent-orange) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn-primary:hover::before {
    opacity: 1;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

.cta-btn-primary > * {
    position: relative;
    z-index: 2;
}

.cta-btn-primary.large {
    padding: 24px 48px;
    font-size: 20px;
    justify-content: center;
}

.demo-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.demo-link-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-subtext {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-container {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.demo-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.demo-mockup {
    width: 100%;
    height: auto;
    border-radius: 16px;
    background: var(--neutral-100);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.browser-frame {
    width: 100%;
    max-width: 380px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.browser-header {
    background: var(--neutral-200);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-buttons {
    display: flex;
    gap: 6px;
}

.browser-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-400);
}

.browser-buttons span:nth-child(1) { background: #ff5f56; }
.browser-buttons span:nth-child(2) { background: #ffbd2e; }
.browser-buttons span:nth-child(3) { background: #27ca3f; }

.browser-url {
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--neutral-600);
    flex: 1;
}

.browser-content {
    padding: 20px;
    position: relative;
}

.product-info {
    margin-bottom: 16px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 8px;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--neutral-800);
    font-family: 'Poppins', sans-serif;
}

.extension-popup {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-blue);
    min-width: 200px;
    z-index: 10;
}

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

.popup-logo {
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.popup-header span:last-child {
    font-size: 12px;
    font-weight: 600;
    color: var(--neutral-700);
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-radius: 8px;
    background: var(--neutral-50);
    font-size: 11px;
}

.price-option.best {
    background: var(--success);
    color: white;
}

.price-option .platform {
    font-weight: 600;
}

.price-option .price {
    font-weight: 800;
}

.price-option .savings {
    font-size: 10px;
    opacity: 0.8;
}

.floating-savings {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 10;
}

.savings-popup {
    background: var(--success);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    animation: bounce 2s infinite;
    text-align: center;
}

.savings-percentage {
    display: block;
    font-size: 24px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Social Proof */
.social-proof {
    padding: 48px 40px;
    background: var(--neutral-50);
    text-align: center;
    border-bottom: 1px solid var(--neutral-200);
}

.social-proof-text {
    color: var(--neutral-500);
    font-weight: 500;
    margin-bottom: 32px;
    font-size: 16px;
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.platform-logo {
    padding: 8px 16px;
    background: var(--neutral-200);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-600);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-300);
}

.platform-logo:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
    border-color: var(--primary-blue);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: white;
}

/* Section title styling moved to Enhanced Visual Hierarchy section */

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

.step {
    text-align: center;
    position: relative;
    padding: 32px 24px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
    font-family: 'Poppins', sans-serif;
}

.step-illustration {
    width: 100%;
    max-width: 320px;
    height: 200px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    background: var(--neutral-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.step-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Install Step */
.chrome-store {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 280px;
}

.store-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 12px;
    text-align: center;
}

.extension-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--neutral-50);
    padding: 12px;
    border-radius: 8px;
}

.ext-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.ext-info {
    flex: 1;
}

.ext-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--neutral-800);
}

.ext-rating {
    font-size: 10px;
    color: var(--warning);
}

.add-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* Shop Step */
.shopping-scene {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 280px;
    position: relative;
}

.website-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 12px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.product-card {
    background: var(--neutral-100);
    padding: 12px;
    border-radius: 6px;
    font-size: 10px;
    text-align: center;
    color: var(--neutral-600);
    transition: all 0.3s ease;
}

.product-card.active {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

.cursor-pointer {
    position: absolute;
    bottom: 8px;
    right: 20px;
    font-size: 16px;
    animation: bounce 1s infinite;
}

/* Savings Step */
.savings-display {
    width: 100%;
    max-width: 280px;
}

.savings-popup-large {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--success);
}

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

.pp-logo {
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.savings-header span:last-child {
    font-size: 12px;
    font-weight: 600;
    color: var(--success);
}

.savings-content {
    margin-bottom: 12px;
}

.original-price,
.best-price,
.total-savings {
    font-size: 11px;
    margin-bottom: 4px;
}

.original-price {
    color: var(--neutral-500);
    text-decoration: line-through;
}

.best-price {
    color: var(--neutral-800);
    font-weight: 600;
}

.total-savings {
    color: var(--success);
    font-weight: 700;
    font-size: 12px;
}

.view-deals-btn {
    background: var(--success);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--neutral-800);
    font-family: 'Poppins', sans-serif;
}

.step p {
    color: var(--neutral-600);
    line-height: 1.6;
    font-size: 16px;
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--neutral-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: block;
}

.feature h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--neutral-800);
    font-family: 'Poppins', sans-serif;
}

.feature p {
    color: var(--neutral-600);
    line-height: 1.6;
    font-size: 16px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial {
    background: var(--neutral-50);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--warning);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--neutral-700);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img,
.user-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--neutral-800);
    font-size: 16px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--neutral-500);
    font-weight: 500;
}

/* Live Demo Section */
.live-demo-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    color: var(--neutral-600);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.demo-preview {
    max-width: 900px;
    margin: 0 auto 48px;
    background: var(--neutral-50);
    padding: 48px;
    border-radius: 32px;
    border: 2px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
}

.demo-input {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}

.demo-url-input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid var(--neutral-300);
    border-radius: 16px;
    font-size: 16px;
    background: white;
    color: var(--neutral-400);
    transition: all 0.3s ease;
}

.demo-url-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.demo-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.demo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--teal-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-btn:hover::before {
    opacity: 1;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.demo-btn > * {
    position: relative;
    z-index: 2;
}

.demo-results-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.mock-result {
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.mock-result:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mock-result.best {
    border-color: var(--success);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--success) 0%, var(--success) 100%);
    color: white;
}

.mock-result.best .platform,
.mock-result.best .price,
.mock-result.best .savings {
    color: white;
}

.mock-result .platform {
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 8px;
    font-size: 14px;
}

.mock-result .price {
    font-size: 28px;
    font-weight: 800;
    color: var(--neutral-800);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.mock-result .price.current {
    color: var(--neutral-500);
}

.mock-result .savings {
    color: var(--success);
    font-weight: 600;
    font-size: 14px;
}

.demo-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--neutral-700);
    font-weight: 500;
    font-size: 16px;
}

.demo-feature .feature-icon {
    font-size: 24px;
    margin-bottom: 0;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: white;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    pointer-events: none;
}

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

.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: white;
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    margin-top: 12px;
    opacity: 0.7;
    font-size: 16px;
    color: var(--neutral-400);
}

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

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.footer-column a {
    display: block;
    color: var(--neutral-400);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-column a:hover {
    color: white;
    transform: translateX(4px);
}

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

.footer-bottom p {
    color: var(--neutral-400);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--neutral-800);
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-700);
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    border-color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav {
        padding: 12px 16px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 120px 16px 60px;
        min-height: auto;
    }
    
    .hero-content {
        gap: 32px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .cta-btn-primary {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .demo-link-btn {
        padding: 12px 20px;
        font-size: 14px;
        margin-left: 0;
        margin-top: 8px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 48px;
    }
    
    .how-it-works,
    .features,
    .testimonials,
    .live-demo-section,
    .final-cta {
        padding: 80px 0;
    }
    
    .platform-logos {
        gap: 16px;
    }
    
    .platform-logo {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .feature,
    .testimonial {
        padding: 24px;
    }
    
    .step {
        padding: 24px 16px;
    }
    
    .demo-preview {
        padding: 24px;
        margin-bottom: 32px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .demo-input {
        flex-direction: column;
        gap: 16px;
    }
    
    .demo-url-input {
        width: 100%;
    }
    
    .demo-features {
        gap: 24px;
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile-specific enhancements */
    .browser-frame {
        max-width: 300px;
    }
    
    .extension-popup {
        position: static;
        margin-top: 16px;
        min-width: auto;
    }
    
    .step-illustration {
        max-width: 280px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .demo-preview {
        padding: 24px;
    }
    
    .demo-results-preview {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.4s; }
.hero-text > *:nth-child(5) { animation-delay: 0.5s; }

.hero-visual {
    animation-delay: 0.6s;
}

/* Enhanced Visual Hierarchy */
.section-title {
    position: relative;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 64px;
    color: var(--neutral-800);
    font-family: 'Poppins', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    border-radius: 2px;
}

/* Improved spacing and rhythm */
.hero {
    position: relative;
    isolation: isolate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, var(--neutral-50) 100%);
    z-index: 1;
}

.how-it-works,
.features,
.testimonials,
.live-demo-section {
    scroll-margin-top: 100px;
}

/* Enhanced card shadows and spacing */
.feature,
.testimonial,
.step {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature::before,
.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--teal));
    opacity: 0;
    border-radius: inherit;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature:hover::before,
.testimonial:hover::before {
    opacity: 0.05;
}

/* Improved button focus states */
.cta-btn-primary:focus,
.cta-btn-small:focus,
.demo-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.3);
}

/* Enhanced animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Better text contrast and readability */
.hero-subtitle,
.section-subtitle {
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    .header,
    .hero-cta,
    .cta-btn-primary,
    .cta-btn-small,
    .demo-btn,
    .final-cta {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
}