:root {
    --ink: #0b0c0c;
    --muted: #505a5f;
    --link: #1d70b8;
    --linkHover: #003078;

    --brandBar: #393d7e;
    --brandAccent: #1b3a6b;
    --panel: #f3f4f6;
    --border: #b1b4b6;
    --softBorder: #d6d8db;
    --warnBg: #fff7bf;
    --warnBorder: #ffdd00;
    --success: #0b5a2a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Arial,
        sans-serif;
    color: var(--ink);
    background: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: var(--link);
}
a:hover {
    color: var(--linkHover);
}

.wrap {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.site-header {
    background: var(--brandBar);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}
.site-header .wrap {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
}

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

.brand img {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text .name {
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 0.2px;
    line-height: 1.15;
}
.brand-text .meta {
    font-size: 13px;
    opacity: 0.92;
}

.header-right {
    text-align: right;
    font-size: 14px;
    line-height: 1.35;
    min-width: 280px;
}

.top-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--brandAccent);
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    font-weight: 900;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
    white-space: nowrap;
}
.btn:hover {
    background: #16305a;
}
.btn.secondary {
    background: #ffffff;
    color: var(--brandAccent);
    border: 1px solid var(--border);
    box-shadow: none;
    font-weight: 900;
}
.btn.secondary:hover {
    background: #f8fafc;
}

.hero-actions .btn {
    background: #1c1c3b;
    color: #fff;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 18px;
}

.hero-actions .btn:hover {
    background: #35356e;
}

.hero-actions .btn:active {
    background: #4c4c9e;
}

/* Hero */
.hero-band {
    position: relative;
    border-bottom: 1px solid var(--softBorder);
    background:
        linear-gradient(
            90deg,
            rgba(84, 89, 172, 0.6) 0%,
            rgba(84, 89, 172, 0.48) 50%,
            rgba(84, 89, 172, 0.08) 100%
        ),
        url("img/hero.jpg") center/cover no-repeat;
    color: #fff;
}
.hero-band .wrap {
    padding: 80px 15px;
}
.hero-title {
    margin: 0 0 10px 0;
    font-size: 44px;
    line-height: 1.12;
    font-weight: 600;
    max-width: 42ch;
}
.hero-lede {
    margin: 0 0 14px 0;
    font-size: 18px;
    max-width: 68ch;
    opacity: 0.96;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* Layout */
main {
    display: flex;
}

/* Panels */
.panel {
    border: 1px solid var(--border);
    background: #fff;
    padding: 16px;
    margin-bottom: 16px;
}
.panel-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 800;
}
.panel p {
    margin: 0 0 10px 0;
}
.panel p:last-child {
    margin-bottom: 0;
}

/* Two-column tick list */
.tick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    padding: 0;
    margin: 10px 0 0 0;
    list-style: none;
}
.tick {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 6px 8px;
    border: 1px solid var(--softBorder);
    border-radius: 6px;
    background: #fff;
}
.tick span {
    font-weight: 600;
}

.tick img {
    width: 25px;
}

/* Trust logos */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.trust-grid img {
    height: 70px;
    width: 200px;
}

.accreditations {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.accreditations img {
    height: 70px;
}

.badge {
    border: 1px solid var(--softBorder);
    border-radius: 8px;
    background: #fff;
    padding: 10px 10px;
    font-weight: 900;
    font-size: 13px;
    color: var(--brandAccent);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 42px;
}
.badge.muted {
    color: var(--muted);
    font-weight: 800;
}

/* Section blocks */
.section {
    padding-top: 10px;
    margin-top: 16px;
}
.section h2 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 800;
}

/* Pricing table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 15px;
}
th,
td {
    border: 1px solid var(--softBorder);
    padding: 10px 10px;
    text-align: left;
    vertical-align: top;
}
th {
    background: var(--panel);
    font-weight: 1000;
}
.small {
    font-size: 13px;
    color: var(--muted);
}

footer {
    border-top: 1px solid var(--border);
    background: #f4fafa;
    padding: 18px 0;
    color: var(--muted);
    font-size: 14px;
}
.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    align-items: start;
}
.footer-cols h4 {
    margin: 0 0 8px 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 1000;
}
.footer-links a {
    display: block;
    margin: 0 0 6px 0;
}
.fineprint {
    margin-top: 12px;
    font-size: 13px;
}

iframe {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 860px) {
    .header-right {
        text-align: left;
        min-width: unset;
    }
    .top-actions {
        justify-content: flex-start;
    }
    .tick-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .footer-cols {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 28px;
    }

    .hero-band {
        background:
            linear-gradient(
                90deg,
                rgba(84, 89, 172, 0.9) 0%,
                rgba(84, 89, 172, 0.78) 50%,
                rgba(84, 89, 172, 0.38) 100%
            ),
            url("img/hero.jpg") center/cover no-repeat;
    }

    .brand img {
        width: 30px;
        height: 30px;
    }

    .brand-text .meta {
        display: none;
    }
    .brand-text .name {
        font-size: 18px;
    }

    .btn {
        padding: 8px 10px;
    }

    .hero-band .wrap {
        padding: 30px 15px;
    }

    .accreditations img {
        height: 60px;
    }
}
