/* ==========================================================================
   CAELMS v2.0 — Design System (Green Brand Identity)
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* — Brand Greens (extracted from logo) — */
    --clr-primary: #0E2B3D;
    --clr-primary-light: #163B52;
    --clr-green: #318B38;
    --clr-green-light: #4CAF50;
    --clr-green-dark: #267530;
    --clr-green-pale: #E8F5E9;
    --clr-teal: #5B9A6F;
    --clr-accent: #43A047;
    --clr-accent-light: #66BB6A;

    /* — Neutrals — */
    --clr-white: #FFFFFF;
    --clr-bg: #F7FAF8;
    --clr-bg-alt: #EFF5F0;
    --clr-surface: #FFFFFF;
    --clr-border: #DCE8DE;
    --clr-text: #1A2E23;
    --clr-text-muted: #5A7162;
    --clr-text-light: #8DA497;
    --clr-overlay: rgba(14, 43, 61, .7);

    /* — Functional — */
    --clr-success: #10B981;
    --clr-danger: #EF4444;
    --clr-warning: #F59E0B;

    /* — Typography — */
    --ff-heading: 'Plus Jakarta Sans', sans-serif;
    --ff-body: 'DM Sans', sans-serif;
    --fs-xs: .75rem;
    --fs-sm: .875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.25rem;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --lh-tight: 1.2;
    --lh-base: 1.6;

    /* — Spacing — */
    --sp-xs: .25rem;
    --sp-sm: .5rem;
    --sp-md: 1rem;
    --sp-lg: 1.5rem;
    --sp-xl: 2rem;
    --sp-2xl: 3rem;
    --sp-3xl: 4rem;
    --sp-4xl: 6rem;
    --sp-section: 5rem;

    /* — Layout — */
    --container-max: 1200px;
    --container-narrow: 880px;
    --navbar-height: 72px;

    /* — Borders — */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* — Shadows — */
    --shadow-sm: 0 2px 4px rgba(14, 43, 61, .02), 0 1px 2px rgba(14, 43, 61, .03);
    --shadow-md: 0 4px 12px rgba(14, 43, 61, .04), 0 2px 4px rgba(14, 43, 61, .03);
    --shadow-lg: 0 12px 24px rgba(14, 43, 61, .05), 0 4px 8px rgba(14, 43, 61, .04);
    --shadow-xl: 0 24px 48px rgba(14, 43, 61, .08), 0 12px 16px rgba(14, 43, 61, .04);

    /* — Transitions — */
    --ease-out: cubic-bezier(.25, .46, .45, .94);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
    --tr-fast: 180ms var(--ease-out);
    --tr-base: 300ms var(--ease-out);
    --tr-slow: 500ms var(--ease-out);
}

/* ---------- DARK MODE ---------- */
[data-theme="dark"] {
    --clr-bg: #0B1317;
    --clr-bg-alt: #101B22;
    --clr-surface: #14222A;
    --clr-border: #1E313D;
    --clr-text: #EAEFF1;
    --clr-text-muted: #A3B5BF;
    --clr-text-light: #728A99;
    --clr-primary: #06111A;
    --clr-primary-light: #0B1E2B;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, .2);
    --shadow-md: 0 6px 16px rgba(0, 0, 0, .3);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, .4);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
    color: var(--clr-text);
}

[data-theme="dark"] .card {
    background: var(--clr-surface);
    border-color: var(--clr-border);
}

[data-theme="dark"] .navbar {
    background: rgba(13, 27, 18, .95);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(10, 20, 14, .98);
}

[data-theme="dark"] .footer {
    background: var(--clr-primary);
}

