/* ============================================
   SRE v3 — Futuristic Minimal Corporate
   Enhanced mobile + Finland focus
   ============================================ */

:root {
    --black: #060d18;
    --dark: #0a1525;
    --dark-2: #0f1d30;
    --dark-3: #162a42;
    --gray-dark: #2a3f5f;
    --gray: #7a8ba8;
    --gray-light: #a0b0c8;
    --white: #edf2f8;
    --pure-white: #ffffff;
    --accent: #00c6a7;
    --accent-dim: rgba(0,198,167,0.15);
    --accent-blue: #3b82f6;
    --accent-glow: rgba(0,198,167,0.25);
    --blue: #2563eb;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    font-size: 16px;
    scroll-behavior: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select {
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
}
::selection { background: var(--accent-blue); color: var(--pure-white); }

.container { max-width: 1400px; margin: 0 auto; padding: 0 4rem; }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ============ LOADER ============ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.loader-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader-logo img {
    height: 60px;
    width: auto;
}
.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--dark-3);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}
.loader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent));
    border-radius: 2px;
    animation: loadProgress 0.8s var(--ease) forwards;
}
@keyframes loadProgress { to { width: 100%; } }
.loader-text {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
}

/* ============ CURSOR ============ */
.cursor {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s, transform 0.25s;
}
.cursor.hovering {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0,198,167,0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.cursor-follower.hovering {
    width: 32px;
    height: 32px;
    border-color: rgba(0,198,167,0.5);
    background: rgba(0,198,167,0.08);
}
@media (min-width: 769px) {
    body, a, button, input, textarea, select { cursor: none; }
}
@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none !important; }
}

/* ============ NOISE ============ */
.noise {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ============ NAV ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    mix-blend-mode: difference;
    transition: padding 0.4s var(--ease);
}
.nav.nav-scrolled {
    mix-blend-mode: normal;
    background: rgba(6,13,24,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 32px;
    width: auto;
    color: var(--pure-white);
}
.nav-center {
    display: flex;
    gap: 0.5rem;
}
.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: rgba(255,255,255,0.6);
    border-radius: 100px;
    transition: color 0.3s, background 0.3s;
    letter-spacing: 0.3px;
}
.nav-link:hover {
    color: var(--pure-white);
    background: rgba(255,255,255,0.06);
}
/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 8px;
}
.lang-option {
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s;
    padding: 4px 2px;
}
.lang-option:hover {
    color: rgba(255,255,255,0.7);
}
.lang-option.lang-active {
    color: var(--pure-white);
}
.lang-sep {
    color: rgba(255,255,255,0.15);
    font-size: 0.75rem;
    font-weight: 400;
}
.mobile-lang {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-lang .lang-option {
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 6px 4px;
}
.mobile-lang .lang-sep {
    font-size: 1rem;
}

.nav-contact {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.55rem 1.4rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    color: var(--pure-white);
    transition: all 0.3s var(--ease);
}
.nav-contact:hover {
    background: var(--accent-blue);
    color: var(--pure-white);
    border-color: var(--accent-blue);
}
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 200;
    -webkit-tap-highlight-color: transparent;
}
.nav-burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--pure-white);
    transition: all 0.4s var(--ease);
    transform-origin: center;
}
.nav-burger.open span:first-child { transform: rotate(45deg) translate(2.5px, 2.5px); }
.nav-burger.open span:last-child { transform: rotate(-45deg) translate(2.5px, -2.5px); }

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner { text-align: center; }
.mobile-link {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
    transition: color 0.3s, transform 0.5s var(--ease), opacity 0.5s var(--ease);
    opacity: 0;
    transform: translateY(20px);
    -webkit-tap-highlight-color: transparent;
}
.mobile-menu.open .mobile-link {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(6) { transition-delay: 0.30s; }
.mobile-link:hover, .mobile-link:active { color: var(--accent-blue); }
.mobile-info {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 2;
    opacity: 0;
    transition: opacity 0.5s var(--ease) 0.35s;
}
.mobile-menu.open .mobile-info { opacity: 1; }

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 3rem;
    position: relative;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, rgba(0,198,167,0.04) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: glowFloat 8s ease-in-out infinite alternate;
}
@keyframes glowFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.1); }
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease) 1s forwards;
}
.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
}
.hero-eyebrow span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-light);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8.5vw, 9rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 4rem;
}
.title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.12em;
    margin-bottom: -0.12em;
}
.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 1.2s var(--ease-out) forwards;
}
.title-line:nth-child(1) .title-word { animation-delay: 1.1s; }
.title-line:nth-child(2) .title-word { animation-delay: 1.25s; }
.title-line:nth-child(3) .title-word { animation-delay: 1.4s; }
.accent {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 1.8s forwards;
}
.hero-desc { max-width: 420px; }
.hero-desc p {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
}
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}
.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}
.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    writing-mode: vertical-rl;
}

