@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
    --background: hsl(210 20% 98%);
    --foreground: hsl(222 47% 11%);

    --surface: hsl(0 0% 100%);
    --surface-elevated: hsl(210 20% 99%);

    --primary: hsl(217 33% 17%);
    --primary-foreground: hsl(210 20% 98%);

    --secondary: hsl(210 20% 95%);
    --secondary-foreground: hsl(222 47% 11%);

    --muted: hsl(210 20% 95%);
    --muted-foreground: hsl(215 16% 47%);

    --accent: hsl(201 96% 32%);
    --accent-foreground: hsl(0 0% 100%);

    --border: rgb(15 23 42 / 10%);
    --radius: 8px;
    --container-width: 1400px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

p {
    margin-top: 0;
}

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

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

button {
    border: 0;
    padding: 0;
    background: none;
    color: inherit;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: 96px;
}

.font-mono-tech {
    font-family: "JetBrains Mono", monospace;
}

.card-shadow {
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 6%),
        0 4px 6px -1px rgb(15 23 42 / 10%);
}

/* Header */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    transition:
        background-color 300ms ease,
        box-shadow 300ms ease,
        backdrop-filter 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    background: rgb(255 255 255 / 95%);
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 6%),
        0 4px 6px -1px rgb(15 23 42 / 10%);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-logo__mark {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 14px;
    font-weight: 700;
}

.site-logo__text {
    display: flex;
    flex-direction: column;
}

.site-logo__name {
    color: var(--primary-foreground);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
}

.site-logo__company {
    margin-top: 3px;
    color: rgb(248 250 252 / 70%);
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.site-header.is-scrolled .site-logo__name,
.site-header.is-menu-open .site-logo__name {
    color: var(--foreground);
}

.site-header.is-scrolled .site-logo__company,
.site-header.is-menu-open .site-logo__company {
    color: var(--muted-foreground);
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.primary-navigation .menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.primary-navigation a {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    color: rgb(248 250 252 / 80%);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 200ms ease;
}

.site-header.is-scrolled .primary-navigation a {
    color: rgb(15 23 42 / 80%);
}

.primary-navigation a:hover {
    color: var(--primary-foreground);
}

.site-header.is-scrolled .primary-navigation a:hover {
    color: var(--foreground);
}

.primary-navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 300ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after {
    transform: scaleX(1);
}

.primary-navigation .current-menu-item > a {
    color: var(--accent-foreground);
}

.site-header.is-scrolled .primary-navigation .current-menu-item > a {
    color: var(--accent);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon-button,
.header-language {
    color: rgb(248 250 252 / 60%);
    transition: color 200ms ease;
}

.header-icon-button:hover,
.header-language:hover {
    color: var(--primary-foreground);
}

.site-header.is-scrolled .header-icon-button,
.site-header.is-scrolled .header-language {
    color: rgb(15 23 42 / 60%);
}

.site-header.is-scrolled .header-icon-button:hover,
.site-header.is-scrolled .header-language:hover {
    color: var(--foreground);
}

.header-icon-button {
    display: flex;
    padding: 8px;
    border-radius: 2px;
}

.header-language {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 2px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition:
        background-color 200ms ease,
        transform 200ms ease;
}

.header-contact:hover {
    background: hsl(201 96% 28%);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    padding: 8px;
    color: var(--primary-foreground);
}

.site-header.is-scrolled .mobile-menu-toggle,
.site-header.is-menu-open .mobile-menu-toggle {
    color: var(--foreground);
}

.mobile-navigation {
    display: none;
    overflow: hidden;
    border-top: 1px solid var(--border);
    background: rgb(255 255 255 / 98%);
    backdrop-filter: blur(12px);
}

.mobile-navigation.is-open {
    display: block;
    animation: mobileMenuOpen 250ms ease forwards;
}

.mobile-navigation .menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px;
}

.mobile-navigation a {
    display: block;
    padding: 12px 16px;
    border-radius: 2px;
    color: rgb(15 23 42 / 70%);
    font-size: 14px;
    font-weight: 500;
    transition:
        color 200ms ease,
        background-color 200ms ease;
}

.mobile-navigation a:hover {
    color: var(--foreground);
    background: var(--secondary);
}

.mobile-navigation .current-menu-item > a {
    color: var(--accent);
    background: rgb(3 105 161 / 10%);
}

.mobile-navigation__bottom {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 24px;
    padding: 16px 16px 24px;
    border-top: 1px solid var(--border);
}

.mobile-navigation__language {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted-foreground);
    font-size: 14px;
}

/* Footer */

.site-footer {
    background: var(--foreground);
    color: var(--primary-foreground);
}

.site-footer__content {
    padding-top: 64px;
    padding-bottom: 64px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px;
}

.footer-brand__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-brand__description {
    margin: 16px 0 0;
    color: rgb(248 250 252 / 60%);
    font-size: 14px;
    line-height: 1.65;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social-link {
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: rgb(248 250 252 / 10%);
    transition: background-color 200ms ease;
}

.footer-social-link:hover {
    background: var(--accent);
}

.footer-title {
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgb(248 250 252 / 60%);
    font-size: 14px;
    transition: color 200ms ease;
}

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

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgb(248 250 252 / 60%);
    font-size: 14px;
}

.footer-contact-item svg {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--accent);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgb(248 250 252 / 10%);
}

.site-footer__copyright,
.site-footer__legal a {
    color: rgb(248 250 252 / 40%);
    font-size: 12px;
}

.site-footer__legal {
    display: flex;
    gap: 24px;
}

.site-footer__legal a {
    transition: color 200ms ease;
}

.site-footer__legal a:hover {
    color: rgb(248 250 252 / 60%);
}

@keyframes mobileMenuOpen {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .primary-navigation,
    .site-header__actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .site-container {
        padding-inline: 48px;
    }
}

@media (max-width: 767px) {
    .site-container {
        padding-inline: 24px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Hero */

.hero-section {
    position: relative;
    display: flex;
    min-height: 700px;
    height: 100vh;
    align-items: center;
    overflow: hidden;
}

.hero-section__background,
.hero-overlay,
.technical-grid {
    position: absolute;
    inset: 0;
}

.hero-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(
            135deg,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(15, 23, 42, 0.6) 50%,
            rgba(15, 23, 42, 0.3) 100%
        );
}

.technical-grid {
    background-image:
        radial-gradient(
            circle,
            hsl(222 47% 11%) 1px,
            transparent 1px
        );
    background-size: 40px 40px;
    opacity: 0.05;
}

.hero-section__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-section__inner {
    max-width: 768px;
}

.hero-section__badge {
    display: inline-flex;
    margin-bottom: 24px;
    border: 1px solid rgb(248 250 252 / 20%);
    background: rgb(248 250 252 / 10%);
    color: rgb(248 250 252 / 80%);
    opacity: 0;
    animation: heroFadeUp 0.8s 0.2s forwards;
}

.hero-section__title {
    margin-bottom: 24px;
    color: var(--primary-foreground);
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    opacity: 0;
    animation: heroFadeUp 0.8s 0.4s forwards;
}

.hero-section__title span {
    display: inline;
    color: var(--accent);
}

.hero-section__description {
    max-width: 672px;
    margin-bottom: 40px;
    color: rgb(248 250 252 / 70%);
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.65;
    opacity: 0;
    animation: heroFadeUp 0.8s 0.6s forwards;
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    animation: heroFadeUp 0.8s 0.8s forwards;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition:
        background-color 200ms ease,
        transform 200ms ease,
        box-shadow 200ms ease;
}

.hero-button--primary {
    background: var(--accent);
    color: var(--accent-foreground);
}

.hero-button--primary:hover {
    background: hsl(201 96% 28%);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgb(0 0 0 / 20%);
}

.hero-button--secondary {
    border: 1px solid rgb(248 250 252 / 30%);
    color: var(--primary-foreground);
}

.hero-button--secondary:hover {
    background: rgb(248 250 252 / 10%);
}

.hero-section__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    z-index: 2;
    display: flex;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgb(248 250 252 / 40%);
    opacity: 0;
    animation: heroFadeIn 0.6s 1.5s forwards;
}

