:root {
    /* Colored Background Base */
    --bg-card: rgba(0, 0, 0, 0.3); /* Dark glass to make text POP */
    --border-card: rgba(255, 255, 255, 0.1); /* Soft glass edge */
    --text-main: #ffffff; /* Crisp white */
    --text-muted: #f1f5f9; /* Bright silver for high readability */
    
    /* Vibrant Accents for Highlighting */
    --accent-blue: #38bdf8; /* Sky Blue */
    --accent-cyan: #22d3ee; /* Bright Cyan */
    --accent-green: #34d399; /* Mint Emerald */
    --accent-yellow: #fde047; /* Highlight yellow */
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    /* Darker, richer background so the bright text stands out perfectly */
    background: linear-gradient(135deg, #020617 0%, #0f766e 100%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Orbs (Adding depth to the gradient) */
.bg-gradient-orb {
    position: fixed; 
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.2;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, #34d399 0%, transparent 70%);
}

.orb-3 {
    display: none;
}

/* Container & Grid */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

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

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* Bright text highlights */
.text-gradient {
    background: linear-gradient(135deg, #67e8f9, #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.highlight-text {
    color: var(--accent-yellow);
    font-weight: 700;
}

/* Navbar */
.navbar {
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-card);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

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

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

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

@media (max-width: 768px) {
    .nav-links { display: none; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: #ffffff;
    color: #020617; 
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #f8fafc;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffffff;
}

/* Badges - Made Brighter */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-danger { color: #fca5a5; }
.badge-success { color: #86efac; }
.badge-primary { color: #93c5fd; }
.badge-purple { color: #c4b5fd; }

/* Dark Glass Cards for High Contrast */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent-yellow);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
}

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

/* Flow Section */
.flow-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.flow-step {
    position: relative;
}

.step-num {
    display: inline-block;
    background: #ffffff;
    color: #020617;
    font-family: var(--font-heading);
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.flow-step h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
    color: #ffffff;
}

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

/* Value List */
.value-list {
    list-style: none;
    margin-top: 24px;
}

.value-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 1rem;
}

.value-list strong {
    color: var(--accent-cyan);
}

.check {
    color: var(--accent-green);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-box {
    padding: 24px;
    text-align: center;
}

.stat-box h4 {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 4px;
    font-weight: 900;
}

.stat-box:nth-child(2) h4 { color: #67e8f9; }
.stat-box:nth-child(3) h4 { color: #a78bfa; }
.stat-box:nth-child(4) h4 { color: #69b3a2; }

.stat-box p {
    font-size: 0.9rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Features */
.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: #ffffff;
}

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

/* CTA Section */
.cta-section {
    padding: 100px 0;
    margin-top: 48px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-card);
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 64px 0 32px;
    background: rgba(0, 0, 0, 0.4);
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-contact p, .footer-tech p {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

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

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

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: all 0.3s ease;
    margin: 20px;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: #ffffff;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(0, 0, 0, 0.5);
}

.form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.btn-block {
    width: 100%;
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 14px 0;
}
