/* =========================================================
   ANG FAST — Stylesheet
   Brand: #2A5231 (green) · #FFFFFF · #000000
   Fonts: Lalezar (display) · Lato (body) · JetBrains Mono (technical)
   ========================================================= */

:root {
    --green: #2A5231;
    --green-dark: #1a3520;
    --green-light: #3d6d44;
    --green-50: #f0f4f1;
    --green-100: #e3ebe5;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f4;
    --gray-200: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-800: #262626;
    --warm-50: #faf9f7;
    --warm-100: #f5f3ef;

    --font-display: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --max-width: 1320px;
    --pad: clamp(20px, 4vw, 48px);
    --radius: 2px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--black);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 12px; }
.btn--primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(42,82,49,0.25); }
.btn--ghost { background: transparent; color: var(--black); border-color: var(--black); }
.btn--ghost:hover { background: var(--black); color: var(--white); }
.btn--ghost-light { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.5); }
.btn--ghost-light:hover { background: #ffffff; color: var(--black); border-color: #ffffff; }
.btn--white { background: var(--white); color: var(--green); border-color: var(--white); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.btn--full { width: 100%; justify-content: center; }
.btn svg { transition: transform 0.25s; }
.btn:hover svg { transform: translateX(3px); }

/* ============ NAV ============ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #ffffff;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 4px 24px -16px rgba(0,0,0,0.15);
}

.nav__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav__logo {
    display: flex;
    align-items: center;
    transition: transform 0.25s ease;
}
.nav__logo:hover {
    transform: translateY(-1px);
}
.nav__logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav__menu {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav__menu a {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--black);
    position: relative;
    padding: 4px 0;
    transition: color 0.2s;
}
.nav__menu a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
}
.nav__menu a:hover { color: var(--green); }
.nav__menu a:hover::after { width: 100%; }

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

.lang-switch {
    display: flex;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}
.lang-btn {
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--gray-600);
    background: var(--white);
    transition: all 0.2s;
    border-right: 1px solid var(--gray-200);
}
.lang-btn:last-child { border-right: none; }
.lang-btn:hover { background: var(--gray-100); color: var(--green); }
.lang-btn.is-active { background: var(--green); color: var(--white); }

.nav__burger {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: flex-end;
}
.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px var(--pad) 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 60% at 80% 20%, rgba(42, 82, 49, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 10% 80%, rgba(42, 82, 49, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #fbfcfb 0%, #ffffff 50%, #f7f9f7 100%);
}

/* Video hero variant - dark theme */
.hero--video {
    background: #0a0a0a;
    color: #ffffff;
}
.hero--video .hero__title { color: #ffffff; text-shadow: 0 2px 24px rgba(0,0,0,0.55); }
.hero--video .hero__title em { color: var(--green-light); }
.hero--video .hero__lead { color: rgba(255,255,255,0.92); text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.hero--video .hero__lead strong { color: #ffffff; font-weight: 700; }
.hero--video .hero__code { color: var(--green-light); }
.hero--video .hero__divider { background: rgba(255,255,255,0.3); }
.hero--video .stat__num { color: #ffffff; }
.hero--video .stat__num span { color: rgba(255,255,255,0.6); }
.hero--video .stat__label { color: rgba(255,255,255,0.65); }
.hero--video .hero__stats { border-top-color: rgba(255,255,255,0.15); }
.hero--video .hero__scroll { color: rgba(255,255,255,0.5); }
.hero--video .hero__scroll-line { background: rgba(255,255,255,0.3); }

.hero__video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.92;
}
.hero__video-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 28% 50%, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.55) 75%),
        linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.2) 45%, rgba(10,10,10,0.65) 100%);
    z-index: 1;
}
.hero--video .hero__grid {
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    opacity: 0.7;
    z-index: 2;
}
.hero--video .hero__inner { z-index: 3; }

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
/* Soft animated blobs */
.hero__bg::before,
.hero__bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}
.hero__bg::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 82, 49, 0.18) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    animation: blob-float 18s ease-in-out infinite;
}
.hero__bg::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 82, 49, 0.12) 0%, transparent 70%);
    bottom: -120px;
    left: 10%;
    animation: blob-float 22s ease-in-out infinite reverse;
}
@keyframes blob-float {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(40px,-30px) scale(1.1); }
    66% { transform: translate(-30px,20px) scale(0.95); }
}
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(42, 82, 49, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 82, 49, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.6;
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
}
.hero__blueprint {
    position: absolute;
    top: 50%;
    right: -120px;
    width: 720px;
    height: 720px;
    transform: translateY(-50%);
    color: var(--green);
    opacity: 0.06;
    animation: rotate 80s linear infinite;
}
@keyframes rotate { to { transform: translateY(-50%) rotate(360deg); } }

