:root {
    --bg-deep: #040d09;
    --bg-card: rgba(10, 28, 20, 0.72);
    --bg-card-hover: rgba(15, 38, 28, 0.85);
    --border-emerald: rgba(52, 211, 153, 0.25);
    --border-emerald-glow: rgba(52, 211, 153, 0.5);
    --accent-green: #10b981;
    --accent-emerald-bright: #00f59b;
    --accent-sage: #a7f3d0;
    --accent-gold: #fbbf24;
    --accent-gold-glow: rgba(251, 191, 36, 0.4);
    --text-light: #f3fdf8;
    --text-muted: #94a3b8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

h1, h2, h3, .logo-text {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Fixed Layered Backgrounds */
.bg-layer {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: -2;
    background-image: linear-gradient(180deg, rgba(4, 13, 9, 0.82) 0%, rgba(4, 13, 9, 0.94) 100%),
        url('https://images.unsplash.com/photo-1518837695005-2083093ee35b?auto=format&fit=crop&w=2000&q=80');
    background-size: cover; background-position: center; background-repeat: no-repeat;
}

.ambient-glows {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: -1;
    background: radial-gradient(circle at 15% 20%, rgba(0, 245, 155, 0.12) 0%, transparent 45%),
                radial-gradient(circle at 85% 75%, rgba(251, 191, 36, 0.08) 0%, transparent 40%);
}

/* Header & Navigation */
header {
    padding: 1.1rem 6%; display: flex; justify-content: space-between; align-items: center;
    background: rgba(4, 13, 9, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-emerald);
}

.brand-wrapper { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }

.logo-image {
    height: 40px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.45rem; font-weight: 800;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-emerald-bright) 70%, var(--accent-gold) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 245, 155, 0.25);
}