.hero-stats-float {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    animation: fadeUp 1s var(--ease) 2s forwards;
}
.float-stat { text-align: right; }
.float-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-blue);
}
.float-unit {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gray);
    margin-left: 0.3rem;
}
.float-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* HERO MOBILE STATS */
.hero-stats-mobile {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 2s forwards;
}
.hsm-item { text-align: center; }
.hsm-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-blue);
    display: block;
    line-height: 1;
}
.hsm-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    display: block;
    margin-top: 0.3rem;
}
.hsm-divider {
    width: 1px;
    height: 32px;
    background: var(--dark-3);
}

/* ============ MARQUEE ============ */
.marquee {
    padding: 1.5rem 0;
    border-top: 1px solid var(--dark-3);
    border-bottom: 1px solid var(--dark-3);
    overflow: hidden;
    position: relative;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
}
.marquee-track span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}
.marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--accent-glow);
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section { padding: 5rem 0; overflow: hidden; }
.section-dark { background: var(--dark); }
.section-header { margin-bottom: 3rem; }
.tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1.5rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
    max-width: 600px;
    margin-top: 1.5rem;
}

/* SPLIT LAYOUT */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.large-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray-light);
    margin-bottom: 3rem;
}
.large-text strong { color: var(--white); }

/* METRICS */
.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--dark-3);
    border-bottom: 1px solid var(--dark-3);
    margin-bottom: 3rem;
}
.metric-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
    display: block;
}
.metric-label {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: 0.5rem;
}

/* CAPABILITIES */
.capabilities { display: flex; flex-direction: column; gap: 0; }
.capability {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--dark-3);
    font-size: 0.95rem;
    color: var(--gray-light);
    transition: color 0.3s, padding-left 0.4s var(--ease);
}
.capability:hover { color: var(--white); padding-left: 0.5rem; }
.cap-num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 1px;
}

/* ============ AREAS ============ */
.areas-list { display: flex; flex-direction: column; }
.area-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s var(--ease);
    position: relative;
}
.area-item::before {
    content: '';
    position: absolute;
    left: -4rem;
    right: -4rem;
    top: 0;
    bottom: 0;
    background: var(--dark-2);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: -1;
}
.area-item:hover::before { opacity: 1; }
.area-item:hover { padding-left: 1rem; }
.area-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 1px;
    flex-shrink: 0;
    width: 30px;
}
.area-content { flex: 1; }
.area-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.3rem;
    transition: color 0.3s;
}
.area-item:hover .area-content h3 { color: var(--accent-blue); }
.area-content p {
    font-size: 0.9rem;
    color: var(--gray);
    max-width: 500px;
    line-height: 1.7;
}
.area-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    white-space: nowrap;
    transition: all 0.3s;
}
.area-item:hover .area-tag {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}
.area-arrow {
    flex-shrink: 0;
    color: var(--gray);
    transition: all 0.4s var(--ease);
    opacity: 0;
    transform: translate(-10px, 10px);
}
.area-item:hover .area-arrow {
    opacity: 1;
    color: var(--accent-blue);
    transform: translate(0, 0);
}

/* ============ GLOBE / PRESENCE ============ */
.globe-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--dark-3);
    border: 1px solid var(--dark-3);
    border-radius: 16px;
    overflow: hidden;
}
.globe-card {
    background: var(--black);
    padding: 2.5rem 2rem;
    transition: all 0.4s var(--ease);
    position: relative;
}
.globe-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}
.globe-card:hover { background: var(--dark-2); }
.globe-card:hover::after { transform: scaleX(1); }
.globe-card-highlight {
    background: var(--dark);
    border-left: 2px solid var(--accent);
}
.globe-card-highlight::after {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent));
}
.globe-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}
.country-code {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}
.country-badge {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--accent-blue);
    border-radius: 100px;
    color: var(--accent-blue);
    white-space: nowrap;
}
.globe-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.entity-name {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0.8rem;
}
.entity-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============ PROJECTS SCROLL ============ */
.projects-wrapper {
    position: relative;
    overflow: hidden;
}
.projects-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 4rem 4rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.projects-scroll::-webkit-scrollbar { display: none; }
.projects-track {
    display: flex;
    gap: 2rem;
    width: max-content;
}
.projects-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(6,13,24,0.85);
    backdrop-filter: blur(12px);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}