/* --------------------------------------------------------------------------
   1. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: var(--lh-base);
    color: var(--clr-text);
    background: var(--clr-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--clr-green);
    color: var(--clr-white);
}

a {
    color: var(--clr-green);
    text-decoration: none;
    transition: color var(--tr-fast);
}

a:hover {
    color: var(--clr-green-light);
}

a:focus-visible {
    outline: 2px solid var(--clr-green);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-heading);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    color: var(--clr-primary);
}

h1 {
    font-size: var(--fs-4xl)
}

h2 {
    font-size: var(--fs-3xl)
}

h3 {
    font-size: var(--fs-2xl)
}

h4 {
    font-size: var(--fs-xl)
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

button:focus-visible {
    outline: 2px solid var(--clr-green);
    outline-offset: 3px;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--sp-section) 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --------------------------------------------------------------------------
   2. PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--clr-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .5s, visibility .5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader__text {
    margin-top: var(--sp-md);
    font-family: var(--ff-heading);
    font-weight: var(--fw-bold);
    font-size: var(--fs-lg);
    color: var(--clr-green);
    letter-spacing: 2px;
}

.preloader__bar {
    width: 120px;
    height: 3px;
    background: var(--clr-border);
    border-radius: 3px;
    margin-top: var(--sp-md);
    overflow: hidden;
}

.preloader__bar-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--clr-green), var(--clr-green-light));
    border-radius: 3px;
    animation: preloaderBar 1.5s ease forwards;
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.08);
        opacity: .7
    }
}

@keyframes preloaderBar {
    to {
        width: 100%
    }
}

/* --------------------------------------------------------------------------
   3. SCROLL PROGRESS BAR
   -------------------------------------------------------------------------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--clr-primary);
    z-index: 1001;
    width: 0;
    transition: width 60ms linear;
}

/* --------------------------------------------------------------------------
   4. NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: background var(--tr-base), box-shadow var(--tr-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

[data-theme="dark"] .navbar {
    border-bottom-color: rgba(255, 255, 255, .05);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    text-decoration: none;
    transition: opacity var(--tr-fast);
}

.navbar__logo:hover {
    opacity: .85;
}

.navbar__logo img {
    height: 42px;
    width: auto;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
}

.navbar__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: var(--sp-sm) var(--sp-md);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--clr-text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color var(--tr-fast), background var(--tr-fast);
    letter-spacing: .3px;
}

.navbar__link:hover,
.navbar__link:focus-visible {
    color: var(--clr-green);
    background: var(--clr-green-pale);
}

[data-theme="dark"] .navbar__link:hover {
    background: rgba(49, 139, 56, .12);
}

.navbar__link.active {
    color: var(--clr-green);
    font-weight: var(--fw-semibold);
}

.navbar__link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--clr-green);
    border-radius: 2px;
}

.navbar__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-xs);
    padding: 10px 22px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--clr-white);
    background: var(--clr-green);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), background 300ms var(--ease-out);
    box-shadow: 0 4px 12px rgba(14, 43, 61, .1);
}

.navbar__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 43, 61, .15);
    background: var(--clr-green-dark);
    color: var(--clr-white);
}

/* Dark Mode Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    transition: background var(--tr-fast), color var(--tr-fast);
}

.theme-toggle:hover {
    background: var(--clr-green-pale);
    color: var(--clr-green);
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(49, 139, 56, .12);
}

.theme-toggle .icon-sun {
    display: none;
}

.theme-toggle .icon-moon {
    display: block;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: none;
}

/* Hamburger */
.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    transition: background var(--tr-fast);
}

.navbar__toggle:hover {
    background: var(--clr-green-pale);
}

.navbar__toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--tr-base), opacity var(--tr-fast);
}

.navbar__toggle-bar+.navbar__toggle-bar {
    margin-top: 5px;
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media(max-width:768px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: var(--navbar-height);
        right: 0;
        width: 100%;
        max-width: 360px;
        height: calc(100dvh - var(--navbar-height));
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--sp-lg);
        background: var(--clr-surface);
        border-left: 1px solid var(--clr-border);
        transform: translateX(100%);
        transition: transform var(--tr-base);
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0, 0, 0, .08);
        z-index: 999;
    }

    .navbar__menu.open {
        transform: translateX(0);
    }

    .navbar__link {
        font-size: var(--fs-base);
        padding: var(--sp-md);
        border-radius: var(--radius-md);
    }

    .navbar__cta {
        margin-top: var(--sp-md);
        justify-content: center;
        padding: 14px 24px;
        font-size: var(--fs-base);
    }
}

