:root {
    --bg: #f4f7f8;
    --white: #ffffff;
    --text: #1d2733;
    --muted: #5f6f7d;
    --line: #d7e0e6;
    --soft: #eef3f6;
    --soft-2: #f8fbfc;
    --brand-green: #0f5943;
    --brand-green-dark: #0b4332;
    --brand-blue: #0f3163;
    --brand-blue-dark: #0a2144;
    --brand-accent: #1a8d8a;
    --shadow-lg: 0 25px 60px rgba(12, 32, 52, 0.16);
    --shadow-md: 0 16px 36px rgba(12, 32, 52, 0.1);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1200px;
    --header-height: 88px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -48px;
    background: var(--brand-blue);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 1000;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 12px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(215, 224, 230, 0.85);
}

.header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
}

.brand img,
.footer-brand img {
    width: auto;
    height: 54px;
}

.site-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.site-nav a {
    font-size: .96rem;
    font-weight: 600;
    color: #435060;
    transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--brand-blue);
}

.site-nav a.is-secondary {
    color: #617284;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
    cursor: pointer;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
    color: #fff;
    box-shadow: 0 15px 30px rgba(16, 53, 85, 0.22);
}

.button-primary:hover {
    box-shadow: 0 18px 34px rgba(16, 53, 85, 0.28);
}

.button-secondary {
    background: var(--brand-blue);
    color: #fff;
}

.button-outline {
    border-color: rgba(15, 49, 99, 0.18);
    background: #fff;
    color: var(--brand-blue);
}

.button-outline-light {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.button-white {
    background: #fff;
    color: var(--brand-blue);
}

.button-ghost-light {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
    background: transparent;
}

.button-full {
    width: 100%;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 14px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-blue);
    margin: 5px auto;
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(34, 153, 145, 0.2), transparent 24%),
        linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue) 40%, var(--brand-green) 100%);
    color: #fff;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(6px);
    opacity: .35;
}

.hero::before {
    width: 420px;
    height: 420px;
    right: -140px;
    top: -120px;
    background: rgba(255, 255, 255, 0.13);
}

.hero::after {
    width: 280px;
    height: 280px;
    left: -80px;
    bottom: -90px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .95fr;
    gap: 44px;
    align-items: center;
    padding: 82px 0 74px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 89, 67, 0.1);
    color: var(--brand-green);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.section-kicker-light {
    background: rgba(255, 255, 255, 0.1);
    color: #d9edff;
}

.hero-copy h1,
.internal-hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.35rem, 4vw, 4.45rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.hero-copy p,
.final-cta-card p,
.portal-card p,
.internal-hero p,
.insight-card span {
    color: rgba(255, 255, 255, 0.82);
}

.hero-copy > p {
    max-width: 670px;
    font-size: 1.1rem;
    line-height: 1.85;
}

.hero-actions,
.portal-actions,
.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

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

.hero-points li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 500;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6be2cd, #ffffff);
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 36px;
    padding: 24px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.hero-logo-panel {
    background: #f0f2f3;
    border-radius: 28px;
    padding: 16px;
    min-height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-panel img {
    width: 100%;
    max-width: 620px;
    object-fit: contain;
}

.hero-insights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 20px 18px;
}

.insight-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.28rem;
    letter-spacing: -.02em;
}

.trust-bar {
    margin-top: -28px;
    position: relative;
    z-index: 2;
}

.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 20px 24px;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(215, 224, 230, 0.95);
}

.trust-bar strong {
    display: block;
    color: var(--brand-blue);
    margin-bottom: 6px;
}

.trust-bar span {
    color: var(--muted);
}