.hero-section__scroll span {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-section__scroll svg {
    animation: heroBounce 1.5s infinite;
}

.hero-section__coordinates {
    position: absolute;
    right: 32px;
    bottom: 32px;
    z-index: 2;
    color: rgb(248 250 252 / 30%);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 700px;
    }

    .hero-section__title {
        font-size: 40px;
    }

    .hero-section__description {
        font-size: 18px;
    }

    .hero-section__coordinates {
        display: none;
    }

    .hero-section__scroll {
        bottom: 20px;
    }
}
/* Company intro */

.company-intro-section {
    padding: 96px 0;
    background: var(--background);
}

.company-intro-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 64px;
}

.company-intro-section__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.company-intro-section__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.company-intro-section__badge {
    position: absolute;
    top: 24px;
    left: 24px;
}

.company-intro-section__eyebrow {
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.company-intro-section__title {
    margin-top: 12px;
    margin-bottom: 24px;
    color: var(--foreground);
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.company-intro-section__text {
    margin-bottom: 16px;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.company-intro-section__text--last {
    margin-bottom: 32px;
}

.company-intro-section__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.company-stat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 2px;
    background: var(--secondary);
}

.company-stat__icon {
    display: flex;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: rgb(3 105 161 / 10%);
    color: var(--accent);
}

.company-stat__value {
    color: var(--foreground);
    font-size: 14px;
    font-weight: 700;
}

.company-stat__label {
    margin-top: 2px;
    color: var(--muted-foreground);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Scroll reveal */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll--delay {
    transition-delay: 150ms;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .company-intro-section__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .company-intro-section {
        padding: 64px 0;
    }

    .company-intro-section__grid {
        gap: 40px;
    }

    .company-intro-section__image {
        height: 380px;
    }

    .company-intro-section__stats {
        grid-template-columns: 1fr;
    }
}
/* Solutions */

.solutions-section {
    padding: 96px 0;
    background: var(--secondary);
}

.solutions-section__header {
    max-width: 672px;
    margin: 0 auto 64px;
    text-align: center;
}

.solutions-section__eyebrow {
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.solutions-section__title {
    margin-top: 12px;
    margin-bottom: 16px;
    color: var(--foreground);
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.solutions-section__description {
    margin: 0;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.solutions-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.solution-card {
    height: 100%;
    padding: 32px;
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 6%),
        0 4px 6px -1px rgb(15 23 42 / 10%);
    transition:
        transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 300ms ease;
}

.solution-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 6%),
        0 20px 25px -5px rgb(15 23 42 / 10%),
        0 8px 10px -6px rgb(15 23 42 / 10%);
}

.solution-card__icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 2px;
    background: rgb(3 105 161 / 10%);
    color: var(--accent);
}

.solution-card__title {
    margin-bottom: 12px;
    color: var(--foreground);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.solution-card__description {
    margin-bottom: 20px;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.solution-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap 200ms ease;
}

.solution-card:hover .solution-card__link {
    gap: 12px;
}

@media (max-width: 767px) {
    .solutions-section {
        padding: 64px 0;
    }

    .solutions-section__header {
        margin-bottom: 40px;
    }

    .solutions-section__grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        padding: 24px;
    }
}
/* Industries */

.industries-section {
    padding: 96px 0;
    background: var(--background);
}

.industries-section__header {
    max-width: 672px;
    margin: 0 auto 64px;
    text-align: center;
}

.industries-section__eyebrow {
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.industries-section__title {
    margin-top: 12px;
    margin-bottom: 16px;
    color: var(--foreground);
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.industries-section__description {
    margin: 0;
    color: var(--muted-foreground);
    line-height: 1.7;
}

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

.industry-card {
    position: relative;
    height: 288px;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.industry-card:hover {
    transform: scale(1.02);
}

.industry-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.industry-card:hover .industry-card__image {
    transform: scale(1.05);
}

.industry-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(15, 23, 42, 0.2) 60%,
            transparent 100%
        );
}

.industry-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px;
}

.industry-card__title {
    margin-bottom: 4px;
    color: var(--primary-foreground);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.industry-card__description {
    margin: 0;
    color: rgb(248 250 252 / 60%);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .industries-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .industries-section {
        padding: 64px 0;
    }

    .industries-section__header {
        margin-bottom: 40px;
    }

    .industries-section__grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        height: 260px;
    }
}

/* Featured technology */

.featured-tech-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background: var(--foreground);
}

.featured-tech-section__grid-background {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle,
            hsl(222 47% 11%) 1px,
            transparent 1px
        );
    background-size: 40px 40px;
    opacity: 0.03;
}

.featured-tech-section__container {
    position: relative;
    z-index: 1;
}

.featured-tech-section__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 64px;
}

.featured-tech-section__eyebrow {
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.featured-tech-section__title {
    margin-top: 12px;
    margin-bottom: 24px;
    color: var(--primary-foreground);
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.featured-tech-section__description {
    margin-bottom: 32px;
    color: rgb(248 250 252 / 60%);
    line-height: 1.7;
}

.featured-tech-section__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.featured-tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.featured-tech-feature__icon {
    display: flex;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: rgb(3 105 161 / 20%);
    color: var(--accent);
}

.featured-tech-feature__title {
    margin-bottom: 4px;
    color: var(--primary-foreground);
    font-size: 14px;
    font-weight: 600;
}

.featured-tech-feature__description {
    margin: 0;
    color: rgb(248 250 252 / 50%);
    font-size: 14px;
    line-height: 1.6;
}

.featured-tech-section__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 2px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition:
        background-color 200ms ease,
        transform 200ms ease;
}

.featured-tech-section__button:hover {
    background: hsl(201 96% 28%);
    transform: translateY(-1px);
}

.featured-tech-section__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.featured-tech-section__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.featured-tech-section__image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgb(15 23 42 / 40%),
            transparent
        );
}

@media (max-width: 1024px) {
    .featured-tech-section__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .featured-tech-section {
        padding: 64px 0;
    }

    .featured-tech-section__layout {
        gap: 40px;
    }

    .featured-tech-section__image {
        height: 380px;
    }
}
/* Services */

.services-section {
    padding: 96px 0;
    background: var(--secondary);
}

.services-section__header {
    max-width: 672px;
    margin: 0 auto 64px;
    text-align: center;
}

