:root {
    /* Colors */
    --bg-dark: #07070a;
    --surface: #121218;
    --surface-light: #1c1c24;
    --surface-border: rgba(255, 255, 255, 0.08);
    
    --primary: #00e08f; /* Neon/Emerald Green */
    --primary-glow: rgba(0, 224, 143, 0.4);
    --secondary: #6e44ff; /* Deep Indigo/Purple */
    --secondary-glow: rgba(110, 68, 255, 0.4);
    
    --text-main: #f8f9fc;
    --text-muted: #a1a1b5;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Effects */
    --glass-bg: rgba(18, 18, 24, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Global Elements */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-main);
}

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

.section {
    padding: 100px 0;
}

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

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

/* Background Gradients */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

.glow-top-left {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
}

.glow-bottom-right {
    top: 20%;
    right: -200px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 10px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 224, 143, 0.3);
}

.btn-primary:hover {
    background: #00f098;
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 224, 143, 0.5);
}

.btn-secondary {
    background: var(--surface-light);
    color: var(--text-main);
    border: 1px solid var(--surface-border);
}

.btn-secondary:hover {
    background: #23232c;
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
}

.btn-outline:hover {
    color: var(--primary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(7, 7, 10, 0.8);
    border-bottom: 1px solid var(--surface-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

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

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(110, 68, 255, 0.15);
    border: 1px solid rgba(110, 68, 255, 0.3);
    color: #a78bfa;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
}

/* Dashboard Visuals */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1000px;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.main-dashboard {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
    transform: rotateX(10deg);
    transition: transform 0.5s ease;
}

.main-dashboard:hover {
    transform: rotateX(5deg);
}

.panel-header {
    height: 48px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: rgba(0,0,0,0.2);
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
}

.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.panel-title {
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--text-muted);
    transform: translateX(-14px); /* compensate for dots */
}

.panel-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 24px;
    width: max-content;
    border: 1px solid rgba(255,255,255,0.04);
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-right: 12px;
}

.stat-change.positive {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.chart-mock {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 150px;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.bar {
    flex: 1;
    background: linear-gradient(to top, rgba(0,224,143,0.1), var(--primary));
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    transition: height 1s ease, opacity 0.3s ease;
}

.bar:hover {
    opacity: 1;
    cursor: pointer;
}

/* Floating Cards */
.float-card {
    position: absolute;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.card-1 {
    top: 60px;
    right: -40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 80px;
    left: -40px;
    animation-delay: 3s;
}

.icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-wrap.green {
    background: rgba(0, 224, 143, 0.15);
    color: var(--primary);
}

.icon-wrap.purple {
    background: rgba(110, 68, 255, 0.15);
    color: #a78bfa;
}

.float-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

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

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

/* Social Proof */
.social-proof {
    padding: 60px 0;
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
    background: rgba(20, 20, 26, 0.3);
}

.proof-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.company-logo {
    font-size: 2.5rem;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
    color: white;
}

/* Features */
.features {
    background: radial-gradient(circle at center, rgba(110, 68, 255, 0.05) 0%, transparent 70%);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.glass-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(110, 68, 255, 0.1);
    color: #a78bfa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding-bottom: 120px;
}

.cta-box {
    text-align: center;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--surface) 0%, rgba(20, 20, 26, 0.5) 100%);
    border: 1px solid rgba(255,255,255,0.08); /* ensures border visibility */
}

.cta-glow {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.15;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

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

/* Footer */
.footer {
    border-top: 1px solid var(--surface-border);
    padding: 80px 0 40px;
    background: rgba(0,0,0,0.2);
}

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 16px 0 24px;
    max-width: 280px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--surface-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Benefits Section */
.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-image {
    position: relative;
}

.mock-panel {
    max-width: 420px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    background: rgba(18, 18, 24, 0.8);
}

.expense-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.expense-item:last-of-type {
    border-bottom: none;
}

.expense-val {
    color: white;
    font-weight: 500;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot.purple { background: #a78bfa; }
.dot.green { background: var(--primary); }
.dot.blue { background: #00b0ff; }

.progress-wrap {
    display: flex;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 16px;
    background: rgba(255,255,255,0.1);
    gap: 2px;
}

.progress-bar {
    height: 100%;
}

.progress-bar.purple { background: #a78bfa; }
.progress-bar.green { background: var(--primary); }
.progress-bar.blue { background: #00b0ff; }

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.benefits-list li {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary);
    min-width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(0, 224, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.benefit-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    align-items: center;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 224, 143, 0.15);
    background: linear-gradient(180deg, rgba(28, 28, 36, 0.9) 0%, rgba(0, 224, 143, 0.05) 100%);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.currency {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    margin-top: 4px;
}

.amount {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 800;
    line-height: 1;
}

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

.plan-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
    min-height: 44px;
}

.plan-btn {
    width: 100%;
    margin-bottom: 32px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.plan-features li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.plan-features li.disabled {
    color: rgba(255,255,255,0.3);
}

.plan-features li.disabled i {
    color: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 3.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .benefits-layout { grid-template-columns: 1fr; gap: 60px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin-inline: auto; gap: 40px; }
    .pricing-card.popular { transform: scale(1); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto 60px; }
    .hero-actions .btn { width: 100%; }
    .float-card { display: none; }
    .logo-grid { gap: 30px; }
    .section-title { font-size: 2.2rem; }
    .cta-box h2 { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
