:root {
    /* Light Theme Palette */
    --bg-base: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --border-glass: rgba(0, 0, 0, 0.08);

    --primary: #E27D60;
    /* Terracotta / Warm Coral - NOW PRIMARY FOR CTAS */
    --secondary: #4682B4;
    /* Steel Blue - NOW SECONDARY FOR TRUST/STRUCTURE */
    --accent: #85DCBA;
    /* Mint Green - SUCCESS/ACCENT */

    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;

    --success: #10B981;
    --error: #EF4444;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions */
    --transition-snappy: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: 0.4s ease-in-out;
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Utils */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.mt-1 {
    margin-top: 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 0.5em;
    font-weight: 700;
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Background Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.blob {
    position: absolute;
    filter: blur(140px);
    z-index: -1;
    border-radius: 50%;
    animation: float 20s infinite alternate;
    opacity: 0.6;
}

.blob-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(70, 130, 180, 0.15) 0%, rgba(226, 125, 96, 0.05) 100%);
}

.blob-2 {
    bottom: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(226, 125, 96, 0.15) 0%, rgba(133, 220, 186, 0.05) 100%);
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

/* Glassmorphism */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    padding: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: #FFF;
    box-shadow: 0 4px 15px rgba(226, 125, 96, 0.4);
    position: relative;
    overflow: hidden;
    font-weight: 700;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.btn-primary:hover::after {
    left: 200%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226, 125, 96, 0.6);
    filter: brightness(1.05);
}