.hero__inner {
    position: relative;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

.hero__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    animation: fadeInUp 0.7s ease both;
}
.hero__code {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--green);
    text-transform: uppercase;
}
.hero__divider {
    width: 40px;
    height: 1px;
    background: var(--gray-400);
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(44px, 7vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 32px;
    color: var(--black);
}
.hero__title-line {
    display: block;
    animation: fadeInUp 0.8s ease both;
}
.hero__title-line:nth-child(2) { animation-delay: 0.1s; }
.hero__title em {
    font-style: italic;
    color: var(--green);
    font-family: var(--font-display);
    position: relative;
}

.hero__lead {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.6;
    color: var(--gray-600);
    max-width: 580px;
    margin-bottom: 48px;
    animation: fadeInUp 0.9s ease both;
    animation-delay: 0.2s;
}

.hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease both;
    animation-delay: 0.3s;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 240px));
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
    animation: fadeInUp 1.1s ease both;
    animation-delay: 0.4s;
}
.stat__num {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
    color: var(--green);
    margin-bottom: 6px;
}
.stat__num span {
    font-size: 0.5em;
    color: var(--gray-600);
}
.stat__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--gray-600);
}

.hero__scroll {
    position: absolute;
    right: var(--pad);
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gray-400);
}
.hero__scroll-line {
    width: 40px;
    height: 1px;
    background: var(--gray-400);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    left: -40px;
    width: 40px; height: 100%;
    background: var(--green);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { left: -40px; }
    100% { left: 40px; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ STRIP (Marquee) ============ */
.strip {
    background: var(--black);
    color: var(--white);
    padding: 28px 0;
    overflow: hidden;
}
.strip__inner {
    display: flex;
    align-items: center;
    gap: 40px;
}
.strip__label {
    flex-shrink: 0;
    padding: 0 var(--pad);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--green-light);
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.strip__track {
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.strip__items {
    display: flex;
    gap: 28px;
    align-items: center;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    width: max-content;
}
.strip__items span {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.strip__items span:nth-child(odd) { font-weight: 700; }
.strip__items span:nth-child(even) { color: var(--green-light); }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============ SECTION HEAD (reusable) ============ */
.section-head {
    max-width: 700px;
    margin-bottom: 64px;
}
.section-head__code {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--green);
}
.section-head__code--light {
    color: rgba(255,255,255,0.7);
    border-bottom-color: rgba(255,255,255,0.3);
}
.section-head__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.section-head__title em {
    font-style: italic;
    color: var(--green);
}
.section-head--light .section-head__title,
.section-head--light .section-head__title em {
    color: var(--white);
}
.section-head--light .section-head__title em {
    color: var(--green-light);
}
.section-head__lead {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============ PRODUCTS ============ */
.products {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 60% 40% at 0% 0%, rgba(42, 82, 49, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(42, 82, 49, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
    overflow: hidden;
}
.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gray-200) 20%, var(--gray-200) 80%, transparent 100%);
    pointer-events: none;
}
.products .container { position: relative; z-index: 1; }
.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.12);
    border-color: var(--green);
}
.product-card--featured {
    background: var(--white);
    border-color: var(--green);
}
.product-card__badge {
    position: absolute;
    top: 20px; left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--green);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--green);
    z-index: 2;
}
.product-card__badge .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.product-card__badge--soon {
    border-color: var(--gray-400);
    color: var(--gray-600);
}
.product-card__visual {
    position: relative;
    padding: 60px 20px;
    background:
        radial-gradient(circle at center, var(--gray-100) 0%, transparent 70%),
        var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.product-card__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--gray-200) 1px, transparent 1px),
        linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    pointer-events: none;
}
.product-card--featured .product-card__visual { background: var(--white); }
.product-card__visual svg {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card__visual svg {
    transform: scale(1.08) rotate(-3deg);
}

/* Photo variant */
.product-card__visual--photo {
    padding: 0;
    background: #101211;
}
.product-card__visual--photo::before { display: none; }
.product-card--featured .product-card__visual--photo { background: #101211; }
.product-card__visual--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:hover .product-card__visual--photo img {
    transform: scale(1.06);
}

.product-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.product-card__body h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1;
}
.product-card__body > p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}
.product-card__specs {
    list-style: none;
    margin-bottom: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}
