/* ========================================
   NUTRIVERA - Corporate Website Styles
   Doğal & organik gıda markası — yeşil odaklı modern palet
   ======================================== */

:root {
    /* Marka rengi: logodaki canlı emerald yeşil ana renk
       primary -> butonlar, linkler, vurgular
       primary-light -> hover ve gradyan üst tonu
       primary-dark -> hover (koyulaşan), vurgu çerçeveleri */
    --primary: #1FB36A;
    --primary-light: #4FD792;
    --primary-dark: #128A4E;

    /* Eski "accent" altın sarısıydı; tutarlılık için yeşil ailesinde
       koyu bir tona kaydırdık. Eski class'lar hâlâ var(--accent) okuyor. */
    --accent: #128A4E;
    --accent-light: #4FD792;

    /* Top-bar / koyu bölgeler için yeşilimsi siyah — saf siyah yerine
       markanın doğal hissini koruyan bir koyu zemin */
    --dark: #0A1A12;

    --text: #1A2520;
    --text-light: #56615C;
    --text-muted: #8A9590;
    --light: #F5FBF7;
    --mint: #E9FBF1;
    --white: #FFFFFF;
    --border: #E2EBE5;

    /* Yeşil tonlu yumuşak gölgeler — markanın doğal/temiz hissine uygun */
    --shadow: 0 6px 24px rgba(18, 138, 78, 0.08);
    --shadow-lg: 0 18px 50px rgba(18, 138, 78, 0.14);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* overflow-x: hidden parent'ta scroll context yaratır ve içindeki
       position: sticky child'ları viewport yerine bu görünmez container'a
       yapıştırır → header scroll'da sabit kalmaz. clip aynı yatay kırpmayı
       yapar ama scroll context yaratmaz, sticky'yi serbest bırakır.
       hidden satırı eski tarayıcılar (Safari < 16) için fallback. */
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-x: clip;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   TOP BAR
   ======================================== */

.top-bar {
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    max-height: 44px;
}

.top-bar.hidden {
    max-height: 0;
    border-bottom-color: transparent;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    white-space: nowrap;
}

.top-bar-item:hover {
    color: var(--accent);
}

.top-bar-item i {
    font-size: 0.7rem;
    color: var(--accent);
    opacity: 0.7;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 4px;
}

.top-bar-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    font-size: 0.75rem;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--accent);
    background: rgba(31, 179, 106, 0.1);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 2px;
}

.lang-switch a {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 6px;
    border-radius: 3px;
    transition: var(--transition);
}

.lang-switch a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.lang-switch a:hover:not(.active) {
    color: var(--accent);
}

/* ========================================
   HEADER
   ======================================== */

/* Header — beyaz / glassmorphism (Nutrivera modernleşme).
   Eski iki tanım (brand yeşili default + eski Mira lacivert scrolled)
   kaynak dosyada doğrudan değiştirildi; override katmanındaki
   duplikat kurallar kaldırıldı. Bu, cache'ten bağımsız tek-kaynak
   doğruluğu sağlar. */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom-color: rgba(31, 179, 106, 0.15);
    box-shadow: 0 4px 24px rgba(18, 138, 78, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    text-decoration: none;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.logo-mark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    border-radius: 10px;
}

.logo:hover .logo-mark {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 4px 16px rgba(31, 179, 106, 0.4);
}

.logo-icon {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 4px;
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 72px;
}

