@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --navy: #071c40;
    --navy-soft: #102b56;
    --gold: #d69a21;
    --gold-light: #f2c65d;
    --cream: #faf8f2;
    --ink: #10213d;
    --muted: #61708a;
    --line: #e6e8ec;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.site-header {
    height: 88px;
    max-width: 1240px;
    margin: auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand img { display: block; width: 184px; height: auto; }
nav { display: flex; align-items: center; gap: 34px; }
nav > a { text-decoration: none; font-size: 14px; font-weight: 600; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 9px 24px rgba(214, 154, 33, .23);
    transition: transform .18s, box-shadow .18s, background .18s;
}
.button:hover { transform: translateY(-2px); background: var(--gold-light); box-shadow: 0 13px 28px rgba(214,154,33,.28); }
.button-small { min-height: 42px; padding: 0 20px; }
.hero {
    min-height: 680px;
    padding: 88px max(28px, calc((100vw - 1184px) / 2)) 92px;
    display: grid;
    grid-template-columns: .94fr 1.06fr;
    align-items: center;
    gap: 64px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 42%, rgba(214,154,33,.14), transparent 28%),
        linear-gradient(135deg, #f9fbfe 0%, #fff 52%, #fbf8ef 100%);
    border-top: 1px solid #f0f1f3;
}
.eyebrow { margin: 0 0 18px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { font-family: "Manrope", sans-serif; }
h1 { margin: 0; color: var(--navy); font-size: clamp(48px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -.055em; }
h1 span { color: var(--gold); }
.hero-intro { max-width: 605px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.text-link { font-weight: 700; text-decoration: none; }
.text-link span { color: var(--gold); padding-left: 4px; }
.trust-row { display: flex; gap: 24px; margin-top: 40px; color: #748198; font-size: 12px; font-weight: 600; }
.trust-row span::before { content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 8px 2px 0; border-radius: 50%; background: var(--gold); }
.hero-visual { position: relative; min-width: 0; }
.glow { position: absolute; inset: 0 5%; background: rgba(214,154,33,.17); filter: blur(70px); border-radius: 50%; }
.dashboard-card {
    position: relative;
    width: 100%;
    min-height: 380px;
    overflow: hidden;
    border: 1px solid rgba(7,28,64,.1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(7,28,64,.16);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.dash-top { height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid #edf0f4; }
.mini-logo img { width: 82px; display: block; }
.dash-lines { display: flex; gap: 8px; }
.dash-lines i { display: block; width: 40px; height: 6px; background: #e8ecf2; border-radius: 8px; }
.dash-lines i:last-child { width: 24px; }
.dash-body { display: flex; min-height: 326px; }
.dash-sidebar { width: 98px; padding: 24px 16px; background: var(--navy); }
.dash-sidebar i { display: block; height: 7px; margin: 0 0 20px; border-radius: 6px; background: rgba(255,255,255,.22); }
.dash-sidebar i:nth-child(2), .dash-sidebar i:nth-child(5) { width: 65%; }
.dash-content { flex: 1; padding: 28px 24px; background: #f5f7fa; }
.welcome-line { width: 35%; height: 11px; margin-bottom: 24px; border-radius: 8px; background: #cad2dd; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat-grid > div { padding: 16px; border: 1px solid #e6e9ef; border-radius: 8px; background: #fff; }
.stat-grid b, .stat-grid em { display: block; color: #8490a3; font-size: 8px; font-style: normal; }
.stat-grid strong { display: block; margin: 7px 0; color: var(--navy); font: 700 19px "Manrope"; }
.chart { height: 130px; margin-top: 18px; padding: 22px 18px 0; display: flex; gap: 12px; align-items: end; border: 1px solid #e6e9ef; border-radius: 8px; background: #fff; }
.chart span { flex: 1; height: 44%; border-radius: 4px 4px 0 0; background: #d5a641; }
.chart span:nth-child(2) { height: 68%; }.chart span:nth-child(3) { height: 54%; }.chart span:nth-child(4) { height: 82%; }.chart span:nth-child(5) { height: 63%; }.chart span:nth-child(6) { height: 92%; }.chart span:nth-child(7) { height: 76%; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 13px 17px; border-radius: 10px; background: #fff; box-shadow: 0 14px 34px rgba(7,28,64,.18); font-size: 11px; }
.floating-card i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #edf7ee; color: #2a8545; font-style: normal; font-weight: 800; }
.floating-card span, .floating-card small { display: block; }.floating-card small { color: #8290a3; margin-top: 2px; }
.floating-one { right: -18px; top: -32px; }.floating-two { left: -32px; bottom: -34px; }.floating-two i { background: #fff5de; color: #b77800; }
.feature-section { padding: 112px max(28px, calc((100vw - 1184px) / 2)); }
.section-heading { max-width: 680px; margin: 0 auto 58px; text-align: center; }
.section-heading h2, .why-section h2, .cta-section h2 { margin: 0; color: var(--navy); font-size: clamp(32px, 3.4vw, 48px); line-height: 1.12; letter-spacing: -.04em; }
.section-heading > p:last-child { color: var(--muted); font-size: 17px; line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-grid article { padding: 30px 26px 32px; border: 1px solid var(--line); border-radius: 10px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.feature-grid article:hover { transform: translateY(-5px); border-color: rgba(214,154,33,.55); box-shadow: 0 18px 36px rgba(7,28,64,.08); }
.feature-icon { color: var(--gold); font: 800 12px "Manrope"; letter-spacing: .12em; }
.feature-grid h3 { margin: 40px 0 12px; color: var(--navy); font-size: 19px; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.68; }
.why-section { padding: 105px max(28px, calc((100vw - 1184px) / 2)); display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; background: var(--cream); }
.why-copy > p { margin: 0 0 28px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.why-copy ul { margin: 0; padding: 0; list-style: none; }
.why-copy li { padding: 14px 0; border-bottom: 1px solid #e3dfd2; font-weight: 600; }
.why-copy li span { margin-right: 12px; color: var(--gold); }
.cta-section { margin: 96px max(28px, calc((100vw - 1184px) / 2)); padding: 52px 58px; display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 34px; border-radius: 14px; background: var(--navy); color: white; }
.cta-section img { width: 90px; filter: drop-shadow(0 5px 14px rgba(0,0,0,.2)); }
.cta-section .eyebrow { margin-bottom: 10px; }
.cta-section h2 { color: white; font-size: 32px; }
.button-light { background: #fff; color: var(--navy); box-shadow: none; }
footer { max-width: 1184px; margin: auto; padding: 42px 0; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 26px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-brand img { display: block; width: 160px; }
footer p { margin: 0; } footer div { display: flex; gap: 24px; } footer div a { font-weight: 600; text-decoration: none; } footer small { grid-column: 1 / -1; color: #98a1af; }

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 64px; }
    .hero-copy { max-width: 680px; }.hero-visual { margin: 40px 25px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .why-section { grid-template-columns: 1fr; gap: 40px; }
    .cta-section { grid-template-columns: 70px 1fr; }.cta-section img { width: 70px; }.cta-section .button { grid-column: 2; justify-self: start; }
    footer { margin: 0 28px; }
}
@media (max-width: 620px) {
    .site-header { height: 76px; padding: 0 18px; }.brand img { width: 138px; }
    nav { gap: 10px; } nav > a:not(.button) { display: none; }.button-small { min-height: 40px; }
    .hero { padding: 54px 22px 70px; gap: 35px; }.hero-intro { font-size: 16px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
    .trust-row { flex-wrap: wrap; gap: 10px 18px; }
    .dashboard-card { min-height: 280px; }.dash-body { min-height: 230px; }.dash-sidebar { width: 60px; }.dash-content { padding: 18px 12px; }.stat-grid > div { padding: 10px 7px; }.stat-grid strong { font-size: 14px; }.chart { height: 90px; }
    .floating-one { right: -10px; }.floating-two { left: -10px; }
    .feature-section { padding: 78px 22px; }.feature-grid { grid-template-columns: 1fr; }.section-heading { text-align: left; }
    .why-section { padding: 78px 22px; }
    .cta-section { margin: 60px 18px; padding: 35px 26px; grid-template-columns: 1fr; }.cta-section img { width: 74px; }.cta-section .button { grid-column: 1; }
    footer { margin: 0 22px; grid-template-columns: 1fr; } footer small { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}