.projects-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}
.projects-arrow:disabled {
    opacity: 0.2;
    cursor: default;
    pointer-events: none;
}
.projects-arrow-left { left: 0.8rem; }
.projects-arrow-right { right: 0.8rem; }
.project-card {
    width: 420px;
    flex-shrink: 0;
    background: var(--dark-2);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s var(--ease);
    scroll-snap-align: start;
}
.project-card:hover {
    border-color: rgba(0,198,167,0.15);
    transform: translateY(-8px);
}
.project-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
    filter: grayscale(30%) brightness(0.85);
}
.project-card:hover .project-img img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}
.project-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    background: rgba(5,5,5,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: var(--white);
}
.project-meta { padding: 2rem; }
.project-name {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}
.project-name h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}
.project-mw {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-blue);
}
.project-details {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.project-details span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gray);
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 100px;
}
.project-spv {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}


/* ============ FINLAND SPOTLIGHT ============ */
.finland-section {
    position: relative;
    overflow: hidden;
}
.finland-bg-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,198,167,0.06) 0%, rgba(59,130,246,0.03) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.finland-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}
.finland-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.finland-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.finland-image:hover img { transform: scale(1.03); }
.finland-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(6,13,24,0.95));
}
.fi-overlay-stat { display: flex; align-items: baseline; gap: 0.3rem; }
.fi-overlay-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
}
.fi-overlay-unit {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-light);
}
.fi-overlay-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 0.5rem;
    display: block;
}
.finland-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.fi-feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid var(--dark-3);
    transition: padding-left 0.4s var(--ease);
    align-items: flex-start;
}
.fi-feature:first-child { padding-top: 0; }
.fi-feature:hover { padding-left: 0.5rem; }
.fi-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    transition: all 0.3s var(--ease);
}
.fi-feature:hover .fi-icon {
    background: rgba(0,198,167,0.1);
    border-color: var(--accent);
}
.fi-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.3px;
}
.fi-text p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

/* FINLAND METRICS */
.finland-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid var(--dark-3);
    border-bottom: 1px solid var(--dark-3);
}
.fi-metric { text-align: center; }
.fi-metric-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-blue);
    display: block;
    line-height: 1;
}
.fi-metric-label {
    font-size: 0.72rem;
    color: var(--gray);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-top: 0.5rem;
}

/* ============ PARTNER PILLS ============ */
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}
.partner-pill {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gray-light);
    border: 1px solid var(--dark-3);
    border-radius: 100px;
    transition: all 0.3s var(--ease);
}
.partner-pill:hover {
    border-color: var(--accent-blue);
    color: var(--white);
    background: rgba(59,130,246,0.08);
}

/* ============ TRACK RECORD ============ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.partner-block {
    padding: 2.5rem;
    border: 1px solid var(--dark-3);
    border-radius: 16px;
    background: var(--dark-2);
    transition: all 0.4s var(--ease);
    min-width: 0;
    overflow: hidden;
}
.partner-block:hover {
    border-color: rgba(59,130,246,0.2);
    transform: translateY(-4px);
}
.partner-block-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--dark-3);
}
.partner-block-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}
.partner-block-total {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--accent-blue);
    font-size: 0.85rem;
    white-space: nowrap;
}
.partner-projects {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.partner-project {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.partner-project:last-child { border-bottom: none; }
.pp-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--white);
}
.pp-detail {
    font-size: 0.78rem;
    color: var(--gray);
    text-align: right;
    white-space: nowrap;
}
.partner-block-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
    margin-top: 0.5rem;
}
.partner-block-others .partners-logos {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* ============ METHODOLOGY ============ */
.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.method-step {
    padding: 2.5rem;
    border: 1px solid var(--dark-3);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
    background: var(--dark-2);
}
.method-step:hover {
    border-color: rgba(59,130,246,0.2);
    transform: translateY(-4px);
}
.method-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.method-step h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.method-step p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============ PROJECT BADGE VARIANTS ============ */
.project-badge-built {
    background: rgba(0,198,167,0.9);
}