.nav-item {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 22px;
    height: 100%;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-arrow {
    font-size: 0.55rem;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.has-submenu:hover .nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-item>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 22px;
    right: 22px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-item>a:hover {
    color: var(--white);
}

.nav-item>a:hover::after,
.nav-item.active>a::after {
    transform: scaleX(1);
}

.nav-item.active>a {
    color: var(--white);
}

/* Mega Dropdown */
.has-submenu {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    min-width: 520px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow: hidden;
    pointer-events: none;
}

.has-submenu:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-dropdown-inner {
    display: grid;
    grid-template-columns: 1fr auto;
}

.mega-col {
    padding: 28px 32px;
}

.mega-heading {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.mega-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-links li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.mega-links li a:hover {
    background: var(--light);
    transform: translateX(4px);
}

.mega-links li a i {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(15, 43, 76, 0.06), rgba(15, 43, 76, 0.12));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.mega-links li a:hover i {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.mega-links li a strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
    transition: color 0.25s ease;
}

.mega-links li a:hover strong {
    color: var(--primary);
}

.mega-links li a span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Mega Highlight Panel */
.mega-highlight {
    width: 220px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 32px 24px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.mega-highlight::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(31, 179, 106, 0.12);
    border-radius: 50%;
}

.mega-highlight::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.mega-highlight.eco {
    background: linear-gradient(135deg, #0E5E33 0%, #1FB36A 100%);
}

.mega-highlight-content {
    position: relative;
    z-index: 1;
}

.mega-highlight-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    background: rgba(31, 179, 106, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.mega-highlight h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.mega-highlight p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 16px;
}

.mega-highlight-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.mega-highlight-btn:hover {
    gap: 10px;
    color: var(--accent-light);
}

.mega-highlight-btn i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.mega-highlight-btn:hover i {
    transform: translateX(3px);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.search-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent);
    border-color: rgba(31, 179, 106, 0.3);
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.header-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(31, 179, 106, 0.35);
}

.header-cta-btn:hover::before {
    opacity: 1;
}

.header-cta-btn i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.header-cta-btn:hover i {
    transform: translateX(3px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    display: flex;
    align-items: center;
    max-width: 700px;
    width: 100%;
    padding: 0 40px;
    gap: 16px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .search-container {
    transform: translateY(0);
    opacity: 1;
}

.search-icon-overlay {
    color: var(--accent);
    font-size: 1.3rem;
    opacity: 0.7;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 300;
    padding: 16px 0;
    outline: none;
    font-family: var(--font-display);
    letter-spacing: -0.5px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-bottom-color: var(--accent);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.search-close {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

/* ========================================
   HERO SLIDER
   ======================================== */

.hero-slider {
    position: relative;
    height: 75vh;
    min-height: 480px;
    max-height: 680px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/*
 * Banner overlay — sıcak doğal tonlara uyumlu, soldan sağa yatay gradient.
 * Neden: slide görselleri (SFE/lab teması, amber-altın ton) sağ tarafta odaklı,
 * sol tarafta zaten yazı için koyu alan bırakıyor. Eski koyu mavi overlay
 * görsellerin sıcak ışığını bastırıyordu. Yeni gradient: solda yazı
 * okunabilirliği için yeterince koyu (deep charcoal-warm), sağa doğru
 * inceltilerek görselin amber dokusunun nefes almasına izin veriyor.
 */
.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(95deg,
            rgba(15, 12, 8, 0.82) 0%,
            rgba(22, 16, 10, 0.55) 45%,
            rgba(20, 28, 22, 0.32) 80%,
            rgba(10, 22, 18, 0.45) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.slide-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
    max-width: 650px;
    opacity: 0;
    transform: translateY(40px);
    animation: none;
}

.slide.active .slide-title {
    animation: fadeUp 0.8s 0.3s forwards;
}

.slide-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-desc {
    animation: fadeUp 0.8s 0.5s forwards;
}

.slide.active .btn-primary {
    animation: fadeUp 0.8s 0.7s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Shapes */
.slide-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
}

.hero-shape.shape-1 {
    width: 600px;
    height: 600px;
    right: -100px;
    top: -100px;
    background: rgba(26, 74, 122, 0.2);
    animation: float 8s ease-in-out infinite;
}

.hero-shape.shape-2 {
    width: 400px;
    height: 400px;
    right: 15%;
    bottom: 10%;
    background: rgba(31, 179, 106, 0.1);
    animation: float 10s ease-in-out infinite reverse;
}

.hero-shape.shape-3 {
    width: 200px;
    height: 200px;
    right: 30%;
    top: 30%;
    background: rgba(26, 74, 122, 0.12);
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 10;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0;
    transition: width 0.1s linear;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    opacity: 0;
    transform: translateY(20px);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
}

.contact-form .btn-primary,
.news-cta .btn-primary {
    opacity: 1;
    transform: none;
}

.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   SECTION COMMON
   ======================================== */

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    position: relative;
    padding-left: 48px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 2px;
    background: var(--accent);
}

.section-tag.light {
    color: var(--accent-light);
}

.section-tag.light::before {
    background: var(--accent-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.section-title.light {
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content .btn-outline {
    margin-top: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: var(--light);
    padding: 36px 28px;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: inline;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

/* ========================================
   BUSINESS SECTION
   ======================================== */

.business-section {
    padding: 120px 0;
    background: var(--light);
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.tab-btn {
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--border);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.tab-btn:first-child {
    border-right: none;
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.tab-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.business-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.business-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.business-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.business-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.business-card:hover::after {
    transform: scaleX(1);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
}

.card-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.business-card:hover .card-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.business-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.business-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.card-features span {
    padding: 6px 14px;
    background: var(--light);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.card-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link i {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}

.card-link:hover {
    color: var(--primary);
}

.card-link:hover i {
    transform: translateX(4px);
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.brand-item {
    background: var(--white);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: var(--transition);
}

.brand-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.brand-logo-placeholder {
    width: 120px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.brand-logo-placeholder span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.brand-logo-placeholder small {
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

/* ========================================
   SUSTAINABILITY SECTION
   ======================================== */

.sustainability-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(31, 179, 106, 0.05);
    border-radius: 50%;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.sustainability-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.sustainability-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sust-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
    border-radius: 4px;
    transition: var(--transition);
    display: block;
}

.sust-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: var(--accent);
}

.sust-card i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.sust-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.sust-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* ========================================
   NEWS SECTION - Modern V2 (Image Match)
   ======================================== */

.news-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.section-header-v2 {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-v2 .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.news-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.news-card-v2 {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card-v2:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.news-card-v2 a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card-img-v2 {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.news-card-img-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-v2:hover .news-card-img-v2 img {
    transform: scale(1.05);
}

.news-card-body-v2 {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-title-v2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.45;
    margin-bottom: 24px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
}

.news-footer-v2 {
    margin-top: auto;
}

.news-date-v2 {
    font-size: 0.75rem;
    color: #a0a0a0;
    font-weight: 500;
}

/* News Responsive */
@media (max-width: 1200px) {
    .news-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .news-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .section-header-v2 .section-title {
        font-size: 1.8rem;
    }
}

.news-cta {
    text-align: center;
    margin-top: 56px;
}

/* News Responsive */
@media (max-width: 1024px) {
    .news-card-modern.small .news-card-img {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .news-modern {
        grid-template-columns: 1fr;
    }

    .news-side-list {
        gap: 20px;
    }

    .news-card-modern.small {
        flex-direction: column;
    }

    .news-card-modern.small a {
        flex-direction: column;
    }

    .news-card-modern.small .news-card-img {
        width: 100%;
        height: 200px;
    }

    .news-card-modern.featured .news-card-img {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .news-card-modern.featured .news-card-body {
        padding: 20px;
    }

    .news-card-modern.featured h3 {
        font-size: 1.15rem;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    padding: 120px 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    margin-top: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-item i {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrap {
    background: var(--white);
    padding: 48px;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text);
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 43, 76, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    text-align: center;
    border: none;
}

/* ========================================
   FAALİYET ALANLARI DETAIL
   ======================================== */

.faaliyet-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.faaliyet-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faaliyet-detail-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.service-list-item {
    background: var(--light);
    padding: 32px;
    border-radius: 6px;
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.service-list-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-list-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.service-list-item h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-list-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.sidebar-cta-inner {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sidebar-cta-inner i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 24px;
    display: block;
}

.sidebar-cta-inner h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.35;
}

.sidebar-cta-inner p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

.btn-sidebar {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-sidebar:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.mt-32 {
    margin-top: 32px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-list-grid {
        grid-template-columns: 1fr;
    }

    /* NEDEN: dar viewport'ta 60px icon + 20px gap + 2rem başlık birlikte
       sığmıyor; başlık uzun (örn. SFE bölümü) olduğunda flex hücresinden
       taşmasın diye icon'u küçült, gap'i daralt, başlığı ölçeklendir. */
    .faaliyet-detail-header {
        gap: 14px;
        margin-bottom: 18px;
    }

    .faaliyet-detail-icon {
        width: 48px;
        height: 48px;
    }

    .faaliyet-detail-icon i {
        font-size: 1.2rem;
    }

    .content-title {
        font-size: 1.45rem;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .content-title {
        font-size: 1.25rem;
    }

    .faaliyet-detail-icon {
        width: 42px;
        height: 42px;
    }

    .faaliyet-detail-icon i {
        font-size: 1.05rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo .logo-text {
    font-size: 1.6rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal a:hover {
    color: var(--accent);
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   BACK TO TOP
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--dark);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .top-bar-item:nth-child(3) {
        display: none;
    }

    .nav-item>a {
        padding: 0 16px;
    }

    .mega-dropdown {
        min-width: 460px;
    }
}

@media (max-width: 1024px) {
    .header-inner,
    .slide-content {
        padding: 0 24px;
    }

    .top-bar {
        display: none;
    }

    .header-cta-btn {
        display: none;
    }

    .slide-title {
        font-size: 2.6rem;
    }

    .about-grid,
    .sustainability-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .business-cards {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* CRITICAL: backdrop-filter on .header creates a containing block for
       its descendants that use position: fixed. That broke the mobile
       drawer — when the user scrolled down and tapped the hamburger, the
       drawer was being positioned relative to the header's *original*
       document position (top of page) instead of the viewport, so it
       opened above the visible area and the user couldn't see it.
       Removing backdrop-filter on mobile lets fixed children resolve
       against the viewport (initial containing block) again. */
    .header,
    .header.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.97);
    }

    /* Mobile drawer — transform ile gizleniyor (right: -100% yerine).
       Neden: position: fixed elementler bazı tarayıcılarda body
       overflow-x: hidden'ı atlatabilir ve full-page screenshot
       veya yatay scroll'da drawer görünür olabilir. transform
       sayfa flow'unu hiç etkilemez, GPU'da çalışır, daha sağlam. */
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 420px;
        height: 100vh;
        background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
        padding: 100px 32px 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        will-change: transform;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        height: auto;
    }

    .nav-item {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-item>a {
        padding: 16px 0;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 0.85rem;
    }

    .nav-arrow {
        margin-left: auto;
    }

    .nav-item>a::after {
        display: none;
    }

    .mega-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        border-radius: 0;
        min-width: auto;
        display: none;
        pointer-events: auto;
        background: rgba(255, 255, 255, 0.03);
        border-left: 2px solid var(--accent);
        margin-left: 8px;
        margin-bottom: 8px;
    }

    .has-submenu.open .mega-dropdown {
        display: block;
    }

    .mega-dropdown-inner {
        grid-template-columns: 1fr;
    }

    .mega-col {
        padding: 12px 16px;
    }

    .mega-heading {
        display: none;
    }

    .mega-highlight {
        display: none;
    }

    .mega-links li a {
        padding: 10px 12px;
        border-radius: 8px;
    }

    .mega-links li a i {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
        background: rgba(255, 255, 255, 0.08);
        color: var(--accent);
    }

    .mega-links li a:hover i {
        background: rgba(31, 179, 106, 0.2);
        color: var(--accent);
    }

    .mega-links li a strong {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .mega-links li a:hover strong {
        color: var(--accent);
    }

    .mega-links li a span {
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.7rem;
    }

    .mega-links li a:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: none;
    }

    .slide-content {
        margin-left: 0;
        padding: 0 20px;
    }

    .slide-title {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .business-cards,
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .sustainability-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .slider-controls {
        bottom: 30px;
    }

    .search-overlay {
        padding-top: 120px;
    }

    .search-input {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.8rem;
    }

    .slide-desc {
        font-size: 0.95rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        height: 64px;
    }

    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
    }

    .logo-icon {
        font-size: 1.2rem;
    }

    .search-input {
        font-size: 1.1rem;
    }
}

/* ========================================
   PAGE HERO (Alt Sayfalar)
   ======================================== */

.page-hero {
    position: relative;
    padding: 180px 0 80px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    z-index: 0;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(31, 179, 106, 0.06);
    border-radius: 50%;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    max-width: 720px;
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.15;
}

.page-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.6rem;
}

.breadcrumb-current {
    color: var(--accent);
    font-weight: 500;
}

/* ========================================
   PAGE LAYOUT (Sidebar + Main)
   ======================================== */

.page-content-section {
    padding: 80px 0 120px;
    background: var(--white);
}

/* NEDEN minmax(0, 1fr): CSS Grid item'ının default min-width'i auto'dur ve
   içindeki min-content (örn. comparison-table'ın min-width: 640px değeri
   veya uzun kelimeler) item'ı zorla genişletir → mobilde sayfa sağa taşar.
   minmax(0, 1fr) bu intrinsic min-width'i sıfırlar; tablo wrap'ı içinde
   overflow-x: auto düzgün çalışır, sayfa viewport'ta kalır. */
.page-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 64px;
    align-items: start;
}

/* Sidebar */
.page-sidebar {
    position: sticky;
    top: 100px;
    min-width: 0;
}

/* Aynı sebep: main kolonu da intrinsic min-width yüzünden grid'i
   genişletmesin diye explicit min-width: 0. */
.page-main {
    min-width: 0;
}

.sidebar-nav h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    border-bottom: 1px solid var(--border);
}

.sidebar-nav li a {
    display: block;
    padding: 14px 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
}

.sidebar-nav li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-nav li a:hover,
.sidebar-nav li.active a {
    color: var(--primary);
    background: var(--light);
    padding-left: 20px;
}

.sidebar-nav li.active a::before,
.sidebar-nav li a:hover::before {
    transform: scaleY(1);
}

/* ========================================
   CONTENT BLOCKS
   ======================================== */

.content-block {
    margin-bottom: 64px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.3px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
    position: relative;
    /* NEDEN: dar viewport'ta "Ekstraksiyonu" gibi uzun kelimeler dar
       flex hücresine sığmazsa container'ı taşırır. anywhere kelime içinden
       de kırpılmasına izin vererek mobilde overflow'u tamamen engeller. */
    overflow-wrap: anywhere;
    min-width: 0;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.content-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 20px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.lead-text {
    font-size: 1.15rem !important;
    color: var(--text) !important;
    font-weight: 500;
    line-height: 1.8 !important;
}

/* ========================================
   STATS BANNER (Hakkımızda)
   ======================================== */

.about-stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 6px;
    margin-bottom: 64px;
    overflow: hidden;
}

.stats-banner-item {
    padding: 40px 24px;
    text-align: center;
    position: relative;
}

.stats-banner-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stats-banner-item .stat-number {
    color: var(--white);
    font-size: 2.6rem;
}

.stats-banner-item .stat-suffix {
    color: var(--accent-light);
    font-size: 1.6rem;
}

.stats-banner-item .stat-label {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-size: 0.8rem;
}

/* ========================================
   VISION & MISSION
   ======================================== */

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vm-card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: var(--transition);
}

.vm-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.vm-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vm-icon i {
    font-size: 1.3rem;
    color: var(--dark);
}

.vm-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.vm-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   VALUES GRID
   ======================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-item {
    padding: 32px 24px;
    background: var(--light);
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-item:hover {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background: var(--accent);
}

.value-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.value-item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   MANAGEMENT GRID
   ======================================== */

.management-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.manager-card {
    text-align: center;
    padding: 32px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: var(--transition);
}

.manager-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.manager-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--light), #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.manager-photo i {
    font-size: 2.2rem;
    color: var(--text-muted);
}

.manager-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.manager-card span {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
}

/* ========================================
   TIMELINE
   ======================================== */

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--white);
    border: 3px solid var(--accent);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:first-child::before,
.timeline-item:last-child::before {
    background: var(--accent);
    border-color: var(--accent);
}

.timeline-year {
    flex-shrink: 0;
    width: 64px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

.timeline-content {
    flex: 1;
    padding: 16px 24px;
    background: var(--light);
    border-radius: 4px;
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE - Alt Sayfalar
   ======================================== */

@media (max-width: 1024px) {
    .page-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .page-sidebar {
        position: static;
    }

    .sidebar-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }

    .sidebar-nav li {
        border-bottom: none;
        border-right: 1px solid var(--border);
    }

    .sidebar-nav li:last-child {
        border-right: none;
    }

    .sidebar-nav li a {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .sidebar-nav li a::before {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
        left: 0;
        transform: scaleX(0);
    }

    .sidebar-nav li.active a::before,
    .sidebar-nav li a:hover::before {
        transform: scaleX(1);
    }

    .management-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-banner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-banner-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats-banner {
        grid-template-columns: 1fr 1fr;
    }

    .stats-banner-item {
        padding: 28px 16px;
    }

    .stats-banner-item .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    .values-grid,
    .management-grid,
    .about-stats-banner {
        grid-template-columns: 1fr;
    }

    .stats-banner-item::after {
        display: none !important;
    }

    .sidebar-nav ul {
        flex-direction: column;
    }

    .sidebar-nav li {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-page-section {
    padding: 80px 0 120px;
    background: var(--white);
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(31, 179, 106, 0.15);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.contact-info-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 4px;
}

.contact-info-card p a {
    color: var(--text-light);
    transition: var(--transition);
}

.contact-info-card p a:hover {
    color: var(--accent);
}

.contact-info-card p small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.contact-info-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 5px 14px;
    background: var(--light);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.contact-social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Contact Page Grid */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Contact Form */
.contact-page-form-wrap {
    background: var(--white);
    padding: 48px;
    border-radius: 6px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-form-header {
    margin-bottom: 36px;
}

.contact-form-header .section-tag {
    margin-bottom: 12px;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.contact-form-header p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-page-form .form-group {
    margin-bottom: 20px;
}

.contact-page-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.contact-page-form input,
.contact-page-form textarea,
.contact-page-form select {
    width: 100%;
    padding: 14px 18px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text);
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.contact-page-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus,
.contact-page-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 43, 76, 0.08);
    background: var(--white);
}

.contact-page-form textarea {
    resize: vertical;
    min-height: 140px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
    padding: 0;
    appearance: auto;
    -webkit-appearance: auto;
}

.form-checkbox label {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0;
    cursor: pointer;
    line-height: 1.5;
}

.form-checkbox label a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.form-checkbox label a:hover {
    color: var(--accent);
}

/* Form gönderim bildirimi (başarı / hata) */
.form-notice {
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-notice--success {
    color: #065f46;
    background: #ecfdf5;
    border-color: #10b981;
}

.form-notice--error {
    color: #991b1b;
    background: #fef2f2;
    border-color: #e2453a;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 48px;
    opacity: 1;
    transform: none;
    margin-top: 8px;
    border: 2px solid var(--accent);
    font-size: 0.82rem;
}

.contact-submit-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}

/* Contact Page Sidebar */
.contact-page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Map */
.contact-map-wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.contact-map-wrap iframe {
    display: block;
}

/* Office Locations */
.office-locations {
    background: var(--light);
    border-radius: 6px;
    padding: 32px;
    border: 1px solid var(--border);
}

.office-locations h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
    position: relative;
}

.office-locations h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--accent);
}

.office-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.office-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.office-item:hover {
    padding-left: 8px;
}

.office-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.office-item:hover .office-icon {
    background: var(--accent);
}

.office-icon i {
    font-size: 0.9rem;
    color: var(--white);
}

.office-details h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.office-details p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 4px;
}

.office-details span {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.office-details span i {
    font-size: 0.65rem;
    color: var(--accent);
}

/* Quick Contact CTA */
.quick-contact-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 6px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.quick-contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(31, 179, 106, 0.08);
    border-radius: 50%;
}

.quick-contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-contact-icon i {
    font-size: 1.3rem;
    color: var(--accent);
}

.quick-contact-text {
    flex: 1;
}

.quick-contact-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.quick-contact-text p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

.quick-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.quick-contact-btn i {
    font-size: 0.7rem;
}

.quick-contact-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(31, 179, 106, 0.3);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -40px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
        margin-top: -30px;
    }

    .contact-page-form-wrap {
        padding: 32px 24px;
    }

    .contact-form-title {
        font-size: 1.4rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quick-contact-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 28px 20px;
    }

    .contact-page-form-wrap {
        padding: 24px 16px;
    }
}


/* ========================================
   MODERN V2 - Ana Sayfa Overrides
   ======================================== */

/* Slide Badge */
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.slide-badge i {
    font-size: 0.4rem;
    color: var(--accent);
}

.slide.active .slide-badge {
    animation: fadeUp 0.6s 0.1s forwards;
}

.slide-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.slide.active .slide-actions {
    animation: fadeUp 0.8s 0.7s forwards;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-ghost i {
    font-size: 1.3rem;
    color: var(--accent);
}

.btn-ghost:hover {
    color: var(--white);
}

/* Modern Slider Counter */
.slider-counter {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
}

.current-slide {
    font-size: 1.4rem;
    color: var(--accent);
}

.slide-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.total-slides {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   FLOATING STATS BAR
   ======================================== */

.floating-stats {
    position: relative;
    z-index: 5;
    margin-top: -48px;
}

.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    padding: 36px 48px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.1);
    gap: 0;
}

.stats-bar-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.stats-bar-number {
    display: flex;
    align-items: baseline;
}

.stats-bar-number .stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
    line-height: 1;
}

.stats-bar-number .stat-suffix {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.stats-bar-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 500;
}

.stats-bar-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* ========================================
   ABOUT V2 - Modern
   ======================================== */

.about-section-v2 {
    padding: 120px 0;
    background: var(--white);
}

.about-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-v2-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.about-img-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 45%;
    height: 45%;
    border: 3px solid var(--accent);
    border-radius: 12px;
    z-index: -1;
}

.about-experience-badge {
    position: absolute;
    bottom: -24px;
    left: 32px;
    background: var(--accent);
    color: var(--dark);
    padding: 20px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(31, 179, 106, 0.3);
    z-index: 2;
}

.exp-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-v2-content .section-title {
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 36px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
}

.about-feature-item i {
    color: var(--accent);
    font-size: 1rem;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-modern i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-modern:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31, 179, 106, 0.25);
}

.btn-modern:hover i {
    transform: translateX(4px);
}

/* ========================================
   BUSINESS V2 - Image Cards
   ======================================== */

.business-section-v2 {
    padding: 120px 0;
    background: var(--light);
}

.section-header-v2 {
    text-align: center;
    margin-bottom: 56px;
}

.section-header-v2 .section-tag {
    padding-left: 0;
}

.section-header-v2 .section-tag::before {
    display: none;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 500px;
    margin: -8px auto 0;
}

.business-cards-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.biz-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.biz-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.biz-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.biz-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.biz-card:hover .biz-card-img img {
    transform: scale(1.08);
}

.biz-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 22, 40, 0.5) 100%);
}

.biz-card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.biz-card-body {
    padding: 28px 28px 32px;
}

.biz-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
}

.biz-card:hover .biz-card-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.biz-card-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.biz-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.biz-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}

.biz-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.biz-card-tags span {
    padding: 5px 12px;
    background: var(--light);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.biz-card-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.biz-card-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.biz-card:hover .biz-card-link i {
    transform: translateX(4px);
}

.biz-card-link:hover {
    color: var(--primary);
}

/* ========================================
   SUSTAINABILITY V2
   ======================================== */

.sustainability-v2 {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.sust-v2-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #06140C 0%, #0E5E33 40%, #128A4E 100%);
}

.sust-v2-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(31, 179, 106, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.sust-v2-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 74, 122, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.sust-v2-inner {
    position: relative;
    z-index: 1;
}

.sust-v2-header {
    max-width: 520px;
    margin-bottom: 48px;
}

.sust-v2-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

.sust-v2-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sust-v2-card {
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sust-v2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sust-v2-card:hover::before {
    transform: scaleX(1);
}

.sust-v2-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(31, 179, 106, 0.2);
    transform: translateY(-4px);
}

.sust-v2-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(31, 179, 106, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sust-v2-card-icon i {
    font-size: 1.3rem;
    color: var(--accent);
}

.sust-v2-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.sust-v2-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
    flex: 1;
}

.sust-v2-arrow {
    margin-top: 20px;
    color: var(--accent);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

.sust-v2-card:hover .sust-v2-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
    padding: 0;
    background: var(--white);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 56px 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: rgba(31, 179, 106, 0.08);
    border-radius: 50%;
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.btn-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: var(--transition);
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

.btn-cta:hover i {
    transform: translateX(4px);
}

/* ========================================
   MODERN V2 RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .stats-bar {
        padding: 28px 24px;
    }

    .stats-bar-number .stat-number {
        font-size: 2.2rem;
    }

    .about-v2-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-img-wrap img {
        height: 360px;
    }

    .business-cards-v2 {
        grid-template-columns: 1fr 1fr;
    }

    .sust-v2-cards {
        grid-template-columns: 1fr 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 28px;
        padding: 48px 40px;
    }
}

@media (max-width: 768px) {
    .floating-stats {
        margin-top: -32px;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 24px;
        padding: 28px 20px;
    }

    .stats-bar-item {
        flex: 0 0 calc(50% - 12px);
    }

    .stats-bar-divider {
        display: none;
    }

    .stats-bar-number .stat-number {
        font-size: 2rem;
    }

    .about-img-accent {
        display: none;
    }

    .about-img-wrap img {
        height: 280px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .business-cards-v2 {
        grid-template-columns: 1fr;
    }

    .biz-card-img {
        height: 200px;
    }

    .sust-v2-cards {
        grid-template-columns: 1fr;
    }

    .cta-text h2 {
        font-size: 1.4rem;
    }

    .cta-inner {
        margin: 60px 0;
        padding: 36px 24px;
        border-radius: 12px;
    }

    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .stats-bar-item {
        flex: 0 0 100%;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .about-experience-badge {
        left: 16px;
        bottom: -16px;
        padding: 14px 20px;
    }

    .exp-number {
        font-size: 2rem;
    }
}

/* ========================================
   NUTRIVERA — Modernization Layer
   Eski iskelet üzerine modernleşme katmanı.
   Yeşil/mint tonlar, yumuşak köşeler, PNG logo desteği,
   gradyan butonlar ve nefes alan boşluklar.
   ======================================== */

/* PNG logo (header & footer) — eski text bazlı logo yapısının yerine */
.logo {
    gap: 0;
}

.logo .logo-img {
    height: 38px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.header.scrolled .logo .logo-img {
    height: 34px;
}

.footer-logo .logo-img {
    height: 36px;
    filter: brightness(0) invert(1);
}

/* Top-bar: yeşilimsi siyah zemin + yumuşatılmış ayraç */
.top-bar {
    background: var(--dark);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

/* Birincil buton: düz renk yerine markalı gradyan
   (logo yeşili → koyu yeşil) — daha modern ve canlı his */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(31, 179, 106, 0.28);
    border-radius: 999px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(31, 179, 106, 0.4);
}

/* Header CTA butonu — pill şeklinde modern duruş */
.header-cta-btn {
    border-radius: 999px;
}

/* Modern buton (about → "Daha Fazla Bilgi" vb.) */
.btn-modern {
    border-radius: 999px;
}

/* Section tag (HAKKIMIZDA, FAALİYET ALANLARI vb.) — mint chip */
.section-tag {
    background: var(--mint);
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

/* Kart yumuşaklığı — tüm büyük blokları markalaştır */
.biz-card,
.news-card-v2,
.contact-info-card,
.vm-card,
.value-item,
.manager-card,
.sust-v2-card,
.about-img-wrap,
.about-img-wrap img,
.news-card-img-v2,
.news-card-img-v2 img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-list-item,
.office-item,
.quick-contact-cta,
.sidebar-cta-inner,
.contact-page-form-wrap,
.contact-map-wrap,
.contact-map-wrap iframe {
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* Form alanları */
.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    border-radius: var(--radius-sm);
}

/* Hero üzerindeki bilgi kartlarına ufak nefes — opsiyonel
   modernleşme: gradyan kenarlık yerine ince yeşil glow */
.biz-card:hover,
.vm-card:hover,
.value-item:hover,
.contact-info-card:hover {
    box-shadow: 0 18px 50px rgba(18, 138, 78, 0.16);
    border-color: rgba(31, 179, 106, 0.18);
}

/* About bölümü deneyim rozeti — markaya uygun yeşil */
.about-experience-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(18, 138, 78, 0.35);
}

/* Sürdürülebilirlik bölümü — koyu yeşil zeminde mint card hover */
.sust-v2-card {
    border-radius: var(--radius-md);
}

/* Sayfa hero (alt sayfaların üst başlık alanı) — yeşil overlay */
.page-hero-bg {
    background: linear-gradient(135deg, #06140C 0%, #0E5E33 50%, #128A4E 100%);
}

/* Mega menü dropdown — yumuşatılmış köşeler */
.mega-dropdown {
    border-radius: var(--radius-md);
}

/* Footer — yeşilimsi koyu, marka tutarlı */
.footer {
    background: var(--dark);
}

/* Back to top butonu */
.back-to-top {
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 10px 28px rgba(31, 179, 106, 0.4);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(31, 179, 106, 0.55);
}

/* Linklerin focus halkası — erişilebilirlik + marka tutarlılığı */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Mobil hamburger çizgileri yeşil olsun (modernleşme detayı) */
.hamburger.active span {
    background: var(--primary);
}

/* 4'lü ürün grid'i — sunumdaki 4 protein ürünü için
   Mevcut .business-cards-v2 (3 sütun) yerine, .cards-4 modifier
   ile geniş ekranda 4 sütun, tablette 2x2, mobilde tek sütun */
.business-cards-v2.cards-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
    .business-cards-v2.cards-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .business-cards-v2.cards-4 {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   NUTRIVERA — Modern Product Showcase
   --------------------------------------------------
   Anasayfadaki 4 ürün için yeni "data-card" tasarımı.
   Eski .biz-card görsel-ağırlıklı brochure stilinde idi;
   elimizde gerçek ürün fotoğrafı olmadığı için tipografik,
   teknik veriyi öne çıkaran modern bir layout'a geçtik.
   --------------------------------------------------
   Hiyerarşi:
   1. Köşede outline numara (sessiz arka plan vurgusu)
   2. Mint ikon chip + ürün başlığı
   3. DEVASA protein yüzdesi (gradient text, ana odak)
   4. Kısa açıklama + tag pill'leri
   5. Alt-sağda "Detay" linki (hover'da ok kayar)
   ======================================== */

.product-showcase {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.product-showcase .section-header-v2 {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.product-showcase .section-title {
    font-size: 2.6rem;
    line-height: 1.15;
    margin: 14px 0 16px;
    color: var(--text);
}

.product-showcase .section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Grid — desktop 4 sütun, tablet 2x2, mobil 1 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Kart — beyaz zemin, ince border, padding bol */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    isolation: isolate;
}

/* Hover'da kart yukarı kalkar, yeşil border + mint glow */
.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 179, 106, 0.35);
    box-shadow: 0 28px 60px rgba(18, 138, 78, 0.18);
}

/* Sağ-üst köşede outline numara — görselsiz kart için
   sessiz bir görsel ritim vurgusu (Apple/Linear stili) */
.product-card-num {
    position: absolute;
    top: 18px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(31, 179, 106, 0.18);
    letter-spacing: -2px;
    z-index: 0;
    transition: -webkit-text-stroke 0.4s ease, color 0.4s ease;
}

.product-card:hover .product-card-num {
    -webkit-text-stroke: 1.5px rgba(31, 179, 106, 0.35);
}

/* Ürün ikonu — mint zeminli yumuşak chip */
.product-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint);
    color: var(--primary);
    border-radius: 14px;
    font-size: 1.1rem;
    margin-bottom: 24px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-6deg) scale(1.05);
}

/* Başlık — kart genelinde okunaklı, iki satıra taşar */
.product-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

/* DEVASA protein yüzdesi — kartın görsel odağı.
   Gradient text efekti markaya uygun yeşil tonu verir. */
.product-card-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.product-card-stat .stat-value {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px;
}

.product-card-stat .stat-unit {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Açıklama — kompakt, gri ton */
.product-card-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

/* Mint pill tag'ler */
.product-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.product-card-tags li {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: var(--mint);
    padding: 5px 10px;
    border-radius: 999px;
    letter-spacing: 0.3px;
}

/* "Detaylı Bilgi" linki — alt-sağda ok */
.product-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.3px;
    transition: gap 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-card-link {
    gap: 14px;
    color: var(--primary-dark);
}

.product-card-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-link i {
    transform: translateX(2px);
}

/* Mobilde tipografi biraz küçültülsün */
@media (max-width: 600px) {
    .product-card {
        padding: 28px 24px 24px;
    }

    .product-card-num {
        font-size: 3.2rem;
    }

    .product-card-stat .stat-value {
        font-size: 2.2rem;
    }

    .product-showcase .section-title {
        font-size: 2rem;
    }
}

/* ========================================
   NUTRIVERA — SFE Bento Layout
   --------------------------------------------------
   Eski "sustainability-v2" 4 eşit kart grid'inin yerine
   modern bento layout. SFE'nin yıldız özelliği "Native
   Protein Yapısı" büyük kartta öne çıkar (32-60°C devasa
   metrik), diğer 3 avantaj sağda dikey stack.
   --------------------------------------------------
   Apple/Linear/Vercel marketing sayfalarındaki mevcut
   "modern bento" paradigmasıyla uyumlu — eşit kart yerine
   içerik önemine göre boyut hiyerarşisi.
   ======================================== */

.sfe-bento-section {
    padding: 110px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Section'a hafif arka plan dokusu — beyaz bg üzerinde
   görsel ritim için sessiz mint blob */
.sfe-bento-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--mint) 0%, transparent 65%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.sfe-bento-section .container {
    position: relative;
    z-index: 1;
}

.sfe-bento-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.sfe-bento-header .section-title {
    font-size: 2.6rem;
    line-height: 1.15;
    margin: 14px 0 18px;
    color: var(--text);
}

.sfe-bento-header .section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* Bento grid — 1 büyük (sol, 3 satır kapsar) + 3 küçük (sağ stack) */
.sfe-bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-areas:
        "main side1"
        "main side2"
        "main side3";
    gap: 16px;
}

@media (max-width: 900px) {
    .sfe-bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "side1"
            "side2"
            "side3";
    }
}

/* ----- BÜYÜK KART (Native Protein Yapısı — yıldız özellik) ----- */

.sfe-bento-main {
    grid-area: main;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    min-height: 460px;
    padding: 48px 44px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0E5E33 0%, #128A4E 50%, #1FB36A 100%);
    color: var(--white);
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease;
    box-shadow: 0 24px 60px rgba(18, 138, 78, 0.28);
}

.sfe-bento-main:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(18, 138, 78, 0.4);
}

/* Dekoratif yumuşak blur circles — gradient zemine derinlik */
.sfe-bento-main::before,
.sfe-bento-main::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.sfe-bento-main::before {
    width: 320px;
    height: 320px;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
}

.sfe-bento-main::after {
    width: 240px;
    height: 240px;
    bottom: -90px;
    left: -70px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.sfe-bento-main-content {
    position: relative;
    z-index: 1;
}

.sfe-bento-main-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 22px;
    width: fit-content;
}

.sfe-bento-main-tag i {
    font-size: 0.7rem;
}

.sfe-bento-main h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.sfe-bento-main p {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
}

/* Devasa metrik — kart görsel odağı */
.sfe-bento-main-metric {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sfe-bento-main-metric .value {
    font-family: var(--font-display);
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--white);
}

.sfe-bento-main-metric .label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
    padding-bottom: 8px;
}

/* ----- KÜÇÜK KARTLAR (Sıfır Kimyasal / %95-98 Verim / Çevre Dostu) ----- */

.sfe-bento-side {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 28px 26px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.sfe-bento-side:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 179, 106, 0.35);
    box-shadow: 0 18px 40px rgba(18, 138, 78, 0.12);
}

.sfe-bento-side1 { grid-area: side1; }
.sfe-bento-side2 { grid-area: side2; }
.sfe-bento-side3 { grid-area: side3; }

/* Üst sıra: ikon + (varsa) sayı metric — yan yana */
.sfe-bento-side-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sfe-bento-side-icon {
    width: 44px;
    height: 44px;
    background: var(--mint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sfe-bento-side:hover .sfe-bento-side-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-6deg);
}

.sfe-bento-side-metric {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfe-bento-side h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.sfe-bento-side p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-top: auto;
}

/* Mobilde tipografi düşür */
@media (max-width: 600px) {
    .sfe-bento-section {
        padding: 80px 0;
    }

    .sfe-bento-header .section-title {
        font-size: 2rem;
    }

    .sfe-bento-main {
        padding: 36px 28px;
        min-height: auto;
        gap: 28px;
    }

    .sfe-bento-main h3 {
        font-size: 1.9rem;
    }

    .sfe-bento-main-metric .value {
        font-size: 3.2rem;
    }
}

/* ========================================
   NUTRIVERA — Modern About Section
   --------------------------------------------------
   Eski .about-section-v2 split image+text (klasik 2018-2020
   B2B layout) yerine editorial + stat strip yaklaşımı.
   --------------------------------------------------
   Görseli (gerçek ürün/SFE ile uyumsuz fabrika fotoğrafı) tamamen
   kaldırdık. Sayfanın diğer bölümleriyle (ürün kartları, SFE bento)
   görsel tutarlılık için yine tipografik + numeric vurguya geçtik.
   --------------------------------------------------
   Yapı:
   1. Üst: asimetrik 2-kolon (büyük başlık | lead paragraf + buton)
   2. Alt: 4 stat kartı yatay strip — sunumdaki teknik verileri
      öne çıkarır, "biz kimiz" yerine "ne yapıyoruz" anlatır
   ======================================== */

.about-modern {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Hafif yeşil dekoratif blob — sol altta sessiz görsel ritim */
.about-modern::before {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--mint) 0%, transparent 65%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.about-modern .container {
    position: relative;
    z-index: 1;
}

/* Üst editorial — asimetrik 2 kolon */
.about-modern-top {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
    align-items: start;
    margin-bottom: 80px;
    padding-bottom: 8px;
}

.about-modern-heading .section-tag {
    margin-bottom: 24px;
}

.about-modern-heading h2 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.05;
    color: var(--text);
    letter-spacing: -1.8px;
    margin: 0;
}

/* Başlığın ikinci satırı yeşil gradient — editorial accent */
.about-modern-heading h2 .accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sağ kolon: lead + body + CTA */
.about-modern-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 18px;
}

.about-modern-content p.lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 22px;
}

.about-modern-content .btn-modern {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(31, 179, 106, 0.28);
    transition: all 0.3s ease;
}

.about-modern-content .btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(31, 179, 106, 0.4);
    color: var(--white);
}

.about-modern-content .btn-modern i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.about-modern-content .btn-modern:hover i {
    transform: translateX(3px);
}

/* Alt: stat strip — 4 büyük metrik kartı yatay */
.about-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.about-stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 179, 106, 0.35);
    box-shadow: 0 22px 50px rgba(18, 138, 78, 0.14);
}

/* Mint icon chip — kart üstünde marka çapası */
.about-stat-card-icon {
    width: 40px;
    height: 40px;
    background: var(--mint);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.about-stat-card:hover .about-stat-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-6deg);
}

/* Devasa gradient rakam — kartın görsel odağı */
.about-stat-card .value {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.about-stat-card .label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 10px;
}

.about-stat-card p {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
    margin-top: auto;
}

/* Responsive davranış */
@media (max-width: 1100px) {
    .about-modern-top {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 56px;
    }

    .about-modern-heading h2 {
        font-size: 2.6rem;
    }

    .about-stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 600px) {
    .about-modern {
        padding: 80px 0;
    }

    .about-modern-heading h2 {
        font-size: 2.1rem;
    }

    .about-stats-strip {
        grid-template-columns: 1fr;
    }

    .about-stat-card .value {
        font-size: 2.2rem;
    }
}

/* ========================================
   NUTRIVERA — Modern News Section
   --------------------------------------------------
   Eski 4 eşit kart grid'i (klasik blog tarzı, 2018-2020)
   yerine editorial Featured + List layout.
   --------------------------------------------------
   Hiyerarşi:
   • SOL BÜYÜK (featured): En son haber, kategori chip + lead
   • SAĞ STACK (3 küçük): kompakt yatay kartlar (görsel + başlık + meta)
   The Verge / Apple Newsroom / NY Times pattern'i.
   ======================================== */

.news-modern {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

/* Header satırı: başlık sol, "Tümü →" linki sağ */
.news-modern-header {
    margin-bottom: 48px;
}

.news-modern-header .section-tag {
    margin-bottom: 16px;
}

.news-modern-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
}

.news-modern-header h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -1.2px;
    margin: 0;
    max-width: 620px;
}

