:root {
    --ink: #15202b;
    --muted: #5b6773;
    --line: #dce3ea;
    --paper: #f6f8fb;
    --white: #ffffff;
    --blue: #214c83;
    --blue-dark: #18375f;
    --gold: #b88935;
    --green: #16745c;
    --green-soft: #e7f4ef;
    --shadow: 0 14px 34px rgba(21, 32, 43, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(220, 227, 234, 0.9);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
}

.nav {
    width: min(1160px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0;
}

.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.brand span {
    display: block;
    line-height: 1.15;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.nav-links a {
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--blue);
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(22, 116, 92, 0.22);
}

.button-secondary {
    border-color: var(--line);
    background: var(--white);
    color: var(--blue-dark);
}

.hero {
    width: min(1160px, calc(100% - 32px));
    min-height: calc(100vh - 130px);
    margin: 0 auto;
    padding: 56px 0 38px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 44px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 760px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(44px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 660px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-brand {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: 28px;
    box-shadow: var(--shadow);
}

.hero-brand__top {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 20px;
    align-items: center;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.hero-brand__top img {
    width: 112px;
    height: 112px;
    object-fit: contain;
}

.hero-brand strong {
    display: block;
    font-size: 22px;
    line-height: 1.15;
}

.hero-brand p {
    margin: 8px 0 0;
    color: var(--muted);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0 0;
}

.metric {
    border-left: 3px solid var(--gold);
    padding-left: 12px;
}

.metric b {
    display: block;
    font-size: 22px;
    line-height: 1.1;
}

.metric span {
    color: var(--muted);
    font-size: 13px;
}

.trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--blue-dark);
    color: var(--white);
}

.trust-strip__inner {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
    min-height: 118px;
    padding: 22px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item b {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.section {
    padding: 82px 0;
}

.section.alt {
    background: var(--paper);
}

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

.section-head {
    max-width: 700px;
    margin-bottom: 34px;
}

.section-head h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.05;
}

.section-head p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 252px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 22px rgba(21, 32, 43, 0.06);
}

.service-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 900;
}

.service-card h3 {
    margin: 18px 0 10px;
    font-size: 20px;
    line-height: 1.2;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.service-card a {
    margin-top: auto;
    padding-top: 20px;
    color: var(--blue);
    font-weight: 900;
    text-decoration: none;
}

.signature-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 32px;
    align-items: start;
}

.signature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.signature-list li {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 16px 18px;
}

.check-card {
    border-radius: 8px;
    background: var(--green-soft);
    color: #0e513f;
    padding: 24px;
    border: 1px solid rgba(22, 116, 92, 0.18);
}

.check-card b {
    display: block;
    font-size: 20px;
    line-height: 1.2;
}

.check-card p {
    margin: 12px 0 0;
}

.cta-band {
    background: var(--ink);
    color: var(--white);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-content h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 4vw, 44px);
}

.cta-content p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.76);
}

.footer {
    background: #101820;
    color: rgba(255, 255, 255, 0.74);
    padding: 34px 0;
}

.footer-grid {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 24px;
}

.footer h3,
.footer h4 {
    margin: 0 0 12px;
    color: var(--white);
}

.footer p {
    margin: 0 0 8px;
}

.footer a {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer-bottom {
    width: min(1160px, calc(100% - 32px));
    margin: 26px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(22, 116, 92, 0.26);
}

@media (max-width: 900px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
    }

    .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero,
    .signature-panel,
    .cta-content {
        grid-template-columns: 1fr;
    }

    .trust-strip__inner,
    .service-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .hero {
        min-height: auto;
        padding-top: 36px;
    }

    .hero-copy {
        font-size: 17px;
    }

    .hero-brand__top,
    .metrics,
    .trust-strip__inner,
    .service-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
    }
}
