/* =============================================
   KINESIS GIDA AS — Stylesheet
   Playfair Display + Outfit
   Yucca-inspired: minimal, clean, corporate
   ============================================= */

/* ---- FONTS & RESET ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Outfit:wght@300;400;500;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #1E130A;
    background: #FDFAF6;
}

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

/* ---- CUSTOM SCROLLBAR ---- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--cream-dark);
    border: 2px solid var(--cream);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--sand);
}

/* ---- KEYBOARD FOCUS STYLES ---- */
:focus-visible {
    outline: 2px solid var(--sand);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--sand);
    outline-offset: 2px;
}

/* ---- DESIGN TOKENS ---- */
:root {
    --cream:       #F8FBF8;
    --cream-soft:  #EFF5EE;
    --cream-mid:   #E2EDE1;
    --cream-dark:  #D0DDD0;
    --brown:       #387336;
    --brown-mid:   #2D5E2B;
    --sand:        #6DAE6A;
    --text:        #1A2E1A;
    --text-mid:    #5A6E5A;
    --text-light:  #4A664A;
    --border:      #D0E0CF;
    --border-dark: #B8D0B7;
    --white:       #FFFFFF;
    --max-w:       1180px;
    --section-pad: 6rem 2rem;
}

/* ---- HEADER / NAV ---- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    text-decoration: none;
    margin-right: auto;
    display: inline-flex;
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Footer light logo */
.footer-logo-img {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu a {
    display: block;
    padding: 0.4rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-mid);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brown);
}

/* Dropdown menu */
.nav-menu li {
    position: relative;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    min-width: 180px;
    z-index: 200;
    padding: 0.6rem 0;
    list-style: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-menu li:hover > .nav-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-dropdown a {
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

.nav-dropdown a:hover {
    background: var(--cream-soft);
}

.nav-cta {
    flex-shrink: 0;
    padding: 0.6rem 1.4rem;
    background: var(--brown);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    border-radius: 2px;
}

.nav-cta:hover { 
    background: var(--brown-mid); 
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 26, 14, 0.15);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-height: 48px;
    min-width: 48px;
    justify-content: center;
    align-items: center;
}
.mobile-menu-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--brown);
    display: block;
}

/* ---- HERO — YUCCA STYLE ---- */
.hero-yucca {
    position: relative;
    height: clamp(550px, 75vh, 750px);
    background: var(--cream-soft);
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

/* Right-side background images — crossfade container */
.hero-yucca-bgs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
}

.hero-yucca-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
    .hero-yucca-bg {
        transition: none;
    }
}

.hero-yucca-bg--active { opacity: 1; }

/* Gradient: subtle overlay for text readability */
.hero-yucca-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(245,239,230,0.92) 0%,
        rgba(245,239,230,0.75) 35%,
        rgba(245,239,230,0.15) 55%,
        transparent 70%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-yucca-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Inner container — aligns with nav */
.hero-yucca-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
}

/* Headline block */
.hero-yucca-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    max-width: 480px;
    animation: heroGlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

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

.hero-yucca-tag {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 1.5rem;
}

.hero-yucca-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.22;
    color: var(--brown);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.hero-yucca-text p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.9;
    max-width: 440px;
}

/* Hero CTA button */
.hero-cta {
    margin-top: 1.25rem;
    align-self: flex-start;
    background: var(--brown);
    color: #fff !important;
    border-color: var(--brown);
}
.hero-cta:hover {
    background: var(--brown-mid);
    border-color: var(--brown-mid);
}

/* Bottom category cards — Gıda wider to show hierarchy */
.hero-yucca-cards {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    max-width: 700px;
    border-top: 1px solid var(--border);
}

.hero-yucca-card {
    display: block;
    text-decoration: none;
    padding: 1.4rem 1.75rem 1.6rem;
    border-right: 1px solid var(--border);
    background: var(--cream-soft);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-yucca-card:last-child { border-right: none; }

.hero-yucca-card:hover {
    background: rgba(255,255,255,0.92);
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hero-yucca-card--active {
    background: rgba(255,255,255,0.85);
}

/* Gıda card slightly stronger tone when active */
.hero-yucca-card--gida.hero-yucca-card--active {
    background: rgba(255,255,255,0.92);
}

.hyc-title {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 0.8rem;
    letter-spacing: 0.01em;
}

/* Body — always visible */
.hyc-body p {
    font-size: 0.83rem;
    color: var(--text-mid);
    line-height: 1.75;
    padding-bottom: 0.9rem;
}

.hyc-cta {
    padding-top: 0.7rem;
    border-top: 1px solid var(--border);
}

.hyc-cta span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brown);
    letter-spacing: 0.01em;
}