.news-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--primary-dark);
    background: var(--mint);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.news-view-all:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    gap: 14px;
}

.news-view-all i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.news-view-all:hover i {
    transform: translateX(2px);
}

/* Grid: 3 yan yana eşit kart (desktop) → 2 (tablet) → 1 (mobil) */
.news-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 1000px) {
    .news-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .news-modern-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Featured (sol büyük) ----- */
.news-featured {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

.news-featured:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 179, 106, 0.3);
    box-shadow: 0 28px 60px rgba(18, 138, 78, 0.16);
}

.news-featured-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.news-featured:hover .news-featured-img img {
    transform: scale(1.06);
}

/* Görsel üstünde frosted-glass kategori chip'i */
.news-featured-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-dark);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.news-featured-body {
    padding: 26px 26px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.news-featured-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.news-featured:hover .news-featured-body h3 {
    color: var(--primary-dark);
}

.news-featured-body p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
    /* 3 satıra sığsın, fazlası ellipsis — 3'lü grid'de tutarlı kart yüksekliği */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-featured .news-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.3s ease, color 0.3s ease;
}

.news-featured .news-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.news-featured:hover .news-link {
    gap: 14px;
    color: var(--primary-dark);
}

.news-featured:hover .news-link i {
    transform: translateX(3px);
}