.section {
    padding: 92px 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.section-soft {
    background: linear-gradient(180deg, var(--soft-2), var(--soft));
}

.section-heading,
.content-block {
    max-width: 740px;
}

.section-heading h2,
.content-block h2,
.portal-card h2,
.final-cta-card h2,
.contact-copy h2,
.panel-card h3,
.internal-hero h1,
.article-page h2 {
    margin: 16px 0 16px;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -.04em;
    color: var(--text);
}

.portal-card h2,
.final-cta-card h2,
.internal-hero h1 {
    color: #fff;
}

.section-heading p,
.content-block p,
.panel-card p,
.contact-copy p,
.article-page p,
.article-page li,
.contact-form small,
.legislation-item span,
.portal-note {
    color: var(--muted);
}

.step-card p,
.contact-info-card span,
.faq-list p,
.logo-slot,
.service-card p {
    color: var(--muted);
}

.two-columns {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 44px;
}

.align-center {
    align-items: center;
}

.feature-grid,
.service-grid,
.steps-grid,
.logo-wall {
    display: grid;
    gap: 18px;
}

.feature-grid {
    grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.service-card,
.step-card,
.logo-slot,
.contact-info-card,
.panel-card,
.contact-form,
.faq-list details {
    background: #fff;
    border: 1px solid rgba(215, 224, 230, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.feature-card {
    padding: 24px;
}

.feature-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-accent));
    box-shadow: 0 0 0 7px rgba(15, 89, 67, 0.08);
}

.feature-card h3 {
    margin: 18px 0 0;
    font-size: 1.02rem;
    line-height: 1.45;
}

.service-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
}

.service-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    padding: 0;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -20px -60px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 89, 67, 0.11), transparent 64%);
}

.service-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 280px;
    padding: 28px;
}

.service-card.has-background-image {
    background-color: #d6dbe1;
    border-color: rgba(255, 255, 255, 0.12);
}

.service-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.01);
}

.service-card.has-background-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 23, 39, 0.28) 0%, rgba(8, 23, 39, 0.68) 100%);
    z-index: 1;
}

.service-card.has-background-image::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 64%);
}

.service-index {
    display: inline-flex;
    min-width: 52px;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--soft);
    color: var(--brand-blue);
    font-weight: 800;
    font-size: .92rem;
}

.service-card h3 {
    margin: 18px 0 12px;
    font-size: 1.28rem;
    letter-spacing: -.03em;
    color: var(--text);
}

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

.service-card.has-background-image h3,
.service-card.has-background-image p {
    color: #ffffff;
}

.service-card p,
.step-card p,
.contact-info-card span,
.faq-list p,
.logo-slot,
.portal-note,
.insight-card span {
    line-height: 1.75;
}

.portal-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 24px;
    align-items: stretch;
}

.portal-card {
    padding: 38px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    box-shadow: var(--shadow-lg);
}

.panel-card {
    padding: 32px;
}

.legislation-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.legislation-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 20px;
    background: var(--soft-2);
    border: 1px solid rgba(215, 224, 230, 0.9);
    transition: transform .2s ease, box-shadow .2s ease;
}

.legislation-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(12, 32, 52, 0.08);
}

.legislation-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.legislation-tag {
    min-width: 72px;
    text-align: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-blue);
    font-weight: 700;
    border: 1px solid rgba(15, 49, 99, 0.1);
}

.steps-grid {
    grid-template-columns: 1fr;
}

.step-card {
    padding: 24px 26px;
}

.step-number {
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    color: #fff;
    font-weight: 800;
}

.step-card h3 {
    margin: 16px 0 10px;
    font-size: 1.18rem;
    letter-spacing: -.02em;
}

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

.logo-slot {
    min-height: 148px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 22px;
    color: var(--brand-blue);
    font-weight: 700;
    text-align: left;
    line-height: 1.55;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    border-style: dashed;
}

.logo-slot-label {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    font-size: 1.02rem;
    color: inherit;
}

.logo-slot.has-background-image {
    align-items: flex-end;
    justify-content: flex-start;
    color: #fff;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.12);
    background-color: #d6dbe1;
    box-shadow: var(--shadow-md);
}

.logo-slot-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.01);
}

.logo-slot.has-background-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 23, 39, 0.16) 0%, rgba(8, 23, 39, 0.72) 100%);
    z-index: 1;
}

.faq-list {

    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.faq-list details {
    padding: 22px 24px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--text);
    list-style: none;
    position: relative;
    padding-right: 34px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: -1px;
    font-size: 1.4rem;
    color: var(--brand-blue);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.75;
}


.final-cta {
    padding-top: 0;
}