/* Arrow slides right on hover */
.hyc-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.hero-yucca-card:hover .hyc-arrow {
    transform: translateX(4px);
}

/* ---- TRUST SECTION (replaces Intro) ---- */
.trust-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 4.5rem 2rem;
}

.trust-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}

.trust-item {
    padding: 2.25rem 2rem;
    border-right: 1px solid var(--border);
    position: relative;
}

.trust-item:last-child { border-right: none; }

.trust-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 1.1rem;
}

.trust-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.65rem;
    letter-spacing: 0.01em;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.8;
}


.activity-intro {
    margin-bottom: 2.5rem;
}

.activity-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brown);
    letter-spacing: 0;
}

.activity-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.activity-card {
    background: var(--white);
    border: 1px solid var(--border);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.25s;
}

.activity-card:hover {
    border-color: var(--sand);
}

.activity-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--cream-mid);
}

.activity-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.activity-card:hover .activity-card-img img {
    transform: scale(1.03);
}

.activity-card-body {
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.activity-card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
}

.activity-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--brown);
    line-height: 1.3;
}

.activity-card p {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-mid);
    line-height: 1.75;
    margin-top: 0.2rem;
}

.card-arrow {
    font-size: 0.82rem;
    color: var(--brown);
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-top: 0.5rem;
    display: inline-block;
    transition: letter-spacing 0.2s;
}

.activity-card:hover .card-arrow {
    letter-spacing: 0.04em;
}

/* ---- SECTION SOLUTIONS (Yucca-style) ---- */
.section-solutions {
    position: relative;
    height: 540px;
    overflow: hidden;
    display: flex;
}

/* Background images */
.sol-backgrounds {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sol-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sol-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sol-bg--active {
    opacity: 1;
}

/* Dark overlay on top of bg */
.section-solutions::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 12, 6, 0.38);
    z-index: 1;
    pointer-events: none;
}

/* Items row — aligned to left container */
.sol-items {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    align-items: stretch;
    justify-content: flex-start;
}

/* Each item — sitting side-by-side on the left */
.sol-item {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    cursor: pointer;
    padding: 0 1.5rem 2.5rem 0;
    min-width: 0;
    position: relative;
}

.sol-item:last-child {
    padding-right: 0;
}

/* No label element anymore — cards are always visible */
.sol-label { display: none; }

/* ── BASE CARD: frosted glass (inactive state) ── */
.sol-card {
    width: 100%;
    max-width: 360px;
    padding: 1.75rem 1.75rem 1.5rem;

    background: rgba(253, 250, 246, 0.28);   /* cream at 28% */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);

    transition:
        background 0.45s ease,
        backdrop-filter 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;

    pointer-events: auto;
}

/* ── ACTIVE CARD: fully opaque cream ── */
.sol-item--active .sol-card {
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: transparent;
    box-shadow: 0 8px 40px rgba(20, 12, 6, 0.18);
}

/* Hover on inactive item → anticipate active feel */
.sol-item:not(.sol-item--active):hover .sol-card {
    background: rgba(253, 250, 246, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ── TAG ── */
.sol-card-tag {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;

    /* muted on inactive, amber on active */
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.4s ease;
}
.sol-item--active .sol-card-tag { color: var(--sand); }

/* ── TITLE ── */
.sol-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.8rem;

    color: rgba(255, 255, 255, 0.85);
    transition: color 0.4s ease;
}
.sol-item--active .sol-card-title { color: var(--brown); }

/* ── BODY TEXT ── */
.sol-card-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 1.1rem;

    color: rgba(255, 255, 255, 0.65);
    transition: color 0.4s ease;
}
.sol-item--active .sol-card-text { color: var(--text-mid); }

/* ── DIVIDER ── */
.sol-card-divider {
    height: 1px;
    margin-bottom: 0.9rem;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.4s ease;
}
.sol-item--active .sol-card-divider { background: var(--border); }

/* ── LINK ── */
.sol-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.86rem;
    font-weight: 400;

    color: rgba(255, 255, 255, 0.7);
    transition: color 0.4s ease, letter-spacing 0.2s;
}
.sol-item--active .sol-card-link { color: var(--brown); }

.sol-card-link:hover { letter-spacing: 0.03em; }