/* ----- List (sağ stack) ----- */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-list-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 18px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.news-list-item:hover {
    transform: translateX(4px);
    border-color: rgba(31, 179, 106, 0.3);
    box-shadow: 0 14px 30px rgba(18, 138, 78, 0.1);
}

.news-list-img {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--mint);
}

.news-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-list-item:hover .news-list-img img {
    transform: scale(1.08);
}

.news-list-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.news-list-body .news-meta {
    margin-bottom: 0;
    font-size: 0.68rem;
}

.news-list-body h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
    margin: 0;
    transition: color 0.3s ease;
    /* Maks 2 satır, fazlası ellipsis */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-item:hover h4 {
    color: var(--primary-dark);
}

/* Mobil ayarlamalar */
@media (max-width: 600px) {
    .news-modern {
        padding: 80px 0;
    }

    .news-modern-header h2 {
        font-size: 1.9rem;
    }

    .news-modern-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .news-featured-body {
        padding: 24px 22px 22px;
    }

    .news-featured-body h3 {
        font-size: 1.35rem;
    }

    .news-list-item {
        grid-template-columns: 88px 1fr;
        gap: 14px;
    }
}

/* Karşılaştırma tablosu — SFE'yi rakiplere karşı sergileyen yapı.
   Marka yeşili "highlight" sütunu/cell'i öne çıkarır. */