/* ============ CONTACT ============ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.big-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 2rem;
}
.contact-desc {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 400px;
}
.contact-link {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 0.8rem;
    position: relative;
}
.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}
.contact-link:hover::after { transform: scaleX(1); transform-origin: left; }
.contact-phones {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}
.contact-phones a {
    font-size: 0.88rem;
    color: var(--gray-light);
    transition: color 0.3s;
}
.contact-phones a:hover { color: var(--accent-blue); }
.contact-offices {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.office {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}
.office-country {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-blue);
    min-width: 80px;
}
.office span:last-child {
    font-size: 0.85rem;
    color: var(--gray);
}

/* FORM */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-field { margin-bottom: 1.5rem; }
.form-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.6rem;
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--white);
    border-bottom: 1px solid var(--dark-3);
    background: transparent;
    transition: border-color 0.3s;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--accent-blue);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--pure-white);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent));
    border-radius: 100px;
    transition: all 0.4s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,99,235,0.3);
}
.submit-btn svg { transition: transform 0.3s var(--ease); }
.submit-btn:hover svg { transform: translateX(4px); }

/* ============ FOOTER ============ */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--dark-3);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}
.footer-logo {
    display: flex;
    align-items: center;
}
.footer-logo img {
    height: 40px;
    width: auto;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 320px;
}
.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1.5rem;
}
.footer-col li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}
.footer-col li:hover, .footer-col a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-3);
    font-size: 0.75rem;
    color: var(--gray);
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { transition: color 0.3s; }
.footer-legal a:hover { color: var(--white); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */

/* Tablet landscape */
@media (max-width: 1200px) {
    .globe-grid { grid-template-columns: repeat(3, 1fr); }
    .finland-metrics { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* Tablet */
@media (max-width: 1024px) {
    .container { padding: 0 2.5rem; }
    .nav { padding: 1.2rem 2.5rem; }
    .hero { padding: 7rem 2.5rem 3rem; }
    .hero-stats-float { right: 2.5rem; }
    .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .globe-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .projects-scroll { padding: 0 2.5rem 3rem; }
    .finland-layout { grid-template-columns: 1fr; gap: 3rem; }
    .method-grid { grid-template-columns: repeat(2, 1fr); }
    .finland-image { max-height: 400px; }
    .area-item::before { left: -2.5rem; right: -2.5rem; }
}

/* Mobile */
@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .nav { padding: 1rem 1.5rem; }
    .nav-center, .nav-contact, .lang-toggle { display: none; }
    .nav-burger { display: flex; }

    .hero { padding: 5rem 1.5rem 3rem; min-height: auto; }
    .hero-title { letter-spacing: -1.5px; margin-bottom: 2rem; }
    .hero-stats-float { display: none; }
    .hero-stats-mobile { display: flex; }
    .hero-bottom { flex-direction: column; gap: 2rem; align-items: flex-start; }
    .hero-scroll-indicator { display: none; }
    .hero-eyebrow { margin-bottom: 2rem; }
    .hero-glow { width: 300px; height: 300px; top: 10%; left: 10%; }

    .marquee-track { gap: 2rem; }
    .marquee-track span { font-size: 0.7rem; letter-spacing: 1.5px; }

    .section { padding: 3rem 0; }
    .section-header { margin-bottom: 2rem; }

    .metrics { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .metric-number { font-size: 1.8rem; }
    .metric-label { font-size: 0.65rem; }

    .large-text { font-size: 1rem; margin-bottom: 2rem; }

    .globe-grid { grid-template-columns: 1fr 1fr; }
    .globe-card { padding: 1.8rem 1.5rem; }
    .entity-desc { font-size: 0.78rem; }
    .country-code { font-size: 1.6rem; }

    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .big-title { margin-bottom: 1.5rem; }

    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .projects-scroll { padding: 0 1.5rem 2rem; scroll-padding-left: 1.5rem; }
    .projects-arrow { display: none; }
    .project-card { width: calc(100vw - 4rem); max-width: 340px; }
    .project-img { height: 200px; }
    .project-meta { padding: 1.5rem; }
    .project-name h3 { font-size: 1.3rem; }

    .noise { display: none; }

    .area-item {
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 1.8rem 0;
    }
    .area-item::before { left: -1.5rem; right: -1.5rem; }
    .area-content h3 { font-size: 1.4rem; }
    .area-tag { order: 5; }
    .area-arrow { display: none; }

    .finland-layout { grid-template-columns: 1fr; gap: 2rem; }
    .finland-image { max-height: 280px; }
    .fi-overlay-number { font-size: 2.5rem; }
    .finland-metrics { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .fi-metric-number { font-size: 2rem; }
    .fi-feature { gap: 1rem; }
    .fi-icon { width: 40px; height: 40px; border-radius: 10px; }
    .fi-icon svg { width: 22px; height: 22px; }
    .section-subtitle { font-size: 0.95rem; }

    .partners-grid { grid-template-columns: 1fr; }
    .partner-block { padding: 1.8rem; }
    .partner-block-header h3 { font-size: 1.1rem; }

    .mobile-link { font-size: 2rem; }

    .partner-block-desc { font-size: 0.82rem; }

    .method-grid { grid-template-columns: 1fr; }
    .method-step { padding: 1.8rem; }

    .contact-phones { flex-direction: column; gap: 0.5rem; }
    .office { flex-direction: column; gap: 0.3rem; }
    .office-country { min-width: auto; }

    /* Form inputs — visible borders on mobile */
    .form-field input, .form-field textarea {
        padding: 1rem 0.75rem;
        border: 1px solid var(--dark-3);
        border-radius: 8px;
    }
    .form-field input:focus, .form-field textarea:focus {
        border-color: var(--accent-blue);
    }

    /* Submit button full-width on tablet too */
    .submit-btn { width: 100%; justify-content: center; }

    /* Minimum text sizes for readability */
    .tag { font-size: 0.75rem; }
    .metric-label { font-size: 0.7rem; }
    .project-details span { font-size: 0.7rem; }
}

/* Large mobile */
@media (max-width: 640px) {
    .globe-grid { grid-template-columns: 1fr; }
    .globe-card-highlight { border-left: none; border-top: 2px solid var(--accent); }
    .method-grid { grid-template-columns: 1fr; }
    .finland-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* Small mobile */
@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }

    .hero { padding: 4.5rem 1.2rem 2rem; }
    .hero-title { font-size: 2.5rem; letter-spacing: -1px; margin-bottom: 1.5rem; }
    .hero-eyebrow span { font-size: 0.65rem; letter-spacing: 2px; }
    .hero-desc p { font-size: 0.92rem; }
    .hsm-number { font-size: 1.6rem; }

    .globe-grid { grid-template-columns: 1fr; }
    .globe-card-highlight { border-left: none; border-top: 2px solid var(--accent); }

    .metrics { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .metric-number { font-size: 1.5rem; }

    .section-title { font-size: 1.8rem; letter-spacing: -0.5px; }

    .project-card { width: 280px; }
    .project-img { height: 180px; }
    .project-details span { font-size: 0.65rem; padding: 0.2rem 0.6rem; }

    .finland-metrics { grid-template-columns: repeat(2, 1fr); }
    .fi-metric-number { font-size: 1.8rem; }

    .area-content h3 { font-size: 1.2rem; }
    .area-content p { font-size: 0.82rem; }

    .mobile-link { font-size: 1.7rem; margin-bottom: 0.6rem; }

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

/* ============================================
   LINKEDIN CTA
   ============================================ */
.contact-social {
    margin-top: 2rem;
}
.linkedin-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(10,102,194,0.12);
    border: 1px solid rgba(10,102,194,0.25);
    border-radius: 12px;
    color: #e0e6ed;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.linkedin-cta svg:first-child {
    color: #0a66c2;
    transition: color 0.3s;
}
.linkedin-cta .linkedin-arrow {
    color: #6b7a90;
    transition: all 0.3s;
}
.linkedin-cta:hover {
    background: rgba(10,102,194,0.2);
    border-color: rgba(10,102,194,0.4);
    transform: translateY(-2px);
}
.linkedin-cta:hover .linkedin-arrow {
    color: #0a66c2;
    transform: translate(2px, -2px);
}
.footer-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7a90;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-linkedin:hover {
    color: #0a66c2;
}
.footer-linkedin svg {
    opacity: 0.7;
    transition: opacity 0.3s;
}
.footer-linkedin:hover svg {
    opacity: 1;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(6,13,24,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-content p {
    font-family: var(--font);
    font-size: 14px;
    color: #9aa5b4;
    margin: 0;
    line-height: 1.6;
}
.cookie-content p a {
    color: var(--accent);
    text-decoration: none;
}
.cookie-content p a:hover {
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cookie-accept {
    background: var(--accent);
    color: var(--black);
}
.cookie-accept:hover {
    background: #00d9b4;
    transform: translateY(-1px);
}
.cookie-reject {
    background: transparent;
    color: #6b7a90;
    border: 1px solid rgba(255,255,255,0.1);
}
.cookie-reject:hover {
    border-color: rgba(255,255,255,0.2);
    color: #9aa5b4;
}
@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}