.final-cta-card {
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-blue));
    border-radius: 36px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.contact-grid {
    align-items: start;
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-info-card {
    display: block;
    padding: 20px 22px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.contact-info-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(12, 32, 52, 0.09);
}

.contact-info-card strong {
    display: block;
    color: var(--brand-blue);
    margin-bottom: 6px;
}

.contact-form {
    padding: 28px;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.two-up {
    grid-template-columns: repeat(2, 1fr);
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.field label {
    font-weight: 700;
    color: var(--text);
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid rgba(180, 193, 203, 0.95);
    border-radius: 16px;
    background: #fbfdff;
    min-height: 54px;
    padding: 14px 16px;
    color: var(--text);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(15, 49, 99, 0.4);
    box-shadow: 0 0 0 4px rgba(15, 49, 99, 0.08);
    background: #fff;
}

.internal-hero {
    background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-green));
    color: #fff;
    padding: 80px 0 52px;
}

.article-page {
    max-width: 900px;
}

.article-page h2 {
    font-size: 1.6rem;
    margin-top: 32px;
    margin-bottom: 10px;
    color: var(--brand-blue);
}

.site-footer {
    background: #0c1623;
    color: rgba(255, 255, 255, 0.78);
    padding-top: 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr .9fr .95fr;
    gap: 26px;
}

.footer-brand-block p,
.footer-links a,
.footer-contact-list span {
    color: rgba(255, 255, 255, 0.72);
}

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

.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1.02rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 22px 0 28px;
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: .95rem;
}

.back-top {
    color: #fff;
    font-weight: 700;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #18b660, #0d8f4b);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(6, 68, 36, 0.28);
}

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .08s;
}

.delay-2 {
    transition-delay: .16s;
}

.delay-3 {
    transition-delay: .24s;
}

@media (max-width: 1120px) {
    .header-inner {
        grid-template-columns: auto auto 1fr;
    }

    .menu-toggle {
        display: inline-block;
        order: 2;
        justify-self: end;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 24px;
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(215, 224, 230, 0.95);
    }

    .site-nav.is-open {
        display: flex;
    }

    .header-actions {
        justify-self: end;
    }

    .hero-grid,
    .two-columns,
    .portal-grid,
    .contact-grid,
    .final-cta-card,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-wall {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 78px;
    }

    .brand img,
    .footer-brand img {
        height: 44px;
    }

    .hide-mobile {
        display: none;
    }

    .hero-grid,
    .section,
    .internal-hero {
        padding-top: 74px;
    }

    .hero-grid {
        padding-bottom: 62px;
        gap: 28px;
    }

    .hero-insights,
    .feature-grid,
    .service-grid,
    .two-up,
    .logo-wall {
        grid-template-columns: 1fr;
    }

    .trust-bar {
        margin-top: -18px;
    }

    .trust-bar-inner,
    .contact-form,
    .portal-card,
    .panel-card,
    .final-cta-card {
        padding: 22px;
    }

    .section {
        padding: 76px 0;
    }

    .hero-copy > p,
    .section-heading p,
    .content-block p,
    .contact-copy p,
    .article-page p {
        font-size: 1rem;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        min-height: 54px;
        padding-inline: 18px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .header-inner {
        gap: 10px;
    }

    .button {
        width: 100%;
    }

    .hero-actions,
    .portal-actions,
    .final-cta-actions {
        width: 100%;
    }

    .hero-logo-panel {
        min-height: 112px;
    }

    .hero-card,
    .hero-logo-panel,
    .feature-card,
    .service-card,
    .step-card,
    .logo-slot,
    .contact-info-card,
    .contact-form,
    .faq-list details,
    .final-cta-card,
    .portal-card,
    .panel-card,
    .trust-bar-inner {
        border-radius: 22px;
    }

    .logo-slot {
        min-height: 104px;
    }

    .floating-whatsapp span {
        font-size: .92rem;
    }
}

.service-card.has-background-image .service-index {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.logo-slot:not(.has-background-image) {
    align-items: flex-start;
    justify-content: flex-start;
}

.faq-list p {
    color: var(--muted);
}


@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