.services-section__eyebrow {
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.services-section__title {
    margin-top: 12px;
    margin-bottom: 16px;
    color: var(--foreground);
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.services-section__description {
    margin: 0;
    color: var(--muted-foreground);
    line-height: 1.7;
}

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

.service-card {
    height: 100%;
    padding: 24px;
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 6%),
        0 4px 6px -1px rgb(15 23 42 / 10%);
}

.service-card__icon {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 2px;
    background: rgb(3 105 161 / 10%);
    color: var(--accent);
}

.service-card__title {
    margin-bottom: 8px;
    color: var(--foreground);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.service-card__description {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .services-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 64px 0;
    }

    .services-section__header {
        margin-bottom: 40px;
    }

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

/* Sustainability */

.sustainability-section {
    padding: 96px 0;
    background: var(--background);
}

.sustainability-section__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 64px;
}

.sustainability-section__eyebrow {
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.sustainability-section__title {
    margin-top: 12px;
    margin-bottom: 24px;
    color: var(--foreground);
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.sustainability-section__description {
    margin: 0;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.sustainability-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.sustainability-card {
    padding: 20px;
    border-radius: 2px;
    background: var(--secondary);
}

.sustainability-card__icon {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 2px;
    background: rgb(3 105 161 / 10%);
    color: var(--accent);
}

.sustainability-card__title {
    margin-bottom: 8px;
    color: var(--foreground);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.sustainability-card__description {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .sustainability-section__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .sustainability-section {
        padding: 64px 0;
    }

    .sustainability-section__layout {
        gap: 40px;
    }

    .sustainability-section__grid {
        grid-template-columns: 1fr;
    }
}
/* News */

.news-section {
    padding: 96px 0;
    background: var(--secondary);
}

.news-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 64px;
}

.news-section__eyebrow {
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.news-section__title {
    margin-top: 12px;
    margin-bottom: 0;
    color: var(--foreground);
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.news-section__all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap 200ms ease;
}

.news-section__all-link:hover {
    gap: 12px;
}

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

.news-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 6%),
        0 4px 6px -1px rgb(15 23 42 / 10%);
    transition:
        transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 300ms ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 6%),
        0 20px 25px -5px rgb(15 23 42 / 10%),
        0 8px 10px -6px rgb(15 23 42 / 10%);
}

.news-card__accent {
    height: 8px;
    background: var(--accent);
}

.news-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.news-card__category {
    font-size: 10px;
}

.news-card__date {
    color: var(--muted-foreground);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
}

.news-card__title {
    margin-bottom: 12px;
    color: var(--foreground);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.news-card__excerpt {
    flex: 1;
    margin-bottom: 16px;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap 200ms ease;
}

.news-card:hover .news-card__link {
    gap: 12px;
}

@media (max-width: 1024px) {
    .news-section__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .news-section {
        padding: 64px 0;
    }

    .news-section__header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 40px;
    }
}
/* Internal page hero */

.internal-hero {
    position: relative;
    overflow: hidden;
    padding: 128px 0 64px;
    background: var(--foreground);
}

.internal-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle,
            hsl(222 47% 11%) 1px,
            transparent 1px
        );
    background-size: 40px 40px;
    opacity: 0.03;
}

.internal-hero__container {
    position: relative;
    z-index: 1;
}

.internal-hero__content {
    max-width: 768px;
}

.internal-hero__badge {
    display: inline-flex;
    margin-bottom: 16px;
    border: 1px solid rgb(248 250 252 / 20%);
    background: rgb(248 250 252 / 10%);
    color: rgb(248 250 252 / 80%);
}

.internal-hero__title {
    margin-bottom: 24px;
    color: var(--primary-foreground);
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.1;
}

.internal-hero__description {
    max-width: 672px;
    margin: 0;
    color: rgb(248 250 252 / 60%);
    font-size: 18px;
    line-height: 1.7;
}

/* Solutions page */

.solutions-page__content {
    padding: 96px 0;
    background: var(--background);
}

.solution-detail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 48px;
}

.solution-detail + .solution-detail {
    margin-top: 64px;
}

.solution-detail--reverse .solution-detail__text {
    order: 2;
}

.solution-detail--reverse .solution-detail__visual {
    order: 1;
}

.solution-detail__icon {
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 2px;
    background: rgb(3 105 161 / 10%);
    color: var(--accent);
}

.solution-detail__icon svg {
    width: 28px;
    height: 28px;
}

.solution-detail__title {
    margin-bottom: 16px;
    color: var(--foreground);
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.25;
}

.solution-detail__description {
    margin-bottom: 24px;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.solution-detail__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.solution-detail__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--foreground);
    font-size: 14px;
}

.solution-detail__features svg {
    flex: 0 0 auto;
    color: var(--accent);
}

.solution-detail__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap 200ms ease;
}

.solution-detail__link:hover {
    gap: 12px;
}

.solution-detail__visual {
    display: flex;
    height: 288px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: var(--secondary);
    color: rgb(3 105 161 / 20%);
}

.solution-detail__visual svg {
    width: 80px;
    height: 80px;
}

@media (max-width: 1024px) {
    .solution-detail {
        grid-template-columns: 1fr;
    }

    .solution-detail--reverse .solution-detail__text,
    .solution-detail--reverse .solution-detail__visual {
        order: initial;
    }
}

@media (max-width: 767px) {
    .internal-hero {
        padding: 112px 0 56px;
    }

    .internal-hero__title {
        font-size: 40px;
    }

    .solutions-page__content {
        padding: 64px 0;
    }

    .solution-detail + .solution-detail {
        margin-top: 48px;
    }

    .solution-detail__visual {
        height: 220px;
    }
}
/* Industries page */

.industries-page__content {
    padding: 96px 0;
    background: var(--background);
}

.industry-detail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 40px;
}

.industry-detail + .industry-detail {
    margin-top: 48px;
}

.industry-detail--reverse .industry-detail__text {
    order: 2;
}

.industry-detail--reverse .industry-detail__media {
    order: 1;
}

.industry-detail__title {
    margin-bottom: 16px;
    color: var(--foreground);
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.25;
}

.industry-detail__description {
    margin: 0;
    color: var(--muted-foreground);
    line-height: 1.75;
}

.industry-detail__media {
    height: 256px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 6%),
        0 4px 6px -1px rgb(15 23 42 / 10%);
    transition: transform 300ms ease;
}

.industry-detail__media:hover {
    transform: scale(1.02);
}

.industry-detail__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .industry-detail {
        grid-template-columns: 1fr;
    }

    .industry-detail--reverse .industry-detail__text,
    .industry-detail--reverse .industry-detail__media {
        order: initial;
    }
}

@media (max-width: 767px) {
    .industries-page__content {
        padding: 64px 0;
    }

    .industry-detail + .industry-detail {
        margin-top: 40px;
    }

    .industry-detail__media {
        height: 220px;
    }
}


.services-page__service-list {
    min-height: 600px;
}

/* About page */

.about-values {
    padding: 96px 0;
    background: var(--background);
}

.about-values__header {
    max-width: 672px;
    margin-bottom: 48px;
}

