:root {
    --color-primary: #1F4E8C;
    --color-secondary: #FF6B00;
    --color-accent: #00A6A6;
    --color-dark: #0A2540;
    --color-muted: #6C7A89;
    --color-bg: #F7F9FC;
    --color-white: #FFFFFF;
    --color-green: #2ECC71;
    --color-amber: #FFC107;
    --font-base: 'Inter', 'IBM Plex Sans', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-dark);
    background: var(--color-bg);
    line-height: 1.6;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-secondary);
}

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

.container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header {
    background: var(--color-white);
    border-bottom: 1px solid #dbe2f1;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.logo-image {
    width: 48px;
    height: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-label span {
    width: 26px;
    height: 2px;
    background: var(--color-dark);
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.site-nav a {
    font-weight: 500;
    color: var(--color-dark);
    padding: 0.25rem 0;
    position: relative;
}

.site-nav a.active::after,
.site-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
}

.nav-close {
    display: none;
}

main {
    display: block;
}

.section {
    padding: 5rem 0;
}

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

.section-dark {
    background: var(--color-dark);
    color: var(--color-white);
}

.section-dark a {
    color: var(--color-white);
    text-decoration: underline;
}

.section-dark .list-lines span,
.section-dark .list-lines.light span {
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--color-muted);
}

.section-header.light p {
    color: #d0d7e5;
}

.hero {
    padding: 5rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.25rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.eyebrow.light {
    color: #FF9A4D;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 0.75rem;
}

.hero-bullets li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-dark);
    font-weight: 500;
}

.hero-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 10px;
    height: 2px;
    background: var(--color-accent);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
}

.button.primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.button.primary:hover {
    background: var(--color-secondary);
}

.button.ghost {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.button.ghost:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.metric-item {
    background: var(--color-white);
    padding: 1.1rem;
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(15, 31, 55, 0.08);
    border-left: 4px solid var(--color-accent);
}

.section-dark .metric-item {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--color-secondary);
}

.metric-figure {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.section-dark .metric-figure {
    color: var(--color-white);
}

.metric-label {
    display: block;
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-top: 0.35rem;
}

.section-dark .metric-label {
    color: #d0d7e5;
}

.hero-note {
    margin-top: 1.5rem;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(9, 32, 69, 0.09);
}

.hero-note p {
    margin: 0;
    color: var(--color-dark);
    font-weight: 500;
}

.feature-grid,
.operations-grid,
.compliance-grid,
.insights-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: start;
}

.text-block p {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.list-lines {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 1rem;
}

.list-lines li {
    border-left: 3px solid var(--color-accent);
    padding-left: 1rem;
    color: var(--color-dark);
}

.list-lines span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.list-lines.light li {
    border-color: rgba(255, 255, 255, 0.25);
    color: #e3e9f5;
}

.list-lines.light span {
    color: #ffffff;
}

.stat-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    margin-top: 1rem;
}

.stat-card {
    background: var(--color-white);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 12px 28px rgba(14, 36, 66, 0.08);
    border: 1px solid #e1e6ef;
}

.section-dark .stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.section-dark .stat-value {
    color: var(--color-white);
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-top: 0.35rem;
}

.section-dark .stat-label {
    color: #d0d7e5;
}

.image-block img.rounded {
    border-radius: 1.2rem;
}

.responsive-image.shadow {
    box-shadow: 0 20px 40px rgba(15, 31, 55, 0.16);
    border-radius: 1.2rem;
}

.badge-card {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.badge-card span {
    background: var(--color-bg);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--color-white);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(13, 42, 78, 0.08);
    border: 1px solid #e0e6f2;
}

.section-dark .service-card,
.service-card.dark {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-white);
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-muted);
    margin-bottom: 1.25rem;
}

.section-dark .service-card p,
.service-card.dark p {
    color: #dfe5f3;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-dark);
}

.service-card.dark .service-list li,
.section-dark .service-list li {
    color: #e5ebf5;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
}

.service-card.dark .service-list li::before,
.section-dark .service-list li::before {
    border-color: #FF9A4D;
}

.service-meta {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-muted);
    display: grid;
    gap: 0.4rem;
}