.sol-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}
.sol-card-link:hover .sol-arrow { transform: translateX(4px); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .section-solutions {
        height: auto;
        flex-direction: column;
    }
    .sol-item {
        flex: 1 0 auto;
        min-height: 300px;
        align-items: flex-end;
        padding: 2rem;
    }
    .sol-card {
        max-width: none;
    }
}

/* ---- MISSION / VISION ---- */
.mv-section {
    background: var(--white);
    padding: var(--section-pad);
    border-bottom: 1px solid var(--border);
}

.mv-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.mv-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--brown);
    line-height: 1.25;
    letter-spacing: 0;
    max-width: 480px;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mv-item { padding: 0; }

.mv-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 0.9rem;
}

.mv-item p {
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--text-mid);
    line-height: 1.85;
}

/* ---- PRODUCTS FEATURED ---- */
.products-featured {
    background: var(--cream-soft);
    padding: 3.5rem 2rem 4rem;
    border-bottom: 1px solid var(--border);
}

/* Products header — redesigned with tag + two cols */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 2rem;
}

.products-header-left .section-tag {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 0.65rem;
}

.products-header-left h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--brown);
    line-height: 1.35;
    max-width: 520px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.section-header-row h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brown);
}

/* Stacked products header: heading then link below */
.section-header-stack {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.section-header-stack h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.product-feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.25s;
}

.product-feat-card:hover {
    border-color: var(--sand);
}

.product-feat-img {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: var(--cream-mid);
    transition: transform 0.4s ease;
}

.product-feat-card:hover .product-feat-img {
    transform: scale(1.03);
}

.product-feat-info {
    padding: 1rem 1.1rem;
    border-top: 1px solid var(--border);
}

.product-feat-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.2rem;
    line-height: 1.4;
    min-height: 2.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-feat-info span {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* ---- B2B BANNER ---- */
.b2b-banner {
    background: var(--cream-soft);
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.b2b-banner-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 4.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.b2b-banner-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--brown);
    line-height: 1.35;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.b2b-banner-desc {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1.75rem;
    max-width: 460px;
}

.b2b-ticker {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 0.8rem 2rem;
    overflow: hidden;
    white-space: nowrap;
}

.b2b-ticker span {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin: 0 1.5rem;
}

.b2b-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    display: block;
    border: 1px solid var(--border);
}

.b2b-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

/* ---- STANDARDS ---- */
.standards-section {
    background: var(--cream-soft);
    padding: var(--section-pad);
    border-top: 1px solid var(--border);
}

.standards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.standards-col-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 1rem;
    line-height: 1.35;
}

.standards-col-left p {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.85;
}

.standards-list-items {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.standards-list-items li {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-mid);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    padding-left: 1.1rem;
    position: relative;
}

.standards-list-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--sand);
    border-radius: 50%;
}

/* ---- WHY SECTION ---- */
.why-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.why-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.why-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--brown);
    line-height: 1.35;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}

.why-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--border);
}

.why-item:last-child { border-right: none; }

.why-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 1.1rem;
}

.why-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.65rem;
    letter-spacing: 0.01em;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.85;
}

/* ---- STRENGTHS SECTION (merged: why + process + approach) ---- */
.strengths-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.strengths-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.strengths-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--brown);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.strength-item {
    padding: 1.75rem 2rem;
    border-right: 1px solid var(--border);
    text-align: left;
}

.strength-item:last-child {
    border-right: none;
}

.strength-icon {
    color: var(--sand);
    margin-bottom: 1.1rem;
    line-height: 1;
}

.strength-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.strength-item p {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .strengths-grid {
        grid-template-columns: 1fr 1fr;
    }
    .strength-item:nth-child(2) {
        border-right: none;
    }
    .strength-item:nth-child(1),
    .strength-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 480px) {
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    .strength-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .strength-item:last-child {
        border-bottom: none;
    }
}

/* ---- PROCESS OVERVIEW SECTION ---- */
.process-overview-section {
    background: var(--cream-soft);
    border-bottom: 1px solid var(--border);
}

.process-overview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 2rem;
}

.process-overview-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--brown);
    line-height: 1.35;
    max-width: 520px;
}

.process-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
}

.process-overview-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 0.9rem;
}

.process-overview-item p {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-mid);
    line-height: 1.85;
}

/* ---- APPROACH SECTION (replaces Standards) ---- */
.approach-section {
    background: var(--cream-soft);
    border-top: 1px solid var(--border);
}

