/* ============================================================
   FRESHLOGIK IT AB — SHARED STYLESHEET
   Corporate White + Forest Green
============================================================ */

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
    --bg: #ffffff;
    --bg-panel: #f8f9fa;
    --bg-alt: #f1f3f5;
    --primary: #1a3d28;
    --text: #0d0d0d;
    --muted: #6b6560;
    --muted-light: #3d3a36;
    --border: #d0d5db;
    --border-light: rgba(13, 13, 13, 0.10);
    --radius: 6px;
    --radius-sm: 4px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .2s;
}

ul {
    list-style: none;
}

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

/* ============================================================
   LAYOUT
============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
}

.section-alt {
    background: var(--bg-alt);
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1,
h2 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.15;
    font-weight: 700;
}

h3,
h4,
h5 {
    line-height: 1.2;
    font-weight: 700;
}

.gradient-text {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: var(--primary);
    background-clip: unset;
}

.section-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .75rem;
    display: block;
}

.section-label-centered {
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 4.5vw, 2.9rem);
    letter-spacing: -.5px;
    margin-bottom: 1rem;
}

.section-title-centered {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 4.5vw, 2.9rem);
    letter-spacing: -.5px;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 600px;
}

.section-subtitle-centered {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 600px;
    text-align: center;
    margin: 0 auto 3.5rem;
}

/* ============================================================
   BACKGROUND GLOBES (hidden in Nordic Brutalism)
============================================================ */
.bg-globes {
    display: none;
}

/* ============================================================
   GLASS CARD (flat in Nordic Brutalism)
============================================================ */
.glass {
    background: var(--bg-panel);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 3px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
    border: 1.5px solid var(--border);
    white-space: nowrap;
    font-family: inherit;
    letter-spacing: .3px;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-outline:hover {
    background: var(--text);
    color: var(--bg);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-light);
}

.btn-ghost:hover {
    border-color: var(--border);
    background: var(--bg-alt);
}

.btn-sm {
    padding: .55rem 1.4rem;
    font-size: .82rem;
}

/* ============================================================
   SCROLL PROGRESS BAR
============================================================ */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--primary);
    z-index: 9999;
    transition: width .1s linear;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.4rem 0;
    transition: background .3s var(--ease), padding .3s var(--ease), border-bottom .3s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: .9rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--text);
    flex-shrink: 0;
}

.logo span {
    color: var(--primary);
}

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

.nav-links a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--border);
}

/* Mega Navigation Dropdowns */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--bg);
    border: 1.5px solid var(--border);
    padding: 1.25rem;
    min-width: 520px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.dropdown-menu.show {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-compact {
    min-width: 260px;
    grid-template-columns: 1fr;
}

.dropdown-menu a {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .75rem .85rem;
    border-radius: var(--radius-sm);
    transition: background .2s;
    font-size: .85rem;
}

.dropdown-menu a:hover {
    background: var(--bg-panel);
}

.dropdown-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.dropdown-icon svg {
    width: 16px;
    height: 16px;
}

.dropdown-menu a span strong {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .15rem;
}

.dropdown-menu a span small {
    display: block;
    font-size: .75rem;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.4;
}

.dropdown-compact a {
    padding: .6rem .85rem;
    font-weight: 500;
    color: var(--muted-light);
}

.dropdown-compact a:hover {
    color: var(--text);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger .bar {
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: all .3s var(--ease);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        display: none !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        border-right: 1.5px solid var(--border);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform .4s var(--ease);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.15rem;
        color: var(--text);
    }
}

/* ============================================================
   HERO — FULL (Home page)
============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    position: relative;
    border-bottom: 1.5px solid var(--border);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Specialization Tagline */
.hero-specialization {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.75rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
}

.spec-dot {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--border-light);
    border-radius: 2px;
    padding: .4rem 1rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    letter-spacing: -.5px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================================
   HERO CANVAS (particle network)
============================================================ */
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

/* ============================================================
   HERO CREDENTIALS PANEL (replaces blob)
============================================================ */
.hero-credentials {
    width: 100%;
    max-width: 420px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.credentials-row {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid var(--border-light);
}

.credentials-row:last-child {
    border-bottom: none;
}

.cred-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 110px;
    padding: 1.4rem 1.75rem;
    border-right: 1px solid var(--border-light);
    line-height: 1;
}

.cred-label {
    font-size: .88rem;
    color: var(--muted);
    font-weight: 500;
    padding: 1.4rem 1.75rem;
    letter-spacing: .2px;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        display: none;
    }
}

