/* BASIC RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
    background: #f3f4f6;
    line-height: 1.6;
}

/* CONTAINERS */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(15, 23, 42, 0.98);
    color: #e5e7eb;
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Circular logo container */
.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, #4db5ff, #00b9c9);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;          /* keeps the shield neatly inside */
}

/* The PNG shield logo inside the circle */
.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* If you ever use .logo-image directly somewhere else */
.logo-image {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 600;
    font-size: 16px;
}

.logo-subtitle {
    font-size: 11px;
    color: #9ca3af;
}

/* NAV */
.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.main-nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: 0.2s ease;
}

.main-nav a:hover {
    border-bottom-color: #38bdf8;
}

.main-nav a.active {
    border-bottom-color: #2563eb;
}

.nav-cta {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #38bdf8;
}

/* HERO */
.hero {
    background: radial-gradient(circle at top left, #1d4ed8 0, #020617 45%, #020617 100%);
    color: #e5e7eb;
    padding: 60px 0 56px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero p {
    font-size: 15px;
    color: #cbd5f5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 18px;
}

/* BUTTONS */
.btn-primary,
.btn-ghost,
.btn-large,
.btn-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: white;
    padding: 10px 22px;
    border: none;
}

.btn-ghost {
    border: 1px solid #64748b;
    color: #e5e7eb;
    padding: 9px 20px;
    background: transparent;
}

.btn-large {
    padding: 12px 28px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
    padding: 11px 0;
}

/* HERO BADGES */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 12px;
}

.badge {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.badge-number {
    font-weight: 600;
    font-size: 14px;
}

.badge-label {
    display: block;
    font-size: 11px;
    color: #9ca3af;
}

/* HERO VISUAL CARD */
.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 18px;
    padding: 18px 16px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.7);
    font-size: 13px;
}

.hero-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.hero-card ul {
    margin-left: 16px;
    margin-bottom: 10px;
}

.hero-card li {
    margin-bottom: 6px;
}

.hero-note {
    font-size: 11px;
    color: #9ca3af;
}

/* GENERIC SECTIONS */
.section {
    padding: 48px 0;
    background: #f3f4f6;
}

.section-alt {
    background: #e5e7eb;
}

.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 28px;
}

.section-heading h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

/* TWO-COLUMN LAYOUT */
.section-grid-two {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

/* INFO CARD */
.info-card {
    background: white;
    border-radius: 16px;
    padding: 18px 18px 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

/* ICON LIST */
.icon-list {
    list-style: none;
    margin-top: 8px;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

.icon-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2563eb;
    margin-top: 6px;
}

/* CARD GRID */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 18px 18px 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    font-size: 14px;
}

.card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.card p {
    font-size: 13px;
    margin-bottom: 10px;
}

/* PILL LIST */
.pill-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.pill-list li {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
}

/* CARD FOOTER */
.card-footer {
    margin-top: 6px;
}

.text-link {
    font-size: 12px;
    color: #2563eb;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

/* STEP LIST */
.steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #2563eb;
    color: white;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

/* CTA SECTION */
.section-cta {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #e5e7eb;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* PAGE HERO */
.page-hero {
    padding: 36px 0 24px;
    background: #e5e7eb;
}

.page-hero h1 {
    font-size: 24px;
    margin-bottom: 6px;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 28px;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 20px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.contact-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    margin-top: 4px;
    padding: 8px 9px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 13px;
}

.contact-side {
    font-size: 14px;
}

/* FOOTER */
.site-footer {
    background: #020617;
    color: #9ca3af;
    padding: 26px 0 10px;
    margin-top: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    font-size: 13px;
}

/* Slightly smaller logo circle in footer */
.footer-logo .logo-mark {
    width: 30px;
    height: 30px;
}

.footer-text {
    margin-top: 8px;
}

.footer-links {
    list-style: none;
    margin-top: 6px;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 11px;
    color: #6b7280;
    margin-top: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-grid,
    .section-grid-two,
    .contact-grid,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 42px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .card-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero h1 {
        font-size: 24px;
    }
}