/* --------------------------------------------------------------------------
   5. HERO
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 90lvh;
    padding-top: calc(var(--navbar-height) + var(--sp-2xl));
    padding-bottom: var(--sp-3xl);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(247, 250, 248, 0.88) 0%, rgba(232, 245, 233, 0.92) 100%),
        url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero__bg::before {
    display: none;
}

[data-theme="dark"] .hero__bg {
    background-image:
        linear-gradient(135deg, rgba(11, 19, 23, 0.9) 0%, rgba(20, 34, 42, 0.95) 100%),
        url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

[data-theme="dark"] .hero__bg::before {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s var(--ease-out) forwards;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--clr-surface);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: var(--clr-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--sp-lg);
    border: 1px solid var(--clr-border);
}

.hero__title {
    font-size: clamp(var(--fs-3xl), 6vw, var(--fs-4xl));
    line-height: var(--lh-tight);
    margin-bottom: var(--sp-md);
    color: var(--clr-primary);
}

[data-theme="dark"] .hero__title {
    color: var(--clr-text);
}

.hero__title-accent {
    color: var(--clr-green);
    position: relative;
    display: inline-block;
    min-width: 280px;
    text-align: left;
}

.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: var(--clr-green);
    vertical-align: middle;
    margin-left: 4px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero__subtitle {
    font-size: clamp(var(--fs-base), 2vw, var(--fs-lg));
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--sp-xl);
    max-width: 680px;
    margin-inline: auto;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--sp-md);
    margin-bottom: var(--sp-3xl);
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-xl);
    animation: fadeInUp 1s var(--ease-out) 200ms forwards;
    opacity: 0;
}

.hero__stat {
    background: var(--clr-surface);
    padding: var(--sp-xl) var(--sp-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    min-width: 220px;
    text-align: center;
    border: 1px solid var(--clr-border);
    transition: transform 300ms var(--ease-out);
}

.hero__stat:hover {
    transform: translateY(-4px);
}

.hero__stat-number {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--clr-green);
    margin-bottom: var(--sp-xs);
    line-height: 1;
}

.hero__stat-label {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    font-weight: var(--fw-medium);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-sm);
    padding: 14px 30px;
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), background 300ms var(--ease-out);
    cursor: pointer;
    border: none;
    line-height: 1;
}

.btn--primary {
    color: var(--clr-white);
    background: var(--clr-green);
    box-shadow: 0 4px 12px rgba(14, 43, 61, .1);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 43, 61, .15);
    background: var(--clr-green-dark);
    color: var(--clr-white);
}

.btn--outline {
    color: var(--clr-primary);
    background: transparent;
    border: 1.5px solid var(--clr-primary);
}

.btn--outline:hover {
    background: rgba(14, 43, 61, .08);
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    transform: translateY(-2px);
}

.btn--secondary {
    color: var(--clr-white);
    background: var(--clr-primary);
    box-shadow: 0 4px 14px rgba(14, 43, 61, .2);
}

.btn--secondary:hover {
    background: var(--clr-primary-light);
    transform: translateY(-2px);
    color: var(--clr-white);
}

.btn--lg {
    padding: 16px 36px;
    font-size: var(--fs-md);
}

/* --------------------------------------------------------------------------
   7. SECTION HEADERS
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--sp-3xl);
}

.section-header__overline {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-green);
    margin-bottom: var(--sp-sm);
}

.section-header__title {
    font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
    margin-bottom: var(--sp-md);
}

.section-header__desc {
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: 1.7;
}



/* --------------------------------------------------------------------------
   8. CARDS
   -------------------------------------------------------------------------- */
