/* ═══════════════════════════════════════════════════════════
   BEYCE TARIM — Corporate Design System
   ═══════════════════════════════════════════════════════════ */

:root {
    --primary: #0F2E1A;
    --primary-light: #1A4324;
    --secondary: #C65720;
    --secondary-dark: #A34418;
    --accent: #D4A843;
    --accent-light: #F5B041;
    --bg: #FAFAF8;
    --bg-alt: #F0EDE6;
    --bg-dark: #0A1F12;
    --text: #1A1A1A;
    --text-muted: #5C5C5C;
    --text-light: #888;
    --white: #FFFFFF;
    --footer-bg: #0A0F0C;
    --border: rgba(0,0,0,0.08);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-md: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 24px 60px rgba(0,0,0,0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 90px;
    --topbar-h: 36px;
    --container: 1320px;
    --section-py: 72px;
    --section-py-lg: 88px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

html[lang="tr"] .en { display: none !important; }
html[lang="en"] .tr { display: none !important; }

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

.section { padding: var(--section-py) 0; position: relative; }
.section-lg { padding: var(--section-py-lg) 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--bg-dark); color: var(--white); }
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    max-width: var(--container);
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 20px;
}
.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-label::before { display: none; }
.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 20px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }
.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.8;
}
.section-header.center p { margin: 0 auto; }

/* ─── Preloader — yeşil cam, beyaz logo ─── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 46, 26, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
    height: 88px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.92;
    animation: preloaderPulse 1.8s ease-in-out infinite;
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.92; }
    50% { transform: scale(1.04); opacity: 1; }
}

/* ─── Top Bar ─── */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    padding: 0 5%;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1001;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-left span { opacity: 0.9; }
.top-bar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.top-bar-right { display: flex; align-items: center; gap: 24px; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent); }
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 3px;
}
.lang-btn {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    transition: var(--transition);
    background: none;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}
.lang-btn:hover { color: #fff; }
.lang-btn.active {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.lang-flag { font-size: 0.95rem; line-height: 1; }

/* ─── Header ─── */
header {
    position: fixed;
    top: var(--topbar-h);
    width: 100%;
    padding: 0 3%;
    height: 76px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
header.scrolled {
    top: 0;
    height: 64px;
    background: rgba(255,255,255,0.98);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}
header.scrolled + main .hero,
header.scrolled ~ .hero { /* fallback */ }
.logo img { height: 48px; transition: var(--transition); }
header.scrolled .logo img { height: 42px; }

.main-nav ul { display: flex; gap: 6px; align-items: center; }
.main-nav a,
.nav-trigger {
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text);
    position: relative;
    padding: 10px 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.main-nav a::after,
.nav-trigger::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.main-nav a:hover::after,
.nav-trigger:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--primary); }
.nav-chevron { font-size: 0.55rem; transition: transform 0.3s; opacity: 0.6; }
.nav-item.has-dropdown:hover .nav-chevron,
.nav-item.has-dropdown.open .nav-chevron { transform: rotate(180deg); }

/* Mega Dropdown — gap fix + hover bridge */
.nav-item { position: relative; }
.nav-item.has-dropdown { position: relative; }
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 480px;
    padding-top: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1100;
}
.mega-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
}
.mega-dropdown-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 8px;
    overflow: hidden;
}
.mega-dropdown.mega-wide { min-width: 640px; }
.nav-item.has-dropdown:hover .mega-dropdown,
.nav-item.has-dropdown.open .mega-dropdown,
.nav-item.has-dropdown:focus-within .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.mega-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px;
}
.mega-inner.mega-single { grid-template-columns: 1fr; }
.mega-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.mega-col a {
    display: block;
    padding: 9px 12px;
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-muted);
    border-radius: 8px;
    transition: var(--transition);
}
.mega-col a::after { display: none !important; }
.mega-col a:hover {
    background: var(--bg-alt);
    color: var(--primary);
    padding-left: 16px;
}
.mega-col a.mega-highlight {
    color: var(--secondary);
    font-weight: 700;
    margin-top: 8px;
}
.mega-feature {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    min-height: 160px;
}
.mega-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.mega-feature-text {
    position: relative;
    z-index: 1;
    background: linear-gradient(to top, rgba(15,46,26,0.95), transparent);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    color: var(--white);
}
.mega-feature-text strong { font-size: 0.95rem; margin-bottom: 4px; }
.mega-feature-text span { font-size: 0.75rem; opacity: 0.8; margin-bottom: 8px; }
.mega-feature-text a {
    font-size: 0.75rem !important;
    color: var(--accent) !important;
    padding: 0 !important;
    font-weight: 700 !important;
}
.mega-feature-text a:hover { background: none !important; padding-left: 0 !important; }

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 6px;
    font-size: 0.78rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--secondary) !important; transform: translateY(-1px); }

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 12, 0.45);
    z-index: 1000;
}
.nav-backdrop.visible { display: block; }

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1003;
    padding: 8px;
    border: none;
    background: none;
    flex-shrink: 0;
}
.header-actions {
    display: none;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
    z-index: 1003;
}
.lang-toggle--header { display: none; }
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26,67,36,0.25);
}
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-primary { background: var(--primary); }
.btn-primary:hover { background: var(--secondary); }
.btn-sm { padding: 14px 28px; font-size: 0.78rem; }