.about-values__title,
.about-timeline__title {
    margin-bottom: 16px;
    color: var(--foreground);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.about-values__description {
    margin: 0;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.about-value-card {
    height: 100%;
    padding: 24px;
    border-radius: 2px;
    background: var(--secondary);
}

.about-value-card__icon {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 2px;
    background: rgb(3 105 161 / 10%);
    color: var(--accent);
}

.about-value-card__title {
    margin-bottom: 8px;
    color: var(--foreground);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.about-value-card__description {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.about-timeline {
    padding: 96px 0;
    background: var(--secondary);
}

.about-timeline__header {
    margin-bottom: 48px;
}

.about-timeline__list {
    position: relative;
}

.about-timeline__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 19px;
    width: 1px;
    background: rgb(3 105 161 / 20%);
}

.about-timeline__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 32px;
}

.about-timeline__item:last-child {
    padding-bottom: 0;
}

.about-timeline__marker {
    position: relative;
    z-index: 1;
    display: flex;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
}

.about-timeline__content {
    padding-top: 8px;
}

.about-timeline__year {
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
}

.about-timeline__event {
    margin-top: 4px;
    margin-bottom: 0;
    color: var(--foreground);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .about-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .about-values,
    .about-timeline {
        padding: 64px 0;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-timeline__line {
        display: none;
    }
}
/* News archive page */

.news-archive-section {
    padding: 96px 0;
    background: var(--secondary);
}

.news-archive-section__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-empty-state {
    grid-column: 1 / -1;
    padding: 48px;
    text-align: center;
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 6%),
        0 4px 6px -1px rgb(15 23 42 / 10%);
}

.news-empty-state h2 {
    margin-bottom: 12px;
    color: var(--foreground);
}

.news-empty-state p {
    margin: 0;
    color: var(--muted-foreground);
}

.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.news-pagination .page-numbers {
    display: inline-flex;
    min-width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    padding: 0 12px;
    border-radius: 2px;
    background: var(--surface);
    color: var(--foreground);
    font-size: 14px;
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

/* Single news article */

.single-news {
    padding: 96px 24px;
    background: var(--background);
}

.single-news__container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.single-news__featured-image {
    margin: 0 0 40px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 6%),
        0 4px 6px -1px rgb(15 23 42 / 10%);
}

.single-news__image {
    width: 100%;
    height: auto;
}

.single-news__content {
    color: var(--foreground);
    font-size: 17px;
    line-height: 1.8;
}

.single-news__content h2,
.single-news__content h3,
.single-news__content h4 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.single-news__content p {
    margin-bottom: 24px;
}

.single-news__content ul,
.single-news__content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.single-news__content ul {
    list-style: disc;
}

.single-news__content ol {
    list-style: decimal;
}

.single-news__back-link {
    display: inline-flex;
    margin-top: 40px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
    .news-archive-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .news-archive-section,
    .single-news {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .news-archive-section__grid {
        grid-template-columns: 1fr;
    }

    .news-empty-state {
        padding: 32px 20px;
    }
}

/* Contact page */
.contact-hero .internal-hero__content{max-width:900px}.contact-hero .internal-hero__title{max-width:880px}.contact-overview{padding:96px 0;background:var(--background)}.contact-overview__layout{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);align-items:start;gap:64px}.contact-section__eyebrow,.contact-indutrade__eyebrow{color:var(--accent);font-family:"JetBrains Mono",monospace;font-size:12px;font-weight:500;text-transform:uppercase;letter-spacing:.15em}.contact-overview__title,.contact-competence__title,.contact-indutrade__title,.contact-closing__title{margin-top:12px;margin-bottom:24px;color:var(--foreground);font-size:clamp(30px,4vw,42px);font-weight:700;line-height:1.2}.contact-overview__text,.contact-competence__description,.contact-closing__text{margin-bottom:0;color:var(--muted-foreground);line-height:1.75}.contact-overview__note{display:flex;align-items:flex-start;gap:16px;margin-top:32px;padding-top:24px;border-top:1px solid var(--border)}.contact-overview__note-line{width:32px;height:2px;margin-top:11px;flex:0 0 auto;background:var(--accent)}.contact-overview__note p{margin:0;color:var(--foreground);font-size:14px;font-weight:600;line-height:1.6}.contact-details-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.contact-detail-card{display:flex;min-height:170px;align-items:flex-start;gap:16px;padding:24px;border:1px solid var(--border);border-radius:2px;background:var(--surface);box-shadow:0 0 0 1px rgb(15 23 42 / 3%),0 8px 24px rgb(15 23 42 / 5%);transition:transform 200ms ease,border-color 200ms ease,box-shadow 200ms ease}.contact-detail-card:hover{transform:translateY(-3px);border-color:rgb(3 105 161 / 25%);box-shadow:0 0 0 1px rgb(15 23 42 / 4%),0 16px 32px rgb(15 23 42 / 8%)}.contact-detail-card__icon{display:flex;width:44px;height:44px;flex:0 0 auto;align-items:center;justify-content:center;border-radius:2px;background:rgb(3 105 161 / 10%);color:var(--accent)}.contact-detail-card__icon svg{width:20px;height:20px}.contact-detail-card__label{display:block;margin-bottom:10px;color:var(--muted-foreground);font-family:"JetBrains Mono",monospace;font-size:11px;font-weight:500;text-transform:uppercase;letter-spacing:.12em}.contact-detail-card__value{margin:0;color:var(--foreground);font-size:15px;font-weight:600;line-height:1.7}.contact-detail-card__value a{transition:color 200ms ease}.contact-detail-card__value a:hover{color:var(--accent)}.contact-competence{padding:96px 0;background:var(--secondary)}.contact-competence__header{max-width:790px;margin-bottom:48px}.contact-competence__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.competence-card{position:relative;min-height:170px;overflow:hidden;padding:28px;border-radius:2px;background:var(--surface);box-shadow:0 0 0 1px rgb(15 23 42 / 5%),0 4px 12px rgb(15 23 42 / 5%);transition:transform 200ms ease,box-shadow 200ms ease}.competence-card:hover{transform:translateY(-4px);box-shadow:0 0 0 1px rgb(15 23 42 / 5%),0 18px 30px rgb(15 23 42 / 8%)}.competence-card::after{content:"";position:absolute;right:0;bottom:0;width:72px;height:72px;background:linear-gradient(135deg,transparent 50%,rgb(3 105 161 / 8%) 50%)}.competence-card__number{display:inline-block;margin-bottom:38px;color:var(--accent);font-family:"JetBrains Mono",monospace;font-size:12px;font-weight:600;letter-spacing:.12em}.competence-card h3{max-width:210px;margin:0;color:var(--foreground);font-size:17px;font-weight:700;line-height:1.35}.contact-competence__footer{margin-top:32px;padding:24px 28px;border-left:3px solid var(--accent);background:rgb(255 255 255 / 55%)}.contact-competence__footer p{max-width:940px;margin:0;color:var(--foreground);font-weight:500;line-height:1.7}.contact-indutrade{position:relative;overflow:hidden;padding:96px 0;background:var(--foreground)}.contact-indutrade__grid{position:absolute;inset:0;background-image:radial-gradient(circle,rgb(248 250 252 / 18%) 1px,transparent 1px);background-size:40px 40px;opacity:.12}.contact-indutrade__container{position:relative;z-index:1}.contact-indutrade__content{max-width:920px}.contact-indutrade__title{max-width:800px;color:var(--primary-foreground)}.contact-indutrade__text{max-width:820px;margin:0;color:rgb(248 250 252 / 62%);font-size:17px;line-height:1.8}.contact-indutrade__facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:40px}.contact-indutrade__facts>div{padding:22px;border:1px solid rgb(248 250 252 / 12%);background:rgb(248 250 252 / 5%);backdrop-filter:blur(4px)}.contact-indutrade__facts strong,.contact-indutrade__facts span{display:block}.contact-indutrade__facts strong{margin-bottom:6px;color:var(--primary-foreground);font-size:20px;font-weight:700}.contact-indutrade__facts span{color:rgb(248 250 252 / 50%);font-size:12px;text-transform:uppercase;letter-spacing:.08em}.contact-closing{padding:96px 0;background:var(--background)}.contact-closing__card{position:relative;overflow:hidden;padding:64px;border:1px solid var(--border);border-radius:2px;background:var(--surface);box-shadow:0 0 0 1px rgb(15 23 42 / 3%),0 16px 48px rgb(15 23 42 / 8%)}.contact-closing__card::after{content:"";position:absolute;top:-130px;right:-130px;width:320px;height:320px;border-radius:50%;background:rgb(3 105 161 / 7%)}.contact-closing__title,.contact-closing__text,.contact-closing__actions,.contact-closing__signature,.contact-closing__card>.contact-section__eyebrow{position:relative;z-index:1}.contact-closing__text{max-width:760px;font-size:17px}.contact-closing__actions{display:flex;flex-wrap:wrap;align-items:center;gap:24px;margin-top:32px}.contact-closing__button{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:14px 24px;border-radius:2px;background:var(--accent);color:var(--accent-foreground);font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;transition:transform 200ms ease,background-color 200ms ease}.contact-closing__button:hover{transform:translateY(-2px);background:hsl(201 96% 28%)}.contact-closing__link{display:inline-flex;align-items:center;gap:8px;color:var(--accent);font-size:14px;font-weight:700;transition:gap 200ms ease}.contact-closing__link:hover{gap:12px}.contact-closing__signature{margin:48px 0 0;padding-top:24px;border-top:1px solid var(--border);color:var(--muted-foreground);font-family:"JetBrains Mono",monospace;font-size:12px;letter-spacing:.04em}@media (max-width:1024px){.contact-overview__layout{grid-template-columns:1fr}.contact-competence__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width:767px){.contact-overview,.contact-competence,.contact-indutrade,.contact-closing{padding:64px 0}.contact-details-grid,.contact-competence__grid,.contact-indutrade__facts{grid-template-columns:1fr}.contact-detail-card{min-height:auto}.contact-closing__card{padding:36px 24px}.contact-closing__actions{align-items:flex-start;flex-direction:column}.contact-indutrade__text,.contact-closing__text{font-size:16px}}

* Sentralsmøring page */

.lubrication-page__content {
    padding: 96px 0;
    background: var(--background);
}

.lubrication-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 56px;
}