.product-card__specs li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px dashed var(--gray-200);
}
.product-card__specs li:last-child { border-bottom: none; }
.product-card__specs span {
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.product-card__specs b {
    font-family: var(--font-mono);
    font-weight: 500;
    color: var(--black);
    text-align: right;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.product-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--green);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.2s;
}
.product-card__link:hover { gap: 14px; }

/* ============ PROCESS ============ */
.process {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.process .section-head { position: relative; z-index: 2; }
.process__steps {
    position: relative;
    z-index: 2;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.process__step {
    position: relative;
    padding-top: 50px;
}
.process__step::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 50px;
    height: 2px;
    background: var(--green);
}
.process__num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--green-light);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}
.process__line {
    position: absolute;
    top: 20px;
    left: 60px;
    right: -32px;
    height: 1px;
    border-top: 1px dashed rgba(255,255,255,0.2);
}
.process__step h4 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 26px;
    margin-bottom: 12px;
    line-height: 1.1;
}
.process__step p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* ============ VALUES ============ */
.values {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(42, 82, 49, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, var(--green-50) 0%, #ffffff 100%);
    overflow: hidden;
}
.values::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 82, 49, 0.06) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}
.values .container { position: relative; z-index: 1; }
.values__layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}
.values__intro .section-head__title { margin-bottom: 32px; }
.values__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    min-width: 0;
}
.value {
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-200);
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    transition: padding 0.3s;
}
.value:first-child { border-top: 1px solid var(--gray-200); }
.value:hover { padding-left: 12px; }
.value__num {
    font-size: 32px;
    color: var(--green);
    line-height: 1;
    font-family: var(--font-display);
}
.value__body {
    min-width: 0;
}
.value h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1;
}
.value p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============ WHY CUSTOM ============ */
.why-custom {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 80% 50% at 0% 0%, rgba(42, 82, 49, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #fbfcfb 0%, #ffffff 100%);
    overflow: hidden;
}
.why-custom .container { position: relative; z-index: 1; }

.approach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 56px;
}
.approach__col {
    padding: 40px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.approach__col:hover { transform: translateY(-4px); }
.approach__col--featured {
    border-color: var(--green);
    box-shadow: 0 16px 48px -20px rgba(42, 82, 49, 0.22);
}
.approach__head {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}
.approach__tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--gray-600);
    margin-bottom: 12px;
    text-transform: uppercase;
}
.approach__col--featured .approach__tag { color: var(--green); }
.approach__head h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.approach__desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-600);
    margin-bottom: 24px;
}
.approach__desc strong { color: var(--black); font-weight: 700; }
.approach__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}
.approach__list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: start;
    font-size: 15px;
    line-height: 1.5;
    color: var(--gray-800);
}
.approach__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green-50);
    color: var(--green);
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}
.approach__col--featured .approach__icon {
    background: var(--green);
    color: var(--white);
}
.why-cta {
    background: var(--green);
    color: var(--white);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.why-cta p {
    font-size: 17px;
    max-width: 700px;
    line-height: 1.5;
    margin: 0;
}

/* ============ COLD FORGING ============ */
.forging {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.forging::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.forging .container { position: relative; z-index: 2; }
.forging__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.forge-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 32px;
    transition: all 0.3s ease;
}
.forge-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
    border-color: var(--green-light);
}
.forge-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--green-light);
    color: var(--green-light);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    border-radius: 50%;
}
.forge-card h4 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.forge-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.forge-card p strong {
    color: var(--green-light);
    font-weight: 700;
}
.forging__note {
    padding: 24px 28px;
    border: 1px dashed rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.02);
}
.forging__note p {
    margin: 0;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.6;
}
.forging__note strong {
    color: var(--white);
}