.table-scroll {
    overflow-x: auto;
    border-radius: 1rem;
    box-shadow: 0 16px 32px rgba(11, 27, 48, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
}

caption {
    text-align: left;
    font-weight: 600;
    padding: 1rem 1.5rem;
    color: var(--color-dark);
}

thead {
    background: var(--color-primary);
    color: var(--color-white);
}

th,
td {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.95rem;
}

tbody tr:nth-child(every) {
    background: var(--color-bg);
}

tbody tr:nth-child(even) {
    background: #eef3fb;
}

tbody tr:hover {
    background: rgba(31, 78, 140, 0.08);
}

.insight-note,
.compliance-note {
    margin-top: 1.5rem;
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: 1.1rem;
    color: var(--color-dark);
    border-left: 4px solid var(--color-accent);
}

.section-dark .compliance-note {
    background: rgba(255, 255, 255, 0.08);
    color: #e6edf7;
    border-left-color: var(--color-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: 1.2rem;
    padding: 1.75rem;
    box-shadow: 0 12px 28px rgba(11, 31, 58, 0.08);
    border: 1px solid #e1e7f1;
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.faq-item p {
    margin: 0;
    color: var(--color-muted);
}

.contact-section .contact-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--color-muted);
}

.contact-meta {
    display: grid;
    gap: 1rem;
}

.contact-meta a,
.contact-meta p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0.35rem 0 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 40px rgba(12, 29, 55, 0.1);
    border: 1px solid #dde3ef;
}

.form-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-field.full {
    grid-column: 1 / -1;
}

label {
    font-weight: 600;
    color: var(--color-dark);
}

input,
select,
textarea {
    border: 1px solid #cbd3e1;
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: var(--font-base);
    background: var(--color-bg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(31, 78, 140, 0.15);
    background: var(--color-white);
}

textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin: 0;
}

.form-disclaimer a {
    color: var(--color-primary);
    text-decoration: underline;
}

.site-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2.5rem;
}

.footer-logo-image {
    width: 96px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #d2daea;
    margin-bottom: 1.5rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.trust-badges span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
}

.footer-menu h4,
.footer-legal h4,
.footer-contact h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #9fb3da;
}

.footer-menu ul,
.footer-legal ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.footer-menu a,
.footer-legal a,
.footer-contact a {
    color: #dfe6f5;
    font-size: 0.95rem;
}

.footer-address {
    margin-top: 1rem;
    color: #dfe6f5;
    font-size: 0.95rem;
}

.footer-bottom {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: #bfcce5;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 420px;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1.75rem;
    border-radius: 1.25rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1000;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-content h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.cookie-content p {
    margin: 0 0 1.2rem;
    font-size: 0.9rem;
    color: #d4ddee;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cookie-details {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    display: none;
    font-size: 0.85rem;
    color: #e4ebf6;
}

.cookie-details.expanded {
    display: block;
}

.contact-info-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.info-card {
    background: var(--color-white);
    border-radius: 1.1rem;
    padding: 2rem;
    box-shadow: 0 16px 38px rgba(15, 32, 61, 0.1);
    border: 1px solid #dde4f3;
}

.info-card h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

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

.info-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.info-list li span {
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
    color: var(--color-dark);
}

.info-list li a {
    font-weight: 600;
}

.legal-page {
    padding: 5rem 0;
}

.legal-page h1 {
    margin-bottom: 1rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    margin-bottom: 1rem;
}

.legal-section p,
.legal-section ul,
.legal-section li {
    color: var(--color-muted);
}

.legal-section ul {
    padding-left: 1.2rem;
    display: grid;
    gap: 0.5rem;
}

.legal-section ul li {
    list-style: disc;
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: underline;
}

.message-output {
    margin-top: 2rem;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 1.2rem;
    box-shadow: 0 16px 32px rgba(12, 35, 63, 0.08);
    border: 1px solid #dde3ef;
}

.message-output h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.message-output p {
    margin: 0;
    color: var(--color-dark);
    white-space: pre-wrap;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
    color: var(--color-white);
}

.cta-center a {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .nav-toggle-label {
        display: flex;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        background: rgba(10, 37, 64, 0.98);
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4rem 2rem;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .site-nav a {
        font-size: 1.4rem;
        color: var(--color-white);
    }

    .nav-toggle:checked ~ .site-nav {
        display: flex;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
        color: var(--color-white);
        cursor: pointer;
    }

    .hero-grid,
    .feature-grid,
    .operations-grid,
    .compliance-grid,
    .insights-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-media {
        order: -1;
    }

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

    .stat-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

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

    .cookie-banner {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

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

    .footer-brand,
    .footer-menu,
    .footer-legal,
    .footer-contact {
        text-align: left;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .metric-item {
        padding: 1rem;
    }

    .cookie-banner {
        bottom: 1rem;
    }
}