.cards-grid {
    display: grid;
    gap: var(--sp-xl);
}

.cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.cards-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    position: relative;
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: var(--sp-2xl);
    border: 1px solid var(--clr-border);
    transition: transform 350ms var(--ease-out), box-shadow 350ms var(--ease-out), border-color 350ms var(--ease-out);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(49, 139, 56, .3);
}

.card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--clr-green-pale);
    margin-bottom: var(--sp-lg);
    font-size: var(--fs-xl);
    color: var(--clr-green);
    transition: background var(--tr-base);
}

[data-theme="dark"] .card__icon {
    background: rgba(49, 139, 56, .15);
}

.card:hover .card__icon {
    background: rgba(49, 139, 56, .18);
}

.card__title {
    font-size: var(--fs-lg);
    margin-bottom: var(--sp-sm);
    color: var(--clr-primary);
}

[data-theme="dark"] .card__title {
    color: var(--clr-text);
}

.card__text {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.card--numbered {
    padding-left: calc(var(--sp-2xl) + 10px);
}

.card--numbered::before {
    content: attr(data-number);
    position: absolute;
    top: var(--sp-xl);
    left: var(--sp-xl);
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
    color: rgba(49, 139, 56, .08);
    line-height: 1;
}

/* --------------------------------------------------------------------------
   9. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
    background-image:
        linear-gradient(135deg, rgba(14, 43, 61, 0.85) 0%, rgba(22, 59, 82, 0.9) 100%),
        url('../img/cta-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
    padding: var(--sp-3xl) var(--sp-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    display: none;
}

.cta-banner__title {
    font-size: clamp(var(--fs-xl), 3.5vw, var(--fs-2xl));
    color: var(--clr-white);
    margin-bottom: var(--sp-md);
    position: relative;
    z-index: 1;
}

.cta-banner__text {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, .65);
    max-width: 520px;
    margin: 0 auto var(--sp-xl);
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 2;
}

.cta-banner__text {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, .65);
    max-width: 520px;
    margin: 0 auto var(--sp-xl);
    position: relative;
}

/* --------------------------------------------------------------------------
   10. PARTNERS CAROUSEL
   -------------------------------------------------------------------------- */
.partners {
    overflow: hidden;
    padding: var(--sp-xl) 0;
}

.partners__track {
    display: flex;
    gap: var(--sp-3xl);
    animation: partnersScroll 25s linear infinite;
    width: max-content;
}

.partners__track:hover {
    animation-play-state: paused;
}

.partners__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    opacity: .5;
    filter: grayscale(100%);
    transition: opacity var(--tr-base), filter var(--tr-base);
}

.partners__item:hover {
    opacity: 1;
    filter: grayscale(0);
}

.partners__item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.partners__name {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--clr-text-muted);
    white-space: nowrap;
}

@keyframes partnersScroll {
    to {
        transform: translateX(-50%)
    }
}

/* --------------------------------------------------------------------------
   11. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-item {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--sp-md);
    overflow: hidden;
    transition: border-color var(--tr-base), box-shadow var(--tr-base);
}

.faq-item:hover,
.faq-item.open {
    border-color: var(--clr-green);
    box-shadow: var(--shadow-sm);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--sp-lg) var(--sp-xl);
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: var(--clr-text);
    text-align: left;
    cursor: pointer;
    gap: var(--sp-md);
    background: none;
    border: none;
}

.faq-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-green-pale);
    border-radius: var(--radius-sm);
    color: var(--clr-green);
    transition: transform var(--tr-base), background var(--tr-base);
    font-size: var(--fs-sm);
}

[data-theme="dark"] .faq-item__icon {
    background: rgba(49, 139, 56, .15);
}

.faq-item.open .faq-item__icon {
    transform: rotate(45deg);
    background: var(--clr-green);
    color: var(--clr-white);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease-out), padding .4s var(--ease-out);
}

.faq-item.open .faq-item__answer {
    max-height: 300px;
}

.faq-item__answer-inner {
    padding: 0 var(--sp-xl) var(--sp-lg);
    font-size: var(--fs-base);
    color: var(--clr-text-muted);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   12. PAGE HERO
   -------------------------------------------------------------------------- */