.comparison-table-wrap {
    overflow-x: auto;
    /* NEDEN: parent grid/flex item olduğunda intrinsic min-content
       (tablonun min-width: 640px değeri) wrap'ı genişletip overflow-x:auto'yu
       devre dışı bırakır. min-width: 0 + max-width: 100% bu zinciri kırar. */
    min-width: 0;
    max-width: 100%;
    margin: 24px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    background: var(--white);
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.comparison-table thead th {
    background: var(--light);
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 16px 14px;
    text-align: left;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.comparison-table thead th.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.comparison-table tbody td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.92rem;
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-display);
}

.comparison-table tbody td.highlight {
    background: var(--mint);
    color: var(--primary-dark);
    font-weight: 600;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(31, 179, 106, 0.03);
}

/* Mobilde tablo başlığı küçülsün */
@media (max-width: 768px) {
    .comparison-table thead th,
    .comparison-table tbody td {
        font-size: 0.82rem;
        padding: 10px 8px;
    }
}

/* Sidebar listesi başlığına ek ara — SFE için ikinci başlık eklendiğinde
   görsel olarak ayrı dursun */
.sidebar-nav h3.mt-32 {
    margin-top: 32px;
}

/* ========================================
   NUTRIVERA — Modern Header Layer
   --------------------------------------------------
   Eski yapıda header arkaplanı brand yeşili idi → siyah/yeşil PNG logo
   neredeyse görünmüyordu. Scrolled state ise rebrand'te atlanmış,
   eski lacivert renk hâlâ duruyordu.
   --------------------------------------------------
   Modern yaklaşım:
   • Header arkaplanı: beyaz / glassmorphism (logo siyah text +
     yeşil yaprak içerdiği için beyazda mükemmel okunur)
   • Nav linklerinde: alt çizgi yerine PILL hover/active
     (2024-2026 trendi, daha rahat tıklama hedefi)
   • Top-bar: koyu yeşilimsi, ama gereksiz çizgiler kaldırıldı
   • Mega-dropdown'da gradient zemin üstündeki yazılar beyaz
     (eski yeşil-on-yeşil okunmuyordu)
   • CTA butonu: yeşil gradient pill + beyaz text
   ======================================== */

/* Header bg/scrolled tanımları kaynak dosyada (yukarıda) doğrudan
   düzeltildi. Burada sadece header-inner yüksekliğini biraz açıyoruz. */
.header-inner {
    height: 76px;
}

/* Top-bar minimal hâli — alt çizgi yerine sadece header'ın üst sınırı yeter */
.top-bar {
    border-bottom: none;
}

.top-bar-item {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.top-bar-item i {
    color: var(--primary-light);
    opacity: 0.95;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.55);
}

.lang-switch {
    border-left: none;
    padding-left: 0;
}

.lang-switch a {
    color: rgba(255, 255, 255, 0.6);
}

.lang-switch a.active {
    background: rgba(31, 179, 106, 0.22);
    color: var(--white);
}

/* Nav linkleri: pill hover/active — alt çizgi yerine.
   Sadece DESKTOP'ta uygulanır. Mobil drawer kendi koyu yeşil zeminiyle
   beraber gelir; bu kuralları drawer içinde uygulamak okunaksız bir
   "mint pill on green drawer" görünümü yaratır. */