/* ============================================================
   HERO — COMPACT (Inner pages)
============================================================ */
.page-hero {
    padding: 160px 0 80px;
    position: relative;
    border-bottom: 1.5px solid var(--border);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    letter-spacing: -.5px;
    margin-bottom: 1rem;
    max-width: 750px;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.75;
}

/* ============================================================
   IMPACT STRIP (replaces stats bar)
============================================================ */
.impact-strip {
    padding: 2.75rem 0;
    border-bottom: 1.5px solid var(--border);
    border-top: 1.5px solid var(--border);
    background: var(--bg-panel);
    text-align: center;
}

.impact-statement {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.3px;
}

.impact-number {
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3rem);
    display: inline;
    margin-right: .25rem;
}

/* ============================================================
   STATS BAR (legacy, kept for inner pages)
============================================================ */
.stats-bar {
    padding: 2.5rem 0;
    border-bottom: 1.5px solid var(--border);
    background: var(--bg-panel);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    padding: 1rem;
    border-right: 1px solid var(--border-light);
}

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

.stat-item .num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: .3rem;
}

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

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border-light);
    }
}

/* ============================================================
   SERVICE CARDS
============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 0;
    border: 1.5px solid var(--border);
}

.service-card {
    padding: 2.5rem;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg);
    transition: background .25s;
    position: relative;
}

.service-card:hover {
    background: var(--bg-panel);
}

.service-icon {
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--border);
    color: var(--primary);
}

.service-icon svg {
    width: 22px;
    height: 22px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: .6rem;
    font-weight: 700;
}

.service-card p {
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.7;
}

/* Service detail block (services.html) */
.service-detail {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
    padding: 3rem 0;
    border-bottom: 1.5px solid var(--border-light);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.service-detail-icon-wrap {
    width: 64px;
    height: 64px;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.service-detail-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.service-detail-label {
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.service-detail-body h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    letter-spacing: -.3px;
    margin-bottom: .75rem;
}

.service-detail-body p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.outcome-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: .5rem;
}

.outcome-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .95rem;
    color: var(--muted-light);
    line-height: 1.55;
}

.outcome-list li::before {
    content: '—';
    flex-shrink: 0;
    color: var(--primary);
    font-weight: 700;
    margin-top: .05rem;
}

@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-detail-icon {
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* ============================================================
   INDUSTRY CARDS
============================================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    border: 1.5px solid var(--border);
}

.industry-card {
    padding: 2.25rem;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg);
    transition: background .25s;
}

.industry-card:hover {
    background: var(--bg-panel);
}

.industry-card-accent {
    width: 32px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 1.5rem;
}

.industry-card h3 {
    font-size: 1.1rem;
    margin-bottom: .6rem;
}

.industry-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.tag {
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 1px;
    padding: .28rem .8rem;
    font-size: .72rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .5px;
}

/* ============================================================
   CASE STUDY / INSIGHT CARDS
============================================================ */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    border: 1.5px solid var(--border);
}

.insight-card {
    background: var(--bg);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    transition: background .25s;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    background: var(--bg-panel);
}

