:root {
    --zm-bg:          #0B1120;
    --zm-bg-alt:      #0F172A;
    --zm-bg-card:     #1C2434;
    --zm-bg-dark:     #111827;
    --zm-border:      #2D3748;
    --zm-text:        #F9FAFB;
    --zm-text-muted:  #CBD5E1;
    --zm-text-dim:    #64748B;
    --zm-red:         #DC2626;
    --zm-red-hover:   #B91C1C;
    --zm-red-glow:    rgba(220, 38, 38, 0.15);
    --zm-green:       #22C55E;
    --zm-footer-bg:   #060D1A;
    --zm-radius:      8px;
    --zm-radius-lg:   14px;
    --zm-shadow:      0 4px 20px rgba(0, 0, 0, 0.4);
    --zm-shadow-card: 0 2px 12px rgba(0, 0, 0, 0.3);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0B1120;
    color: #F9FAFB;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #DC2626;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #B91C1C;
}

h1, h2, h3, h4, h5, h6 {
    color: #F9FAFB;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
}

p {
    color: #CBD5E1;
    line-height: 1.65;
}

.zm-section {
    padding: 96px 0;
}

.zm-section--alt {
    background-color: #0F172A;
}

.zm-section--compact {
    padding: 64px 0;
}

.zm-section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #DC2626;
    background-color: rgba(220, 38, 38, 0.12);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.zm-section-header {
    margin-bottom: 3rem;
}

.zm-section-header .zm-section-label {
    display: block;
    margin-bottom: 12px;
}

.zm-section-title {
    color: #F9FAFB;
    margin-bottom: 1rem;
}

.zm-section-desc {
    color: #CBD5E1;
    font-size: 1.125rem;
    max-width: 640px;
}

.c-btn {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 6px;
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.c-btn--primary {
    background-color: #DC2626;
    color: #F9FAFB;
    padding: 13px 30px;
}

.c-btn--primary:hover {
    background-color: #B91C1C;
    color: #F9FAFB;
}

.c-btn--primary-lg {
    background-color: #DC2626;
    color: #F9FAFB;
    padding: 16px 44px;
}

.c-btn--primary-lg:hover {
    background-color: #B91C1C;
    color: #F9FAFB;
}

.c-btn--outline {
    background-color: transparent;
    color: #F9FAFB;
    border: 1px solid #2D3748;
    padding: 13px 30px;
}

.c-btn--outline:hover {
    background-color: #1C2434;
    color: #F9FAFB;
    border-color: #2D3748;
}

.c-btn--outline-white {
    background-color: transparent;
    color: #F9FAFB;
    border: 1px solid rgba(249,250,251,0.5);
    padding: 13px 30px;
}

.c-btn--outline-white:hover {
    background-color: rgba(249,250,251,0.1);
    color: #F9FAFB;
    border-color: #F9FAFB;
}

.c-btn--sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.c-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background-color: rgba(11, 17, 32, 0.95);
    border-bottom: 1px solid #2D3748;
    backdrop-filter: blur(8px);
}

.c-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c-nav__logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: #F9FAFB;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.c-nav__logo span {
    color: #DC2626;
}

.c-nav__links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.c-nav__links li a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #CBD5E1;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.c-nav__links li a:hover {
    color: #F9FAFB;
    background-color: rgba(255,255,255,0.06);
}

.c-nav__links li a.c-nav__cta {
    background-color: #DC2626;
    color: #F9FAFB;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
}

.c-nav__links li a.c-nav__cta:hover {
    background-color: #B91C1C;
}

.c-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.c-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #F9FAFB;
    transition: all 0.2s ease;
}

@media (max-width: 991px) {
    .c-nav__toggle {
        display: flex;
    }

    .c-nav__links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background-color: #0B1120;
        border-bottom: 1px solid #2D3748;
        flex-direction: column;
        padding: 16px;
        gap: 4px;
    }

    .c-nav__links.is-open {
        display: flex;
    }

    .c-nav__links li {
        width: 100%;
    }

    .c-nav__links li a {
        display: block;
        padding: 12px 16px;
    }
}

.c-hero {
    padding: 120px 0 100px;
    background-color: #0B1120;
    position: relative;
    overflow: hidden;
    margin-top: 72px;
}

.c-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(45, 55, 72, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 55, 72, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.c-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #DC2626;
    background-color: rgba(220, 38, 38, 0.12);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.c-hero__title {
    margin-bottom: 24px;
    color: #F9FAFB;
}

.c-hero__subtitle {
    font-size: 1.125rem;
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.c-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 40px;
}

.c-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.c-hero__trust-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: #CBD5E1;
}

