/* =====================================================================
   Basis-Styles für Wollnitzke-Layout
   ===================================================================== */
/* inter-regular - latin */
@font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2");
}

/* inter-600 - latin */
@font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/inter-v20-latin-600.woff2") format("woff2");
}

/* inter-700 - latin */
@font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/inter-v20-latin-700.woff2") format("woff2");
}

/* inter-800 - latin */
@font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 800;
    src: url("../fonts/inter-v20-latin-800.woff2") format("woff2");
}

/* Farben zentral definieren – kannst du pro Site überschreiben */
:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f5f5f7;
    --color-border: #e3e4e8;
    --color-text: #514f50;
    --color-text-muted: #4b5563;
    --color-primary: #2d3192;     /* Akzent (Buttons, Links) */
    --color-primary-soft: #eef2ff;
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
    /* Versatz für Anker-Ziele, damit sticky Header nichts überdeckt */
    --anchor-offset: 80px;
}

/* Grundlayout -------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Anker-Ziele: Versatz berücksichtigen, damit Sticky-Header nichts verdeckt */
section[id],
[id].anchor-target {
    scroll-margin-top: var(--anchor-offset);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 3.5rem 0;
}

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

.section-header {
    position: relative;
    margin-bottom: 2rem;
    z-index: 10;
    background:transparent;
}

.section-header h2 {
    margin: 0 0 0.75rem;
    font-size: 1.9rem;
    letter-spacing: -0.02em;
}

.section-header p {
    margin: 0;
    color: var(--color-text-muted);
    max-width: 40rem;
}

/* Header / Navigation ------------------------------------------------ */

header {
    position: sticky;
    top: 0;
    z-index: 50; /* Header unterhalb des Off‑Canvas (z=60) und Backdrop (z=55) halten */
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

header a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

/* Rechts-Spalte im Header: Kontakt + Sprache */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto; /* schiebt den Block ganz nach rechts */
}

/* Kontakt rechts: Mobil verstecken, Desktop zeigen */
.header-contacts {
    display: none;
    align-items: center;
    gap: 1.1rem;
    color: var(--color-text);
}

.header-contacts .hc-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.header-contacts .hc-link:hover { text-decoration: underline; }
.header-contacts svg { width: 20px; height: 20px; opacity: .9; }

/* Desktop-Navigation standardmäßig ausblenden (Mobile-First) */
.nav-desktop {
    display: none;
    gap: 1.75rem;
}

/* Hamburger Toggle (mobil/tablet sichtbar) */
.nav-toggle {
    display: none;
}

.nav-toggle .label { font-weight: 500; }

/* Off-Canvas Panel + Backdrop */
.nav-panel {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(92vw, 360px);
    background: #fff;
    box-shadow: -8px 0 24px rgba(0,0,0,.12);
    transform: translateX(100%);
    /* Slow down the slide-in/out for mobile menu */
    transition: transform .6s cubic-bezier(.22,.61,.36,1);
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
    overflow: auto;
    z-index: 60;
}

/* Close-Button im Off‑Canvas */
.nav-panel .nav-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: 0;
    padding: 8px;
    line-height: 0;
    color: inherit;
    cursor: pointer;
}

.nav-panel .nav-close svg { display: block; }

.nav-backdrop {
    position: fixed;
    inset: 0;
    opacity: 0;
    transition: opacity .2s ease;
    z-index: 55;
}

html.nav-open .nav-panel { transform: translateX(0); }
html.nav-open .nav-backdrop { opacity: 1; }
html.nav-open, html.nav-open body { overflow: hidden; }

.nav-level-1 { list-style: none; margin: 0; padding: 0; }
.nav-level-1 > li { border-bottom: 1px solid var(--color-border); }
.nav-level-1 a, .nav-acc { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 8px; font-size: 1rem; min-height: 44px; color: var(--color-text); text-decoration: none; }
.nav-acc { background: none; border: none; }
.nav-acc + ul { padding: 0 0 8px 12px; }

/* Motion reduzieren */
@media (prefers-reduced-motion: reduce) {
    .nav-panel, .nav-backdrop { transition: none; }
}

/* Desktop: Normale Navigation anzeigen, mobile Elemente ausblenden */
@media (min-width: 900px) {
    .nav-desktop { display: flex; }
    .nav-toggle, .nav-panel, .nav-backdrop { display: none !important; }
    .header-contacts { display: flex; }
}

/* Versteckter Text nur für Screenreader (für z. B. Schließen-Label) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Sprachumschalter, falls vorhanden */
.lang-switch {
    list-style: none;
    display: flex;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
}

