:root {
    /* Brand Colors from Manual */
    --color-green: #00E56D;
    --color-green-light: #26ff8a;
    --color-bg-dark: #100C24;
    --color-bg-navy: #140F2D;
    --color-bg-card: rgba(20, 15, 45, 0.7);
    --color-white: #FFFFFF;
    
    /* Secondary Accents */
    --color-cyan: #1BE7FF;
    --color-yellow: #F4C95D;
    --color-purple: #4C01A2;

    /* Text & Borders */
    --color-text-main: #FFFFFF;
    --color-text-muted: rgba(255, 255, 255, 0.75);
    --color-text-dim: rgba(255, 255, 255, 0.5);
    --color-border: rgba(255, 255, 255, 0.09);
    --color-border-hover: rgba(0, 229, 109, 0.35);

    /* Typography from Brand Manual */
    --font-heading: 'Titillium Web', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Design Details */
    --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-dark);
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Typography Hierarchy (Manual: Titillium Web Semibold) */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.text-green {
    color: var(--color-green);
}

.font-semibold {
    font-weight: 500;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: 0.85rem;
}

.section-heading {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.section-subtext {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
}

/* Container */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

/* Header & Nav (Ultra-Slim & Minimalist) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0;
    background: transparent;
    z-index: 1000;
    border-bottom: none;
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 0.35rem 0;
    background: rgba(16, 12, 36, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1;
}

.nav-link:hover {
    color: var(--color-green);
}

/* Nav Actions & Language Switcher */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2px 4px;
    gap: 2px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--color-text-dim);
    font-family: var(--font-heading);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 2px 7px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.1;
}

.lang-btn:hover {
    color: var(--color-white);
}

.lang-btn.active {
    background: var(--color-green);
    color: #0c091f;
    font-weight: 700;
    box-shadow: 0 1px 6px rgba(0, 229, 109, 0.35);
}

.lang-divider {
    color: var(--color-border);
    font-size: 0.7rem;
    user-select: none;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
    background: var(--color-green);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background: var(--color-green);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 7, 24, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 340px);
    height: 100vh;
    background: #120d29;
    border-left: 1px solid var(--color-border);
    z-index: 999;
    padding: 6rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: var(--color-green);
    padding-left: 0.5rem;
}

.mobile-drawer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-lang-switcher {
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}

.btn-mobile-cta {
    width: 100%;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-icon {
    width: 17px;
    height: 17px;
    transition: transform var(--transition);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-primary {
    background-color: var(--color-green);
    color: #0c091f;
    box-shadow: 0 4px 18px rgba(0, 229, 109, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 229, 109, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline-nav {
    padding: 0.28rem 0.85rem;
    font-size: 0.8rem;
    border-color: var(--color-green);
    color: var(--color-green);
    background: transparent;
    border-radius: 4px;
    line-height: 1.15;
}

.btn-outline-nav:hover {
    background: var(--color-green);
    color: #0c091f;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

/* Hero Section (Fits full viewport screen) */
.hero-section {
    min-height: calc(100vh - 45px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 55px;
    padding-bottom: 35px;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    perspective: 1000px;
}

.hero-centered {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-brand-wrap {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-main-logo {
    height: clamp(82px, 11vw, 130px);
    width: auto;
    object-fit: contain;
    animation: heroLogoFloat 4.8s ease-in-out infinite;
    will-change: transform, filter;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.hero-main-logo:hover {
    transform: scale(1.06) translateY(-5px);
    filter: drop-shadow(0 20px 45px rgba(0, 229, 109, 0.65)) drop-shadow(0 0 30px rgba(27, 231, 255, 0.45));
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 12px 30px rgba(0, 229, 109, 0.38));
    }
    50% {
        transform: translateY(-8px) rotate(0.8deg) scale(1.02);
        filter: drop-shadow(0 22px 50px rgba(0, 229, 109, 0.58)) drop-shadow(0 0 25px rgba(27, 231, 255, 0.35));
    }
}

.hero-subline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-green);
    letter-spacing: 0.5px;
    margin-bottom: 1.35rem;
    background: rgba(0, 229, 109, 0.08);
    border: 1px solid rgba(0, 229, 109, 0.22);
    padding: 0.4rem 1.15rem;
    border-radius: 20px;
}

.subline-sep {
    color: var(--color-green);
    opacity: 0.6;
}

.hero-title {
    font-size: clamp(2.35rem, 4.8vw, 4.15rem);
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 1.35rem;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: clamp(1.1rem, 1.7vw, 1.28rem);
    color: var(--color-text-muted);
    font-weight: 300;
    max-width: 680px;
    margin: 0 auto 2.15rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* About Section (Fits in 1 screen cleanly) */
.about-section {
    min-height: calc(100vh - 45px);
    display: flex;
    align-items: center;
    padding: 3.5rem 0 2.5rem;
    position: relative;
    box-sizing: border-box;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-main .section-heading {
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    line-height: 1.18;
    margin-bottom: 0.85rem;
}

.lead-paragraph {
    font-size: 1.05rem;
    color: var(--color-white);
    font-weight: 300;
    line-height: 1.55;
    margin-top: 0.75rem;
}

.lead-paragraph strong {
    font-weight: 500;
    color: var(--color-green);
}

.side-paragraph {
    font-size: 0.96rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 1.15rem;
}

.about-quote-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-green);
    padding: 1rem 1.4rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quote-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-green);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.25rem;
}

.quote-body {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--color-white);
    font-weight: 300;
    font-style: italic;
    line-height: 1.45;
}

/* Integrated Stats inside About */
.about-stats-wrapper {
    padding-top: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.25rem;
}

.stat-box {
    border-left: 2px solid var(--color-border);
    padding-left: 1.15rem;
    transition: var(--transition);
}

.stat-box:hover {
    border-left-color: var(--color-green);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--color-green);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.2rem;
}

.stat-detail {
    font-size: 0.82rem;
    color: var(--color-text-dim);
    line-height: 1.4;
}

/* Trajectory / Partners */
.trajectory-section {
    padding: 5rem 0 4rem;
    background: transparent;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    will-change: transform;
}

.track-left {
    animation: scrollLeft 32s linear infinite;
}

.track-right {
    animation: scrollRight 32s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.partner-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    height: 72px;
    min-width: 165px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
}

.partner-card:hover {
    background: rgba(0, 229, 109, 0.05);
    border-color: rgba(0, 229, 109, 0.3);
    box-shadow: 0 8px 24px rgba(0, 229, 109, 0.15);
    transform: translateY(-2px);
}

.partner-img {
    height: 36px;
    width: auto;
    max-width: 145px;
    object-fit: contain;
    filter: brightness(0.92) grayscale(0.15);
    transition: var(--transition);
}

.partner-card:hover .partner-img {
    filter: brightness(1.15) grayscale(0) drop-shadow(0 0 10px rgba(0, 229, 109, 0.35));
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.trajectory-note {
    font-size: 0.92rem;
    color: var(--color-text-dim);
    margin-top: 1rem;
}

/* Services Section */
.services-section {
    padding: 6.5rem 0 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.2rem 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 185px;
}

.service-card:hover {
    border-color: rgba(0, 229, 109, 0.4);
    background: rgba(255, 255, 255, 0.045);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 229, 109, 0.12);
}

.service-index {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 0.85rem;
}

.service-title {
    font-size: 1.32rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--color-white);
    line-height: 1.25;
}

.service-tagline {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--color-green);
    line-height: 1.4;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.pill-list span {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    color: var(--color-white);
}

/* Statement Callout */
.statement-card {
    margin-top: 4.5rem;
    background: linear-gradient(135deg, rgba(0, 229, 109, 0.06) 0%, rgba(76, 1, 162, 0.12) 100%);
    border: 1px solid rgba(0, 229, 109, 0.25);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.statement-kicker {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-green);
    display: block;
    margin-bottom: 0.75rem;
}

.statement-heading {
    font-size: clamp(1.6rem, 2.5vw, 2.35rem);
    margin-bottom: 0.75rem;
}

.statement-text {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Events Deck */
.events-section {
    padding: 7.5rem 0;
    background: transparent;
}

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

.event-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.event-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.event-highlight {
    border-color: rgba(0, 229, 109, 0.3);
    background: linear-gradient(180deg, rgba(0, 229, 109, 0.05) 0%, var(--color-bg-card) 100%);
}

.event-type-badge {
    align-self: flex-start;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-green);
    background: rgba(0, 229, 109, 0.1);
    border: 1px solid rgba(0, 229, 109, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 0.85rem;
}

.event-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-cta-wrap {
    margin-top: auto;
}

.btn-event-visit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-green);
    text-decoration: none;
    transition: var(--transition);
}