.insight-card-header {
    padding: 1.75rem 1.75rem 0;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.insight-sector {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.insight-separator {
    width: 1px;
    height: 14px;
    background: var(--border-light);
}

.insight-type {
    font-size: .65rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: .5px;
}

.insight-card h3 {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: .6rem;
}

.insight-card-body {
    padding: .75rem 1.75rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-summary {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.insight-result {
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: .75rem 1rem;
    border-left: 2px solid var(--primary);
}

.insight-result-label {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: .3rem;
    display: block;
}

.insight-result p {
    font-size: .88rem;
    color: var(--muted-light);
    line-height: 1.55;
}

/* ============================================================
   ABOUT GRID
============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -.3px;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-visual {
    display: flex;
    justify-content: center;
}

/* About blob card — restyled as a flat bordered panel */
.about-blob-card {
    width: 100%;
    max-width: 380px;
    border: 1.5px solid var(--border);
    border-radius: 0;
    animation: none;
    background: var(--bg-panel);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: static;
    overflow: hidden;
    backdrop-filter: none;
}

.about-blob-card::before {
    display: none;
}

.about-blob-card>* {
    position: static;
}

.about-location {
    padding: 1.25rem 1.75rem;
    border-bottom: 1.5px solid var(--border-light);
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.about-location svg {
    color: var(--primary);
    flex-shrink: 0;
}

.about-reach-label {
    padding: .7rem 1.75rem;
    border-bottom: 1px solid var(--border-light);
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--muted);
    font-weight: 700;
    background: var(--bg-alt);
}

.about-clients {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.about-client-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.75rem;
    border-bottom: 1px solid var(--border-light);
    background: transparent;
    border-radius: 0;
    font-size: .88rem;
    font-weight: 600;
    color: var(--muted-light);
    transition: background .2s;
}

.about-client-row:last-child {
    border-bottom: none;
}

.about-client-row:hover {
    background: var(--bg-alt);
}

.about-client-row svg {
    color: var(--primary);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        display: none;
    }
}

/* ============================================================
   ADVANTAGE / WHY US
============================================================ */
.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.advantage-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -.3px;
    margin-bottom: 1.25rem;
}

.advantage-header p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.advantage-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid var(--border);
}

.adv-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg);
    transition: background .2s;
}

.adv-card:last-child {
    border-bottom: none;
}

.adv-card:hover {
    background: var(--bg-panel);
}