.lubrication-main {
    min-width: 0;
}

.lubrication-intro,
.lubrication-section {
    margin-bottom: 72px;
}

.lubrication-eyebrow,
.lubrication-sidebar__eyebrow {
    display: inline-block;
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.lubrication-intro h2,
.lubrication-section h2,
.lubrication-cta h2 {
    margin-top: 12px;
    margin-bottom: 20px;
    color: var(--foreground);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}

.lubrication-intro h3,
.lubrication-cta h3 {
    margin-bottom: 20px;
    color: var(--foreground);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
}

.lubrication-intro p,
.lubrication-section > p,
.lubrication-cta p {
    color: var(--muted-foreground);
    line-height: 1.8;
}

.lubrication-section__header {
    max-width: 760px;
    margin-bottom: 24px;
}

.lubrication-benefits,
.lubrication-industries {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.lubrication-card,
.lubrication-industry {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 8px 24px rgb(15 23 42 / 5%);
}

.lubrication-card__number {
    display: block;
    margin-bottom: 26px;
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.lubrication-card h3,
.lubrication-industry h3 {
    margin-bottom: 10px;
    color: var(--foreground);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.lubrication-card p,
.lubrication-industry p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.lubrication-section--secondary {
    padding: 40px;
    border-radius: 2px;
    background: var(--secondary);
}

.lubrication-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin: 28px 0;
}

.lubrication-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--foreground);
    font-size: 14px;
    line-height: 1.6;
}

.lubrication-check-list svg {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--accent);
}

.lubrication-quote {
    margin: 28px 0 0;
    padding: 22px 24px;
    border-left: 3px solid var(--accent);
    background: var(--surface);
    color: var(--foreground);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
}

.lubrication-section--dark {
    padding: 44px;
    border-radius: 2px;
    background: var(--foreground);
}

.lubrication-section--dark h2 {
    color: var(--primary-foreground);
}

.lubrication-section--dark > p {
    color: rgb(248 250 252 / 62%);
}

.lubrication-check-list--dark li {
    color: rgb(248 250 252 / 78%);
}

.lubrication-cta {
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 16px 40px rgb(15 23 42 / 7%);
}

.lubrication-sidebar {
    position: sticky;
    top: 108px;
}

.lubrication-sidebar__inner {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 12px 32px rgb(15 23 42 / 6%);
}

.lubrication-sidebar h2 {
    margin-top: 10px;
    margin-bottom: 22px;
    color: var(--foreground);
    font-size: 22px;
    font-weight: 700;
}

.lubrication-sidebar__menu {
    display: flex;
    flex-direction: column;
}

.lubrication-sidebar__menu li + li {
    border-top: 1px solid var(--border);
}

.lubrication-sidebar__menu a {
    display: flex;
    padding: 13px 0;
    color: var(--muted-foreground);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    transition:
        color 200ms ease,
        padding-left 200ms ease;
}

.lubrication-sidebar__menu a:hover {
    padding-left: 6px;
    color: var(--accent);
}

.lubrication-sidebar__note {
    margin: 22px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .lubrication-layout {
        grid-template-columns: 1fr;
    }

    .lubrication-sidebar {
        position: static;
    }

    .lubrication-sidebar__menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 24px;
    }
}

@media (max-width: 767px) {
    .lubrication-page__content {
        padding: 64px 0;
    }

    .lubrication-intro,
    .lubrication-section {
        margin-bottom: 52px;
    }

    .lubrication-benefits,
    .lubrication-industries,
    .lubrication-check-list,
    .lubrication-sidebar__menu {
        grid-template-columns: 1fr;
    }

    .lubrication-section--secondary,
    .lubrication-section--dark,
    .lubrication-cta {
        padding: 28px 22px;
    }
}

/* Sentralsmøring grunnsystemer */

.foundation-page__content {
    padding: 96px 0;
    background: var(--background);
}

.foundation-main {
    min-width: 0;
}

.foundation-banner {
    margin: 0 0 64px;
    overflow: hidden;
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 5%),
        0 12px 32px rgb(15 23 42 / 7%);
}

.foundation-banner img {
    width: 100%;
    min-height: 220px;
    object-fit: cover;
}

.foundation-section {
    margin-bottom: 72px;
}

.foundation-section h2 {
    margin-top: 12px;
    margin-bottom: 20px;
    color: var(--foreground);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}

.foundation-section > p {
    color: var(--muted-foreground);
    line-height: 1.8;
}

.foundation-section--secondary {
    padding: 40px;
    border-radius: 2px;
    background: var(--secondary);
}

.foundation-component-grid,
.foundation-system-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.foundation-component-card,
.foundation-system-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
}