@media (min-width: 769px) {
    .nav-list {
        gap: 4px;
        height: 76px;
    }

    .nav-item > a {
        height: auto;
        padding: 10px 18px;
        margin: 0 2px;
        color: var(--text);
        font-size: 0.78rem;
        letter-spacing: 0.6px;
        font-weight: 600;
        text-transform: uppercase;
        border-radius: 999px;
        transition: background 0.25s ease, color 0.25s ease;
    }

    /* Eski alt-çizgi indikatörünü kapat — pill ile değiştiriyoruz */
    .nav-item > a::after {
        display: none;
    }

    .nav-item > a:hover,
    .nav-item.active > a {
        background: var(--mint);
        color: var(--primary-dark);
    }

    .nav-arrow {
        color: var(--primary);
        opacity: 0.75;
        font-size: 0.6rem;
    }

    .has-submenu:hover > a .nav-arrow {
        color: var(--primary-dark);
        opacity: 1;
    }
}

/* Header CTA: yeşil gradient pill + beyaz text — net "satın al" çağrısı */
.header-cta-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(31, 179, 106, 0.28);
    padding: 11px 22px;
    font-size: 0.76rem;
    letter-spacing: 0.8px;
}

.header-cta-btn::before {
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.18));
    border-radius: 999px;
}

.header-cta-btn:hover {
    color: var(--white);
    box-shadow: 0 10px 28px rgba(31, 179, 106, 0.4);
}

/* Hamburger: beyaz header üstünde görünür yap */
.hamburger span {
    background: var(--text);
}

.hamburger.active span {
    background: var(--primary);
}

/* Search button (header'da kullanılırsa) — mint pill */
.search-btn {
    background: var(--mint);
    border-color: transparent;
    color: var(--primary-dark);
}

.search-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: transparent;
}

/* ----- Mega Dropdown rafine ----- */

/* Dropdown panelinin altına ince yeşil glow shadow ekle */
.mega-dropdown {
    box-shadow: 0 24px 60px rgba(18, 138, 78, 0.15),
                0 0 0 1px rgba(31, 179, 106, 0.08);
}

/* Mega link ikonlarının default zemini: eski lacivert tonu yerine mint */
.mega-links li a i {
    background: var(--mint);
    color: var(--primary);
}

.mega-links li a:hover {
    background: var(--mint);
    transform: translateX(4px);
}

.mega-links li a:hover i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

/* Mega-highlight panel (yeşil gradient zemin) — yazılar BEYAZ olmalı,
   yoksa "yeşil üstüne yeşil" yazıyı okumak imkânsız oluyordu */
.mega-highlight-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mega-highlight h4 {
    color: var(--white);
}

.mega-highlight p {
    color: rgba(255, 255, 255, 0.85);
}

.mega-highlight-btn {
    color: var(--white);
}

.mega-highlight-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   MODERN MOBILE DRAWER (≤ 768px)
   --------------------------------------------------
   NEDEN ayrı blok: eski .main-nav mobil kurallarının
   üstüne "rafine override" katmanı koyuyoruz. Cascade
   sayesinde sondaki kurallar baskın olur, eskiler
   ihtiyaç hâlinde fallback kalır. Tasarım hedefi:
   - Glassmorphism + dark green markaya bağlı drawer
   - Üstte logo + dairesel close
   - Telefon hızlı kartı (mint glass)
   - Her ana öğede dairesel ikon + label + chevron
   - Submenu'da ürün ikonları, smooth expand
   - Altta gradient CTA + sosyal ikon halkası
   - Backdrop overlay (blur) + body scroll lock
   ======================================== */

/* Desktop'ta mobil-only elemanları gizle.
   NEDEN: HTML tek; CSS ile context anahtarlıyoruz. */
.mobile-nav-head,
.mobile-nav-quick,
.mobile-nav-foot,
.mobile-nav-icon,
.mobile-nav-backdrop {
    display: none;
}

@media (max-width: 768px) {

    /* Backdrop: drawer arkasında blur'lu siyah perde.
       NEDEN: derinlik + dışarı tıklanınca kapanma alanı. */
    .mobile-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(8, 22, 14, 0.55);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 1098;
    }

    .mobile-nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* Drawer container override.
       NEDEN: eski koyu→primary gradient yerine daha derin,
       3 stop'lu yumuşak gradient + sağ kenarda hairline accent. */
    .main-nav {
        width: 88%;
        max-width: 380px;
        padding: 0;
        background:
            radial-gradient(120% 60% at 100% 0%, rgba(79, 215, 146, 0.18) 0%, transparent 55%),
            radial-gradient(80% 50% at 0% 100%, rgba(31, 179, 106, 0.14) 0%, transparent 60%),
            linear-gradient(165deg, #0E2519 0%, #103A26 55%, #0A1A12 100%);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.45),
                    inset 1px 0 0 rgba(255, 255, 255, 0.05);
        z-index: 1100;
        display: flex;
        flex-direction: column;
        gap: 0;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
    }

    .main-nav::-webkit-scrollbar { width: 4px; }
    .main-nav::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.12);
        border-radius: 4px;
    }

    /* --- Drawer head (logo + close) --- */
    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        position: sticky;
        top: 0;
        background:
            linear-gradient(180deg, rgba(14, 37, 25, 0.96) 0%, rgba(14, 37, 25, 0.78) 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 2;
    }

    .mobile-nav-brand img {
        height: 32px;
        width: auto;
        display: block;
        filter: brightness(1.05);
    }

    .mobile-nav-close {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.06);
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 999px;
        cursor: pointer;
        font-size: 1rem;
        transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    }

    .mobile-nav-close:hover,
    .mobile-nav-close:focus-visible {
        background: rgba(79, 215, 146, 0.18);
        border-color: rgba(79, 215, 146, 0.4);
        transform: rotate(90deg);
        outline: none;
    }

    /* --- Quick contact card (mint glass) --- */
    .mobile-nav-quick {
        display: flex;
        align-items: center;
        gap: 14px;
        margin: 18px 16px 8px;
        padding: 14px 16px;
        background: linear-gradient(135deg, rgba(79, 215, 146, 0.16) 0%, rgba(31, 179, 106, 0.08) 100%);
        border: 1px solid rgba(79, 215, 146, 0.22);
        border-radius: 16px;
        color: var(--white);
        text-decoration: none;
        transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .mobile-nav-quick:hover,
    .mobile-nav-quick:active {
        transform: translateY(-1px);
        border-color: rgba(79, 215, 146, 0.45);
        background: linear-gradient(135deg, rgba(79, 215, 146, 0.22) 0%, rgba(31, 179, 106, 0.12) 100%);
    }

    .mobile-nav-quick-icon {
        flex: none;
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--white);
        border-radius: 12px;
        font-size: 0.95rem;
        box-shadow: 0 6px 16px rgba(31, 179, 106, 0.35);
    }

    .mobile-nav-quick-text {
        display: flex;
        flex-direction: column;
        line-height: 1.25;
        flex: 1;
        min-width: 0;
    }

    .mobile-nav-quick-text small {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: rgba(255, 255, 255, 0.55);
        font-weight: 600;
    }

    .mobile-nav-quick-text strong {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--white);
        font-family: var(--font-display);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-nav-quick-arrow {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
        flex: none;
    }

    /* --- Nav list --- */
    .nav-list {
        padding: 8px 12px 12px;
        gap: 4px;
    }

    .nav-item {
        border-radius: 14px;
        overflow: hidden;
        transition: background 0.25s ease;
    }

    /* Ana satır: ikon + label + chevron */
    .nav-item > a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 14px;
        height: auto;
        border-bottom: none;
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0.2px;
        color: rgba(255, 255, 255, 0.92);
        font-family: var(--font-display);
        border-radius: 14px;
        transition: background 0.25s ease, color 0.25s ease;
    }

    .nav-item > a:hover,
    .nav-item.active > a,
    .has-submenu.open > a {
        background: rgba(255, 255, 255, 0.05);
        color: var(--white);
    }

    .nav-item.active > a {
        background: linear-gradient(135deg, rgba(79, 215, 146, 0.22) 0%, rgba(31, 179, 106, 0.1) 100%);
        box-shadow: inset 0 0 0 1px rgba(79, 215, 146, 0.25);
    }

    /* Mobil ikon (dairesel mint küre) */
    .mobile-nav-icon {
        display: inline-flex !important;
        flex: none;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 11px;
        color: var(--primary-light);
        font-size: 0.85rem;
        transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

    .nav-item > a:hover .mobile-nav-icon,
    .nav-item.active > a .mobile-nav-icon,
    .has-submenu.open > a .mobile-nav-icon {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--white);
        border-color: transparent;
    }

    .mobile-nav-label {
        flex: 1;
        min-width: 0;
    }

    /* Chevron — submenu açıkken yuvarlan */
    .nav-arrow {
        margin-left: auto;
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.5);
        transition: transform 0.3s ease, color 0.25s ease;
    }

    .has-submenu.open > a .nav-arrow {
        transform: rotate(180deg);
        color: var(--primary-light);
    }

    /* --- Submenu (mega-dropdown mobil görünüm) --- */
    .mega-dropdown {
        background: transparent;
        border-left: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        max-height: 0;
        display: block !important;
        opacity: 1;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .has-submenu.open .mega-dropdown {
        max-height: 720px;
    }

    .mega-dropdown-inner {
        padding: 4px 6px 10px 14px;
    }

    .mega-col {
        padding: 0;
    }

    .mega-links {
        display: flex;
        flex-direction: column;
        gap: 2px;
        position: relative;
    }

    /* Sol kenarda ince accent çizgi (submenu olduğunu vurgular) */
    .mega-links::before {
        content: '';
        position: absolute;
        top: 6px;
        bottom: 6px;
        left: 4px;
        width: 2px;
        background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
        border-radius: 2px;
        opacity: 0.5;
    }

    .mega-links li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 9px 12px 9px 16px;
        border-radius: 10px;
        transition: background 0.2s ease;
    }

    .mega-links li a i {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
        background: rgba(255, 255, 255, 0.05);
        color: var(--primary-light);
        border-radius: 9px;
        flex: none;
    }

    .mega-links li a:hover {
        background: rgba(255, 255, 255, 0.04);
        transform: none;
    }

    .mega-links li a:hover i {
        background: rgba(79, 215, 146, 0.2);
        color: var(--primary-light);
    }

    .mega-links li a strong {
        font-size: 0.84rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
    }

    .mega-links li a span {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.45);
    }

    /* mega-highlight: mobilde küçük bir promo kart olarak göster */
    .mega-highlight {
        display: block !important;
        margin: 10px 4px 4px 14px;
        padding: 14px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(31, 179, 106, 0.18) 0%, rgba(18, 138, 78, 0.06) 100%);
        border: 1px solid rgba(79, 215, 146, 0.18);
    }

    .mega-highlight-content {
        padding: 0;
    }

    .mega-highlight-tag {
        display: inline-block;
        padding: 3px 8px;
        border-radius: 999px;
        background: rgba(79, 215, 146, 0.22);
        color: var(--primary-light);
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .mega-highlight h4 {
        font-size: 0.95rem;
        margin: 0 0 4px;
    }

    .mega-highlight p {
        font-size: 0.78rem;
        line-height: 1.5;
        margin: 0 0 10px;
    }

    .mega-highlight-btn {
        font-size: 0.78rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--primary-light);
    }

    /* --- Drawer footer (CTA + sosyal) --- */
    .mobile-nav-foot {
        display: block;
        margin-top: auto;
        padding: 18px 16px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        background:
            linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    }

    .mobile-nav-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 14px 18px;
        background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
        color: var(--white);
        font-weight: 700;
        font-size: 0.92rem;
        font-family: var(--font-display);
        text-decoration: none;
        border-radius: 14px;
        box-shadow: 0 12px 28px rgba(31, 179, 106, 0.35);
        letter-spacing: 0.3px;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .mobile-nav-cta:hover,
    .mobile-nav-cta:active {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(31, 179, 106, 0.45);
        color: var(--white);
    }

    .mobile-nav-cta i {
        transition: transform 0.25s ease;
    }

    .mobile-nav-cta:hover i {
        transform: translateX(3px);
    }

    .mobile-nav-social {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 16px;
    }

    .mobile-nav-social a {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 999px;
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.85rem;
        transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    }

    .mobile-nav-social a:hover {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
        transform: translateY(-2px);
    }

    .mobile-nav-meta {
        text-align: center;
        margin-top: 14px;
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.35);
        letter-spacing: 0.3px;
    }

    /* Drawer açıldığında nav-item'lara stagger fade-in.
       NEDEN: premium app drawer hissi; statik açılma yerine
       her satır sırayla yumuşakça beliriyor. */
    .main-nav .nav-item,
    .main-nav .mobile-nav-quick,
    .main-nav .mobile-nav-foot {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .main-nav.active .mobile-nav-quick { transition-delay: 0.10s; }
    .main-nav.active .nav-item:nth-child(1) { transition-delay: 0.14s; }
    .main-nav.active .nav-item:nth-child(2) { transition-delay: 0.18s; }
    .main-nav.active .nav-item:nth-child(3) { transition-delay: 0.22s; }
    .main-nav.active .nav-item:nth-child(4) { transition-delay: 0.26s; }
    .main-nav.active .nav-item:nth-child(5) { transition-delay: 0.30s; }
    .main-nav.active .mobile-nav-foot      { transition-delay: 0.34s; }

    .main-nav.active .nav-item,
    .main-nav.active .mobile-nav-quick,
    .main-nav.active .mobile-nav-foot {
        opacity: 1;
        transform: translateX(0);
    }

    /* Hareketi sevmeyen kullanıcılar için animasyonu kapat. */
    @media (prefers-reduced-motion: reduce) {
        .main-nav .nav-item,
        .main-nav .mobile-nav-quick,
        .main-nav .mobile-nav-foot {
            opacity: 1;
            transform: none;
            transition: none;
        }
        .main-nav { transition: none; }
    }
}