.c-hero__trust-item strong {
    color: #DC2626;
    font-size: 1rem;
    display: block;
}

.c-hero__image-wrap {
    position: relative;
}

.c-hero__image {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #2D3748;
    box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.c-hero__kpi {
    position: absolute;
    background-color: #1C2434;
    border: 1px solid #2D3748;
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.c-hero__kpi--tl {
    top: -16px;
    left: -20px;
}

.c-hero__kpi--br {
    bottom: -16px;
    right: -20px;
}

.c-hero__kpi-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #22C55E;
    display: block;
}

.c-hero__kpi-label {
    font-size: 0.75rem;
    color: #CBD5E1;
    white-space: nowrap;
}

.c-hero--page {
    padding: 80px 0 60px;
    text-align: center;
    background-color: #0B1120;
    margin-top: 72px;
}

.c-hero--page h1 {
    margin-bottom: 16px;
}

.c-hero--page .c-hero__subtitle {
    max-width: 560px;
    margin: 0 auto;
}

.c-stats {
    background-color: #0F172A;
    padding: 64px 0;
    border-top: 1px solid #2D3748;
    border-bottom: 1px solid #2D3748;
}

.c-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.c-stats__item {
    text-align: center;
    padding: 24px;
    border-right: 1px solid #2D3748;
}

.c-stats__item:last-child {
    border-right: none;
}

.c-stats__number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #DC2626;
    margin-bottom: 8px;
}

.c-stats__number--green {
    color: #22C55E;
}

.c-stats__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #CBD5E1;
}

@media (max-width: 767px) {
    .c-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .c-stats__item {
        border-right: none;
        border-bottom: 1px solid #2D3748;
    }

    .c-stats__item:nth-child(odd) {
        border-right: 1px solid #2D3748;
    }

    .c-stats__item:last-child,
    .c-stats__item:nth-last-child(2) {
        border-bottom: none;
    }
}

.c-problem {
    padding: 96px 0;
    background-color: #0B1120;
}

.c-problem__text h2 {
    margin-bottom: 20px;
}

