:root {
    --primary-blue: #3b82f6;
    --primary-hover: #2563eb;
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-light: #f8fafc;
    --bg-dark: #0b1120;
    --bg-white: #ffffff;
    --card-dark: #1e293b;
    --border-color: #e2e8f0;
    --green: #10b981;
    --red: #ef4444;
    --purple: #8b5cf6;
    --orange: #f59e0b;
    --blue-light: #eff6ff;
    --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);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Content visibility for below-fold sections (removed to prevent scroll jumps) */

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #0f172a;
}

h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: 0;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

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

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

/* --- Buttons & Links --- */
.btn-primary {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.23);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    background: var(--bg-light);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}
.btn-secondary i {
    transition: transform 0.3s ease;
}
.btn-secondary:hover i {
    transform: translateX(4px);
}

.btn-block {
    display: block;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.875rem;
    border-radius: 0.5rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
}
.btn-block:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.learn-more, .btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    position: relative;
}
.learn-more::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0%; height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}
.learn-more:hover::after { width: 100%; }
.learn-more:hover { color: var(--primary-hover); }

.btn-outline-light {
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: white;
}

.links-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* --- Layout Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}
.column-layout {
    flex-direction: column;
}

.light-bg { background-color: var(--bg-light); }
.dark-section { 
    background-color: var(--bg-dark); 
    color: white;
    position: relative;
    overflow: hidden;
}
.dark-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.dark-section p { color: #94a3b8; }
.dark-section h2 { color: white; }

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem clamp(1.25rem, 4vw, 4rem);
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    background-color: rgba(239, 246, 255, 0.92);
    backdrop-filter: blur(18px);
    z-index: 1000;
    border-bottom: 1px solid rgba(219, 234, 254, 0.9);
    box-shadow: 0 10px 35px rgba(30, 64, 175, 0.04);
    transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
    padding: 0.65rem clamp(1.25rem, 4vw, 4rem);
    box-shadow: 0 14px 35px rgba(30, 64, 175, 0.08);
    background-color: rgba(239, 246, 255, 0.97);
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
    padding: 0;
}
.nav-links a { color: #1f2937; text-decoration: none; }
.nav-links a:hover { color: var(--primary-blue); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.login-btn {
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}
.login-btn:hover { color: var(--primary-blue); }

.demo-btn {
    background: var(--primary-gradient);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}
.demo-btn:hover { 
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    color: white;
}

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 0.65rem;
    background: #ffffff;
    color: #0f172a;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(15, 23, 42, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 340px);
    height: 100svh;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem;
    background: #ffffff;
    box-shadow: -24px 0 60px rgba(15, 23, 42, 0.22);
    transform: translateX(105%);
    transition: transform 0.28s ease;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-sidebar-header img {
    max-height: 42px;
    max-width: 160px;
    object-fit: contain;
}

.mobile-close-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 0.65rem;
    background: #f8fafc;
    color: #0f172a;
    font-size: 1.1rem;
    cursor: pointer;
}

.mobile-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mobile-sidebar-links a,
.mobile-sidebar-actions a {
    text-decoration: none;
}

.mobile-sidebar-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.85rem 0.95rem;
    border-radius: 0.65rem;
    color: #0f172a;
    font-weight: 700;
    background: #f8fafc;
}

.mobile-sidebar-links a:hover {
    color: var(--primary-blue);
    background: #eff6ff;
}

.mobile-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: auto;
}