.approach-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.approach-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.approach-header p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}

.approach-item {
    padding: 2rem 1.75rem;
    border-right: 1px solid var(--border);
    background: var(--white);
}

.approach-item:last-child { border-right: none; }

.approach-icon {
    color: var(--sand);
    margin-bottom: 1.25rem;
}

.approach-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.approach-item p {
    font-size: 0.83rem;
    color: var(--text-mid);
    line-height: 1.8;
}


/* ---- FOOTER ---- */
.footer {
    background: var(--brown);
    color: rgba(255,255,255,0.85);
    padding: 4rem 2rem max(1rem, env(safe-area-inset-bottom));
}

.footer-content {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section p {
    font-size: 0.85rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.8);
}

.footer-section h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.1rem;
}

.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 0.6rem; }

.footer-section a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-section a:hover { color: #ffffff; }

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.9); }

/* ---- SHARED COMPONENTS ---- */

.container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section {
    padding: var(--section-pad);
}

.btn-outline {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--brown);
    color: var(--brown);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--brown); color: #fff; }

.btn-sm {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--brown);
    text-decoration: none;
    letter-spacing: 0.02em;
    padding-bottom: 1px;
    border-bottom: 1px solid var(--sand);
    transition: color 0.2s;
}
.btn-sm:hover { color: var(--sand); }

.btn-white {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s, border-color 0.2s;
}
.btn-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.cta-button {
    display: inline-block;
    padding: 0.65rem 1.6rem;
    background: var(--brown);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.cta-button:hover { background: var(--brown-mid); }

.link {
    color: var(--sand);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.link:hover { color: var(--brown); }

/* ---- INNER PAGES ---- */

/* Hero Simple */
.hero-simple {
    background: var(--cream-soft);
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--border);
}

.hero-simple .container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.hero-simple h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--brown);
    letter-spacing: 0;
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.hero-simple p {
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--text-mid);
    max-width: 520px;
    line-height: 1.8;
}

/* Hero Large (Üretim) */
.hero-large {
    position: relative;
    height: 360px;
    overflow: hidden;
    background: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30,19,10,0.5);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-center h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
}

.hero-text-center p {
    color: rgba(255,255,255,0.6);
    text-align: center;
    max-width: 500px;
    margin-top: 1rem;
    font-size: 0.92rem;
}

.placeholder-image-hero {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--brown);
}

/* Page Hero Full (Faaliyet page) */
.page-hero-full {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--brown);
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid var(--border);
}

.page-hero-full-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero-full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.45;
}

.page-hero-full-text {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

.hero-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
}

.page-hero-full-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.page-hero-full-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
}

/* Two-col section (Faaliyet page) */
.two-col-section {
    padding: var(--section-pad);
    border-bottom: 1px solid var(--border);
}

.two-col-section.bg-cream { background: var(--cream-soft); }
.two-col-section.bg-white { background: var(--white); }

.two-col-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.two-col-text .section-tag {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 1rem;
}

.two-col-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.two-col-text p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.two-col-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--border);
}

.two-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* bg */
.bg-light { background: var(--cream-soft); }

/* Content grids */
.content-grid { display: grid; gap: 3rem; align-items: start; }
.two-col { grid-template-columns: 1fr 1fr; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.four-col { grid-template-columns: repeat(4, 1fr); }

.text-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.text-block h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.text-block p {
    color: var(--text-mid);
    margin-bottom: 1rem;
    line-height: 1.85;
    font-size: 0.9rem;
}

.text-block ul {
    list-style: none;
    margin-bottom: 1rem;
    padding-left: 0;
}

.text-block li {
    padding: 0.5rem 0 0.5rem 1.2rem;
    position: relative;
    font-size: 0.88rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
}

.text-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--sand);
    border-radius: 50%;
}

.image-block .placeholder-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--cream-mid);
    border: 1px solid var(--border);
}

/* Section heading */
.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 2rem;
}

/* Category cards */
.category-grid { display: grid; gap: 1rem; }
.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: border-color 0.2s;
}
.category-card:hover { border-color: var(--sand); }
.category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 0.6rem;
}
.category-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    margin-bottom: 1rem;
    line-height: 1.75;
}

/* Product cards (inner pages) */
.product-grid { display: grid; gap: 1rem; }
.product-card {
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.2s;
    background: var(--white);
}
.product-card:hover { border-color: var(--sand); }
.product-image {
    aspect-ratio: 1;
    background: var(--cream-mid);
}
.product-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--brown);
    padding: 0.85rem 1rem 0.25rem;
}
.product-card p {
    font-size: 0.83rem;
    color: var(--text-mid);
    padding: 0 1rem 1rem;
    line-height: 1.7;
}