.c-problem__text p {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.c-problem__icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.c-problem__icon-card {
    background-color: #1C2434;
    border: 1px solid #2D3748;
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.c-problem__icon-card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.c-problem__icon-card i {
    font-size: 1.75rem;
    color: #DC2626;
    margin-bottom: 12px;
    display: block;
}

.c-problem__icon-card span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #CBD5E1;
}

.c-features {
    padding: 96px 0;
    background-color: #0B1120;
}

.c-features--alt {
    background-color: #0F172A;
}

.c-features__grid {
    display: grid;
    gap: 1.5rem;
}

.c-features__grid--6 {
    grid-template-columns: repeat(3, 1fr);
}

.c-features__card {
    background-color: #1C2434;
    border: 1px solid #2D3748;
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.c-features__card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.c-features__icon {
    width: 52px;
    height: 52px;
    background-color: rgba(220, 38, 38, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.c-features__icon i {
    font-size: 1.25rem;
    color: #DC2626;
}

.c-features__name {
    margin-bottom: 12px;
}

.c-features__text {
    color: #CBD5E1;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.c-features--alternating .c-features__row {
    padding: 64px 0;
    border-bottom: 1px solid #2D3748;
}

.c-features--alternating .c-features__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.c-features--alternating .c-features__name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.c-features--alternating .c-features__text {
    font-size: 1rem;
    margin-bottom: 16px;
}

.c-features__img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #2D3748;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

@media (max-width: 991px) {
    .c-features__grid--6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .c-features__grid--6 {
        grid-template-columns: 1fr;
    }
}

.c-testimonials {
    padding: 96px 0;
    background-color: #0F172A;
}

.c-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.c-testimonials__card {
    background-color: #1C2434;
    border: 1px solid #2D3748;
    border-left: 3px solid #DC2626;
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.c-testimonials__quote {
    font-size: 1rem;
    line-height: 1.7;
    color: #CBD5E1;
    margin-bottom: 24px;
    flex: 1;
}

.c-testimonials__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.c-testimonials__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #2D3748;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.c-testimonials__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #F9FAFB;
    display: block;
}

.c-testimonials__role {
    font-size: 0.8rem;
    color: #64748B;
    display: block;
}

@media (max-width: 991px) {
    .c-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

.c-cta {
    padding: 80px 0;
    background-color: #DC2626;
    text-align: center;
}

.c-cta__title {
    color: #F9FAFB;
    margin-bottom: 16px;
}

.c-cta__desc {
    color: rgba(249,250,251,0.85);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.c-cta__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.c-blog-preview {
    padding: 96px 0;
    background-color: #0B1120;
}

.c-blog-grid__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.c-blog-grid__card {
    background-color: #1C2434;
    border: 1px solid #2D3748;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.2s ease;
}

.c-blog-grid__card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.c-blog-grid__thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.c-blog-grid__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.c-blog-grid__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #DC2626;
    background-color: rgba(220, 38, 38, 0.1);
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.c-blog-grid__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #F9FAFB;
    margin-bottom: 10px;
    line-height: 1.4;
}

.c-blog-grid__title a {
    color: #F9FAFB;
    text-decoration: none;
}

.c-blog-grid__title a:hover {
    color: #DC2626;
}

.c-blog-grid__date {
    font-size: 0.8rem;
    color: #64748B;
    display: block;
    margin-bottom: 10px;
}

.c-blog-grid__excerpt {
    font-size: 0.9rem;
    color: #CBD5E1;
    margin-bottom: 16px;
    flex: 1;
}

.c-blog-grid__read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: #DC2626;
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.c-blog-grid__read-more:hover {
    color: #B91C1C;
}

@media (max-width: 991px) {
    .c-blog-grid__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .c-blog-grid__list {
        grid-template-columns: 1fr;
    }
}

.c-footer {
    background-color: #060D1A;
    padding: 64px 0 32px;
    border-top: 1px solid #2D3748;
}

.c-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.c-footer__logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: #F9FAFB;
    letter-spacing: -0.02em;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}

.c-footer__logo span {
    color: #DC2626;
}

.c-footer__tagline {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 0;
}

.c-footer__col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #F9FAFB;
    margin-bottom: 16px;
}

.c-footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.c-footer__col ul li a {
    font-size: 0.9rem;
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.c-footer__col ul li a:hover {
    color: #F9FAFB;
}

.c-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #CBD5E1;
}

.c-footer__contact-item i {
    color: #DC2626;
    width: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.c-footer__contact-item a {
    color: #CBD5E1;
    text-decoration: none;
}

.c-footer__contact-item a:hover {
    color: #F9FAFB;
}

.c-footer__bottom {
    padding-top: 24px;
    border-top: 1px solid #2D3748;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.c-footer__bottom p {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 0;
}

.c-footer__legal {
    display: flex;
    gap: 20px;
}

.c-footer__legal a {
    font-size: 0.85rem;
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.c-footer__legal a:hover {
    color: #CBD5E1;
}

@media (max-width: 991px) {
    .c-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 575px) {
    .c-footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .c-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

.c-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #111827;
    border-top: 1px solid #2D3748;
    padding: 20px 0;
    display: none;
}

.c-cookie.is-visible {
    display: block;
}

.c-cookie__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.c-cookie__text {
    flex: 1;
    min-width: 240px;
    font-size: 0.875rem;
    color: #CBD5E1;
    margin-bottom: 0;
}

.c-cookie__text a {
    color: #DC2626;
    text-decoration: underline;
}

.c-cookie__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.c-contact-section {
    padding: 96px 0;
    background-color: #0B1120;
}

.c-contact__title {
    margin-bottom: 32px;
    color: #F9FAFB;
}

.c-contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.c-contact__form .row {
    margin: 0 -8px;
}

.c-contact__form .col-md-6 {
    padding: 0 8px;
}

.c-contact__form input,
.c-contact__form select,
.c-contact__form textarea {
    width: 100%;
    background-color: #1C2434;
    border: 1px solid #2D3748;
    border-radius: 6px;
    padding: 12px 18px;
    color: #F9FAFB;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    outline: none;
}

.c-contact__form input:focus,
.c-contact__form select:focus,
.c-contact__form textarea:focus {
    border-color: #DC2626;
}

.c-contact__form input::placeholder,
.c-contact__form textarea::placeholder {
    color: #64748B;
}

.c-contact__form select option {
    background-color: #1C2434;
}

.c-contact__info-title {
    color: #F9FAFB;
    margin-bottom: 28px;
    font-size: 1.25rem;
}

.c-contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.c-contact__info-item i {
    color: #DC2626;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.c-contact__info-item a,
.c-contact__info-item span {
    color: #CBD5E1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.c-contact__info-item a:hover {
    color: #F9FAFB;
}

.c-map {
    padding: 0;
    overflow: hidden;
}

.c-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.c-platform-overview {
    padding: 0 0 96px;
    background-color: #0B1120;
}

.c-platform-overview img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #2D3748;
    box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.c-modules {
    padding: 96px 0;
    background-color: #0F172A;
}

.c-modules__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.c-modules__card {
    background-color: #1C2434;
    border: 1px solid #2D3748;
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.2s ease;
}

.c-modules__card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.c-modules__icon {
    width: 52px;
    height: 52px;
    background-color: rgba(220, 38, 38, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.c-modules__icon i {
    font-size: 1.25rem;
    color: #DC2626;
}

.c-modules__title {
    margin-bottom: 12px;
}

.c-modules__desc {
    color: #CBD5E1;
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .c-modules__grid {
        grid-template-columns: 1fr;
    }
}

.c-integrations {
    padding: 96px 0;
    background-color: #0B1120;
}

.c-integrations__icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.c-integrations__icon-item {
    background-color: #1C2434;
    border: 1px solid #2D3748;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.c-integrations__icon-item:hover {
    border-color: rgba(220, 38, 38, 0.2);
}

.c-integrations__icon-item i {
    font-size: 1.75rem;
    color: #DC2626;
    margin-bottom: 12px;
    display: block;
}

.c-integrations__icon-item span {
    font-size: 0.85rem;
    color: #CBD5E1;
    font-weight: 500;
}

.c-accordion {
    padding: 96px 0;
    background-color: #0F172A;
}

.c-accordion__item {
    background-color: #1C2434;
    border: 1px solid #2D3748;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.c-accordion__header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.c-accordion__header i.icon-main {
    color: #DC2626;
    width: 24px;
    flex-shrink: 0;
}

.c-accordion__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #F9FAFB;
    flex: 1;
}

.c-accordion__chevron {
    color: #64748B;
    transition: transform 0.2s ease;
    font-size: 0.85rem;
}

.c-accordion__item.is-open .c-accordion__chevron {
    transform: rotate(180deg);
}

.c-accordion__body {
    padding: 0 24px 24px;
    display: none;
}

.c-accordion__item.is-open .c-accordion__body {
    display: block;
}

.c-accordion__body p {
    color: #CBD5E1;
    font-size: 0.95rem;
}

.c-security {
    padding: 96px 0;
    background-color: #0B1120;
}

.c-security__checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.c-security__checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #CBD5E1;
    font-size: 0.95rem;
}

.c-security__checklist li i {
    color: #22C55E;
    flex-shrink: 0;
}

.c-security__panel {
    background-color: #1C2434;
    border: 1px solid #2D3748;
    border-radius: 14px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.c-security__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.c-security__badge i {
    font-size: 2rem;
    color: #DC2626;
}

.c-security__badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #CBD5E1;
}

.c-story {
    padding: 96px 0;
    background-color: #0B1120;
}

.c-story__text p {
    font-size: 1rem;
    color: #CBD5E1;
    margin-bottom: 20px;
    line-height: 1.75;
}

.c-story__image {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #2D3748;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.c-values {
    padding: 96px 0;
    background-color: #0F172A;
}

.c-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.c-values__card {
    background-color: #1C2434;
    border: 1px solid #2D3748;
    border-radius: 14px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.2s ease;
}

.c-values__card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.c-values__icon {
    width: 64px;
    height: 64px;
    background-color: rgba(220, 38, 38, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.c-values__icon i {
    font-size: 1.5rem;
    color: #DC2626;
}

.c-values__title {
    margin-bottom: 12px;
}

.c-values__desc {
    font-size: 0.95rem;
    color: #CBD5E1;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .c-values__grid {
        grid-template-columns: 1fr;
    }
}

.c-team-section {
    padding: 96px 0;
    background-color: #0B1120;
}

.c-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.c-team__grid--ext {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.c-team__card {
    background-color: #1C2434;
    border: 1px solid #2D3748;
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
}

.c-team__card:hover {
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.c-team__photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
    border: 3px solid #2D3748;
}

.c-team__card--lead .c-team__photo {
    width: 140px;
    height: 140px;
}

.c-team__name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #F9FAFB;
}

.c-team__role {
    font-size: 0.85rem;
    color: #DC2626;
    font-weight: 500;
    margin-bottom: 12px;
}

.c-team__bio {
    font-size: 0.875rem;
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 0;
}

.c-team__hiring {
    padding: 64px 0;
    background-color: #0F172A;
    text-align: center;
}

.c-team__hiring h3 {
    margin-bottom: 12px;
}

.c-team__hiring p {
    margin-bottom: 24px;
    color: #CBD5E1;
}

@media (max-width: 991px) {
    .c-team__grid--ext {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .c-team__grid {
        grid-template-columns: 1fr;
    }

    .c-team__grid--ext {
        grid-template-columns: 1fr 1fr;
    }
}

.c-legal {
    padding: 80px 0;
}

.c-legal__content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.c-legal__content h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #F9FAFB;
}

.c-legal__content h3 {
    font-size: 1.125rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #F9FAFB;
}

.c-legal__content p {
    color: #CBD5E1;
    margin-bottom: 16px;
    line-height: 1.75;
}

.c-legal__content ul {
    color: #CBD5E1;
    padding-left: 24px;
    margin-bottom: 16px;
    line-height: 1.75;
}

.c-legal__content ul li {
    margin-bottom: 8px;
}

.c-legal__content a {
    color: #DC2626;
    text-decoration: underline;
}

.c-legal__meta {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #2D3748;
}

.c-404 {
    padding: 160px 0 120px;
    background-color: #0B1120;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.c-404__inner {
    width: 100%;
}

.c-404__code {
    font-size: clamp(6rem, 18vw, 10rem);
    font-weight: 800;
    color: #DC2626;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    display: block;
}

.c-404__title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.c-404__desc {
    font-size: 1.125rem;
    color: #CBD5E1;
    margin-bottom: 40px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.c-article {
    padding: 80px 0;
    background-color: #0B1120;
}

.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.c-article__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.c-article__cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #DC2626;
    background-color: rgba(220, 38, 38, 0.1);
    padding: 4px 12px;
    border-radius: 999px;
}

.c-article__date {
    font-size: 0.85rem;
    color: #64748B;
}

.c-article__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: #F9FAFB;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.c-article__lead {
    font-size: 1.125rem;
    color: #CBD5E1;
    line-height: 1.75;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2D3748;
}

.c-article__body {
    color: #CBD5E1;
    line-height: 1.8;
}

.c-article__body h2 {
    font-size: 1.6rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #F9FAFB;
}

.c-article__body h3 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #F9FAFB;
}

.c-article__body p {
    margin-bottom: 20px;
    color: #CBD5E1;
}

.c-article__body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #2D3748;
    margin: 32px 0;
}

.c-article__body ul,
.c-article__body ol {
    padding-left: 24px;
    margin-bottom: 20px;
    color: #CBD5E1;
}

.c-article__body ul li,
.c-article__body ol li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.c-article__body blockquote {
    border-left: 3px solid #DC2626;
    padding-left: 20px;
    margin: 32px 0;
    font-size: 1.05rem;
    color: #CBD5E1;
    font-style: italic;
}

.c-article__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid #2D3748;
}

.c-article__nav-link {
    display: block;
    background-color: #1C2434;
    border: 1px solid #2D3748;
    border-radius: 10px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.c-article__nav-link:hover {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.c-article__nav-link span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 6px;
}

.c-article__nav-link strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #F9FAFB;
    line-height: 1.4;
}

.c-article__nav-link--next {
    text-align: right;
}

.c-blog-back {
    padding: 32px 0 0;
    background-color: #0B1120;
}

.c-blog-back a {
    font-size: 0.9rem;
    color: #CBD5E1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.c-blog-back a:hover {
    color: #F9FAFB;
}

.c-pagination {
    padding: 48px 0 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.c-pagination a,
.c-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #2D3748;
    background-color: #1C2434;
    color: #CBD5E1;
    text-decoration: none;
    transition: all 0.2s ease;
}

.c-pagination a:hover {
    border-color: #DC2626;
    color: #DC2626;
}

.c-pagination span.active {
    background-color: #DC2626;
    border-color: #DC2626;
    color: #F9FAFB;
}

.c-page-hero {
    padding: 100px 0 72px;
    background-color: #0B1120;
    text-align: center;
    margin-top: 72px;
    border-bottom: 1px solid #2D3748;
}

.c-page-hero h1 {
    margin-bottom: 16px;
}

.c-page-hero p {
    font-size: 1.125rem;
    color: #CBD5E1;
    max-width: 560px;
    margin: 0 auto;
}

.c-article-hero {
    padding: 100px 0 60px;
    background-color: #0B1120;
    text-align: center;
    margin-top: 72px;
    border-bottom: 1px solid #2D3748;
}

@media (max-width: 991px) {
    .c-hero .row {
        flex-direction: column;
        gap: 48px;
    }
}

/* === Logo v2: nav background is always dark on exofleets.org; always show light variant ===
   body.light-nav reserved for any future light-bg page overrides. */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
.logo-img--dark  { display: none !important; }
.logo-img--light { display: inline-block !important; }
body.light-nav .logo-img--dark  { display: inline-block !important; }
body.light-nav .logo-img--light { display: none !important; }
/* Footer logo always shows light variant */
footer .logo-img { max-height: 48px; }