/* ============ FAQ ============ */
.faq {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(42, 82, 49, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--warm-50) 100%);
    overflow: hidden;
}
.faq .container { position: relative; z-index: 1; }
.faq__list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--gray-200);
}
.faq-item summary {
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    line-height: 1.4;
    color: var(--black);
    list-style: none;
    transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green); }
.faq__chev {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-600);
    transition: all 0.3s ease;
}
.faq-item[open] .faq__chev {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-item__body {
    padding: 0 50px 24px 0;
}
.faq-item__body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
}
.faq-item__body p a,
.section-head__lead a.link {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}
.faq-item__body p strong {
    color: var(--black);
}

/* ============ KNOWLEDGE / BLOG ============ */
.knowledge {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 50% 50% at 0% 100%, rgba(42, 82, 49, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--warm-50) 0%, var(--green-50) 100%);
    overflow: hidden;
}
.knowledge .container { position: relative; z-index: 1; }

.kb__more { text-align: center; margin-top: 44px; }
.kb__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.kb-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.kb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -16px rgba(0,0,0,0.1);
    border-color: var(--green);
}
.kb-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--gray-200);
}
.kb-card__tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--green);
    font-weight: 700;
    text-transform: uppercase;
}
.kb-card__time {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray-600);
    letter-spacing: 0.05em;
}
.kb-card h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
    color: var(--black);
}
.kb-card > p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}
.kb-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.2s;
}
.kb-card__link:hover { gap: 14px; }


/* ============ GALLERY ============ */
.gallery {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(42, 82, 49, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, var(--warm-50) 0%, #ffffff 100%);
    overflow: hidden;
}
.gallery .container { position: relative; z-index: 1; }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery__item {
    margin: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    background: #101211;
    aspect-ratio: 1 / 1;
}
.gallery__visual {
    width: 100%;
    height: 100%;
}
.gallery__visual svg,
.gallery__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery__item:hover .gallery__visual svg,
.gallery__item:hover .gallery__visual img {
    transform: scale(1.07);
}
.gallery__item figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 30px 20px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(180deg, transparent 0%, rgba(8,9,8,0.92) 100%);
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.3s ease;
}
.gallery__item:hover figcaption {
    transform: translateY(0);
    opacity: 1;
}
.gallery__note {
    margin-top: 32px;
    text-align: center;
    font-size: 15px;
    color: var(--gray-600);
}
.gallery__note a.link {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}



/* ============ CERTIFICATIONS ============ */
.certs {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.certs::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 75%);
}
.certs .container { position: relative; z-index: 2; }
.certs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.cert-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 36px 32px;
    transition: all 0.3s ease;
    text-align: center;
}
.cert-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--green-light);
    transform: translateY(-4px);
}
.cert-card__badge {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 2px solid var(--green-light);
    margin: 0 auto 24px;
}
.cert-card__std {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 24px;
    color: var(--green-light);
    width: 100%;
    line-height: 1;
    letter-spacing: 0.05em;
}
.cert-card__std--ce {
    font-size: 46px;
    letter-spacing: 0.08em;
}
.cert-card__num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 26px;
    color: var(--white);
    line-height: 1.1;
}
.cert-card__year {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    width: 100%;
    margin-top: 2px;
}
.cert-card__patent {
    width: 56px;
    height: 56px;
    color: var(--green-light);
}
.cert-card h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.cert-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
.cert-card--brand .cert-card__badge {
    border-color: rgba(255,255,255,0.3);
}
.certs__note {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}
.certs__note a.link {
    color: var(--green-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}


.industries {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 70% 50% at 100% 0%, rgba(42, 82, 49, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--warm-50) 100%);
    overflow: hidden;
}
.industries .container { position: relative; z-index: 1; }
.industries__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--gray-200);
    border-left: 1px solid var(--gray-200);
}
.industry {
    padding: 40px 32px;
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
}
.industry:hover {
    background: var(--green);
    color: var(--white);
}
.industry svg {
    width: 36px;
    height: 36px;
    color: var(--green);
    transition: color 0.3s;
}
.industry:hover svg { color: var(--white); }
.industry h4 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
}

/* ============ CTA BAND ============ */
.cta-band {
    background: var(--green);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}
.cta-band::after {
    content: '';
    position: absolute;
    top: -30%; right: 5%;
    width: 400px; height: 400px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}