/* iPhone notch / dinamik ada güvenlik alanı.
   NEDEN: drawer üstte sabit; safe-area olmadan logo notch'a sıkışabilir. */
@media (max-width: 768px) {
    .mobile-nav-head {
        padding-top: max(18px, env(safe-area-inset-top));
    }
    .mobile-nav-foot {
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }
}

/* ========================================
   MODERN MOBILE DRAWER — LIGHT / SOFT TEMA
   --------------------------------------------------
   NEDEN ayrı override katmanı: yukarıdaki dark drawer
   bloğunu silmek yerine, cascade üzerinden tek katmanda
   beyaz/soft tasarıma çeviriyoruz. İleride dark'a dönmek
   istenirse bu blok yorum satırı yapılır, başka bir şey
   gerekmez. Tasarım hedefi:
   - Beyaz/krem soft gradient drawer (mint dokunuşlu)
   - Koyu metin + mint pastel hover'lar
   - İkonlar mint dairede, hover'da dolgu yeşili
   - CTA hâlâ canlı yeşil gradient (en güçlü çağrı)
   - Sosyal ikonlar minimal beyaz, hover'da yeşile döner
   ======================================== */
@media (max-width: 768px) {

    /* Drawer container — light gradient + yumuşak gölge.
       NEDEN: beyaz zemin "soft", mint radial vurgular ise
       drawer'a hâlâ marka kimliği veriyor (steril değil). */
    .main-nav {
        background:
            radial-gradient(120% 60% at 100% 0%, rgba(79, 215, 146, 0.12) 0%, transparent 55%),
            radial-gradient(80% 50% at 0% 100%, rgba(31, 179, 106, 0.06) 0%, transparent 60%),
            linear-gradient(165deg, #FFFFFF 0%, #F8FCF9 55%, #F0F8F3 100%);
        box-shadow: -20px 0 60px rgba(8, 22, 14, 0.12),
                    inset 1px 0 0 rgba(31, 179, 106, 0.06);
        scrollbar-color: rgba(18, 138, 78, 0.18) transparent;
    }

    .main-nav::-webkit-scrollbar-thumb {
        background: rgba(18, 138, 78, 0.18);
    }

    /* Drawer head — beyaz cam + ince mint hairline.
       NEDEN: drawer açıldığında üst kısım sticky olduğu için
       kayan içerikten ayırt edilebilir bir glass plaka. */
    .mobile-nav-head {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 100%);
        border-bottom: 1px solid rgba(18, 138, 78, 0.08);
    }

    .mobile-nav-brand img {
        filter: none;
    }

    /* Close button — mint daire, hover'da koyu yeşile döner. */
    .mobile-nav-close {
        background: var(--mint);
        color: var(--primary-dark);
        border: 1px solid rgba(31, 179, 106, 0.18);
    }

    .mobile-nav-close:hover,
    .mobile-nav-close:focus-visible {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
    }

    /* Quick contact card — mint pastel, koyu yeşil metin. */
    .mobile-nav-quick {
        background: linear-gradient(135deg, rgba(79, 215, 146, 0.18) 0%, rgba(31, 179, 106, 0.04) 100%);
        border: 1px solid rgba(31, 179, 106, 0.18);
        color: var(--text);
    }

    .mobile-nav-quick:hover,
    .mobile-nav-quick:active {
        background: linear-gradient(135deg, rgba(79, 215, 146, 0.26) 0%, rgba(31, 179, 106, 0.08) 100%);
        border-color: rgba(31, 179, 106, 0.32);
    }

    .mobile-nav-quick-text small {
        color: var(--text-muted);
    }

    .mobile-nav-quick-text strong {
        color: var(--primary-dark);
    }

    .mobile-nav-quick-arrow {
        color: var(--primary);
    }

    /* Nav items — koyu metin, mint hover, aktif'te soft mint dolgu. */
    .nav-item > a {
        color: var(--text);
    }

    .nav-item > a:hover,
    .has-submenu.open > a {
        background: var(--mint);
        color: var(--primary-dark);
    }

    .nav-item.active > a {
        background: linear-gradient(135deg, rgba(79, 215, 146, 0.20) 0%, rgba(79, 215, 146, 0.06) 100%);
        box-shadow: inset 0 0 0 1px rgba(31, 179, 106, 0.22);
        color: var(--primary-dark);
    }

    /* Mobil ikon — mint daire, koyu yeşil ikon.
       Hover/active'de mevcut "primary gradient + beyaz ikon"
       kuralı zaten dark blokta var ve burada da geçerli. */
    .mobile-nav-icon {
        background: var(--mint);
        border: 1px solid rgba(31, 179, 106, 0.10);
        color: var(--primary-dark);
    }

    /* Chevron — varsayılanda muted, açıkken primary. */
    .nav-arrow {
        color: var(--text-muted);
    }

    .has-submenu.open > a .nav-arrow {
        color: var(--primary);
    }

    /* Submenu accent çizgi — daha belirgin yeşil */
    .mega-links::before {
        background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
        opacity: 0.35;
    }

    /* Submenu link'leri (mega-links) — light theme */
    .mega-links li a i {
        background: var(--mint);
        color: var(--primary-dark);
        border: 1px solid rgba(31, 179, 106, 0.10);
    }

    .mega-links li a:hover {
        background: rgba(31, 179, 106, 0.06);
    }

    .mega-links li a:hover i {
        background: var(--primary);
        color: var(--white);
        border-color: transparent;
    }

    .mega-links li a strong {
        color: var(--text);
    }

    .mega-links li a:hover strong {
        color: var(--primary-dark);
    }

    .mega-links li a span {
        color: var(--text-muted);
    }

    /* Mega-highlight promo kartı — light pastel. */
    .mega-highlight {
        background: linear-gradient(135deg, rgba(79, 215, 146, 0.18) 0%, rgba(255, 255, 255, 0.6) 100%);
        border: 1px solid rgba(31, 179, 106, 0.16);
    }

    .mega-highlight h4 {
        color: var(--primary-dark);
    }

    .mega-highlight p {
        color: var(--text-light);
    }

    .mega-highlight-tag {
        background: rgba(31, 179, 106, 0.16);
        color: var(--primary-dark);
    }

    .mega-highlight-btn {
        color: var(--primary-dark);
    }

    .mega-highlight-btn:hover {
        color: var(--primary);
    }

    /* Drawer footer — mint gradient zemin, ince hairline. */
    .mobile-nav-foot {
        border-top: 1px solid rgba(18, 138, 78, 0.08);
        background: linear-gradient(180deg, transparent 0%, rgba(31, 179, 106, 0.05) 100%);
    }

    /* CTA — light tema içinde daha çok parıldasın diye ring shadow. */
    .mobile-nav-cta {
        box-shadow: 0 12px 28px rgba(31, 179, 106, 0.30),
                    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    }

    .mobile-nav-cta:hover,
    .mobile-nav-cta:active {
        box-shadow: 0 16px 32px rgba(31, 179, 106, 0.40),
                    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
    }

    /* Sosyal ikonlar — minimal beyaz, hover'da yeşile döner. */
    .mobile-nav-social a {
        background: var(--white);
        border: 1px solid var(--border);
        color: var(--primary-dark);
    }

    .mobile-nav-social a:hover {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }

    .mobile-nav-meta {
        color: var(--text-muted);
    }
}