/* ─── Hero ─── */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,46,26,0.92) 0%, rgba(15,46,26,0.55) 50%, rgba(15,46,26,0.3) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212,168,67,0.15);
    border: 1px solid rgba(212,168,67,0.4);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 30px;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--white);
    margin-bottom: 28px;
    max-width: 800px;
}
.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    max-width: 580px;
    line-height: 1.9;
    margin-bottom: 45px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Page Hero (Inner Pages) ─── */
.page-hero {
    height: 55vh;
    min-height: 420px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: calc(var(--topbar-h) + 70px);
}
.page-hero-bg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,46,26,0.95) 0%, rgba(15,46,26,0.6) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 5% 80px;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }
.page-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 16px;
}
.page-hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    line-height: 1.8;
}

/* ─── Stats Bar ─── */
.stats-bar {
    position: relative;
    z-index: 10;
    margin-top: -48px;
    padding: 0 5%;
    margin-bottom: 8px;
}
.stats-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.stat-item {
    padding: 32px 20px;
    text-align: center;
    position: relative;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
}
.stat-number span { color: var(--secondary); }
.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

/* ─── About Split ─── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-experience {
    position: absolute;
    top: 40px;
    left: -40px;
    background: var(--secondary);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-experience .num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}
.about-experience .txt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    opacity: 0.9;
}
.about-text h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--primary);
    margin-bottom: 28px;
}
.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 35px 0;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}
.about-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--primary-light), var(--primary));
    color: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-feature-icon svg,
.contact-card-icon svg,
.value-icon svg,
.cert-icon svg,
.logistics-icon svg,
.float-contact-item svg,
.float-contact-toggle svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.cert-icon svg { width: 28px; height: 28px; }
.about-feature h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.about-feature p { font-size: 0.85rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ─── Values Grid ─── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.value-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, var(--primary-light), var(--primary));
    color: var(--accent-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.value-card p { color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; }

/* ─── Process Timeline ─── */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
    opacity: 0.3;
}
.process-step { text-align: center; padding: 0 20px; position: relative; }
.process-num {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.process-step:hover .process-num {
    background: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
    transform: scale(1.1);
}
.process-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.process-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Products Grid ─── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    group: product;
}
.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.product-card-img {
    height: 260px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
    position: relative;
}
.product-card-img img {
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-card-img img { transform: scale(1.08) rotate(-2deg); }
.product-card-body { padding: 32px; }
.product-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}
.product-card-body h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.product-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
}
.product-link:hover { gap: 14px; color: var(--primary); }

/* ─── Parallax Banner ─── */
.parallax-banner {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.parallax-banner-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.parallax-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,46,26,0.85);
}
.parallax-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 5%;
    max-width: 800px;
}
.parallax-banner-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
}
.parallax-banner-content p {
    font-size: 1.15rem;
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* ─── Export Markets ─── */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.market-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}
.market-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: var(--accent);
}
.market-flag { font-size: 2.5rem; margin-bottom: 12px; }
.market-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

/* ─── Gallery Strip ─── */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}
.gallery-item {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,46,26,0.7), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ─── Certifications ─── */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.cert-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.cert-item:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.cert-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(145deg, var(--primary-light), var(--primary));
    color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.cert-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.cert-item p { font-size: 0.85rem; color: var(--text-light); }

/* ─── CTA Banner ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(212,168,67,0.1);
    border-radius: 50%;
}
.cta-banner h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}
.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 500px;
    position: relative;
}
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; position: relative; }

/* ─── Corporate Blocks ─── */
.corp-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}
.corp-block:last-child { margin-bottom: 0; }
.corp-block.reverse .corp-block-text { order: 2; }
.corp-block.reverse .corp-block-img { order: 1; }
.corp-block-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}
.corp-block-img img { width: 100%; height: 480px; object-fit: cover; }
.corp-block-text h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 20px;
}
.corp-block-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}
.corp-block-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 18px;
}
.corp-block-list { margin-top: 24px; }
.corp-block-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.corp-block-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 2px;
}