.adv-icon {
    width: 46px;
    height: 46px;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.adv-icon svg {
    width: 20px;
    height: 20px;
}

.adv-card h4 {
    font-size: .95rem;
    margin-bottom: .3rem;
    font-weight: 700;
}

.adv-card p {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================================
   LEADERSHIP CARD
============================================================ */
.leadership-card {
    padding: 3rem;
    border: 1.5px solid var(--border);
    background: var(--bg-panel);
    border-left: 4px solid var(--primary);
}

.leader-profile {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.leader-avatar {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border: 1.5px solid var(--border);
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.leader-avatar svg {
    width: 72px;
    height: 72px;
    color: var(--primary);
}

.leader-info h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    letter-spacing: -.3px;
    margin-bottom: .25rem;
}

.leader-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 2rem;
    font-size: .95rem;
    color: var(--muted);
}

.leader-quote {
    border-left: 3px solid var(--primary);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--bg-alt);
}

.leader-quote p {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.7;
}

.leader-bio p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.leader-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.leader-link {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: color .2s;
}

.leader-link:hover {
    color: var(--text);
}

@media (max-width: 768px) {
    .leader-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .leader-title {
        justify-content: center;
    }

    .leader-actions {
        justify-content: center;
    }

    .leader-avatar {
        width: 140px;
        height: 140px;
    }
}

/* ============================================================
   VALUES GRID
============================================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 0;
    border: 1.5px solid var(--border);
}

.value-card {
    padding: 2rem;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg);
    text-align: center;
    transition: background .2s;
}

.value-card:hover {
    background: var(--bg-panel);
}

.value-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 1.25rem;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.value-icon svg {
    width: 20px;
    height: 20px;
}

.value-card h4 {
    font-size: .95rem;
    margin-bottom: .5rem;
    font-weight: 700;
}

.value-card p {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.65;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrap {
    background: var(--bg-panel);
    border: 1.5px solid var(--border);
    padding: 2.5rem;
}

.contact-form-wrap h2 {
    font-size: 1.7rem;
    letter-spacing: -.3px;
    margin-bottom: .5rem;
}

.contact-form-wrap>p {
    color: var(--muted);
    font-size: .95rem;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.form-group label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--muted-light);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    background: var(--bg);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: .8rem 1rem;
    color: var(--text);
    font-family: inherit;
    font-size: .95rem;
    transition: border-color .2s;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--border);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted);
}

.form-textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid var(--border);
}

.contact-info-card {
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border-light);
    padding: 1.75rem 2rem;
}

.contact-info-card:last-child {
    border-bottom: none;
}

.contact-info-card h3 {
    font-size: .9rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-top: .1rem;
}

.contact-info-icon svg {
    width: 15px;
    height: 15px;
}

.contact-info-item h4 {
    font-size: .72rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: .2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.55;
}

.contact-info-item a:hover {
    color: var(--primary);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CTA STRIP
============================================================ */
.cta-section {
    padding-bottom: 0;
}

.cta-card {
    padding: 5rem 3rem;
    max-width: 100%;
    margin: 0;
    text-align: center;
    background: var(--text);
    color: #ffffff;
    border: none;
    position: relative;
    border-radius: var(--radius);
}

.cta-card::before {
    display: none;
}

.cta-card>* {
    position: relative;
}

.cta-card h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -.3px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-card .gradient-text {
    color: #7db99a;
    -webkit-text-fill-color: #7db99a;
    background: none;
    background-clip: unset;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-card .btn-primary {
    background: #ffffff;
    color: var(--text);
    border-color: #ffffff;
}

.cta-card .btn-primary:hover {
    background: #7db99a;
    border-color: #7db99a;
    color: var(--text);
}

.cta-card .btn-ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
}

.cta-card .btn-ghost:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   EXPERIENCE / LOGO STRIP
============================================================ */
.clients-strip {
    padding: 3rem 0;
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    background: var(--bg-alt);
}

.clients-label {
    text-align: center;
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.clients-group {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2rem;
}

.clients-group:last-child {
    margin-bottom: 0;
}

.clients-row-title {
    text-align: center;
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    font-weight: 700;
}

.clients-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.client-img {
    height: 38px;
    width: auto;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.3s ease;
    object-fit: contain;
}

.client-img:hover {
    filter: none;
}

/* Text-based client names */
.client-name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .5px;
    transition: color .2s;
}

.client-name:hover {
    color: var(--text);
}

/* ============================================================
   SITEMAP PAGE
============================================================ */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.sitemap-col h3 {
    font-size: .9rem;
    margin-bottom: 1.25rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sitemap-col h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

.sitemap-col ul li {
    margin-bottom: .6rem;
}

.sitemap-col ul a {
    color: var(--muted);
    font-size: .9rem;
    transition: color .2s, padding-left .2s;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.sitemap-col ul a::before {
    content: '→';
    color: var(--primary);
    font-size: .8rem;
    flex-shrink: 0;
}

.sitemap-col ul a:hover {
    color: var(--text);
    padding-left: .3rem;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    background: #0d0d0d;
    border-top: none;
    padding: 4rem 0 2rem;
    color: #b0b8c1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    font-size: 1.4rem;
    margin-bottom: .75rem;
    display: block;
    color: #ffffff;
}

.footer-brand .logo span {
    color: #7db99a;
}

.footer-brand p {
    color: #8a919a;
    font-size: .88rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: .72rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: .6rem;
}

.footer-col ul a {
    color: #8a919a;
    font-size: .88rem;
    transition: color .2s;
}

.footer-col ul a:hover {
    color: #ffffff;
}

.footer-col address {
    font-style: normal;
    color: #8a919a;
    font-size: .88rem;
    line-height: 1.8;
}

.footer-col address a {
    color: #7db99a;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #4a4640;
    font-size: .82rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #4a4640;
    font-size: .82rem;
    transition: color .2s;
}

.footer-legal a:hover {
    color: #b0b8c1;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   EXPERTISE TAXONOMY GRID
============================================================ */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.expertise-card {
    padding: 2.25rem;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg);
    transition: background .25s, transform .25s var(--ease), box-shadow .25s;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.expertise-card:hover {
    background: var(--bg-panel);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(13, 13, 13, 0.08);
}

.expertise-icon {
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--border);
    color: var(--primary);
    border-radius: var(--radius-sm);
}

.expertise-icon svg {
    width: 22px;
    height: 22px;
}

.expertise-card h3 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
    font-weight: 700;
}

.expertise-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.6;
    flex: 1;
}

.expertise-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: .3px;
    transition: letter-spacing .2s;
}

.expertise-card:hover .expertise-link {
    letter-spacing: .8px;
}

/* ============================================================
   NORDIC ADVANTAGE SECTION
============================================================ */
.nordic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.nordic-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--border-light);
    background: var(--bg-alt);
    transition: background .25s, transform .25s var(--ease), box-shadow .25s;
    text-align: center;
}

.nordic-card:last-child {
    border-right: none;
}

.nordic-card:hover {
    background: var(--bg-panel);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(13, 13, 13, 0.08);
}

.nordic-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border-radius: var(--radius-sm);
}

.nordic-icon svg {
    width: 24px;
    height: 24px;
}