nav { display: flex; align-items: center; gap: 1.2rem; }
nav a { color: var(--text-light); text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 0.5rem 0.9rem; border-radius: 8px; transition: all 0.3s ease; }
nav a:hover, nav a.active { color: var(--accent-emerald-bright); background: rgba(16, 185, 129, 0.12); }
.nav-cta { background: linear-gradient(135deg, var(--accent-green), #059669); color: white !important; font-weight: 600; border: 1px solid rgba(255,255,255,0.15); }
.nav-cta:hover { box-shadow: 0 0 15px rgba(16, 185, 129, 0.4); transform: translateY(-1px); }

/* Containers & Typography */
.container { max-width: 1200px; margin: 0 auto; padding: 4.5rem 1.5rem; }

.page-header { text-align: center; margin-bottom: 5rem; padding: 2rem 0; }
.page-tag { color: var(--accent-gold); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.page-title { font-size: clamp(2.4rem, 5vw, 3.8rem); color: #fff; margin-bottom: 1.2rem; }
.page-subtitle { color: var(--text-muted); font-size: 1.2rem; max-width: 700px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag { color: var(--accent-gold); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); color: #ffffff; }

/* Hero Section */
.hero { text-align: center; margin-bottom: 6rem; padding: 3rem 1rem; position: relative; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1.1rem;
    background: rgba(16, 185, 129, 0.12); border: 1px solid var(--border-emerald-glow); border-radius: 50px;
    color: var(--accent-emerald-bright); font-size: 0.85rem; font-weight: 600; margin-bottom: 1.8rem;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.15; margin-bottom: 1.4rem;
    background: linear-gradient(180deg, #ffffff 40%, var(--accent-sage) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.hero h1 span { background: linear-gradient(135deg, var(--accent-emerald-bright), var(--accent-gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--text-muted); font-size: 1.25rem; max-width: 720px; margin: 0 auto 2.5rem; font-weight: 400; }
.hero-actions { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }

/* Grids & Cards */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; margin-bottom: 4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.2rem; margin-bottom: 5rem; }

.card {
    background: var(--bg-card); border: 1px solid var(--border-emerald); border-radius: 24px;
    padding: 2.5rem 2rem; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; display: flex; flex-direction: column; justify-content: space-between;
}
.card:hover { transform: translateY(-6px); background: var(--bg-card-hover); border-color: var(--accent-emerald-bright); box-shadow: 0 15px 35px rgba(0, 245, 155, 0.12); }

.card-header h3 { font-size: 1.6rem; color: #ffffff; }
.card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 0.8rem; }
.card p { color: #cbd5e1; font-size: 0.98rem; line-height: 1.7; }

.icon-box {
    width: 54px; height: 54px; border-radius: 14px; background: rgba(0, 245, 155, 0.1);
    border: 1px solid var(--border-emerald-glow); display: flex; align-items: center;
    justify-content: center; font-size: 1.6rem; margin-bottom: 1.4rem;
}

.feature-list { list-style: none; margin: 1.5rem 0 2.5rem; flex-grow: 1; }
.feature-list li { margin-bottom: 0.9rem; color: #cbd5e1; font-size: 0.95rem; display: flex; align-items: center; gap: 0.75rem; }
.feature-list li::before {
    content: "✓"; color: var(--accent-emerald-bright); font-weight: 800;
    background: rgba(0, 245, 155, 0.15); width: 22px; height: 22px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex; justify-content: center; align-items: center; padding: 1.05rem 2.2rem;
    background: linear-gradient(135deg, var(--accent-green), #059669); color: #ffffff;
    font-weight: 700; font-size: 1rem; border: none; border-radius: 14px; cursor: pointer;
    text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3); text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 245, 155, 0.4); color: #fff; }
.btn-gold { background: linear-gradient(135deg, var(--accent-gold), #d97706); color: #040d09; box-shadow: 0 4px 15px var(--accent-gold-glow); }
.btn-gold:hover { box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5); }
.btn-secondary { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-emerald); color: var(--text-light); }
.btn-secondary:hover { background: rgba(16, 185, 129, 0.15); border-color: var(--accent-emerald-bright); color: #fff; }

.cta-banner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(251, 191, 36, 0.1));
    border: 1px solid var(--border-emerald-glow); border-radius: 24px; padding: 3.5rem 2rem;
    text-align: center; backdrop-filter: blur(20px); margin-top: 4rem;
}

/* Forms & Contact Section */
.contact-box { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; margin-top: 2rem; }
.contact-link {
    display: flex; align-items: center; gap: 1.2rem; color: var(--text-light); text-decoration: none;
    padding: 1.5rem; border-radius: 18px; background: var(--bg-card); border: 1px solid var(--border-emerald);
    backdrop-filter: blur(12px); transition: all 0.3s ease;
}
.contact-link:hover { background: rgba(16, 185, 129, 0.18); border-color: var(--accent-emerald-bright); transform: translateY(-4px); }
.contact-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(0, 245, 155, 0.1); border: 1px solid var(--border-emerald); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }

.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-light); }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border-emerald); border-radius: 6px;
    font-size: 1rem; outline: none; transition: border-color 0.2s; background: rgba(0,0,0,0.4); color: #fff;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent-emerald-bright); }
.divider { text-align: center; margin: 30px 0; position: relative; }
.divider::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background-color: var(--border-emerald); z-index: 1; }
.divider span { position: relative; z-index: 2; background-color: #081a13; padding: 0 15px; color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; }

/* Modals */
.modal {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); z-index: 1000;
    justify-content: center; align-items: center;
}
.modal-content {
    background: #081a13; border: 1px solid var(--accent-green); padding: 2.5rem;
    border-radius: 20px; max-width: 700px; width: 90%; max-height: 80vh; overflow-y: auto; box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.close-btn { float: right; cursor: pointer; font-size: 1.8rem; color: var(--accent-gold); line-height: 1; }
.policy-body h4 { color: var(--accent-emerald-bright); margin-top: 1.2rem; margin-bottom: 0.4rem; font-size: 1.1rem; }
.policy-body p, .policy-body li { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 0.6rem; }
.policy-body ul { padding-left: 1.2rem; margin-bottom: 0.8rem; }

/* Utilities & Animations */
.reveal { opacity: 0; transform: translateY(35px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

footer {
    text-align: center; padding: 4rem 1.5rem; color: var(--text-muted);
    border-top: 1px solid var(--border-emerald); background: rgba(4, 13, 9, 0.9); margin-top: 6rem;
}
footer a { color: var(--accent-sage); cursor: pointer; text-decoration: none; margin: 0 0.5rem; }
footer a:hover { color: var(--accent-emerald-bright); text-decoration: underline; }

@media (max-width: 768px) {
    header { flex-direction: column; gap: 1rem; padding: 1.2rem; }
    nav { flex-wrap: wrap; justify-content: center; }
}