/* ─── History Timeline ─── */
.history-timeline { position: relative; padding-left: 40px; }
.history-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
}
.history-item {
    position: relative;
    padding-bottom: 50px;
    padding-left: 40px;
}
.history-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary);
}
.history-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}
.history-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.history-item p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Mission Vision ─── */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mvv-card {
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.mvv-card.mission { background: var(--primary); color: var(--white); }
.mvv-card.vision { background: var(--secondary); color: var(--white); }
.mvv-card.values { background: var(--bg-alt); }
.mvv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.mvv-card.mission h3, .mvv-card.vision h3 { color: var(--accent); }
.mvv-card.values h3 { color: var(--primary); }
.mvv-card p { line-height: 1.8; font-size: 0.95rem; opacity: 0.9; }
.mvv-card.values p { color: var(--text-muted); opacity: 1; }

/* ─── Product Catalog ─── */
.catalog-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}
.catalog-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.cat-btn {
    padding: 14px 28px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}
.cat-btn:hover, .cat-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.product-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--accent);
    transition: var(--transition);
}
.product-row:hover { box-shadow: var(--shadow-md); transform: translateX(8px); }
.product-row:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
    border-left: none;
    border-right: 5px solid var(--primary);
}
.product-row:nth-child(even) .product-row-img { order: 2; }
.product-row:nth-child(even) .product-row-info { order: 1; }
.product-row-img {
    text-align: center;
    padding: 20px;
}
.product-row-img img {
    max-height: 320px;
    margin: 0 auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.product-row:hover .product-row-img img { transform: scale(1.05); }
.product-row-info h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}
.product-category-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 20px;
}
.product-row-info ul { margin: 20px 0; }
.product-row-info ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.product-row-info ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
}
.product-specs {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.product-spec {
    background: var(--bg-alt);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
}
.product-spec strong {
    display: block;
    color: var(--primary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

/* ─── Contact ─── */
.contact-section { padding: var(--section-py) 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
}
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(6px); }
.contact-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--primary-light), var(--primary));
    color: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.contact-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 8px;
}
.contact-card p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }
.contact-card a { color: var(--primary); font-weight: 600; }
.contact-card a:hover { color: var(--secondary); }

.contact-form-panel {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form-panel h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}
.contact-form-panel > p {
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 0.95rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg);
    transition: var(--transition);
    color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26,67,36,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.map-section { padding: 0 0 var(--section-py); }
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ─── FAQ ─── */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question .icon {
    font-size: 1.4rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding: 0 30px 24px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ─── Footer ─── */
.corp-footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.65);
    padding: 64px 5% 32px;
}
.footer-top {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 70px;
}
.f-brand img {
    height: 56px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}
.f-brand p { line-height: 1.9; font-size: 0.92rem; margin-bottom: 28px; }
.f-social { display: flex; gap: 12px; }
.f-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.f-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}
.f-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
}
.f-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}
.f-links li { margin-bottom: 14px; }
.f-links a { font-size: 0.9rem; transition: var(--transition); }
.f-links a:hover { color: var(--accent); padding-left: 6px; }
.f-contact li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
    font-size: 0.9rem;
}
.f-contact li strong {
    color: var(--accent);
    font-weight: 700;
    min-width: 20px;
}
.f-bottom {
    max-width: var(--container);
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}
.f-bottom-accent { color: var(--accent); font-weight: 600; }

/* ─── Trust Marquee ─── */
.trust-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
}
.trust-strip-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.trust-strip:hover .trust-strip-inner { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    white-space: nowrap;
}
.trust-item span { color: var(--accent); font-size: 1rem; }

/* ─── Why Beyce Grid ─── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}
.why-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}
.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    opacity: 0.5;
    flex-shrink: 0;
}
.why-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ─── Logistics Grid ─── */
.logistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.logistics-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}
.logistics-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--accent);
}
.logistics-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: rgba(212,168,67,0.14);
    color: var(--accent-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logistics-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.section-dark .logistics-card h4 { color: var(--white); }
.section-dark .logistics-card p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.section:not(.section-dark) .logistics-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.section:not(.section-dark) .logistics-card h4 { color: var(--primary); }
.section:not(.section-dark) .logistics-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.section:not(.section-dark) .logistics-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

/* ─── Season Strip ─── */
.season-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.season-item {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    border-left: 3px solid var(--accent);
}
.season-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 6px;
}
.season-item p { font-size: 0.88rem; color: var(--text-muted); font-weight: 600; }