.btn-event-visit:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.btn-arrow {
    width: 16px;
    height: 16px;
}

/* Why Paraguay (Pillars) */
.why-section {
    padding: 7.5rem 0;
}

.why-lead-text {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 750px;
    margin: 1rem auto 3.5rem;
    font-weight: 300;
}

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

.pillar-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    transition: var(--transition);
}

.pillar-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-3px);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 1rem;
}

.pillar-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.pillar-card p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.why-footer-box {
    margin-top: 4.5rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-footer-text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 1.75rem;
}

.why-callout {
    padding-top: 1.25rem;
}

.why-pre {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
    display: block;
    margin-bottom: 0.35rem;
}

.why-slogan {
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 600;
    color: var(--color-green);
}

/* CTA Section */
.cta-section {
    padding: 7rem 0 5rem;
    background: transparent;
}

.cta-logo-wrap {
    margin-bottom: 2.25rem;
}

.cta-logo {
    height: 105px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 8px 24px rgba(0, 229, 109, 0.2));
    transition: var(--transition);
}

.cta-logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 12px 32px rgba(0, 229, 109, 0.35));
}

.cta-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-motto {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 2.75rem;
}

/* Footer */
.site-footer {
    padding: 3.5rem 0 4rem;
    background: transparent;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-bio {
    color: var(--color-text-dim);
    font-size: 0.88rem;
    max-width: 400px;
}

.footer-col-right {
    text-align: right;
}

.footer-tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-green);
    margin-bottom: 0.25rem;
}

.copyright {
    color: var(--color-text-dim);
    font-size: 0.85rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-col-right {
        text-align: center;
    }
}

@media (max-width: 860px) {
    .site-header {
        padding: 0.6rem 0;
    }

    .nav-container {
        justify-content: flex-end;
    }

    .hero-section {
        padding-top: 85px;
        padding-bottom: 50px;
        min-height: auto;
    }

    .hero-main-logo {
        height: 75px;
    }

    .hero-title {
        font-size: 2.15rem;
    }

    .hero-desc {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .cta-logo {
        height: 75px;
    }

    .footer-logo {
        height: 44px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions .btn-outline-nav {
        display: none;
    }

    .nav-actions .lang-switcher {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

@media (max-width: 480px) {
    .hero-main-logo {
        height: 60px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subline {
        font-size: 0.8rem;
        padding: 0.3rem 0.85rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
