/* ============================================
   ELECTRO.EU v3 – MODERN DYNAMIC EDITION
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Modern Palette */
    --bg-deep: #050816;
    --bg-primary: #0b1120;
    --bg-secondary: #111827;
    --bg-card: rgba(17, 24, 39, .7);
    --bg-card-solid: #151d2e;
    --bg-glass: rgba(255, 255, 255, .03);
    --border: rgba(255, 255, 255, .06);

    /* Multi-accent gradient */
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 35%, #a855f7 60%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #6366f1 100%);
    --gradient-3: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #3b82f6 100%);

    /* Individual accents */
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --emerald: #10b981;
    --pink: #ec4899;

    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --white: #ffffff;

    /* Typography */
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-y: 120px;
    --container: 1220px;

    --ease: cubic-bezier(.4, 0, .2, 1);
    --dur: .4s;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--bg-deep);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   ANIMATED BACKGROUND (particles / orbs)
   ============================================ */
#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Floating gradient orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .12;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--purple);
    top: -100px;
    left: -100px;
    animation: orbFloat1 18s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    bottom: 10%;
    right: -80px;
    animation: orbFloat2 22s ease-in-out infinite;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--pink);
    top: 50%;
    left: 40%;
    animation: orbFloat3 25s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(80px, 60px) scale(1.1);
    }

    66% {
        transform: translate(-40px, 100px) scale(.9);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-60px, -40px) scale(1.15);
    }

    66% {
        transform: translate(50px, -80px) scale(.85);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(70px, -50px) scale(1.05);
    }

    66% {
        transform: translate(-80px, 30px) scale(.95);
    }
}

/* ============================================
   FADE-IN + SLIDE ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(.85);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 8, 22, .6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--dur);
}

.header.scrolled {
    background: rgba(5, 8, 22, .9);
    box-shadow: 0 4px 40px rgba(0, 0, 0, .5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
}

.logo .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(59, 130, 246, .3);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, .3);
    }

    50% {
        box-shadow: 0 0 30px rgba(99, 102, 241, .5);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    position: relative;
    padding: 8px 16px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: color var(--dur);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    border-radius: 2px;
    transition: width .3s var(--ease), left .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
    left: 20%;
}

.lang-toggle {
    display: flex;
    gap: 2px;
    margin-left: 12px;
    background: rgba(255, 255, 255, .04);
    border-radius: 10px;
    padding: 3px;
    border: 1px solid var(--border);
}

.lang-toggle button {
    padding: 6px 14px;
    font-size: .8rem;
    font-weight: 600;
    border-radius: 8px;
    background: transparent;
    color: var(--text-muted);
    transition: all var(--dur);
}

.lang-toggle button.active {
    background: var(--gradient-2);
    color: var(--white);
    box-shadow: 0 0 16px rgba(59, 130, 246, .25);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--dur), opacity var(--dur);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.25) saturate(.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(5, 8, 22, .95) 0%, rgba(5, 8, 22, .5) 50%, rgba(5, 8, 22, .85) 100%);
    z-index: 1;
}

/* Animated mesh gradient */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    z-index: 1;
    background:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, .08) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(6, 182, 212, .06) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(236, 72, 153, .05) 0%, transparent 40%);
    animation: meshMove 15s ease-in-out infinite;
}

@keyframes meshMove {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-5%, -3%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 100px 0 180px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 24px;
    background: rgba(99, 102, 241, .1);
    border: 1px solid rgba(99, 102, 241, .2);
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--purple);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, .2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(99, 102, 241, 0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content h1 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--gradient-2);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    transition: all var(--dur) var(--ease);
    box-shadow: 0 4px 24px rgba(59, 130, 246, .3);
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s;
}

.btn-gradient:hover::before {
    opacity: 1;
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(59, 130, 246, .45);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all var(--dur) var(--ease);
    backdrop-filter: blur(8px);
}

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

/* ============================================
   STATS COUNTER BAR
   ============================================ */
.stats-bar {
    position: relative;
    z-index: 3;
    margin-top: -60px;
    padding-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.stat-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background var(--dur);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(255, 255, 255, .03);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 4px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services {
    padding: var(--section-y) 0;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all var(--dur) var(--ease);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: var(--gradient-2);
    z-index: -1;
    opacity: 0;
    transition: opacity .4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(59, 130, 246, .15);
}

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.4) saturate(.7);
    transition: all .6s var(--ease);
}

.service-card:hover img {
    filter: brightness(.5) saturate(.9);
    transform: scale(1.05);
}

.service-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 22, .1) 0%, rgba(5, 8, 22, .88) 100%);
}

.service-card .card-body {
    position: relative;
    z-index: 2;
    padding: 28px;
}

.service-card .card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.service-card .card-body p {
    font-size: .88rem;
    color: var(--text-secondary);
}

.service-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, .25);
}

/* ============================================
   SECTION HEADING
   ============================================ */
