﻿body {
    margin: 0;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;
    background: #0f172a;
    color: #f9fafb
}

a {
    text-decoration: none
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.header {
    background: rgba(15,23,42,.98);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(148,163,253,.15);
    backdrop-filter: blur(10px)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0;
    gap: 1rem
}

.logo {
    font-size: 1.2rem;
    letter-spacing: .04em
}

    .logo span {
        color: #60a5fa
    }

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff
}

.logo-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    background: hsla(0,0%,100%,.08);
    border-radius: 6px;
    padding: 2px
}

.logo-text span {
    color: #60a5fa
}

@media (max-width:900px) {
    .logo {
        font-size: 1.1rem
    }

    .logo-icon {
        width: 20px;
        height: 20px
    }
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem
}

    .nav a {
        margin-left: 1rem;
        color: #e5e7eb;
        font-size: .95rem
    }

        .nav a:hover {
            color: #60a5fa
        }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem
}

    .nav-links a {
        color: #e5e7eb;
        font-size: .95rem
    }

        .nav-links a:hover {
            color: #60a5fa
        }

.nav-toggle {
    display: none;
    border: 1px solid rgba(148,163,253,.25);
    background: rgba(2,8,23,.35);
    color: #e5e7eb;
    padding: .55rem .75rem;
    border-radius: .75rem;
    cursor: pointer;
    line-height: 1
}

    .nav-toggle:hover {
        border-color: rgba(96,165,250,.6);
        color: #60a5fa
    }

    .nav-toggle:focus {
        outline: 2px solid rgba(96,165,250,.65);
        outline-offset: 2px
    }

.btn-primary, .btn-secondary {
    padding: .7rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-block
}

.btn-primary {
    background: #2563eb;
    color: #f9fafb
}

.btn-secondary {
    border: 1px solid #64748b;
    color: #e5e7eb
}

.hero {
    padding: 3.5rem 0 2.5rem
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0,3fr) minmax(0,2fr);
    gap: 2rem;
    align-items: center
}

.hero h1 {
    font-size: 2.1rem;
    margin-bottom: 1rem
}

.hero p {
    color: #d1d5db
}

.hero-actions {
    gap: .75rem
}

.hero-actions, .hero-trust {
    display: flex;
    margin-top: 1rem;
    flex-wrap: wrap
}

.hero-trust {
    gap: 1rem;
    font-size: .8rem;
    color: #9ca3af
}

.hero-image-placeholder {
    border-radius: 1.5rem;
    border: 1px dashed #4b5563;
    padding: 3rem 1rem;
    text-align: center;
    font-size: .9rem;
    color: #9ca3af
}

.hero-image {
    border-radius: 1.5rem;
    border: 1px solid rgba(148,163,253,.15);
    overflow: hidden;
    background: rgba(2,8,23,.35)
}

    .hero-image img, .hero-photo {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-fit: cover
    }

@media (max-width:900px) {
    .hero-image img, .hero-photo {
        aspect-ratio: 3/4
    }
}

.section {
    padding: 2.5rem 0
}

    .section.alt {
        background: #111827;
        border-top: 1px solid #1f2937
    }

    .section h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem
    }

.card-grid {
    display: grid;
    gap: 1.5rem
}

@media (min-width:768px) {
    .card-grid {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }
}

.card {
    background: #111827;
    padding: 1.4rem;
    border-radius: 1.1rem;
    border: 1px solid #1f2937;
    margin-bottom: 1rem
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem
}

    .bullet-list li {
        margin-bottom: .5rem;
        padding-left: 1.2rem;
        position: relative;
        color: #d1d5db
    }

        .bullet-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #60a5fa
        }

.form {
    max-width: 520px;
    margin-top: 1rem
}

.form-group {
    margin-bottom: .9rem
}

    .form-group label {
        display: block;
        margin-bottom: .25rem;
        font-size: .9rem;
        color: #e5e7eb
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: .55rem .7rem;
        border-radius: .6rem;
        border: 1px solid #374151;
        background: #020817;
        color: #e5e7eb;
        font-size: .9rem
    }

    .form-group textarea {
        min-height: 90px;
        resize: vertical
    }

.form-note {
    color: #00b386;
    font-weight: 500;
    margin: 10px 0 20px
}

.footer {
    padding: 1.5rem 0;
    font-size: .8rem;
    color: #6b7280;
    text-align: center;
    border-top: 1px solid #111827;
    margin-top: 2rem
}

.footer-inner {
    display: grid;
    gap: 1.25rem;
    align-items: start
}

.footer-brand strong {
    color: #f9fafb;
    font-size: .95rem
}

.footer-brand span {
    color: #9ca3af;
    font-size: .8rem
}

.footer-location {
    line-height: 1.4
}

.footer-links {
    margin-top: .35rem;
    font-size: .85rem
}

.footer a {
    color: #93c5fd
}

    .footer a:hover {
        text-decoration: underline
    }

.footer-sep {
    margin: 0 .4rem;
    color: hsla(0,0%,100%,.25)
}

.footer-copy {
    margin-top: .75rem;
    opacity: .7;
    text-align: center
}

@media (min-width:900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        align-items: center
    }

    .footer-location {
        text-align: right
    }

    .footer-copy {
        grid-column: 1/-1;
        margin-top: 1.25rem
    }
}

@media (max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center
    }

    .nav-links {
        display: none;
        position: absolute;
        right: 1.5rem;
        top: calc(100% + .5rem);
        flex-direction: column;
        gap: .25rem;
        padding: .75rem;
        border-radius: 1rem;
        border: 1px solid rgba(148,163,253,.18);
        background: rgba(2,8,23,.92);
        backdrop-filter: blur(10px);
        box-shadow: 0 12px 30px rgba(0,0,0,.35);
        min-width: 220px;
        z-index: 60
    }

        .nav-links a {
            padding: .65rem .75rem;
            border-radius: .75rem;
            display: block
        }

            .nav-links a:hover {
                background: rgba(96,165,250,.12);
                color: #60a5fa
            }

    .nav.is-open .nav-links {
        display: flex
    }

    .nav > a {
        display: none
    }

    .nav {
        position: relative
    }
}

@media (max-width:900px) {
    .container {
        padding: 0 .75rem
    }

    .header-inner {
        justify-content: flex-start;
        gap: .5rem
    }

    .nav-toggle {
        margin-left: auto
    }

    .nav {
        margin-left: 0
    }

    .nav-links {
        right: .75rem
    }
}
