:root {
    --primary: #0f2a44;
    --secondary: #1e40af;
    --accent: #c9a24d;
    --bg: #f8fafc;
    --white: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e5e7eb;
    --dark: #020617;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 1.25rem;
}

a {
    text-decoration: none;
    color: inherit
}

header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 800;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 1.6rem;
}

.nav-links a {
    font-size: .95rem;
    color: var(--muted);
}

.nav-links a:hover {
    color: var(--primary)
}

.menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    padding: 1.5rem;
}

.mobile-menu.active {
    display: block
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-links a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .menu-btn {
        display: block
    }
}

.hero {
    padding: 4.5rem 0 3.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
}

.hero p {
    margin-top: 1rem;
    color: var(--muted);
    max-width: 720px;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: .75rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

@media(min-width:900px) {
    .hero-grid {
        grid-template-columns: 1.2fr .8fr;
        align-items: center;
    }
}

.trusted {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trusted h3 {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2rem;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.metric {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem;
    text-align: center;
}

.metric strong {
    font-size: 1.9rem;
    color: #0f766e;
}

section {
    padding: 4.5rem 0
}

.section-title {
    max-width: 820px;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.1rem;
    font-weight: 800;
}

.section-title p {
    margin-top: .6rem;
    color: var(--muted);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.card,
.review {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.2rem;
}

.reviews {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stars {
    color: var(--accent)
}

.faqs {
    background: #fff;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.2rem;
}

.cta {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
}

.cta-inner {
    max-width: 820px;
    margin: auto;
    text-align: center;
}

.cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
}

.cta-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: #fff;
    color: var(--primary);
}

/* ==================================================
   FOOTER
================================================== */

footer {
    background: var(--dark);
    color: #9ca3af;
    padding: 40px 5% 28px;
    font-size: 13px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

footer h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 15px;
}

footer a {
    display: block;
    margin-bottom: 6px;
    color: #cbd5e1;
}

footer a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #1f2937;
    padding-top: 18px;
}

/* ==================================================
   SCROLLBAR (SUBTLE)
================================================== */

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}