.foundation-component-card__number,
.foundation-system-card__code {
    display: block;
    margin-bottom: 28px;
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.foundation-component-card h3,
.foundation-system-card h3 {
    margin-bottom: 10px;
    color: var(--foreground);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.foundation-component-card p,
.foundation-system-card p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.foundation-callout {
    margin: 28px 0 0;
    padding: 20px 22px;
    border-left: 3px solid var(--accent);
    background: var(--surface);
    color: var(--foreground) !important;
    font-weight: 600;
}

.foundation-section--dark {
    padding: 42px;
    border-radius: 2px;
    background: var(--foreground);
}

.foundation-section--dark h2 {
    color: var(--primary-foreground);
}

.foundation-section--dark > p {
    color: rgb(248 250 252 / 62%);
}

.foundation-sector-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.foundation-sector-grid span {
    padding: 14px 16px;
    border: 1px solid rgb(248 250 252 / 12%);
    background: rgb(248 250 252 / 5%);
    color: rgb(248 250 252 / 78%);
    font-size: 14px;
    font-weight: 600;
}

.foundation-section__header {
    max-width: 760px;
    margin-bottom: 28px;
}

.foundation-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.foundation-product-card {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 10px 28px rgb(15 23 42 / 6%);
}

.foundation-product-card__image {
    min-height: 300px;
    background: #fff;
}

.foundation-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foundation-product-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.foundation-product-card__content .technical-badge {
    align-self: flex-start;
    margin-bottom: 18px;
}

.foundation-product-card__content h3 {
    margin-bottom: 12px;
    color: var(--foreground);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.foundation-product-card__content p {
    margin: 0;
    color: var(--muted-foreground);
    line-height: 1.75;
}

.lubrication-sidebar__menu .is-current a {
    padding-left: 6px;
    color: var(--accent);
}

.foundation-sidebar__back {
    display: inline-flex;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

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

    .foundation-product-card__image {
        min-height: 250px;
    }
}

@media (max-width: 767px) {
    .foundation-page__content {
        padding: 64px 0;
    }

    .foundation-section {
        margin-bottom: 52px;
    }

    .foundation-component-grid,
    .foundation-system-grid,
    .foundation-sector-grid {
        grid-template-columns: 1fr;
    }

    .foundation-section--secondary,
    .foundation-section--dark {
        padding: 28px 22px;
    }

    .foundation-product-card__content {
        padding: 26px 22px;
    }
}
/* Application pages: anleggsmaskiner and landbruksmaskiner */

.application-page__content {
    padding: 96px 0;
    background: var(--background);
}

.application-main {
    min-width: 0;
}

.application-hero-image {
    margin: 0 0 64px;
    overflow: hidden;
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 5%),
        0 12px 32px rgb(15 23 42 / 7%);
}

.application-hero-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.application-section {
    margin-bottom: 72px;
}

.application-section h2 {
    margin-top: 12px;
    margin-bottom: 20px;
    color: var(--foreground);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}

.application-section > p {
    color: var(--muted-foreground);
    line-height: 1.8;
}

.application-section--secondary,
.application-section--brands {
    padding: 40px;
    border-radius: 2px;
    background: var(--secondary);
}

.application-section--dark {
    padding: 44px;
    border-radius: 2px;
    background: var(--foreground);
}

.application-section--dark h2 {
    color: var(--primary-foreground);
}

.application-section--dark > p {
    color: rgb(248 250 252 / 62%);
}

.application-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.application-benefit-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.application-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 8px 24px rgb(15 23 42 / 5%);
}

.application-card__number {
    display: block;
    margin-bottom: 28px;
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.application-card h3 {
    margin-bottom: 10px;
    color: var(--foreground);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.application-card p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.application-quote {
    margin: 30px 0 0;
    padding: 22px 24px;
    border-left: 3px solid var(--accent);
    background: rgb(248 250 252 / 6%);
    color: var(--primary-foreground);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
}

.application-highlight-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin-top: 28px;
}

.application-highlight-list li {
    position: relative;
    padding: 16px 18px 16px 42px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--foreground);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.application-highlight-list li::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.application-chip-grid,
.application-brand-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.application-chip-grid span,
.application-brand-grid span {
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    color: var(--foreground);
    font-size: 13px;
    font-weight: 600;
}

.application-brand-grid span {
    min-width: 135px;
    text-align: center;
}

@media (max-width: 767px) {
    .application-page__content {
        padding: 64px 0;
    }

    .application-section {
        margin-bottom: 52px;
    }

    .application-section--secondary,
    .application-section--brands,
    .application-section--dark {
        padding: 28px 22px;
    }

    .application-benefit-grid,
    .application-benefit-grid--four,
    .application-highlight-list {
        grid-template-columns: 1fr;
    }
}
/* Supplemental styles */
.application-chip-grid--dark span{border-color:rgb(248 250 252 / 12%);background:rgb(248 250 252 / 5%);color:rgb(248 250 252 / 78%);}
/* Offshore, marine, havn and jernbane additions */

.application-inline-image {
    margin: 0 0 72px;
    overflow: hidden;
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 5%),
        0 12px 32px rgb(15 23 42 / 7%);
}

.application-inline-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.application-inline-image--contained {
    padding: 24px;
}

.application-inline-image--contained img {
    max-height: 420px;
    object-fit: contain;
}

.application-benefit-grid--dark .application-card {
    border-color: rgb(248 250 252 / 12%);
    background: rgb(248 250 252 / 6%);
}

.application-benefit-grid--dark .application-card h3 {
    color: var(--primary-foreground);
}

.application-benefit-grid--dark .application-card p {
    color: rgb(248 250 252 / 58%);
}

.application-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.application-faq details {
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
}

.application-faq summary {
    padding: 18px 20px;
    color: var(--foreground);
    font-weight: 700;
    cursor: pointer;
}

.application-faq details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted-foreground);
    line-height: 1.7;
}

@media (max-width: 767px) {
    .application-inline-image {
        margin-bottom: 52px;
    }

    .application-inline-image img {
        max-height: 360px;
    }
}

/* Gjenvinning, vind, avløp and vifter additions */

.application-process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.application-process-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
}

.application-process-card h3 {
    margin-bottom: 10px;
    color: var(--foreground);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.application-process-card p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.application-process-grid--dark .application-process-card {
    border-color: rgb(248 250 252 / 12%);
    background: rgb(248 250 252 / 6%);
}

.application-process-grid--dark .application-process-card h3 {
    color: var(--primary-foreground);
}

.application-process-grid--dark .application-process-card p {
    color: rgb(248 250 252 / 58%);
}

@media (max-width: 767px) {
    .application-process-grid {
        grid-template-columns: 1fr;
    }
}
/* Pumpe- og doseringssystem page */

.dosing-page__content {
    padding: 96px 0;
    background: var(--background);
}

.dosing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 56px;
}

.dosing-main {
    min-width: 0;
}

.dosing-hero-image {
    margin: 0 0 64px;
    overflow: hidden;
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 5%),
        0 12px 32px rgb(15 23 42 / 7%);
}

.dosing-hero-image img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}

.dosing-section {
    margin-bottom: 72px;
}

.dosing-eyebrow,
.dosing-sidebar__eyebrow {
    display: inline-block;
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.dosing-section h2,
.dosing-cta h2 {
    margin-top: 12px;
    margin-bottom: 20px;
    color: var(--foreground);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}

.dosing-section h3 {
    color: var(--foreground);
}

.dosing-section > h3 {
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 1.5;
}

.dosing-section > p,
.dosing-cta p {
    color: var(--muted-foreground);
    line-height: 1.8;
}

.dosing-section--secondary {
    padding: 40px;
    border-radius: 2px;
    background: var(--secondary);
}

.dosing-application-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.dosing-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 8px 24px rgb(15 23 42 / 5%);
}