.lang-switch a {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    color: var(--color-text-muted);
}

.lang-switch a.is-active {
    border-color: var(--color-border);
    background: var(--color-bg-alt);
    color: var(--color-text);
}

/* Footer ------------------------------------------------------------- */

footer {
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Typografie --------------------------------------------------------- */

h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.4rem, 3vw, 3.1rem);
    line-height: 1.1;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.1rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.82rem;
    color: var(--color-primary);
    font-weight: 600;
    margin: 0 0 0.75rem;
}

/* Buttons ------------------------------------------------------------ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition:
            background-color 0.18s ease,
            color 0.18s ease,
            border-color 0.18s ease,
            box-shadow 0.18s ease,
            transform 0.08s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: #4338ca;
    text-decoration: none;
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background: var(--color-bg-alt);
    text-decoration: none;
}

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

.btn-outline:hover {
    background: var(--color-primary-soft);
    text-decoration: none;
}

/* Hero --------------------------------------------------------------- */

.section-hero {
    position: relative;
    min-height: 520px;
    color: #ffffff;
    overflow: hidden;
}

.section-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(15, 23, 42, 0.82) 0%,
            rgba(15, 23, 42, 0.65) 40%,
            rgba(15, 23, 42, 0.15) 100%
    );
    z-index: 1;
}

.section-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-bottom: 5rem;
    max-width: 640px;
}

.hero-title {
    margin: 0 0 1rem;
}

.hero-lead {
    margin: 0 0 2rem;
    font-size: 1.05rem;
    color: rgba(249, 250, 251, 0.9);
}

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

/* USPs (4 Kacheln) --------------------------------------------------- */

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

.usps-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.25rem;
}

.usp-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem 1.4rem;
    border: 1px solid var(--color-border);
}

.usp-card h3 {
    margin: 0 0 0.3rem;
    font-size: 1.05rem;
}

.usp-card p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Kernportfolio ------------------------------------------------------ */

.section-portfolio {
    background: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
}

.portfolio-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
    align-items: center;
}

.portfolio-item__text h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.portfolio-item__text p {
    margin: 0 0 0.75rem;
    color: var(--color-text-muted);
}

.portfolio-item__text ul {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.portfolio-item__image img {
    border-radius: 0.9rem;
    box-shadow: var(--shadow-soft);
}

/* Ablauf & Materialien ------------------------------------------------ */

.section-process {
    padding-top: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.process-step h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.process-step p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.materials-title {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.materials-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* About-Block -------------------------------------------------------- */

.section-about {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
}

.about-text p {
    margin: 0 0 0.75rem;
    color: var(--color-text-muted);
}

/* Anwendungsbeispiele ------------------------------------------------ */

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

.applications-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

.application-card {
    background: #ffffff;
    border-radius: 0.9rem;
    overflow: hidden;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.application-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.application-card__body {
    padding: 1.1rem 1.2rem 1.3rem;
}

.application-card__body h3 {
    margin: 0 0 0.4rem;
}

.application-card__body p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* CTA-Bereich -------------------------------------------------------- */

.section-cta {
    background: #ffffff;
}

.cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.cta-grid h2 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.cta-grid p {
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: var(--color-text-muted);
}

.cta-image img {
    border-radius: 0.9rem;
    box-shadow: var(--shadow-soft);
}

/* Standort / Besuch -------------------------------------------------- */

.section-visit .visit-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
}

.visit-grid h2 {
    margin-top: 0;
}

.visit-grid p {
    margin-top: 0;
    color: var(--color-text-muted);
}

/* Kontaktformular ---------------------------------------------------- */

.section-contact {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.contact-form {
    background: var(--color-bg-alt);
    border-radius: 0.9rem;
    padding: 1.75rem 1.6rem;
    border: 1px solid var(--color-border);
}

.form-row {
    margin-bottom: 1rem;
}

.form-row label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border-radius: 0.6rem;
    border: 1px solid var(--color-border);
    padding: 0.6rem 0.7rem;
    font: inherit;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary-soft);
}

/* Responsive Breakpoints --------------------------------------------- */

@media (min-width: 640px) {
    .section {
        padding: 4rem 0;
    }

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

    .process-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (min-width: 900px) {
    .section-hero__content {
        padding-top: 7rem;
        padding-bottom: 6rem;
    }

    /* Größerer Offset für Anker-Ziele auf Desktop (größerer Header/Abstand) */
    :root { --anchor-offset: 96px; }

    .portfolio-grid {
        gap: 3rem;
    }

    .portfolio-item {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    }

    .about-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    }

    .cta-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    }

    .visit-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    background: #fff;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}

.nav-mobile[hidden] {
    display: block;
}

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

.nav-mobile a {
    display: block;
    padding: 12px 0;
    color: var(--color-text, #333);
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.nav-mobile a:hover {
    color: var(--color-primary, #007bff);
}

.nav-backdrop {
    z-index: 998 !important;
}

.nav-panel {
    z-index: 999 !important;
}
.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-backdrop[hidden] {
    display: block;
}

html.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

html.nav-open {
    overflow: hidden;
}

/* Hamburger Button sichtbar auf Mobile */
.nav-toggle {
    display: none;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .nav-desktop {
        display: none;
    }
}

.site-footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    font-size: 0.875rem;
    padding: 3rem 0 1.5rem;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr) minmax(0, 1.5fr);
    gap: 2rem;
    align-items: flex-start;
}

.site-footer__col--brand {
    max-width: 320px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-logo__text {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.footer-tagline {
    margin: 0.25rem 0 0;
    color: var(--color-text-muted);
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: 0.25rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--color-text-muted);
}

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

.site-footer__bottom {
    margin-top: 2.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}

.site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer__copy,
.site-footer__note {
    margin: 0;
    color: var(--color-text-muted);
}

/* Mobile */
@media (max-width: 768px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
    }
}/*Wollnitzke HERO*/
/* HERO WELDING HEADER
   -------------------------------------------------- */

.hero-welding {
    position: relative;
    min-height: 80vh;
    color: #fff;
    overflow: hidden;
    overflow-x: hidden;
    display: flex;
    align-items: stretch;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-welding__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transform: scale(1.05);
    filter: brightness(0.55);
}

.hero-welding__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 45%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0,0,0,0.9));
}