.cta-band__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: end;
}
.cta-band__inner h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    margin: 20px 0 16px;
    letter-spacing: -0.01em;
}
.cta-band__inner h2 em {
    font-style: italic;
    color: var(--white);
    opacity: 0.85;
}
.cta-band__inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 500px;
    line-height: 1.6;
}
.cta-band__inner .btn { justify-self: end; }

/* ============ CONTACT ============ */
.contact {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(42, 82, 49, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--warm-50) 0%, #f5f7f5 100%);
    overflow: hidden;
}
.contact .container { position: relative; z-index: 1; }
.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.contact__info .section-head__title { margin-bottom: 32px; }
.contact__items {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact__item {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}
.contact__label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--gray-600);
    margin-bottom: 6px;
}
.contact__item a,
.contact__item address {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    font-style: normal;
    transition: color 0.2s;
}
.contact__item a:hover { color: var(--green); }

.contact__form {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--gray-200);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.field { display: flex; flex-direction: column; margin-bottom: 20px; }
.field label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    margin-bottom: 8px;
    font-weight: 700;
}
.field input,
.field textarea,
.field select {
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.2s;
    resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--green);
}
.form-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--gray-600);
    text-align: center;
}

/* File upload */
.filedrop {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 32px 20px;
    border: 1.5px dashed var(--gray-300, #d4d4d4);
    border-radius: var(--radius);
    background: var(--gray-50);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}
.filedrop:hover {
    border-color: var(--green);
    background: var(--green-50);
}
.filedrop input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.filedrop__icon {
    color: var(--green);
    margin-bottom: 4px;
}
.filedrop__text {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}
.filedrop__hint {
    font-size: 12px;
    color: var(--gray-600);
}
.filedrop__list {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--green);
    margin-top: 6px;
    line-height: 1.5;
}
.filedrop__list:not(:empty) {
    padding-top: 8px;
    border-top: 1px dashed var(--gray-200);
    width: 100%;
}

/* ============ ARTICLE MODAL ============ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal.is-open {
    display: flex;
}
.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: fadeIn 0.25s ease;
}
.modal__dialog {
    position: relative;
    background: var(--white);
    max-width: 760px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: var(--radius);
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
    animation: modalUp 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalUp {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
    position: absolute;
    top: 20px; right: 20px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 5;
}
.modal__close:hover {
    background: var(--green);
    color: var(--white);
    transform: rotate(90deg);
}
.modal__content {
    padding: 56px 56px 32px;
}
.modal__content .article__meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}
.modal__content .article__tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--green);
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid var(--green);
    border-radius: 100px;
}
.modal__content .article__time {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gray-600);
}
.modal__content h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(26px, 3.5vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--black);
}
.modal__content h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 21px;
    line-height: 1.25;
    margin: 32px 0 12px;
    color: var(--black);
}
.modal__content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-800);
    margin-bottom: 16px;
}
.modal__content ul {
    margin: 0 0 20px;
    padding-left: 0;
    list-style: none;
}
.modal__content ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-800);
}
.modal__content ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
}
.modal__content strong { color: var(--black); font-weight: 700; }
.modal__content .article__lead {
    font-size: 18px;
    line-height: 1.65;
    color: var(--gray-600);
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}
.modal__footer {
    position: sticky;
    bottom: 0;
    background: var(--green-50);
    border-top: 1px solid var(--gray-200);
    padding: 24px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.modal__footer p {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}
body.modal-open {
    overflow: hidden;
}


/* ============ CAREERS ============ */
.careers {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(42, 82, 49, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
    overflow: hidden;
}
.careers .container { position: relative; z-index: 1; }
.careers__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.careers__lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 24px 0 36px;
}
.careers__areas {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.career-area {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.25s ease;
}
.career-area:hover {
    border-color: var(--green);
    transform: translateX(4px);
}
.career-area svg {
    width: 32px;
    height: 32px;
    color: var(--green);
    flex-shrink: 0;
}
.career-area h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.career-area p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}
.careers__form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 40px;
    position: sticky;
    top: 100px;
}
.careers__form-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}