.page-hero {
    padding: calc(var(--navbar-height) + var(--sp-3xl)) 0 var(--sp-3xl);
    background: var(--clr-primary);
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero--quienes {
    background-image:
        linear-gradient(135deg, rgba(14, 43, 61, 0.85), rgba(14, 43, 61, 0.9)),
        url('../img/hero-quienes.png');
}

.page-hero--servicios {
    background-image:
        linear-gradient(135deg, rgba(14, 43, 61, 0.85), rgba(14, 43, 61, 0.9)),
        url('../img/hero-servicios.png');
}

.page-hero--contacto {
    background-image:
        linear-gradient(135deg, rgba(14, 43, 61, 0.85), rgba(14, 43, 61, 0.9)),
        url('../img/hero-contacto.png');
}

.page-hero::before {
    display: none;
}

.page-hero__title {
    font-size: clamp(var(--fs-2xl), 4.5vw, var(--fs-3xl));
    color: var(--clr-white);
    position: relative;
    margin-bottom: var(--sp-md);
}

.page-hero__subtitle {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, .6);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* --------------------------------------------------------------------------
   13. ABOUT — Mission + Objectives
   -------------------------------------------------------------------------- */
.mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3xl);
    align-items: center;
}

.mission__overline {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-green);
    margin-bottom: var(--sp-md);
    display: block;
}

.mission__title {
    font-size: var(--fs-2xl);
    margin-bottom: var(--sp-lg);
}

.mission__text {
    font-size: var(--fs-base);
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.mission__visual {
    position: relative;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
    border-radius: var(--radius-xl);
    padding: var(--sp-3xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    overflow: hidden;
}

.mission__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.mission__visual-logo {
    position: relative;
    z-index: 1;
    max-width: 160px;
    opacity: .8;
}

.mission__visual-text {
    font-family: var(--ff-heading);
    font-size: var(--fs-4xl);
    font-weight: var(--fw-extrabold);
    color: var(--clr-green-light);
    opacity: .2;
    letter-spacing: 4px;
    z-index: 1;
}

/* Objectives */
.objectives-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-lg);
    counter-reset: obj;
}

.objective-item {
    display: flex;
    gap: var(--sp-lg);
    padding: var(--sp-xl);
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
}

.objective-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-green);
}

.objective-item__number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--clr-white);
    background: var(--clr-green);
    border-radius: var(--radius-sm);
}

.objective-item__text {
    font-size: var(--fs-base);
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   14. TIMELINE
   -------------------------------------------------------------------------- */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--clr-green), var(--clr-green-pale));
    border-radius: 2px;
}

.timeline__item {
    position: relative;
    margin-bottom: var(--sp-2xl);
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--clr-green);
    border: 3px solid var(--clr-bg);
    border-radius: 50%;
    z-index: 1;
}

.timeline__year {
    font-family: var(--ff-heading);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--clr-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--sp-xs);
}

.timeline__title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    color: var(--clr-text);
    margin-bottom: var(--sp-xs);
}

.timeline__text {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   15. CONTACT
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--sp-3xl);
    align-items: start;
}

.contact-info {
    padding: var(--sp-2xl);
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
    border-radius: var(--radius-xl);
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    display: none;
}

.contact-info__title {
    font-size: var(--fs-2xl);
    color: var(--clr-white);
    margin-bottom: var(--sp-sm);
}

.contact-info__subtitle {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, .6);
    margin-bottom: var(--sp-2xl);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-md);
    margin-bottom: var(--sp-xl);
    position: relative;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    font-size: var(--fs-md);
}

.contact-info__label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 4px;
}

.contact-info__value {
    font-size: var(--fs-base);
    color: var(--clr-white);
}

