/* Modern Landing Page Styles - Radical Redesign */

:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --secondary-color: #ec4899;
    --accent-color: #06b6d4; /* Cyan for tech accents */
    --dark-bg: #0b1121; /* Deepest dark */
    --surface-dark: #1e293b; /* Card background */
    --text-main: #f8fafc; /* White text */
    --text-light: #94a3b8; /* Muted text */
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-hero: radial-gradient(circle at 50% 0%, #1e1b4b 0%, #0b1121 100%);
    --gradient-text: linear-gradient(45deg, #818cf8, #22d3ee);
    --tech-font: 'JetBrains Mono', monospace;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-main);
    background-color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Improved font rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure font applies to all elements */
input, button, select, textarea, a, p, h1, h2, h3, h4, h5, h6, span, div {
    font-family: 'Space Grotesk', sans-serif;
}

/* Specific override for tech elements */
.mock-metric, .cert-value, .stat-number, .floating-value {
    font-family: var(--tech-font);
}

/* Make footer stick to bottom if content is short */
.footer-spacer {
    flex: 1;
}

/* Unique Trait 1: Subtle Tech Grid Background (Global) */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 60px 60px; /* Larger grid */
    z-index: -1;
    pointer-events: none;
    position: fixed; /* Fixed grid so it doesn't scroll away */
}

/* Typography */
h1, h2, h3 {
    margin-top: 0;
    line-height: 1.1;
    color: white;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
    text-align: left;
    line-height: 1;
}

.hero-title span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: block;
    color: white;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 5rem;
    font-size: 1.2rem;
}

.lead-text {
    font-size: 1.35rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 0 3rem 0;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

/* Layout Containers */
.landing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.section {
    padding: 8rem 0;
    position: relative;
}

/* Navigation - Dark Mode Glass */
.modern-nav {
    background: rgba(11, 17, 33, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    flex-shrink: 0;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.5));
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    background: transparent;
}

.nav-btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.05);
}

.nav-btn-primary {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.nav-btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.6);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

/* Radical Hero Section */
.hero-section {
    padding: 8rem 0 12rem;
    background: transparent; /* Now uses body bg */
    position: relative;
    overflow: hidden;
    color: white;
    margin-bottom: -4rem; /* Overlap with next section */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Background Effects */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 0;
    animation: float 15s infinite ease-in-out;
}

.blob-1 {
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: #4f46e5;
}

.blob-2 {
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: #06b6d4;
    animation-delay: -5s;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

/* Dashboard Mockup - Floating & Deconstructed */
.hero-preview {
    position: relative;
    z-index: 2;
    perspective: 1200px;
}

.browser-mockup {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.5), 
        0 0 0 1px rgba(255,255,255,0.05);
    transform: rotateY(-10deg) rotateX(5deg) translateX(20px);
    transition: transform 0.5s ease;
}

.hero-preview:hover .browser-mockup {
    transform: rotateY(-5deg) rotateX(2deg) translateX(10px);
}

.browser-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.6;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #22c55e; }

.browser-body {
    padding: 0;
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Floating Card Element */
.floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 10;
    width: 220px;
    backdrop-filter: blur(10px);
    animation: float 6s infinite ease-in-out;
    border-left: 3px solid var(--accent-color);
}

.floating-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.floating-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    font-family: var(--tech-font);
}

.floating-sub {
    font-size: 0.85rem;
    color: #22c55e;
    margin-top: 5px;
}

/* Detailed Mockup UI (Dark Theme) */
.mock-nav {
    height: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 20px;
}