/* Filter tabs */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center;
}
.filter-btn {
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--border-dark);
    background: transparent;
    color: var(--text-mid);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.02em;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--brown);
    color: #fff;
    border-color: var(--brown);
}

/* CTA section */
.cta-section {
    background: var(--brown);
    padding: var(--section-pad);
    text-align: center;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.cta-section p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Process steps */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.75rem 1.5rem;
    text-align: left;
}
.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--sand);
    margin-bottom: 1rem;
    line-height: 1;
}
.step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
}
.step p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.75; }

/* Standards list */
.standards-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.standards-column h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 1rem;
}
.standards-column ul { list-style: none; }
.standards-column li {
    padding: 0.55rem 0 0.55rem 1.2rem;
    position: relative;
    font-size: 0.87rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
}
.standards-column li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--sand);
    border-radius: 50%;
}

/* Certifications */
.certifications-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cert-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.5rem;
}
.cert-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.4rem;
}
.cert-card p { font-size: 0.83rem; color: var(--text-mid); }

/* Capacity cards */
.capacity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.capacity-card {
    background: var(--cream-soft);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    text-align: center;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 0.5rem;
    line-height: 1;
}
.capacity-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* Feature items */
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--text-mid);
    padding-left: 1.1rem;
    position: relative;
}
.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.2rem;
    width: 4px;
    height: 4px;
    background: var(--sand);
    border-radius: 50%;
}
.feature-item strong {
    display: block;
    color: var(--brown);
    margin-bottom: 0.2rem;
    font-weight: 500;
    font-size: 0.88rem;
}

/* Principles */
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.principle-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.75rem;
}
.principle-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
}
.principle-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; }

/* Integration cards */
.integration-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.integration-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.75rem;
}
.integration-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
}
.integration-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; }

/* Value props */
.value-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.prop-card {
    background: var(--cream-soft);
    border: 1px solid var(--border);
    padding: 1.75rem;
}
.prop-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
}
.prop-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; }

/* Capabilities */
.capabilities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.capability {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.75rem;
}
.capability h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
}
.capability p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 0.75rem; }
.capability ul { list-style: none; }
.capability li {
    font-size: 0.84rem;
    color: var(--text-mid);
    padding: 0.3rem 0 0.3rem 1rem;
    position: relative;
}
.capability li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 3px;
    height: 3px;
    background: var(--sand);
    border-radius: 50%;
}

/* Segments */
.segments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.segment {
    background: var(--cream-soft);
    border: 1px solid var(--border);
    border-top: 2px solid var(--brown);
    padding: 1.75rem;
}
.segment h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
}
.segment p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; }

/* Contact options */
.contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.option {
    background: var(--cream-soft);
    border: 1px solid var(--border);
    padding: 1.75rem;
    text-align: center;
}
.option h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.75rem;
}
.option p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }

/* Contact form */
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.info-block {
    background: var(--cream-soft);
    border: 1px solid var(--border);
    padding: 1.75rem;
}
.info-block h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.75rem;
}
.info-block p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.85; }
.info-block a { color: var(--brown); text-decoration: none; font-weight: 500; }

.contact-form {
    max-width: 580px;
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border);
    margin: 0 auto;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--border-dark);
    background: var(--cream);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brown);
    background: var(--white);
}
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 1rem; }