.contact-info__value a {
    color: var(--clr-green-light);
    transition: opacity var(--tr-fast);
}

.contact-info__value a:hover {
    opacity: .8;
}

.contact-social {
    display: flex;
    gap: var(--sp-sm);
    margin-top: var(--sp-2xl);
    padding-top: var(--sp-xl);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.contact-social__link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, .6);
    font-size: var(--fs-md);
    text-decoration: none;
    transition: background var(--tr-fast), color var(--tr-fast);
}

.contact-social__link:hover {
    background: var(--clr-green);
    color: var(--clr-white);
}

/* Form */
.contact-form-wrapper {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: var(--sp-2xl);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper__title {
    font-size: var(--fs-xl);
    margin-bottom: var(--sp-xl);
}

.form-group {
    margin-bottom: var(--sp-lg);
}

.form-group__label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--clr-text);
    margin-bottom: var(--sp-sm);
}

.form-group__label span {
    color: var(--clr-danger);
}

.form-group__input,
.form-group__textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    color: var(--clr-text);
    background: var(--clr-bg);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
    outline: none;
}

.form-group__input:focus,
.form-group__textarea:focus {
    border-color: var(--clr-green);
    box-shadow: 0 0 0 3px rgba(49, 139, 56, .1);
}

.form-group__input.error,
.form-group__textarea.error {
    border-color: var(--clr-danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .1);
}

.form-group__input.valid,
.form-group__textarea.valid {
    border-color: var(--clr-success);
}

.form-group__textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group__error {
    font-size: var(--fs-xs);
    color: var(--clr-danger);
    margin-top: 6px;
    display: none;
}

.form-group__error.show {
    display: block;
}

.form-group__counter {
    font-size: var(--fs-xs);
    color: var(--clr-text-light);
    text-align: right;
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
}

.ohnohoney {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.form-submit {
    width: 100%;
    padding: 14px 24px;
    margin-top: var(--sp-sm);
}

/* --------------------------------------------------------------------------
   16. TOAST NOTIFICATIONS
   -------------------------------------------------------------------------- */
.toast-container {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    padding: 14px 22px;
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--clr-green);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--clr-text);
    pointer-events: auto;
    animation: toastIn .4s var(--ease-spring) both;
    max-width: 420px;
}

.toast--error {
    border-left-color: var(--clr-danger);
}

.toast--success {
    border-left-color: var(--clr-success);
}

.toast.hiding {
    animation: toastOut .3s var(--ease-out) forwards;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.95)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes toastOut {
    to {
        opacity: 0;
        transform: translateY(20px) scale(.95)
    }
}

/* --------------------------------------------------------------------------
   17. NEWS CARDS
   -------------------------------------------------------------------------- */
.news-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    transition: transform var(--tr-base), box-shadow var(--tr-base);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--clr-bg-alt);
}

.news-card__body {
    padding: var(--sp-lg);
}

.news-card__date {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--clr-green);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: var(--sp-sm);
}

.news-card__title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--sp-sm);
    color: var(--clr-text);
}

.news-card__text {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--clr-green);
    margin-top: var(--sp-md);
    transition: gap var(--tr-fast);
}

.news-card__link:hover {
    gap: 8px;
}

