/* CSS Reset and Variables */
:root {
    --color-bg-dark: #111111;
    --color-bg-light: #F5F5F5;
    --color-bg-card: #2B2B2B;
    --color-text-light: #FFFFFF;
    --color-text-dark: #111111;
    --color-text-muted: #A1A1AA;
    --color-accent: #00FF66; /* Vibrant emerald green */
    --color-accent-hover: #00cc52;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 170px;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent { color: var(--color-text-light); text-shadow: 0 0 15px rgba(0, 255, 102, 0.15); }

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: 3.5rem; letter-spacing: -0.02em; margin-bottom: 24px; }
h2 { font-size: 2.5rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
.lead { font-size: 1.25rem; color: var(--color-text-muted); margin-bottom: 40px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}
.btn-primary {
    background-color: var(--color-text-light);
    color: var(--color-text-dark);
}
.btn-primary:hover {
    background-color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 102, 0.3);
}
.btn-outline {
    background-color: transparent;
    color: var(--color-text-light);
    border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
    background-color: rgba(255,255,255,0.05);
    color: var(--color-text-light);
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
}
.btn-outline-light {
    background-color: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-text-light);
}
.btn-outline-light:hover {
    background-color: var(--color-text-light);
    color: var(--color-text-dark);
}
.btn-block { width: 100%; }

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.3s ease, padding 0.3s ease;
    padding: 24px 0;
}
#navbar.scrolled {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 120px;
    display: block;
    mix-blend-mode: hard-light;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a:not(.btn) {
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:not(.btn):hover { color: var(--color-text-light); text-shadow: 0 0 10px rgba(0, 255, 102, 0.4); }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top, rgba(0, 255, 102, 0.08) 0%, rgba(17,17,17,1) 50%), #0a0a0a;
    padding-top: 80px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05); /* contrast line */
}
.hero-content {
    max-width: 900px;
    padding: 0 24px;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(43,43,43,0.5);
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}
.hero-subtext {
    font-size: 0.875rem;
    color: #666;
    margin-top: 10px;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: #0a0a0a;
}
.trust-section .section-title { text-align: center; max-width: 800px; margin: 0 auto 24px; }
.trust-section .lead { text-align: center; max-width: 700px; margin: 0 auto 64px;}

.who-we-help {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.help-card {
    background: var(--color-bg-card);
    padding: 32px;
    border-radius: 8px;
    border-top: 2px solid transparent;
    transition: all 0.3s;
}
.help-card:hover {
    border-top-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 -10px 30px rgba(0, 255, 102, 0.05);
}

/* Services */
.services-section { padding: 120px 0; }
.services-header { text-align: center; margin-bottom: 64px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.service-card {
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s;
}
.service-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.05);
}
.service-icon {
    margin-bottom: 24px;
}
.service-icon img {
    height: 86px;
    width: auto;
    display: block;
    /* Removed filter to display original icons natively */
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
    background: var(--color-bg-light);
    color: var(--color-text-dark);
}
.pricing-section .section-title { text-align: center; }
.pricing-section .lead { text-align: center; color: #444; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 64px;
}
.pricing-card {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #e1e1e1;
}
.pricing-card .tier-label { color: #666; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.pricing-card .tier-name { color: #111; font-size: 1.5rem; font-family: var(--font-heading); margin-bottom: 8px;}
.pricing-card .price { font-size: 1.6rem; font-family: var(--font-heading); font-weight: 800; color: #111; margin: 16px 0 24px; }
.pricing-card ul { margin-top: 24px; }
.pricing-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card.highlighted {
    border: 2px solid #000;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.pricing-card.highlighted:hover {
    border-color: var(--color-accent);
    box-shadow: 0 20px 50px rgba(0, 255, 102, 0.15);
}
.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}
.pricing-card.is-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    border-color: #333;
}
.pricing-card.is-dark .tier-label { color: #aaa; }
.pricing-card.is-dark .tier-name { color: white; }
.pricing-card.is-dark li { border-color: rgba(255,255,255,0.1); }
.pricing-card.is-dark .price { color: #FFFFFF; }

/* Contact Form */
.contact-section { padding: 120px 0; }
.contact-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    background: var(--color-bg-card);
    padding: 64px;
    border-radius: 16px;
    align-items: center;
}
.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}
.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 16px;
    border-radius: 4px;
    font-family: var(--font-body);
    transition: border 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}
.form-privacy {
    margin-bottom: 24px;
    font-size: 0.75rem;
    color: #888;
}
.checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.checkbox-label input { margin-top: 4px; }
.checkbox-label a { color: var(--color-text-light); text-decoration: underline; transition: text-shadow 0.3s; }
.checkbox-label a:hover { text-shadow: 0 0 10px rgba(0, 255, 102, 0.5); }

/* Footer */
footer {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 64px;
}
.footer-brand p { color: var(--color-text-muted); margin-top: 16px; max-width: 300px; }
.footer-logo { height: 90px; mix-blend-mode: hard-light;}
.footer-links h5, .footer-legal h5 {
    color: white;
    font-family: var(--font-heading);
    margin-bottom: 24px;
}
.footer-links a, .footer-legal a {
    display: block;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    transition: color 0.3s;
}
.footer-links a:hover, .footer-legal a:hover { color: var(--color-text-light); text-shadow: 0 0 10px rgba(0, 255, 102, 0.4); }
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    color: #A1A1AA;
    font-size: 0.875rem;
}
.footer-bottom .disclaimer {
    max-width: 800px;
    margin: 16px auto 0;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Mobile Menu Toggle (Hidden by default) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}
.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--color-text-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1150px) {
    .menu-toggle { display: flex; }
    .nav-links { 
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 99;
    }
    .nav-links.active {
        right: 0;
    }
    .contact-box { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    .hero-ctas { flex-direction: column; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .pricing-card.highlighted { transform: scale(1); }
}
@media (max-width: 600px) {
    .form-group-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .contact-box { padding: 32px; }
}

/* Service Link Wrapper */
.service-link {
    display: contents;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.service-link .service-card {
    height: 100%;
    cursor: pointer;
}
.service-link:hover .service-card {
    background: rgba(255,255,255,0.04);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.05);
    transform: translateY(-4px);
}

/* Services Page Styles */
.service-detail-block {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #333;
}
.service-detail-block:last-child {
    border-bottom: none;
    margin-bottom: 40px;
}
.service-detail-block h2 {
    font-size: 2.5rem;
    color: var(--color-accent-hover);
    margin-bottom: 24px;
}
.service-detail-block p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}
.service-focus-walkaway {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.focus-box, .walkaway-box {
    background: #111;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #333;
}
.focus-box h3, .walkaway-box h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.focus-box ul, .walkaway-box ul {
    list-style: none;
    padding: 0;
}
.focus-box ul li, .walkaway-box ul li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #ddd;
}
.focus-box ul li::before, .walkaway-box ul li::before {
    content: "✓";
    color: var(--color-accent-hover);
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 768px) {
    .service-focus-walkaway {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