/* Quick links */
.quick-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.link-card {
    background: var(--cream-soft);
    border: 1px solid var(--border);
    padding: 1.75rem;
}
.link-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
}
.link-card p { font-size: 0.87rem; color: var(--text-mid); margin-bottom: 0.75rem; line-height: 1.75; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    :root { --section-pad: 5rem 2rem; }
    .hero-yucca-text h1 { font-size: 2.6rem; }
    .hero-yucca-bgs { width: 100%; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .two-col-inner { gap: 3rem; }
    .standards-grid { gap: 3rem; }
    .b2b-banner-inner { gap: 3rem; }
    .approach-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-item:nth-child(2) { border-right: none; }
    .approach-item:nth-child(3),
    .approach-item:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
    :root { --section-pad: 3.5rem 1.5rem; }

    .mobile-menu-toggle { display: flex; }
    .nav-cta { display: none; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        gap: 0;
    }
    .nav-menu.active { display: flex; }
    .nav-menu li { border-bottom: 1px solid var(--border); position: static; }
    .nav-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1rem;
        min-width: auto;
        display: block;
    }
    .nav-dropdown li { border-bottom: none; }
    .nav-dropdown a { padding: 0.5rem 0; min-height: 40px; font-size: 0.78rem; color: var(--text-mid); }
    .nav-menu a {
        padding: 1rem 0;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* Hero responsive */
    .hero-yucca { min-height: auto; }
    .hero-yucca-inner { min-height: auto; }
    .hero-yucca-bgs { width: 100%; }
    .hero-yucca-text { padding-top: 3.5rem; padding-bottom: 2.5rem; max-width: 100%; }
    .hero-yucca-text h1 { font-size: 2rem; }
    .hero-yucca-text p { max-width: 100%; }
    .hero-yucca-cards { max-width: 100%; }

    .hero-simple h1 { font-size: 1.9rem; }

    .activity-cards { grid-template-columns: 1fr; }

    .two-col,
    .three-col,
    .four-col,
    .content-grid,
    .mv-grid,
    .standards-grid,
    .capacity-grid,
    .feature-list,
    .integration-grid,
    .value-props,
    .capabilities-grid,
    .segments-grid,
    .contact-options,
    .contact-info,
    .quick-links,
    .principles-grid,
    .certifications-grid,
    .standards-list,
    .products-grid { grid-template-columns: 1fr; }

    .trust-grid,
    .why-grid,
    .process-overview-grid { grid-template-columns: 1fr; }
    .trust-item,
    .why-item { border-right: none; border-bottom: 1px solid var(--border); }
    .trust-item:last-child,
    .why-item:last-child { border-bottom: none; }
    .approach-grid { grid-template-columns: 1fr; }
    .approach-item { border-right: none; border-bottom: 1px solid var(--border); }
    .approach-item:last-child { border-bottom: none; }
    .products-header { flex-direction: column; align-items: flex-start; }
    .process-overview-header { flex-direction: column; gap: 1rem; }

    .two-col-inner { grid-template-columns: 1fr; gap: 2.5rem; }

    .section { padding: 3rem 1.5rem; }
    .section-intro { padding: 3rem 1.5rem; }
    .trust-section { padding: 3rem 1.5rem; }

    .b2b-banner-inner { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; }
    .b2b-img { display: none; }
    .b2b-img-placeholder { display: none; }

    .mv-header { flex-direction: column; gap: 1rem; }
    .mv-header h2 { font-size: 1.6rem; }

    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

    .b2b-banner-text h2 { font-size: 1.4rem; }

    .page-hero-full { height: 300px; }
    .page-hero-full-text h1 { font-size: 1.8rem; }

    .standards-list-items { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    :root { --section-pad: 2.5rem 1.25rem; }
    .hero-yucca-bgs { display: none; }
    .hero-yucca-text h1 { font-size: 1.8rem; }
    .hero-yucca-cards { grid-template-columns: 1fr; }
    .hero-yucca-card { border-right: none; border-bottom: 1px solid var(--border); }
    .footer-content { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .stat-number { font-size: 2.2rem; }
}

/* =============================================
   ALT SAYFA BİLEŞENLERİ
   ============================================= */

/* ---- BG VARIANTS ---- */
.bg-beige  { background: var(--cream-soft); }
.bg-cream  { background: var(--cream); }
.bg-white  { background: var(--white); }

/* ---- STAT BAR ---- */
.stat-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.stat-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 2rem 0;
    border-right: 1px solid var(--border);
    text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-item-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--brown);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-item-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ---- TWO-COL SECTION (alt sayfa) ---- */
.two-col-section {
    padding: var(--section-pad);
    border-bottom: 1px solid var(--border);
}

.two-col-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.two-col-inner.reverse .two-col-img-wrap { order: -1; }

.two-col-text .section-tag {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 1rem;
}

.two-col-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.two-col-text p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.two-col-text .feature-list {
    margin-top: 1.5rem;
    list-style: none;
}

.two-col-text .feature-list li {
    padding: 0.6rem 0 0.6rem 1.1rem;
    position: relative;
    font-size: 0.88rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
}

.two-col-text .feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--sand);
    border-radius: 50%;
}

.two-col-img-wrap {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
}

.two-col-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ---- HIGHLIGHT / CTA SECTION ---- */
.highlight-section {
    background: var(--brown-mid);
    padding: 4rem 2rem;
}