/* --------------------------------------------------------------------------
   18. WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 900;
}

.whatsapp-btn__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: var(--radius-full);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
    transition: transform var(--tr-fast), box-shadow var(--tr-fast);
}

.whatsapp-btn__link:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .5);
    color: #fff;
}

.whatsapp-btn__tooltip {
    position: absolute;
    left: 72px;
    bottom: 50%;
    transform: translateY(50%);
    background: var(--clr-surface);
    color: var(--clr-text);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--tr-fast), visibility var(--tr-fast);
    pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-btn__tooltip {
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------------------
   19. COOKIE CONSENT
   -------------------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
    padding: var(--sp-lg) var(--sp-xl);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: fadeInUp .4s var(--ease-out);
}

.cookie-banner__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-xl);
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    flex: 1;
    min-width: 260px;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--sp-sm);
}

.cookie-banner__btn {
    padding: 10px 22px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: background var(--tr-fast), transform var(--tr-fast);
}

.cookie-banner__btn--accept {
    background: var(--clr-green);
    color: var(--clr-white);
}

.cookie-banner__btn--accept:hover {
    background: var(--clr-green-light);
}

.cookie-banner__btn--reject {
    background: var(--clr-bg-alt);
    color: var(--clr-text-muted);
}

.cookie-banner__btn--reject:hover {
    background: var(--clr-border);
}

/* --------------------------------------------------------------------------
   20. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background: var(--clr-primary);
    color: rgba(255, 255, 255, .6);
    padding-top: var(--sp-3xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--sp-2xl);
    padding-bottom: var(--sp-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer__brand-logo {
    height: 36px;
    width: auto;
    margin-bottom: var(--sp-md);
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer__brand-desc {
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: var(--sp-lg);
}

.footer__social {
    display: flex;
    gap: var(--sp-sm);
}

.footer__social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: var(--fs-sm);
    transition: background var(--tr-fast), color var(--tr-fast);
}

.footer__social-link:hover {
    background: var(--clr-green);
    color: var(--clr-white);
}

.footer__col-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--clr-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--sp-lg);
}

.footer__link {
    display: block;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    padding: 6px 0;
    transition: color var(--tr-fast), padding-left var(--tr-fast);
}

.footer__link:hover {
    color: var(--clr-green-light);
    padding-left: 4px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-xl) 0;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, .35);
}

.footer__legal-links {
    display: flex;
    gap: var(--sp-lg);
}

.footer__legal-links a {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    transition: color var(--tr-fast);
}

.footer__legal-links a:hover {
    color: rgba(255, 255, 255, .7);
}

/* --------------------------------------------------------------------------
   21. BACK TO TOP
   -------------------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-green);
    color: var(--clr-white);
    border-radius: var(--radius-md);
    font-size: var(--fs-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--tr-base), visibility var(--tr-base), transform var(--tr-base), background var(--tr-fast);
    cursor: pointer;
    z-index: 900;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--clr-green-light);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   22. SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal[data-delay="1"] {
    transition-delay: .1s
}

.reveal[data-delay="2"] {
    transition-delay: .2s
}

.reveal[data-delay="3"] {
    transition-delay: .3s
}

.reveal[data-delay="4"] {
    transition-delay: .4s
}

/* --------------------------------------------------------------------------
   23. RESPONSIVE
   -------------------------------------------------------------------------- */
@media(max-width:1024px) {
    .cards-grid--3 {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr
    }

    .mission {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    :root {
        --sp-section: 3.5rem
    }

    h1 {
        font-size: var(--fs-2xl)
    }

    h2 {
        font-size: var(--fs-xl)
    }

    h3 {
        font-size: var(--fs-lg)
    }

    .cards-grid--3,
    .cards-grid--2 {
        grid-template-columns: 1fr
    }

    .objectives-list {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .hero__stats {
        flex-direction: column;
        gap: var(--sp-lg)
    }

    .footer__grid {
        grid-template-columns: 1fr
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--sp-md);
        text-align: center
    }

    .footer__legal-links {
        justify-content: center
    }

    .cta-banner {
        padding: var(--sp-2xl) var(--sp-lg)
    }

    .whatsapp-btn__tooltip {
        display: none
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 var(--sp-md)
    }

    .hero__actions {
        flex-direction: column
    }

    .hero__actions .btn {
        width: 100%
    }
}

@media print {

    .navbar,
    .back-to-top,
    .navbar__toggle,
    .whatsapp-btn,
    .cookie-banner,
    .preloader,
    .scroll-progress {
        display: none !important
    }

    body {
        background: #fff;
        color: #000
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
        background: #fff
    }

    .hero__title,
    .page-hero__title {
        color: #000
    }
}