/* ========================================
   PRESENTATION-DRIVEN ADDITIONS
   New components introduced with the
   Nutrivera presentation update
   ======================================== */

/* Top-bar SFE link */
.top-bar-link {
    cursor: pointer;
    transition: color 0.2s ease;
}
.top-bar-link:hover {
    color: var(--primary-light);
}

/* ----- Products Mega Menu (clean, single-line, with feature panel) ----- */
.mega-products {
    /* Wider menu, anchored to the nav-item and clamped so it cannot
       run off the viewport edge. The transform centers it under the
       Ürünler trigger; max-width prevents overflow on smaller widths. */
    min-width: 1080px;
    max-width: calc(100vw - 48px);
}

.mega-products-inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    background: var(--white);
}

.mega-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 28px 8px;
}

.mega-cat {
    padding: 8px 20px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
}
.mega-cat:last-child { border-right: none; }

.mega-cat-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--mint);
}

.mega-cat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex: 0 0 32px;
}

.mega-cat-title {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
    /* Override possible legacy mega-heading inheritance */
    letter-spacing: 0;
    text-transform: none;
    padding: 0;
    border: 0;
}

.mega-cat-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.mega-cat-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.mega-cat-list li a::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--text-muted);
    border-radius: 50%;
    flex: 0 0 5px;
    opacity: 0.45;
    transition: all 0.2s ease;
}
.mega-cat-list li a:hover {
    background: var(--mint);
    color: var(--primary-dark);
    transform: translateX(3px);
}
.mega-cat-list li a:hover::before {
    background: var(--primary);
    opacity: 1;
    transform: scale(1.4);
}

.mega-cat-pill {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: var(--mint);
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: auto;
    white-space: nowrap;
}
.mega-cat-list li a:hover .mega-cat-pill {
    background: var(--primary);
    color: var(--white);
}

.mega-cat-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
    padding: 8px 10px 0;
    transition: gap 0.2s ease;
}
.mega-cat-all:hover { gap: 10px; color: var(--primary-dark); }
.mega-cat-all i { font-size: 0.7rem; }

/* Right-side feature panel */
.mega-products-feature {
    background:
        radial-gradient(ellipse at top right, rgba(255,255,255,0.18), transparent 60%),
        linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 130%);
    color: var(--white);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}
.mega-products-feature::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.mega-products-feature::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.mega-feature-tag {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    padding: 5px 12px;
    background: rgba(255,255,255,0.18);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.mega-feature-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
}
.mega-feature-desc {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    line-height: 1.55;
    opacity: 0.9;
    margin-bottom: 18px;
}
.mega-feature-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    width: max-content;
    transition: all 0.25s ease;
}
.mega-feature-btn:hover {
    gap: 12px;
    background: var(--mint);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.mega-feature-btn i { font-size: 0.7rem; }

/* Tablet — drop the feature panel, keep 4 cols */
@media (max-width: 1200px) {
    .mega-products { min-width: 880px; }
    .mega-products-inner { grid-template-columns: 1fr; }
    .mega-products-feature { display: none; }
}

/* Smaller tablet — 2 columns */
@media (max-width: 1024px) {
    .mega-products { min-width: 600px; }
    .mega-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
    .mega-cat { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
    .mega-cat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 8px; }
}

/* Mobile drawer — full width, single column, no feature panel */
@media (max-width: 768px) {
    .mega-products { min-width: 100%; max-width: 100%; }
    .mega-products-inner { display: block; background: transparent; }
    .mega-products-grid { display: block; padding: 0; }
    .mega-cat {
        border: none;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }
    .mega-cat:last-child { border-bottom: none; }
    .mega-cat-head { margin-bottom: 8px; padding-bottom: 8px; }
    .mega-cat-list li a { color: rgba(255,255,255,0.85); }
    .mega-cat-list li a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
    .mega-cat-list li a::before { background: rgba(255,255,255,0.6); }
    .mega-cat-title { color: var(--white); }
    .mega-cat-all { color: var(--primary-light); }
    .mega-products-feature { display: none; }
}

/* ----- Slogan strip (homepage banner) ----- */
.slogan-strip {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}
.slogan-strip-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.slogan-mark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.slogan-text {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: 0.5px;
}
.slogan-sub {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ----- Featured pair (Olive Oil + Protein) ----- */
.featured-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}
.featured-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 48px;
    overflow: hidden;
    color: var(--white);
    transition: var(--transition);
    min-height: 340px;
    display: flex;
    align-items: flex-end;
}
.featured-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.featured-card-olive {
    background: linear-gradient(135deg, #2E7D5C 0%, #4FA978 60%, #7BC79A 100%);
}
.featured-card-protein {
    background: linear-gradient(135deg, #1FB36A 0%, #128A4E 100%);
}
.featured-card-content { position: relative; z-index: 2; }
.featured-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.18);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.featured-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}
.featured-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.92;
    margin-bottom: 18px;
}
.featured-card-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.featured-card-list li {
    background: rgba(255,255,255,0.16);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
}
.featured-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-bottom: 2px solid rgba(255,255,255,0.6);
    padding-bottom: 4px;
}

/* ----- Category grid (smaller categories) ----- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}
.category-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--mint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 6px;
}
.category-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}
.category-card p {
    font-size: 0.92rem;
    color: var(--text-light);
}

/* ----- Brands section (group companies) ----- */
.brands-section {
    padding: 100px 0;
    background: var(--light);
}
.brands-section .brands-grid,
.brand-card {
    /* Reset to override the older brands-grid block targeting brand-item */
}
.brand-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.brand-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--mint);
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: max-content;
    margin-bottom: 6px;
}
.brand-card-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 2px;
}
.brand-card-role {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}
.brand-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}
.brand-card-accent {
    background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: transparent;
}
.brand-card-accent .brand-card-name,
.brand-card-accent p { color: var(--white); }
.brand-card-accent .brand-card-tag {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}
.brand-card-accent .brand-card-role {
    color: rgba(255,255,255,0.85);
}

/* ----- Mission & Vision single block ----- */
.vm-single {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 6px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 36px 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.vm-single-accent {
    background: linear-gradient(135deg, var(--mint), #FFFFFF);
    border-left-color: var(--accent);
}
.vm-single-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.vm-single-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text);
    font-style: italic;
}

/* Slogan callout (inside hakkimizda) */
.slogan-callout {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.slogan-callout-mark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.slogan-callout-text {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
}
.slogan-callout-sub {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}

/* Content subtitle */
.content-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    margin: -12px 0 24px;
    font-style: italic;
}

/* Management grid 4 (used in new yönetim section) */
.management-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
    .management-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .management-grid-4 { grid-template-columns: 1fr; }
}

/* Manager card span (subtitle) */
.manager-card span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ----- Product stack (vertical product list) ----- */
.product-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}
.product-stack-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}
.product-stack-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}
.product-stack-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--mint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.product-stack-body h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.product-stack-body p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ----- Tag cloud (for tea list) ----- */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--mint);
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: var(--transition);
}
.tag-pill:hover {
    background: var(--primary);
    color: var(--white);
}
.tag-pill i { font-size: 0.85rem; }

/* ----- Check list (SFE Nedir) ----- */
.check-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.check-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    line-height: 1.65;
    color: var(--text);
}
.check-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    flex: 0 0 auto;
    margin-top: 3px;
}

/* ----- SFE Steps (4-step process) ----- */
.sfe-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
    counter-reset: sfeStep;
}
.sfe-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    position: relative;
    text-align: left;
    transition: var(--transition);
}
.sfe-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}
.sfe-step-num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--mint);
    line-height: 1;
}
.sfe-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.sfe-step h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.sfe-step p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}
@media (max-width: 1024px) {
    .sfe-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .sfe-steps { grid-template-columns: 1fr; }
}

/* ----- Advantages grid (6 cards) ----- */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.advantage-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}
.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}
.advantage-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--mint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.advantage-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.advantage-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}
@media (max-width: 1024px) {
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .advantages-grid { grid-template-columns: 1fr; }
}

/* ----- VS comparison (SFE vs Traditional) ----- */
.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}
.vs-card {
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
}
.vs-card-traditional {
    background: #FFF5F5;
    border: 1px solid #F8D7D7;
}
.vs-card-sfe {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}
.vs-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.vs-card-traditional .vs-card-tag {
    background: #FBE2E2;
    color: #B0322D;
}
.vs-card-sfe .vs-card-tag {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}
.vs-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 18px;
}
.vs-card-traditional h3 { color: var(--text); }
.vs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vs-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.55;
    font-size: 0.98rem;
}
.vs-card-traditional .vs-list li i { color: #C4423A; flex: 0 0 auto; }
.vs-card-sfe .vs-list li i { color: var(--primary-light); flex: 0 0 auto; }
@media (max-width: 768px) {
    .vs-grid { grid-template-columns: 1fr; }
}

/* Footer slogan */
.footer-slogan {
    color: var(--primary-light);
    font-size: 0.95rem;
    margin: 0 0 18px;
    font-weight: 500;
}

/* Featured pair responsive */
@media (max-width: 900px) {
    .featured-pair { grid-template-columns: 1fr; }
    .featured-card { padding: 36px 28px; min-height: auto; }
}
@media (max-width: 768px) {
    .category-grid { grid-template-columns: 1fr 1fr; }
    .slogan-strip { padding: 40px 0; }
}
@media (max-width: 480px) {
    .category-grid { grid-template-columns: 1fr; }
    .vm-single { flex-direction: column; padding: 28px 24px; }
    .product-stack-item { flex-direction: column; gap: 14px; }
}

/* Brands grid responsive (overrides existing brands-grid that uses repeat(3,1fr)) */
@media (max-width: 900px) {
    .brands-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
    .brands-grid { grid-template-columns: 1fr !important; }
}