/* Inner Wrapper */
.hero-welding__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
    gap: 3rem;
}

/* NAVIGATION */
.hero-welding__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.hero-welding__logo img {
    display: block;
    max-height: 32px;
    width: auto;
}

.hero-welding__menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    font-size: 0.95rem;
}

.hero-welding__menu a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.1rem;
}

.hero-welding__menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    background: #ef4444; /* Rot-Akzent */
    transition: width 0.2s ease;
}

.hero-welding__menu a:hover::after {
    width: 100%;
}

.hero-welding__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    margin-left: 0;
}

@media (min-width: 900px) {
    .hero-welding__actions {
        margin-left: 3rem;
    }
}

.hero-welding__lang {
    opacity: 0.8;
}

/* CTA-Button nutzt deine bestehende .btn .btn-primary Klassen */
.hero-welding__cta {
    padding-inline: 1.5rem;
}

/* HERO CONTENT */
.hero-welding__content {
    max-width: 40rem;
    margin-top: 2rem;
    margin-bottom: auto;
}

.hero-welding__title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero-welding__subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 38rem;
    color: rgba(255,255,255,0.85);
}

/* FEATURE LEISTE UNTEN */
.hero-welding__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(148,163,184,0.3);
    padding-top: 1.75rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.hero-welding__feature {
    padding-inline: 1.75rem;
    position: relative;
}

.hero-welding__feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0.25rem;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(148,163,184,0.4);
}

.hero-welding__feature-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 0.4rem;
    color: #f97373; /* Rot-Akzent leicht heller */
}

.hero-welding__feature p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .hero-welding {
        min-height: 70vh;
    }

    .hero-welding__nav {
        flex-wrap: wrap;
        row-gap: 1rem;
    }

    .hero-welding__menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-welding__features {
        grid-template-columns: 1fr 1fr;
        row-gap: 1.5rem;
        border-top: 1px solid rgba(148,163,184,0.4);
    }

    .hero-welding__feature {
        padding-inline: 1rem;
    }

    .hero-welding__feature:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-welding__inner {
        gap: 2.25rem;
    }

    .hero-welding__nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-welding__features {
        grid-template-columns: 1fr;
    }

    .hero-welding__feature {
        padding-inline: 0.5rem;
    }

    .hero-welding__feature::after {
        display: none;
    }
}
.hero-welding__lang-switch {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.hero-welding__lang-link {
    opacity: 0.6;
    text-decoration: none;
    color: rgba(255,255,255,0.9);
}

.hero-welding__lang-link.is-active {
    opacity: 1;
    font-weight: 600;
}

/*END*/
