:root {
    --blue: #1f5f98;
    --deep-blue: #073f66;
    --green: #068c2f;
    --yellow: #f7cf35;
    --white: #ffffff;
    --ink: #10202d;
    --muted: #687684;
    --light: #f4f8fb;
    --border: rgba(16, 32, 45, 0.12);
    --shadow: 0 24px 70px rgba(7, 63, 102, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand img {
    height: 58px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 700;
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-blue);
}

.nav-cta {
    background: var(--deep-blue);
    color: var(--white) !important;
    padding: 11px 18px;
    border-radius: 999px;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 42px;
    height: 42px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    height: 3px;
    margin: 5px 0;
    background: var(--deep-blue);
    border-radius: 999px;
}

.hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 88px 22px 70px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 42px;
    align-items: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 26px 22px auto auto;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(247, 207, 53, 0.38), transparent 70%);
    pointer-events: none;
}

.eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--green);
}

h1,
h2,
h3 {
    line-height: 1.08;
    margin: 0;
    color: var(--deep-blue);
}

h1 {
    font-size: clamp(2.7rem, 6vw, 5.9rem);
    max-width: 900px;
    letter-spacing: -0.06em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
}

h3 {
    font-size: 1.35rem;
}

.hero-text {
    max-width: 760px;
    font-size: 1.2rem;
    color: var(--muted);
    margin: 24px 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
}

.button.primary {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: var(--white);
    box-shadow: 0 16px 36px rgba(6, 140, 47, 0.24);
}

.button.secondary {
    background: var(--white);
    color: var(--deep-blue);
    border: 1px solid var(--border);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-row span {
    padding: 8px 12px;
    background: var(--light);
    border-radius: 999px;
    font-weight: 700;
    color: var(--deep-blue);
}

.hero-card,
.quote-card {
    background: var(--deep-blue);
    color: var(--white);
    border-radius: 30px;
    padding: 34px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-card::after,
.quote-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -60px;
    width: 170px;
    height: 170px;
    border: 24px solid rgba(247, 207, 53, 0.5);
    border-radius: 50%;
}

.hero-card h2,
.quote-card h2 {
    color: var(--white);
    font-size: 2rem;
}

.hero-card p,
.quote-card p {
    color: rgba(255, 255, 255, 0.82);
}

.performance-badge {
    display: inline-flex;
    background: var(--yellow);
    color: var(--ink);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 22px;
}

.hero-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 22px;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.1rem;
}

.intro-grid,
.cards,
.offer-grid {
    display: grid;
    gap: 18px;
}

.intro-grid {
    grid-template-columns: repeat(3, 1fr);
}

.intro-grid article,
.card,
.offer {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 16px 40px rgba(7, 63, 102, 0.06);
}

.dark {
    max-width: none;
    background:
        linear-gradient(135deg, rgba(7, 63, 102, 0.96), rgba(6, 140, 47, 0.9)),
        var(--deep-blue);
    color: var(--white);
    padding-left: max(22px, calc((100vw - 1180px) / 2 + 22px));
    padding-right: max(22px, calc((100vw - 1180px) / 2 + 22px));
}

.dark h2,
.dark h3 {
    color: var(--white);
}

.dark .eyebrow {
    color: var(--yellow);
}

.dark .section-heading p {
    color: rgba(255, 255, 255, 0.78);
}

.cards {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.card p {
    color: rgba(255, 255, 255, 0.78);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.split p {
    color: var(--muted);
    font-size: 1.08rem;
}

.text-link {
    color: var(--green);
    font-weight: 900;
    text-decoration: none;
}

.highlight-list {
    display: grid;
    gap: 16px;
}

.highlight-list div {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: center;
    background: var(--light);
    border-radius: 24px;
    padding: 22px;
}

.highlight-list strong {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    background: var(--yellow);
    border-radius: 50%;
    color: var(--ink);
}

.highlight-list span {
    font-weight: 800;
    color: var(--deep-blue);
}

.team-section {
    background: var(--light);
    max-width: none;
    padding-left: max(22px, calc((100vw - 1180px) / 2 + 22px));
    padding-right: max(22px, calc((100vw - 1180px) / 2 + 22px));
}

.offer-grid {
    grid-template-columns: repeat(3, 1fr);
}

.offer.featured {
    background: var(--deep-blue);
}

.offer.featured h3,
.offer.featured p {
    color: var(--white);
}

.about {
    align-items: stretch;
}

.quote-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--blue), var(--green));
}

.quote-card p {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 900;
    color: var(--white);
    margin: 0;
}

.contact {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: start;
}

.contact-copy p {
    color: var(--muted);
}

.contact-facts {
    margin-top: 28px;
    padding: 24px;
    border-radius: 24px;
    background: var(--light);
}

.contact-facts p {
    margin: 6px 0;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    font-weight: 800;
    color: var(--deep-blue);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 15px;
    font: inherit;
    color: var(--ink);
    background: var(--white);
}

textarea {
    resize: vertical;
}

.privacy-check {
    grid-template-columns: 18px 1fr;
    align-items: start;
    font-weight: 600;
    color: var(--muted);
}

.privacy-check input {
    width: auto;
    margin-top: 5px;
}

.honeypot {
    display: none;
}

.site-footer {
    background: var(--deep-blue);
    color: var(--white);
    padding: 34px 22px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.site-footer p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 87px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        padding: 20px;
        border: 1px solid var(--border);
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .hero,
    .split,
    .contact {
        grid-template-columns: 1fr;
    }

    .intro-grid,
    .cards,
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 54px;
    }

    .hero-card {
        padding: 26px;
    }
}

@media (max-width: 560px) {
    .brand img {
        height: 44px;
    }

    .nav {
        padding: 12px 16px;
    }

    .hero,
    .section {
        padding-left: 16px;
        padding-right: 16px;
    }

    h1 {
        font-size: 2.6rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