.dosing-card__number {
    display: block;
    margin-bottom: 28px;
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.dosing-card h3 {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.dosing-card p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.dosing-system-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.dosing-system-panel {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
}

.dosing-system-panel > .technical-badge {
    display: inline-flex;
    margin-bottom: 20px;
}

.dosing-system-panel h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}

.dosing-system-panel > p {
    margin-bottom: 24px;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.dosing-system-panel--dark {
    border-color: rgb(248 250 252 / 12%);
    background: var(--foreground);
}

.dosing-system-panel--dark h3 {
    color: var(--primary-foreground);
}

.dosing-system-panel--dark > p {
    color: rgb(248 250 252 / 58%);
}

.dosing-product-list {
    display: flex;
    flex-direction: column;
}

.dosing-product-list li {
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.dosing-product-list strong,
.dosing-product-list span {
    display: block;
}

.dosing-product-list strong {
    margin-bottom: 5px;
    color: var(--foreground);
    font-size: 14px;
}

.dosing-product-list span {
    color: var(--muted-foreground);
    font-size: 13px;
    line-height: 1.6;
}

.dosing-system-panel--dark .dosing-product-list li {
    border-color: rgb(248 250 252 / 12%);
}

.dosing-system-panel--dark .dosing-product-list strong {
    color: var(--primary-foreground);
}

.dosing-system-panel--dark .dosing-product-list span {
    color: rgb(248 250 252 / 55%);
}

.dosing-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin-top: 28px;
}

.dosing-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--foreground);
    font-size: 14px;
    line-height: 1.6;
}

.dosing-check-list svg {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--accent);
}

.dosing-section--dark {
    padding: 44px;
    border-radius: 2px;
    background: var(--foreground);
}

.dosing-section--dark h2 {
    color: var(--primary-foreground);
}

.dosing-industry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.dosing-industry-grid span {
    padding: 14px 16px;
    border: 1px solid rgb(248 250 252 / 12%);
    background: rgb(248 250 252 / 5%);
    color: rgb(248 250 252 / 78%);
    font-size: 14px;
    font-weight: 600;
}

.dosing-cta {
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 16px 40px rgb(15 23 42 / 7%);
}

.dosing-sidebar {
    position: sticky;
    top: 108px;
}

.dosing-sidebar__inner {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 12px 32px rgb(15 23 42 / 6%);
}

.dosing-sidebar h2 {
    margin-top: 10px;
    margin-bottom: 22px;
    color: var(--foreground);
    font-size: 22px;
    font-weight: 700;
}

.dosing-sidebar__menu {
    display: flex;
    flex-direction: column;
}

.dosing-sidebar__menu li + li {
    border-top: 1px solid var(--border);
}

.dosing-sidebar__menu a {
    display: flex;
    padding: 15px 0;
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    transition:
        color 200ms ease,
        padding-left 200ms ease;
}

.dosing-sidebar__menu a:hover {
    padding-left: 6px;
    color: var(--accent);
}

.dosing-sidebar__note {
    margin: 22px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .dosing-layout {
        grid-template-columns: 1fr;
    }

    .dosing-sidebar {
        position: static;
    }

    .dosing-sidebar__menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 24px;
    }
}

@media (max-width: 767px) {
    .dosing-page__content {
        padding: 64px 0;
    }

    .dosing-section {
        margin-bottom: 52px;
    }

    .dosing-section--secondary,
    .dosing-section--dark,
    .dosing-cta {
        padding: 28px 22px;
    }

    .dosing-application-grid,
    .dosing-system-columns,
    .dosing-check-list,
    .dosing-industry-grid,
    .dosing-sidebar__menu {
        grid-template-columns: 1fr;
    }
}
/* DOPAG and MeterMix detail pages */

.dosing-sidebar__menu .is-current a {
    padding-left: 6px;
    color: var(--accent);
}

.dosing-industry-grid--light span {
    border-color: var(--border);
    background: var(--surface);
    color: var(--foreground);
}

.dosing-check-list--dark li {
    color: rgb(248 250 252 / 78%);
}
/* Oljerensesystemer page */

.oil-cleaning-page__content {
    padding: 96px 0;
    background: var(--background);
}

.oil-cleaning-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 56px;
}

.oil-cleaning-main {
    min-width: 0;
}

.oil-cleaning-hero-image {
    margin: 0 0 64px;
    overflow: hidden;
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 5%),
        0 12px 32px rgb(15 23 42 / 7%);
}

.oil-cleaning-hero-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.oil-cleaning-section {
    margin-bottom: 72px;
}

.oil-cleaning-eyebrow,
.oil-cleaning-sidebar__eyebrow {
    display: inline-block;
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.oil-cleaning-section h2,
.oil-cleaning-cta h2 {
    margin-top: 12px;
    margin-bottom: 20px;
    color: var(--foreground);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}

.oil-cleaning-section > p,
.oil-cleaning-cta p {
    color: var(--muted-foreground);
    line-height: 1.8;
}

.oil-cleaning-section--secondary {
    padding: 40px;
    border-radius: 2px;
    background: var(--secondary);
}

.oil-cleaning-challenge-grid,
.oil-cleaning-benefit-grid,
.oil-cleaning-market-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.oil-cleaning-card,
.oil-cleaning-benefit,
.oil-cleaning-market {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
}

.oil-cleaning-card span {
    display: block;
    margin-bottom: 28px;
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.oil-cleaning-card h3,
.oil-cleaning-benefit h3,
.oil-cleaning-market h3 {
    margin-bottom: 10px;
    color: var(--foreground);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.oil-cleaning-benefit p,
.oil-cleaning-market p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.oil-cleaning-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin-top: 28px;
}

.oil-cleaning-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--foreground);
    font-size: 14px;
    line-height: 1.6;
}

.oil-cleaning-check-list svg {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--accent);
}

.oil-cleaning-section--dark {
    padding: 44px;
    border-radius: 2px;
    background: var(--foreground);
}

.oil-cleaning-section--dark h2 {
    color: var(--primary-foreground);
}

.oil-cleaning-section--dark > p {
    color: rgb(248 250 252 / 62%);
}

.oil-cleaning-section--dark .oil-cleaning-benefit {
    border-color: rgb(248 250 252 / 12%);
    background: rgb(248 250 252 / 6%);
}

.oil-cleaning-section--dark .oil-cleaning-benefit h3 {
    color: var(--primary-foreground);
}

.oil-cleaning-section--dark .oil-cleaning-benefit p,
.oil-cleaning-check-list--dark li {
    color: rgb(248 250 252 / 58%);
}

.oil-cleaning-benefit-grid--light .oil-cleaning-benefit {
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 8px 24px rgb(15 23 42 / 5%);
}

.oil-cleaning-cta {
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 16px 40px rgb(15 23 42 / 7%);
}

.oil-cleaning-sidebar {
    position: sticky;
    top: 108px;
}

.oil-cleaning-sidebar__inner {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 12px 32px rgb(15 23 42 / 6%);
}

.oil-cleaning-sidebar h2 {
    margin-top: 10px;
    margin-bottom: 22px;
    color: var(--foreground);
    font-size: 22px;
    font-weight: 700;
}

.oil-cleaning-sidebar__menu {
    display: flex;
    flex-direction: column;
}

.oil-cleaning-sidebar__menu li + li {
    border-top: 1px solid var(--border);
}

.oil-cleaning-sidebar__menu a {
    display: flex;
    padding: 15px 0;
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    transition:
        color 200ms ease,
        padding-left 200ms ease;
}

.oil-cleaning-sidebar__menu a:hover {
    padding-left: 6px;
    color: var(--accent);
}

.oil-cleaning-sidebar__note {
    margin: 22px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .oil-cleaning-layout {
        grid-template-columns: 1fr;
    }

    .oil-cleaning-sidebar {
        position: static;
    }

    .oil-cleaning-sidebar__menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 24px;
    }
}