.btn-outline {
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.btn-outline:hover {
    background: #F1F5F9;
    border-color: rgba(0, 0, 0, 0.15);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    mask: url('data:image/svg+xml,%3Csvg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M12 2L2 22h20L12 2zm0 4.5l6.5 13h-13L12 6.5z" fill="white"/%3E%3C/svg%3E') center/contain no-repeat;
    -webkit-mask: url('data:image/svg+xml,%3Csvg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M12 2L2 22h20L12 2zm0 4.5l6.5 13h-13L12 6.5z" fill="white"/%3E%3C/svg%3E') center/contain no-repeat;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.login-link {
    font-weight: 500;
    color: var(--text-primary);
}

.login-link:hover {
    color: var(--primary);
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

/* Global Section Spacing */
section {
    padding: 100px 0;
}

.section-header {
    text-align: left;
    max-width: 650px;
    margin-bottom: 4rem;
}

.section-header.align-center {
    text-align: center;
    margin: 0 auto 4rem auto;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 60px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(70, 130, 180, 0.1);
    border: 1px solid rgba(70, 130, 180, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(70, 130, 180, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 500px;
}

/* Dashboard Mockup (Hero Visual) */
.hero-dashboard-preview {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1000px;
    position: relative;
    z-index: 10;
    transform: translateY(20px);
}

.glass-window {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.window-header {
    background: rgba(248, 250, 252, 0.8);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E2E8F0;
}

.window-dots span:nth-child(1) {
    background: #EF4444;
}

.window-dots span:nth-child(2) {
    background: #F59E0B;
}

.window-dots span:nth-child(3) {
    background: #10B981;
}

.preview-layout {
    display: flex;
    height: 400px;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.5) 0%, rgba(248, 250, 252, 0.8) 100%);
}

.sidebar-mock {
    width: 200px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFFFFF;
}

.content-mock {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mock-header {
    height: 40px;
    border-radius: 8px;
    background: #FFFFFF;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mock-card {
    height: 100px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.mock-table {
    flex: 1;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

/* The Problem Section */
.problem-section {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pain-card {
    background: var(--bg-surface);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    opacity: 0.8;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(226, 125, 96, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.pain-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Layout: Split Content vs Visual */
.split-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.split-row:last-child {
    margin-bottom: 0;
}

.split-row.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
    position: relative;
    perspective: 1000px;
}

.feature-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(70, 130, 180, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(70, 130, 180, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-bullets {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-bullets li::before {
    color: var(--success);
    font-weight: bold;
}

@keyframes float-y {
    0% {
        transform: translateY(0) rotateY(-5deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-10px) rotateY(-5deg) rotateX(5deg);
    }

    100% {
        transform: translateY(0) rotateY(-5deg) rotateX(5deg);
    }
}

@keyframes float-y-reverse {
    0% {
        transform: translateY(0) rotateY(5deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-10px) rotateY(5deg) rotateX(5deg);
    }

    100% {
        transform: translateY(0) rotateY(5deg) rotateX(5deg);
    }
}

/* Visual Components for Split View */
.feature-showcase {
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border: 1px solid var(--border-glass);
    background: #FFFFFF;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    animation: float-y 6s ease-in-out infinite;
}

.split-row.reverse .feature-showcase {
    transform: rotateY(5deg) rotateX(5deg);
    animation: float-y-reverse 6s ease-in-out infinite;
}

.feature-showcase:hover {
    transform: translateY(-15px) rotateY(0) rotateX(0) !important;
    border-color: rgba(70, 130, 180, 0.3);
    box-shadow: 0 35px 70px rgba(70, 130, 180, 0.15);
    animation-play-state: paused;
}

/* Mock Transaction */
.mock-transaction {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.tx-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.tx-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.tx-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tx-details strong {
    font-size: 0.9rem;
    color: var(--text-primary);
}

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

.tx-status {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-weight: 500;
}

/* Mock Ticket */
.mock-ticket {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.ticket-id {
    font-family: monospace;
    color: var(--text-muted);
}

.ticket-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
    font-weight: 500;
}

.mock-ticket h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.ticket-progress {
    display: flex;
    gap: 4px;
}

.step {
    flex: 1;
    height: 4px;
    background: #E2E8F0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s;
}

.step.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(70, 130, 180, 0.5);
}

.step::after {
    content: attr(data-label);
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Database Visual */
.db-visual {
    background: #F8FAFC;
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.db-search {
    background: #FFFFFF;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-family: monospace;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.db-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.result-item {
    padding: 1rem;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01);
}

.result-item:hover {
    background: #E0F2FE;
    border-color: var(--primary);
    color: var(--primary);
    cursor: pointer;
}


/* Pricing */
.pricing {
    background: var(--bg-surface);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(70, 130, 180, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.price-card {
    position: relative;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: 20px;
}

.price-card.popular {
    transform: scale(1.05);
    background: #FFFFFF;
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(70, 130, 180, 0.15);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(70, 130, 180, 0.3);
}

.price-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.price span {
    font-size: 1.5rem;
    vertical-align: super;
    color: var(--text-muted);
    font-weight: 500;
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    vertical-align: baseline;
    font-weight: normal;
}

.price-desc {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    min-height: 45px;
}

.price-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #F1F5F9;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

/* The Versus Positioning */
.compare-modern {
    padding: 120px 0;
    background: #F8FAFC;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.comp-card {
    padding: 4rem 3rem;
}

.comp-card.legacy {
    background: #FFFFFF;
}

.comp-card.modern {
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.05), rgba(70, 130, 180, 0.15));
    border-left: 2px solid var(--primary);
    position: relative;
}

.comp-header {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.modern .comp-header {
    color: var(--primary);
}

.comp-list {
    list-style: none;
}

.comp-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
}

.comp-list li.negative::before {
    content: '✕';
    color: var(--error);
    font-weight: bold;
    font-size: 1.2rem;
}

.comp-list li.positive {
    color: var(--text-primary);
    font-weight: 600;
}

.comp-list li.positive::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-box {
    text-align: center;
    padding: 5rem 2rem;
    background: radial-gradient(circle at center, rgba(70, 130, 180, 0.1) 0%, #FFFFFF 100%);
    border: 1px solid rgba(70, 130, 180, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 40px;
    background: #FFFFFF;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.link-column h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.link-column a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.link-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    .pain-points-grid {
        grid-template-columns: 1fr;
    }

    .split-row,
    .split-row.reverse {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .split-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .feature-bullets li {
        justify-content: center;
    }

    .comparison-cards {
        grid-template-columns: 1fr;
    }

    .comp-card.modern {
        border-left: none;
        border-top: 2px solid var(--primary);
    }

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

    .price-card.popular {
        transform: scale(1);
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-brand p {
        margin: 1rem auto;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

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

    h1 {
        font-size: 2.5rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .hero-cta {
        flex-direction: column;
    }

    .preview-layout {
        height: 300px;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .sidebar-mock {
        display: none;
    }
}

/* New Animations for WOW Factor */
@keyframes slideFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-animate {
    opacity: 0;
    animation: slideFadeUp 0.8s var(--transition-snappy) forwards;
}

.hero-animate-delay-1 {
    animation-delay: 0.1s;
}

.hero-animate-delay-2 {
    animation-delay: 0.2s;
}

.hero-animate-delay-3 {
    animation-delay: 0.3s;
}

.hero-animate-delay-4 {
    animation-delay: 0.4s;
}

@keyframes gradientShimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.trust-stat {
    background: linear-gradient(90deg, var(--text-primary) 0%, var(--primary) 25%, var(--text-primary) 50%);
    background-size: 200% auto;
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientShimmer 6s linear infinite;
}