.section-heading {
    text-align: center;
    margin-bottom: 56px;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-heading h2 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Glowing divider line */
.glow-divider {
    width: 60px;
    height: 3px;
    margin: 16px auto 0;
    background: var(--gradient-2);
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(59, 130, 246, .3);
}

/* ============================================
   INNOVATION
   ============================================ */
.innovation {
    padding: var(--section-y) 0;
    position: relative;
    z-index: 2;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.innovation-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all var(--dur) var(--ease);
}

.innovation-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, .3);
    box-shadow: 0 20px 60px rgba(6, 182, 212, .12);
}

.innovation-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.35) saturate(.6);
    transition: all .6s;
}

.innovation-card:hover img {
    filter: brightness(.45) saturate(.8);
    transform: scale(1.05);
}

.innovation-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 22, .05) 0%, rgba(5, 8, 22, .88) 100%);
}

.innovation-card .card-body {
    position: relative;
    z-index: 2;
    padding: 32px;
}

.innovation-card .card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.innovation-card .card-body p {
    font-size: .9rem;
    color: var(--text-secondary);
}

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

/* ============================================
   ESG
   ============================================ */
.esg {
    padding: var(--section-y) 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-secondary) 100%);
}

.esg-pillars {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.esg-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: transform var(--dur);
}

.esg-pillar:hover {
    transform: translateY(-6px);
}

.esg-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 1px solid var(--border);
    transition: all var(--dur);
    position: relative;
    overflow: hidden;
}

.esg-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .3s;
}

.esg-pillar:hover .esg-icon::before {
    opacity: 1;
}

.esg-icon.env {
    background: rgba(16, 185, 129, .06);
    color: var(--emerald);
}

.esg-pillar:hover .esg-icon.env {
    box-shadow: 0 0 30px rgba(16, 185, 129, .2);
    border-color: rgba(16, 185, 129, .3);
}

.esg-icon.soc {
    background: rgba(59, 130, 246, .06);
    color: var(--blue);
}

.esg-pillar:hover .esg-icon.soc {
    box-shadow: 0 0 30px rgba(59, 130, 246, .2);
    border-color: rgba(59, 130, 246, .3);
}

.esg-icon.gov {
    background: rgba(236, 72, 153, .06);
    color: var(--pink);
}

.esg-pillar:hover .esg-icon.gov {
    box-shadow: 0 0 30px rgba(236, 72, 153, .2);
    border-color: rgba(236, 72, 153, .3);
}

.esg-pillar span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

/* ============================================
   BLOG
   ============================================ */
.blog {
    padding: var(--section-y) 0;
    position: relative;
    z-index: 2;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-card-solid);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--dur) var(--ease);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, .2);
    box-shadow: 0 20px 60px rgba(139, 92, 246, .1);
}

.blog-card .card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.6) saturate(.7);
    transition: all .6s var(--ease);
}

.blog-card:hover .card-img img {
    transform: scale(1.08);
    filter: brightness(.75) saturate(.9);
}

.blog-card .card-body {
    padding: 28px;
}

.blog-card .card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-card .card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card .card-body p {
    font-size: .88rem;
    color: var(--text-secondary);
    margin-bottom: 22px;
    line-height: 1.6;
}

.btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    background: var(--gradient-2);
    color: var(--white);
    font-weight: 700;
    font-size: .82rem;
    border-radius: 10px;
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-sm::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s;
}

.btn-sm:hover::before {
    opacity: 1;
}

.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, .3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-primary);
    color: var(--text-secondary);
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: .88rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact p .icon {
    color: var(--cyan);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: .95rem;
    transition: all var(--dur);
}

.footer-social a:hover {
    background: var(--gradient-2);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, .3);
}

.footer-links a {
    display: block;
    font-size: .88rem;
    margin-bottom: 12px;
    transition: color var(--dur);
}

.footer-links a:hover {
    color: var(--cyan);
}

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

.footer-brand .footer-logo {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand .footer-logo span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: .85rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0;
    text-align: center;
    font-size: .82rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-secondary);
    transition: color var(--dur);
}

.footer-bottom a:hover {
    color: var(--cyan);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 720px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 44px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
    transform: translateY(20px) scale(.96);
    transition: transform .3s var(--ease);
}

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    float: right;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--dur);
}

.modal-close:hover {
    background: var(--gradient-2);
    color: var(--white);
    border-color: transparent;
}

.modal h2 {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.modal h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 22px 0 8px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal p,
.modal li {
    font-size: .92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.modal ul {
    padding-left: 20px;
    list-style: disc;
}

.modal ul li {
    margin-bottom: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {

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

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

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

    .footer-brand {
        text-align: left;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .lang-toggle {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(11, 17, 32, .97);
        padding: 16px 24px;
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
        gap: 0;
        border-radius: 0 0 20px 20px;
        border: 1px solid var(--border);
        border-top: none;
    }

    .nav-links.mobile-open a {
        padding: 14px 8px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

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

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

    .esg-pillars {
        gap: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .orb {
        display: none;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}