@media (max-width: 767px) {
    .oil-cleaning-page__content {
        padding: 64px 0;
    }

    .oil-cleaning-section {
        margin-bottom: 52px;
    }

    .oil-cleaning-section--secondary,
    .oil-cleaning-section--dark,
    .oil-cleaning-cta {
        padding: 28px 22px;
    }

    .oil-cleaning-challenge-grid,
    .oil-cleaning-benefit-grid,
    .oil-cleaning-market-grid,
    .oil-cleaning-check-list,
    .oil-cleaning-sidebar__menu {
        grid-template-columns: 1fr;
    }
}
/* RecondOil detail pages */

.oil-cleaning-sidebar__menu .is-current a {
    padding-left: 6px;
    color: var(--accent);
}

.oil-test-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.oil-test-steps article {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
}

.oil-test-steps article span {
    display: block;
    margin-bottom: 28px;
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.oil-test-steps h3 {
    margin-bottom: 10px;
    color: var(--foreground);
    font-size: 17px;
    font-weight: 700;
}

.oil-test-steps p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .oil-test-steps {
        grid-template-columns: 1fr;
    }
}
/* Industrielle limsystemer page */

.adhesive-page__content {
    padding: 96px 0;
    background: var(--background);
}

.adhesive-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 56px;
}

.adhesive-main {
    min-width: 0;
}

.adhesive-hero-image {
    margin: 0 0 64px;
    overflow: hidden;
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 5%),
        0 12px 32px rgb(15 23 42 / 7%);
}

.adhesive-hero-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.adhesive-section {
    margin-bottom: 72px;
}

.adhesive-eyebrow,
.adhesive-sidebar__eyebrow {
    display: inline-block;
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.adhesive-section h2,
.adhesive-cta h2 {
    margin-top: 12px;
    margin-bottom: 20px;
    color: var(--foreground);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}

.adhesive-section > h3 {
    margin-bottom: 20px;
    color: var(--foreground);
    font-size: 19px;
    line-height: 1.5;
}

.adhesive-section > p,
.adhesive-cta p {
    color: var(--muted-foreground);
    line-height: 1.8;
}

.adhesive-section--secondary {
    padding: 40px;
    border-radius: 2px;
    background: var(--secondary);
}

.adhesive-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 30px 0;
}

.adhesive-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 8px 24px rgb(15 23 42 / 5%);
}

.adhesive-card__number {
    display: block;
    margin-bottom: 28px;
    color: var(--accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.adhesive-card h3 {
    margin-bottom: 10px;
    color: var(--foreground);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.adhesive-card p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.adhesive-system-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.adhesive-system-panel {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
}

.adhesive-system-panel .technical-badge {
    display: inline-flex;
    margin-bottom: 20px;
}

.adhesive-system-panel h3 {
    margin-bottom: 12px;
    color: var(--foreground);
    font-size: 22px;
    font-weight: 700;
}

.adhesive-system-panel > p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

.adhesive-system-panel--dark {
    border-color: rgb(248 250 252 / 12%);
    background: var(--foreground);
}

.adhesive-system-panel--dark h3 {
    color: var(--primary-foreground);
}

.adhesive-system-panel--dark > p {
    color: rgb(248 250 252 / 58%);
}

.adhesive-product-list {
    display: flex;
    flex-direction: column;
    margin: 22px 0;
}

.adhesive-product-list li {
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.adhesive-product-list strong,
.adhesive-product-list span {
    display: block;
}

.adhesive-product-list strong {
    margin-bottom: 5px;
    color: var(--foreground);
    font-size: 14px;
}

.adhesive-product-list span {
    color: var(--muted-foreground);
    font-size: 13px;
    line-height: 1.6;
}

.adhesive-check-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.adhesive-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--foreground);
    font-size: 14px;
    line-height: 1.6;
}

.adhesive-check-list svg {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--accent);
}

.adhesive-check-list--dark li {
    color: rgb(248 250 252 / 72%);
}

.adhesive-section--dark {
    padding: 44px;
    border-radius: 2px;
    background: var(--foreground);
}

.adhesive-section--dark h2 {
    color: var(--primary-foreground);
}

.adhesive-section--dark > p {
    color: rgb(248 250 252 / 62%);
}

.adhesive-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.adhesive-industry-grid span {
    padding: 14px 16px;
    border: 1px solid rgb(248 250 252 / 12%);
    background: rgb(248 250 252 / 5%);
    color: rgb(248 250 252 / 78%);
    font-size: 14px;
    font-weight: 600;
}

.adhesive-cta {
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 16px 40px rgb(15 23 42 / 7%);
}

.adhesive-sidebar {
    position: sticky;
    top: 108px;
}

.adhesive-sidebar__inner {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    box-shadow:
        0 0 0 1px rgb(15 23 42 / 3%),
        0 12px 32px rgb(15 23 42 / 6%);
}

.adhesive-sidebar h2 {
    margin-top: 10px;
    margin-bottom: 22px;
    color: var(--foreground);
    font-size: 22px;
    font-weight: 700;
}

.adhesive-sidebar__menu {
    display: flex;
    flex-direction: column;
}

.adhesive-sidebar__menu li + li {
    border-top: 1px solid var(--border);
}

.adhesive-sidebar__menu a {
    display: flex;
    padding: 15px 0;
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    transition:
        color 200ms ease,
        padding-left 200ms ease;
}

.adhesive-sidebar__menu a:hover {
    padding-left: 6px;
    color: var(--accent);
}

.adhesive-sidebar__note {
    margin: 22px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .adhesive-layout {
        grid-template-columns: 1fr;
    }

    .adhesive-sidebar {
        position: static;
    }

    .adhesive-sidebar__menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 24px;
    }
}

@media (max-width: 767px) {
    .adhesive-page__content {
        padding: 64px 0;
    }

    .adhesive-section {
        margin-bottom: 52px;
    }

    .adhesive-section--secondary,
    .adhesive-section--dark,
    .adhesive-cta {
        padding: 28px 22px;
    }

    .adhesive-service-grid,
    .adhesive-system-columns,
    .adhesive-industry-grid,
    .adhesive-sidebar__menu {
        grid-template-columns: 1fr;
    }
}
/* Adhesive detail pages */

.adhesive-sidebar__menu .is-current a {
    padding-left: 6px;
    color: var(--accent);
}

.adhesive-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.adhesive-spec-grid span {
    padding: 13px 10px;
    border: 1px solid rgb(248 250 252 / 12%);
    background: rgb(248 250 252 / 6%);
    color: var(--primary-foreground);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    text-align: center;
}

.adhesive-product-catalog {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.adhesive-product-catalog article {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
}

.adhesive-product-catalog strong,
.adhesive-product-catalog span {
    display: block;
}

.adhesive-product-catalog strong {
    margin-bottom: 7px;
    color: var(--foreground);
    font-family: "JetBrains Mono", monospace;
}

.adhesive-product-catalog span {
    color: var(--muted-foreground);
    font-size: 13px;
}

@media (max-width: 900px) {
    .adhesive-spec-grid,
    .adhesive-product-catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .adhesive-spec-grid,
    .adhesive-product-catalog {
        grid-template-columns: 1fr;
    }
}
.solution-detail__visual--image {
    padding: 0;
    overflow: hidden;
}

.solution-detail__visual--image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
    transition: transform 400ms ease;
}

.solution-detail:hover .solution-detail__visual--image img {
    transform: scale(1.025);
}

@media (max-width: 1024px) {
    .solution-detail__visual--image img {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .solution-detail__visual--image img {
        min-height: 260px;
    }
}