/* ============ CAPACITY ============ */
.capacity {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 70% 50% at 0% 100%, rgba(42, 82, 49, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--warm-50) 100%);
    overflow: hidden;
}
.capacity .container { position: relative; z-index: 1; }
.capacity__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}
.cap-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.cap-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -20px rgba(42,82,49,0.18);
}
.cap-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border: 1px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cap-card__icon svg {
    width: 26px;
    height: 26px;
    color: var(--green);
}
.cap-card h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
}
.cap-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}
.capacity__note {
    padding: 24px 28px;
    border-left: 3px solid var(--green);
    background: var(--green-50);
}
.capacity__note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-800);
}

/* ============ QUALITY CONTROL ============ */
.quality {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(42, 82, 49, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--warm-50) 0%, #ffffff 100%);
    overflow: hidden;
}
.quality .container { position: relative; z-index: 1; }
.quality__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.qstep {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.25s ease;
}
.qstep:hover { border-color: var(--green); }
.qstep__num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 32px;
    color: var(--green-50);
    -webkit-text-stroke: 1.5px var(--green);
    line-height: 1;
    flex-shrink: 0;
}
.qstep__body h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 19px;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
}
.qstep__body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}
.quality__banner {
    background: var(--green);
    color: var(--white);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.quality__banner-text h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.quality__banner-text p {
    margin: 0;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    max-width: 620px;
}

/* ============ WORKING PRINCIPLES ============ */
.principles {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 70% 50% at 0% 0%, rgba(42, 82, 49, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
    overflow: hidden;
}
.principles .container { position: relative; z-index: 1; }
.principles__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.prin-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.prin-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -20px rgba(42,82,49,0.18);
}
.prin-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.prin-card__icon svg {
    width: 26px;
    height: 26px;
    color: var(--green);
}
.prin-card h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 21px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.prin-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-600);
}



/* ============ CATALOG DOWNLOAD BAND ============ */
.catalog-band {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 28px;
    padding: 28px 32px;
    background: var(--green);
    border-radius: 2px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.catalog-band:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px -18px rgba(42, 82, 49, 0.7);
}
.catalog-band__icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.catalog-band__icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}
.catalog-band__text { flex: 1; }
.catalog-band__text h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 19px;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 5px;
}
.catalog-band__text p {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
    margin: 0;
}
.catalog-band__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #ffffff;
    color: var(--green);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 2px;
    transition: background 0.2s ease;
}
.catalog-band:hover .catalog-band__btn {
    background: var(--green-light);
    color: #ffffff;
}
.catalog-band__btn svg { color: currentColor; }
@media (max-width: 768px) {
    .catalog-band {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding: 28px 22px;
    }
    .catalog-band__btn { width: 100%; justify-content: center; }
}

/* ============ ÇEREZ BİLGİLENDİRME BANDI ============ */
.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: #16191a;
    border-top: 2px solid var(--green);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie-bar.is-visible {
    transform: translateY(0);
}
.cookie-bar__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px var(--pad);
    display: flex;
    align-items: center;
    gap: 24px;
}
.cookie-bar__text {
    flex: 1;
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}
.cookie-bar__btn {
    flex-shrink: 0;
    background: var(--green);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.cookie-bar__btn:hover {
    background: var(--green-light);
}
@media (max-width: 680px) {
    .cookie-bar__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px var(--pad);
    }
    .cookie-bar__text { font-size: 12px; }
    .cookie-bar__btn { width: 100%; padding: 13px; }
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 200;
    box-shadow: 0 8px 28px -6px rgba(37, 211, 102, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: wa-pulse 2.8s ease-in-out infinite;
}
.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 36px -6px rgba(37, 211, 102, 0.7);
}
.wa-float svg {
    width: 32px;
    height: 32px;
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 8px 28px -6px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 28px -6px rgba(37, 211, 102, 0.55), 0 0 0 12px rgba(37, 211, 102, 0); }
}
.wa-float__tooltip {
    position: absolute;
    right: 70px;
    background: var(--black);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: all 0.25s ease;
}
.wa-float__tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--black);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.wa-float:hover .wa-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 768px) {
    .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
    .wa-float svg { width: 28px; height: 28px; }
    .wa-float__tooltip { display: none; }
}