.highlight-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.highlight-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    flex: 1;
}

.highlight-inner p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    max-width: 420px;
    line-height: 1.75;
    flex: 1;
}

.btn-primary {
    display: inline-flex;
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s, border-color 0.2s;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.btn-primary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* ---- PROCESS SECTION (faaliyet, üretim sayfaları) ---- */
.process-section {
    padding: var(--section-pad);
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.process-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.process-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}

.process-step {
    padding: 2rem 1.75rem;
    border-right: 1px solid var(--border);
}

.process-step:last-child { border-right: none; }

.process-step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.process-step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ---- TARIM SECTION (Luxury Refined x Minimalist Flow) ---- */
.tarim-section {
    padding: 7rem 2rem 8rem;
    background: var(--cream);
    position: relative;
    border-bottom: 1px solid var(--border);
}

.tarim-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.tarim-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
    position: relative;
    border-left: 1px solid var(--sand);
    padding-left: 2rem;
}

.tarim-header::before {
    content: '';
    position: absolute;
    top: 0; left: -1px;
    width: 2px;
    height: 0%;
    background: var(--brown);
    transition: height 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.tarim-section:hover .tarim-header::after {
    height: 100%;
}

.tarim-header .section-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 1.25rem;
    display: block;
}

.tarim-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--brown);
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 600px;
}

.tarim-header-right p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 2rem;
    max-width: 540px;
    font-weight: 300;
}

/* Elegant Button CTA */
.btn-external {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brown);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding-bottom: 0.25rem;
    position: relative;
    align-self: flex-start;
}

.btn-external::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 1px;
    background: var(--sand);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.btn-external:hover::after {
    transform: scaleX(0);
    transform-origin: left;
}

.btn-external:hover {
    color: var(--sand);
}

/* Minimalist Grid Layout */
.tarim-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.tarim-product-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tarim-product-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--cream-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.tarim-product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0,0,0,0.03);
    pointer-events: none;
}

.tarim-product-img img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.tarim-product-card:hover .tarim-product-img img {
    transform: scale(1.08) translateY(-5px);
}

.tarim-product-body {
    padding-right: 1rem;
    position: relative;
}

.tarim-product-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--sand);
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.tarim-product-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: var(--brown);
}

.tarim-product-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin: 0;
}

@media (max-width: 900px) {
    .tarim-products { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .tarim-header { margin-bottom: 4rem; }
}

@media (max-width: 600px) {
    .tarim-products { grid-template-columns: 1fr; }
    .tarim-section { padding: 5rem 1.5rem; }
}


/* ---- PRODUCT SHOWCASE (ürünler sayfası) ---- */
.product-showcase {
    padding: var(--section-pad);
    border-bottom: 1px solid var(--border);
}

.product-showcase-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.product-showcase-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: baseline;
}

.product-showcase-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--brown);
}

.product-showcase-header p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
}

.product-grid-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card-lg {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.25s;
}

.product-card-lg:hover { border-color: var(--sand); }

.product-card-lg-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #ebedec;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-lg-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    display: block;
    transition: transform 0.4s ease;
}

.product-card-lg-img--contain img {
    object-fit: contain;
    padding: 2rem;
    background-color: var(--white);
}

.product-grid-showcase--4col {
    grid-template-columns: repeat(4, 1fr);
}

.product-card-lg:hover .product-card-lg-img img {
    transform: scale(1.03);
}

.product-card-lg-body {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.product-card-lg-tag {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 0.6rem;
}

.product-card-lg-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-lg-body p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ---- B2B FEATURES (ihracat sayfası) ---- */
.b2b-features {
    padding: var(--section-pad);
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.b2b-features-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.b2b-features-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: baseline;
}

.b2b-features-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--brown);
}

.b2b-features-header p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
}

.b2b-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}

.b2b-feature-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--border);
}

.b2b-feature-card:last-child { border-right: none; }

.b2b-feature-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.b2b-feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.6rem;
}

.b2b-feature-card p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* ---- CONTACT PAGE ---- */
.contact-page {
    padding: var(--section-pad);
    background: var(--cream-soft);
}

.contact-page-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.contact-info-block > p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.contact-detail {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    align-items: baseline;
}

.contact-detail-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-detail-val {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.65;
}

.contact-detail-val a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-val a:hover {
    color: var(--accent);
}

.contact-form-block {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.contact-form-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 0.4rem;
}

.contact-form-block > p {
    font-size: 0.88rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
    line-height: 1.65;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    margin-top: 0.5rem;
}

