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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f5f7fb;
    color: #1f2933;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: white;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 50;
}

.navbar {
    max-width: 1040px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.nav-logo span.icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.nav-links a {
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.nav-links a.active,
.nav-links a:hover {
    border-color: currentColor;
}

.btn-primary {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero {
    max-width: 1040px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.hero-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    position: relative;
    overflow: hidden;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    margin-bottom: 1rem;
}

.hero-metric {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.hero-metric-label {
    font-size: 0.8rem;
    color: #6b7280;
}

.hero-badge {
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
}

.section {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem 2.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.35rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    max-width: 460px;
}

.grid {
    display: grid;
    gap: 1.25rem;
}

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

.card {
    background: white;
    border-radius: 1rem;
    padding: 1.1rem 1.1rem 1.2rem;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.card p {
    font-size: 0.9rem;
    color: #4b5563;
}

.card-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin-bottom: 0.35rem;
}

.card-meta {
    font-size: 0.8rem;
    margin-top: 0.7rem;
    color: #6b7280;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 2rem;
    align-items: flex-start;
}

.contact-form {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.contact-form h2 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-form p {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.form-grid {
    display: grid;
    gap: 0.8rem;
}

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

label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    display: block;
    margin-bottom: 0.2rem;
}

input, textarea, select {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 0.6rem;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.15);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-details {
    font-size: 0.9rem;
    color: #4b5563;
}

.contact-details ul {
    list-style: none;
    margin-top: 0.8rem;
}

.contact-details li {
    margin-bottom: 0.4rem;
}

.contact-details strong {
    font-weight: 600;
}

.footer {
    max-width: 1040px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 2rem;
    font-size: 0.8rem;
    color: #9ca3af;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer a {
    color: #9ca3af;
}

@media (max-width: 920px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-card {
        order: -1;
    }
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .navbar {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .nav-links {
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
        font-size: 0.85rem;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }
    .footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
