:root {
    --bg: #f4f7f5;
    --surface: #ffffff;
    --text: #14231d;
    --muted: #627069;
    --primary: #0d6b4f;
    --primary-dark: #084b38;
    --accent: #d9a441;
    --border: #dce6e1;
    --shadow: 0 24px 60px rgba(20, 35, 29, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.topbar-inner, .footer-inner, .countries-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-inner { min-height: 76px; }

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--primary);
    color: white;
    font-weight: 800;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .18em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid transparent;
}

.btn-primary {
    color: white;
    background: var(--primary);
    box-shadow: 0 12px 30px rgba(13,107,79,.22);
}

.btn-light {
    background: white;
    border-color: var(--border);
}

.btn-outline {
    border-color: var(--border);
    background: white;
}

.hero {
    padding: 88px 0 72px;
    background:
        radial-gradient(circle at 80% 10%, rgba(217,164,65,.18), transparent 25%),
        linear-gradient(180deg, #f7faf8, #eef4f1);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 800;
}

h1 {
    margin: 18px 0;
    max-width: 760px;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

h2 {
    margin: 12px 0;
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -.035em;
}

.lead {
    max-width: 680px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}

.hero-actions, .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions { margin-top: 30px; }

.trust-row {
    margin-top: 34px;
    color: var(--muted);
    font-size: 14px;
}

.trust-row span::before {
    content: "✓";
    margin-right: 8px;
    color: var(--primary);
    font-weight: 900;
}

.dashboard-card {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 28px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow);
}

.card-head, .opportunity {
    display: flex;
    align-items: center;
}

.card-head {
    justify-content: space-between;
    margin-bottom: 24px;
}

.card-head small, .card-head strong {
    display: block;
}

.card-head small { color: var(--muted); margin-bottom: 5px; }

.status-dot {
    padding: 8px 12px;
    border-radius: 999px;
    background: #e6f5ee;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.metric {
    padding: 17px;
    border-radius: 18px;
    background: #f4f8f6;
}

.metric strong, .metric span { display: block; }

.metric strong { font-size: 27px; }

.metric span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

.opportunity {
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.score {
    display: grid;
    flex: 0 0 46px;
    place-items: center;
    height: 46px;
    border-radius: 14px;
    background: var(--primary);
    color: white;
    font-weight: 800;
}

.opportunity p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.section { padding: 90px 0; }

.section-head { max-width: 680px; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 42px;
}

.feature-grid article {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
}

.feature-grid article > span {
    color: var(--accent);
    font-weight: 900;
}

.feature-grid h3 { font-size: 22px; }

.feature-grid p {
    color: var(--muted);
    line-height: 1.7;
}

.countries {
    padding: 50px 0;
    background: var(--primary-dark);
    color: white;
}

.countries-inner { gap: 50px; }

.countries p {
    max-width: 580px;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

footer {
    padding: 28px 0;
    background: #102019;
    color: rgba(255,255,255,.72);
}

@media (max-width: 900px) {
    .hero-grid, .feature-grid { grid-template-columns: 1fr; }
    .nav a:not(.btn) { display: none; }
    .hero { padding-top: 54px; }
}

@media (max-width: 600px) {
    .container { width: min(100% - 24px, 1180px); }
    .metric-grid { grid-template-columns: 1fr; }
    .countries-inner, .footer-inner { align-items: flex-start; flex-direction: column; }
    h1 { font-size: 44px; }
}