.form-submit button {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: var(--brown);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background 0.2s;
    min-height: 44px;
}
.form-submit button:hover { background: var(--brown-mid); }

/* ---- STANDARDS SECTION (uretim-kalite) — tam width ---- */
.standards-section .standards-grid {
    max-width: var(--max-w);
    margin: 0 auto;
}

/* ---- RESPONSIVE (alt sayfa ekleri) ---- */
@media (max-width: 1024px) {
    .stat-bar-inner { gap: 0; }
    .two-col-inner { gap: 3rem; }
    .tarim-header { grid-template-columns: 1fr; gap: 0.75rem; }
    .product-showcase-header { grid-template-columns: 1fr; gap: 0.75rem; }
    .b2b-features-header { grid-template-columns: 1fr; gap: 0.75rem; }
    .highlight-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-step:nth-child(2) { border-right: none; }
    .process-step:nth-child(3) { border-right: none; border-top: 1px solid var(--border); }
    .process-step:nth-child(4) { border-top: 1px solid var(--border); }
    .product-grid-showcase { grid-template-columns: 1fr 1fr; }
    .contact-page-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .stat-bar-inner { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(2) { border-right: none; }
    .two-col-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .two-col-inner.reverse .two-col-img-wrap { order: 0; }
    .two-col-img-wrap { aspect-ratio: 16/10; }
    .tarim-products { 
        grid-template-columns: 1fr; 
        gap: 4rem;
    }
    .tarim-product-card { 
        grid-column: span 1 !important; 
        margin-top: 0 !important; 
    }
    .tarim-header { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 2rem; 
    }
    .b2b-features-grid { grid-template-columns: 1fr; }
    .b2b-feature-card { border-right: none; border-bottom: 1px solid var(--border); }
    .b2b-feature-card:last-child { border-bottom: none; }
    .product-grid-showcase { grid-template-columns: 1fr; }
    .product-showcase-header { gap: 0.5rem; }
    .process-steps { grid-template-columns: 1fr; border: none; gap: 0; }
    .process-step { border-right: none; border-bottom: 1px solid var(--border); border-left: 2px solid var(--border-dark); padding-left: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .highlight-inner h2 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .stat-bar-inner { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
    .tarim-header { grid-template-columns: 1fr; }
    .contact-form-block { padding: 1.5rem; }
}

/* =============================================
   ÜRÜN GALERİ ŞERİDİ
   ============================================= */
.product-gallery-strip {
    overflow: hidden;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.product-gallery-strip-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.product-gallery-strip-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: var(--cream-mid);
    border-right: 1px solid var(--border);
}

.product-gallery-strip-item:last-child {
    border-right: none;
}

.product-gallery-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
    filter: saturate(0.92);
}

.product-gallery-strip-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.05);
}

/* Secondary product grid - margin-top for spacing */
.product-grid-showcase--secondary {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .product-gallery-strip-inner {
        grid-template-columns: repeat(3, 1fr);
    }
    .product-gallery-strip-item:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 768px) {
    .product-gallery-strip-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .product-gallery-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-gallery-strip-item:nth-child(n+3) {
        display: none;
    }
}

/* ================================/* ---- PRODUCT SHOWCASE (ürünler sayfası) ---- */
.product-showcase {
    padding: var(--section-pad);
    border-bottom: 1px solid var(--border);
}

/* =============================================
   ÜRÜN GALERİSİ (Üretim & Kalite sayfası)
   ============================================= */
.production-gallery {
    background: var(--cream-soft);
    padding: var(--section-pad);
    border-bottom: 1px solid var(--border);
}

.production-gallery-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
}

.production-gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--cream-mid);
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.production-gallery-item:hover {
    border-color: var(--sand);
}

.production-gallery-item--wide {
    grid-column: span 2;
}

.production-gallery-item--tall {
    grid-row: span 2;
}

.production-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.production-gallery-item:hover img {
    transform: scale(1.04);
}

.production-gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(to top, rgba(20, 12, 6, 0.8) 0%, transparent 100%);
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.production-gallery-item:hover .production-gallery-label {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .production-gallery-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 0;
    }
    .production-gallery-item--wide {
        grid-column: span 2;
    }
    .production-gallery { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
    .production-gallery-inner {
        grid-template-columns: 1fr;
    }
    .production-gallery-item--wide {
        grid-column: span 1;
    }
    .production-gallery { padding: 0 1.25rem; }
}