.mobile-sidebar-actions .login-btn,
.mobile-sidebar-actions .demo-btn {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.mobile-menu-open .mobile-sidebar {
    transform: translateX(0);
}

/* Old Hero Section styles removed to prevent conflicts with index.php inline styles */

/* ===== FEATURE BADGE ===== */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    background: var(--blue-light);
    color: var(--primary-blue);
    border: 1px solid rgba(59, 130, 246, 0.15);
}
.feature-badge.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
    border-color: rgba(16, 185, 129, 0.15);
}
.feature-badge.purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
    border-color: rgba(139, 92, 246, 0.15);
}
.feature-badge.orange {
    background: rgba(245, 158, 11, 0.1);
    color: var(--orange);
    border-color: rgba(245, 158, 11, 0.15);
}
.feature-badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== FEATURE IMAGE CARDS ===== */
.feature-image-card {
    width: 100%;
    max-width: 520px;
    border-radius: 1.25rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(239,246,255,0.7));
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    transition: all 0.4s ease;
    position: relative;
}
.feature-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.05));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.feature-image-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}
.feature-image-card:hover::after {
    opacity: 1;
}

.feature-image-card.dark-image-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.4));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.feature-image-card.dark-image-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.feature-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* --- Feature Sections --- */
.feature-section {
    padding: 8rem 0;
}
.feature-section.light-bg {
    background: #f8fafc;
}
.feature-section.dark-section {
    background: #0f172a;
    color: white;
}
.feature-section.dark-section h2 { color: white; }
.feature-section.dark-section p { color: #94a3b8; }
.feature-section h2 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    letter-spacing: -0.03em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.feature-section p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-section.right-align .container {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.feature-visual.full-width {
    width: 100%;
}
.feature-image-card img {
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-width: 100%;
    display: block;
}
.feature-image-card img:hover {
    transform: translateY(-8px) scale(1.02);
}
.dark-image-card img {
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.feature-list {
    margin-top: 2rem;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.05rem;
}
.feature-list i { 
    color: var(--primary-blue);
    background: var(--blue-light);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 0.875rem;
}

.feature-list.inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.dark-list li { color: #f8fafc; }
.dark-list i { 
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
}

/* Mock UI Cards */
.mock-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    padding: 2.5rem;
    width: 100%;
    max-width: 480px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mock-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px -15px rgba(15, 23, 42, 0.2);
}
.mock-card.dark-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.mock-card.large-chart {
    max-width: 1000px;
    background: white;
}

/* Mock UI Elements */
.mock-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.mock-user:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}
.mock-user:last-child { margin-bottom: 0; }
.avatar {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 50%;
}
.lines { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.line { height: 10px; background: #f1f5f9; border-radius: 5px; width: 100%; }
.line.short { width: 60%; }

/* Org Chart mock */
.org-chart { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.node {
    width: 64px; height: 64px;
    background: white;
    border: 3px solid var(--primary-blue);
    border-radius: 1rem;
    display: flex; justify-content: center; align-items: center;
    position: relative;
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.node .avatar { width: 32px; height: 32px; }
.branch {
    display: flex; gap: 4rem; position: relative;
}
.branch::before {
    content: ''; position: absolute; top: -2.5rem; left: 50%; transform: translateX(-50%);
    width: 100%; height: 2px; background: #cbd5e1; z-index: 1;
}
.branch::after {
    content: ''; position: absolute; top: -2.5rem; left: 50%; transform: translateX(-50%);
    width: 2px; height: 2.5rem; background: #cbd5e1; z-index: 1;
}

/* Bar Chart */
.chart-header { display: flex; gap: 3rem; margin-bottom: 2.5rem; }
.metric .label { display: block; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.25rem; font-weight: 500;}
.metric .value { font-size: 2rem; font-weight: 800; color: var(--text-dark); }
.chart-body { height: 300px; display: flex; align-items: flex-end; }
.bar-chart { display: flex; justify-content: space-around; width: 100%; height: 100%; align-items: flex-end; gap: 1.5rem;}
.bar { 
    flex: 1; 
    background: var(--blue-light); 
    border-radius: 6px 6px 0 0; 
    transition: all 0.3s ease;
    position: relative;
}
.bar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: var(--primary-gradient);
    border-radius: inherit;
    transition: height 0.5s ease;
}
.mock-card:hover .bar::after {
    height: 100%;
}

/* Donut Chart */
.donut-chart {
    width: 220px; height: 220px;
    border-radius: 50%;
    background: conic-gradient(var(--green) 0% 35%, var(--primary-blue) 35% 100%);
    margin: 0 auto 2.5rem;
    position: relative;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 0 0 10px rgba(255,255,255,0.05);
}
.donut-chart::before {
    content: '';
    position: absolute;
    width: 160px; height: 160px;
    background: rgba(30, 41, 59, 1);
    border-radius: 50%;
}
.center-text { position: relative; text-align: center; z-index: 2; line-height: 1.3; font-weight: 800; font-size: 1.5rem;}
.center-text span { font-size: 1rem; font-weight: 500; color: #94a3b8; }
.legend { display: flex; justify-content: center; gap: 1.5rem; }
.item { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; font-weight: 500;}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.blue { background: var(--primary-blue); }
.dot.green { background: var(--green); }

/* Meter Card */
.meter-card { text-align: center; background: white;}
.meter-title { font-weight: 700; margin-bottom: 2rem; color: var(--text-dark); font-size: 1.25rem;}
.gauge {
    width: 240px; height: 120px;
    background: #e2e8f0;
    border-radius: 120px 120px 0 0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.gauge::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: conic-gradient(from 180deg at 50% 100%, #ef4444 0deg, #f59e0b 60deg, #10b981 120deg, #10b981 180deg);
    transform-origin: bottom center;
}
.gauge::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 180px; height: 90px;
    background: white;
    border-radius: 90px 90px 0 0;
}
.gauge-value {
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    font-size: 3.5rem; font-weight: 800; color: var(--text-dark);
    z-index: 10; line-height: 1;
}

/* --- Trust Section --- */
.trust-section {
    padding: 5rem 0;
    background: #f8fafc;
    border-top: 1px solid rgba(226,232,240,0.6);
    border-bottom: 1px solid rgba(226,232,240,0.6);
}
.trust-section .container {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}
.trust-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
}
.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    width: 100%;
}
.trust-logo-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #94a3b8;
    transition: all 0.3s ease;
    user-select: none;
    filter: grayscale(100%) opacity(0.6);
}
.trust-logo-item:hover {
    color: var(--primary-blue);
    transform: scale(1.05);
    filter: grayscale(0%) opacity(1);
}
.trust-logo-item i, .trust-logo-item svg {
    font-size: 1.6rem;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%; left: -20%;
    width: 140%; height: 180%;
    background: radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.cta-banner .container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.cta-banner h2 {
    color: white;
    font-size: clamp(2rem, 4.5vw, 3rem);
    max-width: 700px;
}
.cta-banner p {
    color: #94a3b8;
    max-width: 560px;
    margin-bottom: 0.5rem;
}
.cta-banner .btn-primary {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* --- Pricing Section --- */
.pricing-section {
    padding: 8rem 0;
    background: #f8fafc;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-top: 4rem;
}
.price-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226,232,240,0.8);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}
.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(15,23,42,0.15);
}

.price-card.recommended {
    transform: scale(1.03);
    border: 2px solid #4f46e5;
    box-shadow: 0 25px 50px -12px rgba(79,70,229,0.25);
    z-index: 10;
}
.price-card.recommended:hover {
    transform: scale(1.03) translateY(-8px);
}
.price-card.recommended .card-header-inner {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%) !important;
    border-bottom: none;
}

.card-header-inner {
    background-color: #ffffff !important;
    color: #0f172a !important;
    padding: 2.5rem 2rem;
    text-align: left;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.price-card h3 { color: #0f172a !important; margin-bottom: 0.5rem; font-size: 1.75rem; font-weight: 700;}
.price-card.recommended h3 { color: white !important; }
.price-card .subtitle { color: #64748b !important; font-size: 0.95rem; margin-bottom: 1.5rem; }
.price-card.recommended .subtitle { color: #94a3b8 !important; }

.badge {
    display: inline-block;
    background: rgba(15,23,42,0.05);
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(15,23,42,0.1);
}
.price-card.recommended .badge { background: rgba(255,255,255,0.15); color: white; border: none; }
.badge.green, .badge.red, .badge.purple { background: rgba(15,23,42,0.05); }

.price {
    font-size: 3.5rem;
    font-weight: 800;
    display: flex;
    align-items: flex-start;
    line-height: 1;
    color: #0f172a !important;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.price-card.recommended .price { color: white !important; }
.price span {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #94a3b8 !important;
}

/* Pricing Buttons via CSS Override */
.price-card button.btn-block {
    background: #f1f5f9 !important;
    color: #0f172a !important;
    border: 1px solid #e2e8f0 !important;
    padding: 0.875rem !important;
    border-radius: 99px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}
.price-card button.btn-block:hover {
    background: #e2e8f0 !important;
}
.price-card.recommended button.btn-block {
    background: #4f46e5 !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}
.price-card.recommended button.btn-block:hover {
    background: #4338ca !important;
}

.price-card .features {
    padding: 2.5rem 2rem;
    background: white;
    flex: 1;
}
.price-card .features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}
.price-card .features i, .price-card .features svg { color: #10b981; }

/* --- Animations --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer --- */
footer {
    background-color: #0a0f1c;
    padding: 5rem 0 2rem;
    color: #64748b;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-content {
    justify-content: space-between;
    align-items: flex-start;
}
.footer-brand {
    max-width: 280px;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    margin-bottom: 0.75rem;
}
.footer-tagline {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
.footer-columns {
    display: flex;
    gap: 5rem;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.footer-col a {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}
.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #64748b;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .pricing-cards { grid-template-columns: repeat(2, 1fr); }
    .price-card.recommended { transform: none; }
    .price-card.recommended:hover { transform: translateY(-5px); }
    .hero-image-container { padding: 0.5rem; }
    .footer-columns { gap: 2.5rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .container { flex-direction: column !important; gap: 3rem; text-align: center; padding: 0 1.5rem; }
    .feature-section { padding: 5rem 0; }
    .feature-content, .feature-visual { width: 100%; }
    .feature-list, .links-row { justify-content: center; }
    
    .navbar { padding: 0.75rem 0.9rem; gap: 1rem; }
    .navbar .logo img { max-height: 38px; }
    .nav-links,
    .nav-actions {
        display: none;
    }
    .mobile-menu-btn {
        display: inline-flex;
        margin-left: auto;
    }
    
    .pricing-cards { grid-template-columns: 1fr; }
    
    .mock-card { padding: 1.5rem; }
    .donut-chart { width: 180px; height: 180px; }
    .donut-chart::before { width: 120px; height: 120px; }
    .gauge { width: 200px; height: 100px; border-radius: 100px 100px 0 0; }
    .gauge::after { width: 140px; height: 70px; border-radius: 70px 70px 0 0; }
    
    .footer-content { flex-direction: column; gap: 2rem; text-align: center; align-items: center; }
    .footer-columns { flex-direction: column; gap: 2rem; }
    .trust-logos { gap: 1.5rem; }
    .trust-logo-item { font-size: 1rem; }
    .trust-logo-item i { font-size: 1.25rem; }
    .cta-banner { padding: 4rem 0; }

    .slider-arrow { width: 38px; height: 38px; font-size: 0.75rem; }
    .slide-caption { font-size: 0.8rem; padding: 0.5rem 1rem; }
    .feature-badge { margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .hero h1 { font-size: clamp(2.35rem, 14vw, 3.4rem); }
    .hero p { font-size: 1rem; }
    .price { font-size: 3rem; }
    .btn-primary, .btn-secondary { padding: 0.75rem 1.25rem; font-size: 1rem; }
    .chart-body { height: 200px; }
    .hero-image-container { padding: 0.35rem; }
    .trust-logos { gap: 1rem; }
}


/* Make placeholders black */
::placeholder { color: #000000; opacity: 1; }
::-webkit-input-placeholder { color: #000000; opacity: 1; }
:-ms-input-placeholder { color: #000000; opacity: 1; }