.mock-nav-logo { width: 100px; height: 12px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.mock-nav-link { width: 50px; height: 8px; background: rgba(255,255,255,0.05); border-radius: 2px; }

.mock-container { padding: 30px; width: 100%; box-sizing: border-box; color: #e2e8f0; }

.mock-status-bar {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.mock-status-icon {
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-green 2s infinite;
}

.mock-status-icon::after {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.mock-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.mock-card {
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
}

.mock-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
}

.mock-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mock-list-item:last-child { border-bottom: none; }

.mock-check-name { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }

.mock-metric { font-family: var(--tech-font); color: #cbd5e1; font-size: 0.9rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 8px; /* Sharper corners */
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
    transform: translateY(-3px);
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 3rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Radical Feature Cards (Dark Mode) */
.feature-card {
    background: var(--surface-dark); /* Dark card */
    border-radius: 0;
    padding: 2.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Subtle border */
    position: relative;
    overflow: visible;
    /* Tech cut corners */
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 20px), 
        calc(100% - 20px) 100%, 
        0 100%
    );
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid transparent;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.8);
}

.feature-card:hover::before {
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    background: transparent;
    width: auto;
    height: auto;
    display: inline-block;
    border-radius: 0;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.02em;
}

.feature-desc {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Feature Rows */
.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #94a3b8); /* Gradient text title */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.feature-visual {
    flex: 1;
    background: var(--surface-dark);
    border-radius: 0;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Visuals - Dark Mode */
.visual-map, .visual-cert {
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 20px 20px 0 rgba(255,255,255,0.05); /* Subtle offset shadow */
    background: rgba(15, 23, 42, 0.5); /* Semi-transparent */
    width: 100%; /* Ensure it fills container horizontally if needed */
    max-width: 400px; /* Limit width */
    position: relative;
}

/* New: Enhanced World Map Visual - Simplified "Latitude Grid" */
.visual-map {
    height: 300px;
    /* Latitude/Longitude style grid */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    /* Radial fade to simulate a globe/sphere */
    background: radial-gradient(circle at 50% 50%, rgba(30, 41, 59, 0.3) 0%, rgba(11, 17, 33, 1) 90%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

/* Overlay grid lines */
.visual-map::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Central Hub Pulse */
.visual-map::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    box-shadow: 0 0 20px 5px var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.map-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    box-shadow: 0 0 5px #fff;
}

/* Data Packet Animation */
.map-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    top: 50%;
    left: 50%;
    transform-origin: left center;
    width: 0;
    opacity: 0;
    z-index: 1;
    animation: transmit 3s infinite ease-out;
}

@keyframes transmit {
    0% { width: 0; opacity: 0; }
    20% { width: 40px; opacity: 1; }
    100% { width: 180px; opacity: 0; }
}


/* Cert Logic - Refined for Clean Design */
.visual-cert {
    /* Explicit width to prevent breaking */
    width: 100%;
    max-width: 380px; 
    border-radius: 12px; /* Revert to rounded for cert card */
    overflow: hidden;
    background: #1e293b;
    border: 1px solid #334155;
}

.cert-header {
    background: #334155;
    padding: 16px 24px;
    border-bottom: 1px solid #475569;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #f8fafc;
}

.cert-icon {
    color: #4ade80; /* Green lock */
    font-size: 1.2rem;
}

.cert-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cert-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cert-label {
    color: #94a3b8;
    font-weight: 500;
}

.cert-value {
    color: #f1f5f9;
    font-family: var(--tech-font);
    font-weight: 600;
    text-align: right;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    padding: 3rem 4rem;
    background: var(--surface-dark);
    margin: -4rem auto 6rem;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px); /* Tech clip */
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--tech-font);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

/* Integrations Grid */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
}

.integration-item {
    width: 80px;
    height: 80px;
    background: var(--surface-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.integration-item:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-dark);
    border-radius: 0;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: box-shadow 0.2s ease;
    border-left: 3px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
    border-left-color: var(--primary-color);
}

.faq-question {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: white;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
}

/* Pricing Table Overrides (Dark Mode) */
.centerPricing {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 20px;
    padding-bottom: 20px;
}

.boxPricing {
    background: var(--surface-dark);
    border-radius: 0; /* Tech look */
    padding: 0;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    margin: 0;
    float: none;
    display: flex;
    flex-direction: column;
}

.boxPricing:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.presentationTable {
    width: 100%;
    border-collapse: collapse;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.presentationTable tbody {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.presentationTable tr {
    background: transparent !important;
    display: block;
}

.presentationTable tr:first-child {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.presentationTable tr:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.presentationTable td {
    border: none;
    padding: 1.5rem !important;
    display: block;
    width: auto !important;
}

/* Header cell in pricing table */
.presentationTable tr:first-child td {
    background: rgba(255,255,255,0.02);
    padding: 1.5rem !important;
    text-align: center;
}

.presentationTable tr:first-child div:first-child {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.presentationTable tr:first-child div:last-child {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    font-family: var(--tech-font);
}

.priceDetails {
    background: transparent !important;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.price-point {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

/* Pricing button */
.priceDetails a {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: white;
    padding: 12px 0;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.priceDetails a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}


/* Footer */
.modern-footer {
    /* Slightly lighter background for separation */
    background: #111827;
    color: #94a3b8;
    padding: 6rem 0 3rem;
    margin-top: auto;
    /* Clean top border */
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 350px;
    color: #64748b;
}

.footer-heading {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 15px); }
    100% { transform: translate(0, 0px); }
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { text-align: center; margin-bottom: 4rem; }
    .hero-title { font-size: 3.5rem; text-align: center; }
    .cta-group { justify-content: center; }
    .browser-mockup { transform: none; }
    .hero-preview:hover .browser-mockup { transform: none; }
    .floating-card { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-bar { flex-direction: column; margin-top: 2rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111827;
        padding: 1rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}