/* ============ FOOTER ============ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}
.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}
.footer__brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 20px;
    max-width: 280px;
    font-style: italic;
}
.footer__logo {
    height: 88px;
    width: auto;
    display: block;
    border-radius: 4px;
    margin-bottom: 4px;
    box-shadow: 0 8px 28px -12px rgba(0,0,0,0.6);
}
.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__col h5 {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--green-light);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}
.footer__col a,
.footer__lang {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    text-align: left;
    padding: 0;
    transition: color 0.2s;
}
.footer__col a:hover,
.footer__lang:hover { color: var(--white); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer__mono { font-family: var(--font-mono); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .nav__menu { display: none; }
    .nav__burger { display: flex; }
    .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .products__grid { grid-template-columns: 1fr; }
    .product-card__specs li { flex-direction: column; gap: 4px; }
    .product-card__specs b { text-align: left; }
    .process__steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
    .process__line { display: none; }
    .values__layout, .contact__layout { grid-template-columns: 1fr; gap: 48px; }
    .industries__grid { grid-template-columns: repeat(3, 1fr); }
    .cta-band__inner { grid-template-columns: 1fr; gap: 32px; }
    .cta-band__inner .btn { justify-self: start; }
    .footer__top { grid-template-columns: 1fr; gap: 48px; }
    /* NEW SECTIONS */
    .approach { grid-template-columns: 1fr; gap: 16px; }
    
    .forging__grid { grid-template-columns: repeat(2, 1fr); }
    .kb__grid { grid-template-columns: repeat(2, 1fr); }
    .certs__grid { grid-template-columns: repeat(2, 1fr); }
    .careers__layout { grid-template-columns: 1fr; gap: 40px; }
    .careers__form-wrap { position: static; }
}

@media (max-width: 768px) {
    .nav.is-open .nav__menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        padding: 24px var(--pad);
        gap: 20px;
        border-bottom: 1px solid var(--gray-200);
    }
    .nav__inner > .btn { display: none; }
    .hero { padding-top: 110px; min-height: auto; }
    .hero__stats {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
    }
    .stat { padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
    .stat:last-child { border-bottom: none; }
    .hero__scroll { display: none; }
    .strip__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .strip__label { border-right: none; padding-bottom: 8px; }
    .products, .process, .values, .industries, .contact,
    .why-custom, .forging, .faq, .knowledge { padding: 80px 0; }
    .process__steps { grid-template-columns: 1fr; gap: 32px; }
    .industries__grid { grid-template-columns: repeat(2, 1fr); }
    .industry { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
    .contact__form { padding: 28px 20px; }
    .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 8px; }
    .lang-switch { display: none; }
    .nav.is-open .lang-switch { display: flex; align-self: flex-start; }
    /* NEW SECTIONS - mobile */
    .approach__col { padding: 28px; }
    .why-cta { padding: 24px; flex-direction: column; align-items: flex-start; }
    .forging__grid { grid-template-columns: 1fr; }
    .forge-card { padding: 24px; }
    .kb__grid { grid-template-columns: 1fr; }
    .kb-card { padding: 24px; }
    .faq-item summary { font-size: 17px; padding: 20px 0; }
    .faq-item__body { padding-right: 30px; }
    .certs__grid { grid-template-columns: 1fr; }
    .cert-card { padding: 28px 24px; }
    .careers__form-wrap { padding: 28px 22px; }
    .capacity__grid { grid-template-columns: 1fr; }
    .cap-card { padding: 24px; }
    .quality__steps { grid-template-columns: 1fr; }
    .qstep { padding: 24px; }
    .quality__banner { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
    .principles__grid { grid-template-columns: 1fr; }
    .prin-card { padding: 28px; }
    .gallery__grid { grid-template-columns: 1fr 1fr; }
    .modal__content { padding: 48px 24px 24px; }
    .modal__footer { padding: 20px 24px; flex-direction: column; align-items: stretch; }
    .modal__footer .btn { justify-content: center; }
}

@media (max-width: 480px) {
    .industries__grid { grid-template-columns: 1fr 1fr; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { justify-content: center; }
    .hero__title { font-size: 40px; }
    .product-card__visual { aspect-ratio: 4/3; padding: 40px 20px; }
    .product-card__body { padding: 24px; }
    .product-card__body h3 { font-size: 26px; }
    .gallery__grid { grid-template-columns: 1fr 1fr; }
}

/* ============ MOTION PREFERENCES ============ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
