/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --bg:           #0a0b0e;
    --bg-card:      #111318;
    --bg-card-alt:  #0d0f13;
    --bg-hover:     #181b23;
    --border:       #1e2128;
    --border-light: #252932;

    --accent:       #4d7c5e;
    --accent-mid:   #5a9070;
    --accent-light: #6aac83;
    --accent-glow:  rgba(77, 124, 94, 0.12);
    --accent-glow2: rgba(77, 124, 94, 0.22);

    --gold:         #c4a84f;
    --gold-light:   #d4bc70;

    --text:         #dde2ea;
    --text-mid:     #9aa3b2;
    --text-muted:   #64707f;
    --text-faint:   #373e4a;

    --nav-h:        60px;
    --radius:       10px;
    --radius-sm:    7px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
}

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

/* ============================================
   NAV
   ============================================ */
#navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-h);
    z-index: 200;
    background: rgba(10, 11, 14, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.01em;
}

.logo span {
    color: var(--accent-light);
    font-weight: 400;
    margin-left: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

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

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

.btn-nav {
    background: var(--accent) !important;
    color: var(--text) !important;
    padding: 7px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: background 0.15s !important;
}

.btn-nav:hover { background: var(--accent-mid) !important; }

/* ============================================
   HERO
   ============================================ */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(var(--nav-h) + 64px) 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 33, 40, 0.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 33, 40, 0.6) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

/* fade the grid at the bottom */
#hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 220px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-glow);
    border: 1px solid rgba(77, 124, 94, 0.28);
    color: var(--accent-light);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.01em;
}

#hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 20px;
}

.accent { color: var(--accent-light); }

#hero > .hero-content > p {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 13px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover {
    background: var(--accent-mid);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-muted);
    padding: 13px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid var(--border-light);
    transition: color 0.15s, border-color 0.15s;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--text-muted);
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 60px;
    padding: 22px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.stat-num {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.stat-sep {
    width: 1px;
    height: 38px;
    background: var(--border-light);
    flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
#services {
    padding: 96px 0;
}

.services-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}

.services-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 72%;
    margin-bottom: 16px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    transition: border-color 0.2s, background 0.2s;
}

.service-card:hover {
    border-color: var(--accent);
    background: var(--bg-hover);
}

.service-icon {
    width: 42px;
    height: 42px;
    background: var(--accent-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1rem;
    margin-bottom: 14px;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.services-note {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-note i { color: var(--accent-light); flex-shrink: 0; }

/* ============================================
   HOW IT WORKS
   ============================================ */
#how {
    padding: 80px 0;
    background: var(--bg-card-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 12px;
}

.step-num {
    width: 46px;
    height: 46px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

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

.step p em {
    color: var(--accent-light);
    font-style: normal;
    font-weight: 600;
}

.step-arrow {
    color: var(--text-faint);
    font-size: 0.9rem;
    margin-top: 14px;
    flex-shrink: 0;
}

/* ============================================
   PRICING
   ============================================ */
#pricing {
    padding: 96px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.pricing-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
}

.pricing-box-header {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-box-header i { color: var(--accent-light); }

.pricing-rows {
    display: flex;
    flex-direction: column;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row span:first-child {
    font-size: 0.875rem;
    color: var(--text-mid);
}

.pricing-row--highlight span:first-child {
    color: var(--text);
    font-weight: 500;
}

.pr {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-note {
    background: var(--accent-glow);
    border: 1px solid rgba(77, 124, 94, 0.2);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 0.875rem;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-note i { color: var(--accent-light); flex-shrink: 0; margin-top: 2px; }

/* ============================================
   FAQ
   ============================================ */
#faq {
    padding: 96px 0;
    background: var(--bg-card-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] {
    border-color: rgba(77, 124, 94, 0.4);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 17px 20px;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
    -webkit-user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--accent-light);
    flex-shrink: 0;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 14px 20px 18px;
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

.faq-item p strong {
    color: var(--accent-light);
    font-weight: 600;
}

/* ============================================
   CONTACT
   ============================================ */
#contact {
    padding: 96px 0;
    background: var(--bg-card-alt);
    border-top: 1px solid var(--border);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 40px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.01em;
}

.label-optional {
    font-weight: 400;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-faint);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* custom select */
.select-wrap {
    position: relative;
}

.select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 11px 40px 11px 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    width: 100%;
    transition: border-color 0.15s;
}

.select-wrap select:focus { border-color: var(--accent); }

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.75rem;
    pointer-events: none;
}

.btn-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.15s;
    width: 100%;
}

.btn-submit:hover { background: var(--accent-mid); }

/* sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-card i {
    color: var(--accent-light);
    font-size: 1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.contact-card div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.contact-card strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.contact-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.trust-box {
    background: var(--accent-glow);
    border: 1px solid rgba(77, 124, 94, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 4px;
}

.trust-box i {
    color: var(--accent-light);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.trust-box p {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.trust-box strong { color: var(--accent-light); }

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 28px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-logo {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

.footer-logo span {
    color: var(--accent);
    font-weight: 400;
}

.footer-right p {
    font-size: 0.78rem;
    color: var(--text-faint);
    text-align: right;
}

.disclaimer { margin-top: 3px; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 900px) {
    .services-bottom {
        max-width: 100%;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .trust-box {
        grid-column: 1 / -1;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 680px) {
    .nav-links a:not(.btn-nav) { display: none; }

    .hero-stats {
        gap: 20px;
        padding: 18px 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-sep { display: none; }

    .services-top {
        grid-template-columns: 1fr;
    }

    .services-bottom {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step { max-width: 320px; }

    .step-arrow { transform: rotate(90deg); margin: 0 auto; }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right p { text-align: left; }
}

@media (max-width: 420px) {
    #hero h1 { font-size: 2.1rem; }

    .hero-cta { flex-direction: column; align-items: center; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}