.nordic-card h3 {
    font-size: 1.05rem;
    margin-bottom: .75rem;
    font-weight: 700;
}

.nordic-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nordic-grid {
        grid-template-columns: 1fr;
    }

    .nordic-card {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .nordic-card:last-child {
        border-bottom: none;
    }
}

/* ============================================================
   MISSION TRIAD
============================================================ */
.mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.mission-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -.3px;
    margin-bottom: 1.25rem;
}

.mission-header p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.mission-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg);
    transition: background .2s, transform .2s var(--ease);
}

.mission-card:last-child {
    border-bottom: none;
}

.mission-card:hover {
    background: var(--bg-panel);
}

.mission-icon {
    width: 46px;
    height: 46px;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    border-radius: var(--radius-sm);
}

.mission-icon svg {
    width: 20px;
    height: 20px;
}

.mission-card h4 {
    font-size: .95rem;
    margin-bottom: .3rem;
    font-weight: 700;
}

.mission-card p {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .mission-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================================
   CLIENT SEPARATOR
============================================================ */
.client-separator {
    color: var(--border-light);
    font-size: 1.2rem;
    user-select: none;
}

/* ============================================================
   ENHANCED FOOTER GRID
============================================================ */
.footer-grid-enhanced {
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

/* ============================================================
   MICRO-DESIGN: Card hover lift effect (for service cards)
============================================================ */
.service-card:hover,
.industry-card:hover,
.insight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(13, 13, 13, 0.08);
}

.service-card,
.industry-card,
.insight-card {
    transition: background .25s, transform .25s var(--ease), box-shadow .25s;
}

/* ============================================================
   FADE-IN ANIMATION
============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

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

.fade-in.delay-1 {
    transition-delay: .12s;
}

.fade-in.delay-2 {
    transition-delay: .24s;
}

.fade-in.delay-3 {
    transition-delay: .36s;
}

.fade-in.delay-4 {
    transition-delay: .48s;
}

/* ============================================================
   PARTNER / CERTIFICATION BADGE BAR
============================================================ */
.partners-strip {
    padding: 3.5rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-panel);
}

.partners-label {
    text-align: center;
    font-size: .72rem;
    color: var(--muted);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .5px;
    transition: color .25s, border-color .25s, background .25s, transform .25s var(--ease);
    background: var(--bg);
    white-space: nowrap;
}

.partner-badge:hover {
    color: var(--text);
    border-color: var(--border);
    background: var(--bg);
    transform: translateY(-2px);
}

.partner-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary);
}

.partner-badge-accent {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

/* ============================================================
   NEWSLETTER / LEAD MAGNET SIGNUP (inside CTA)
============================================================ */
.newsletter-signup {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter-label {
    font-size: .82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: .75rem;
    max-width: 460px;
    margin: 0 auto;
    justify-content: center;
}

.newsletter-form .form-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: var(--radius-sm);
    padding: .75rem 1.25rem;
    font-size: .9rem;
    flex: 1;
    max-width: 300px;
}

.newsletter-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-input:focus {
    outline: none;
    border-color: #7db99a;
}

.newsletter-form .btn {
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form .form-input {
        max-width: 100%;
        width: 100%;
    }
}

/* ============================================================
   INSIGHT CARD — READ MORE LINK
============================================================ */
.insight-read-more {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1rem;
    letter-spacing: .3px;
    transition: letter-spacing .2s, gap .2s;
}

.insight-card:hover .insight-read-more {
    letter-spacing: .8px;
    gap: .6rem;
}

.insight-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

/* ============================================================
   COUNTER ANIMATION
============================================================ */
.count-up {
    display: inline;
}

/* ============================================================
   ADDITIONAL GRID BORDER-RADIUS FIXES
============================================================ */
.services-grid,
.industries-grid,
.insights-grid,
.values-grid,
.advantage-features,
.contact-form-wrap,
.contact-info-wrap {
    border-radius: var(--radius);
    overflow: hidden;
}

.service-icon,
.adv-icon,
.value-icon,
.contact-info-icon,
.dropdown-icon {
    border-radius: var(--radius-sm);
}

.leadership-card {
    border-radius: var(--radius);
}

.about-blob-card {
    border-radius: var(--radius);
    overflow: hidden;
}

.btn {
    border-radius: var(--radius-sm);
}