/* ─── GSAP Animation Helpers — içerik her zaman görünür ─── */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
}

/* ─── Yüzen İletişim Adası ─── */
.float-contact {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.float-contact-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}
.float-contact.open .float-contact-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}
.float-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.float-contact-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(-4px);
}
.float-contact-item svg { flex-shrink: 0; }
.float-contact-toggle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(145deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(198,87,32,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.float-contact-toggle svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.float-contact-toggle:hover { transform: scale(1.08); }
.float-contact.open .float-contact-toggle { background: var(--primary); }

/* Teaser banner (ana sayfa → alt sayfa) */
.page-teaser {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.teaser-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    display: block;
}
.teaser-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.teaser-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 10px;
}
.teaser-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.teaser-link {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
    .markets-grid { grid-template-columns: repeat(3, 1fr); }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    :root { --section-py: 56px; --section-py-lg: 64px; --topbar-h: 0px; }
    .top-bar { display: none; }
    .main-nav ul { gap: 2px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
    .about-split, .corp-block, .corp-block.reverse { grid-template-columns: 1fr; gap: 50px; }
    .corp-block.reverse .corp-block-text, .corp-block.reverse .corp-block-img { order: unset; }
    .about-img-accent, .about-experience { display: none; }
    .values-grid, .mvv-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-timeline::before { display: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-row, .product-row:nth-child(even) {
        grid-template-columns: 1fr;
        border-left: 5px solid var(--accent);
        border-right: none;
    }
    .product-row:nth-child(even) .product-row-img,
    .product-row:nth-child(even) .product-row-info { order: unset; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .cta-banner { flex-direction: column; text-align: center; padding: 60px 40px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .logistics-grid { grid-template-columns: repeat(2, 1fr); }
    .season-strip { grid-template-columns: repeat(2, 1fr); }
    .page-teaser { grid-template-columns: 1fr 1fr; }

    /* Mobile navigation */
    header { top: 0; height: 64px; padding: 0 16px; }
    .page-hero { margin-top: 64px; }
    .header-actions { display: flex; }
    .lang-toggle--header {
        display: flex;
        background: var(--bg-alt);
        border-radius: 8px;
        padding: 3px;
        gap: 2px;
    }
    .lang-toggle--header .lang-btn {
        color: var(--text-muted);
        padding: 6px 9px;
        font-size: 0.68rem;
    }
    .lang-toggle--header .lang-btn.active {
        background: var(--primary);
        color: var(--white);
        box-shadow: none;
    }
    .hamburger { display: flex; }
    .main-nav {
        position: static;
        width: 0;
        height: 0;
        overflow: visible;
    }
    .main-nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(100%, 360px);
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 72px 0 40px;
        overflow-y: auto;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        box-shadow: var(--shadow-lg);
    }
    .main-nav ul.active { right: 0; }
    .nav-item { width: 100%; border-bottom: 1px solid var(--border); }
    .main-nav a, .nav-trigger {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.88rem;
        justify-content: space-between;
    }
    .main-nav a::after, .nav-trigger::after { display: none; }
    .nav-item.has-dropdown .nav-trigger { cursor: pointer; }
    .mega-dropdown {
        display: block !important;
        position: static;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        min-width: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        background: var(--bg-alt);
    }
    .mega-dropdown::before { display: none; }
    .mega-dropdown-panel {
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
    .nav-item.has-dropdown.open .mega-dropdown { max-height: 800px; }
    .nav-item.has-dropdown.open .nav-chevron { transform: rotate(180deg); }
    .mega-inner { grid-template-columns: 1fr; padding: 4px 16px 16px; gap: 4px; }
    .mega-feature { display: none; }
    .mega-col h5 { margin-bottom: 8px; padding-bottom: 4px; font-size: 0.62rem; }
    .mega-col a { padding: 11px 12px; font-size: 0.84rem; }
    .nav-cta { margin: 12px 16px; width: calc(100% - 32px); text-align: center; justify-content: center; border-radius: 8px; }
}

@media (max-width: 768px) {
    :root { --section-py: 48px; }
    header { padding: 0 14px; }
    .page-hero { min-height: 360px; }
    .hero h1 { font-size: 2.8rem; }
    .stats-inner { grid-template-columns: 1fr; }
    .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
    .about-features { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .markets-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .f-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .logistics-grid { grid-template-columns: 1fr; }
    .season-strip { grid-template-columns: 1fr; }
    .gallery-strip { grid-template-columns: 1fr; }
    .gallery-item { height: 220px; }
    .page-teaser { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
    }
}
