/* ═══════════════════════════════════════════════════════════
   Global VRF Frontend - Daikin VRV İlhamlı Modern UX 2026
   Profesyonel VRV Klima Çözümleri - Kullanıcı Dostu Tasarım
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Global VRF corporate palette - navy, royal blue and cool neutrals */
    --primary: #0b2a4a;
    --primary-light: #164e7a;
    --primary-dark: #061a2e;
    --accent: #0b63a5;
    --accent-light: #4a90c2;
    --accent-glow: #0b63a5;
    --secondary: #2c7fb8;
    --white: #ffffff;
    --light: #f5f9fc;
    --light-gray: #e8eef4;
    --gray: #5c6b7a;
    --dark: #0d1f2d;
    --dark-alt: #1a2d3d;
    --success: #00a651;
    --warning: #f59e0b;
    --danger: #dc3545;

    --gradient-primary: linear-gradient(135deg, #0b2a4a 0%, #0b63a5 50%, #0b2a4a 100%);
    --gradient-hero: linear-gradient(165deg, #061a2e 0%, #0b2a4a 30%, #164e7a 70%, #0b2a4a 100%);
    --gradient-accent: linear-gradient(135deg, #0b63a5, #2c7fb8);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,252,255,0.99));
    --gradient-mesh: radial-gradient(at 30% 10%, rgba(11,99,165,0.15) 0px, transparent 50%), radial-gradient(at 90% 20%, rgba(44,127,184,0.1) 0px, transparent 50%), radial-gradient(at 10% 60%, rgba(11,42,74,0.2) 0px, transparent 50%);

    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(11,42,74,0.06);
    --shadow-md: 0 4px 16px rgba(11,42,74,0.08);
    --shadow-lg: 0 12px 32px rgba(11,42,74,0.1);
    --shadow-xl: 0 20px 48px rgba(11,42,74,0.12);
    --shadow-2xl: 0 24px 56px -12px rgba(11,42,74,0.18);
    --shadow-accent: 0 8px 32px -4px rgba(11,99,165,0.35);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 22px;
    --radius-2xl: 28px;
    --radius-full: 9999px;

    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    color: var(--dark); overflow-x: hidden; line-height: 1.65;
    background: var(--white);
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::selection { background: rgba(37,99,235,0.15); color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
a { transition: all 0.3s var(--ease-smooth); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; letter-spacing: -0.02em; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── Section Headers ── */
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(6,182,212,0.06));
    color: var(--accent); font-weight: 600; font-size: 0.8rem;
    padding: 8px 18px; border-radius: var(--radius-full);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
    border: 1px solid rgba(37,99,235,0.12);
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800; color: var(--dark);
    margin-bottom: 16px; letter-spacing: -0.03em;
}
.section-subtitle {
    font-size: 1.05rem; color: var(--gray);
    max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 56px; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 0.92rem;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.4s var(--ease-out);
    font-family: inherit; position: relative; overflow: hidden;
    letter-spacing: 0.01em;
}
.btn::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%); transition: transform 0.6s var(--ease-out);
}
.btn:hover::after { transform: translateX(100%); }
.btn-primary { background: var(--gradient-accent); color: var(--white); box-shadow: var(--shadow-accent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -4px rgba(37,99,235,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-secondary { background: var(--white); color: var(--primary); box-shadow: var(--shadow-md); border: 1px solid var(--light-gray); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--accent-light); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── Focus & Accessibility ── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Top Bar ── */
.top-bar {
    background: #0b2a4a;
    padding: 7px 0;
    font-size: 0.8rem;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar a {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
}
.top-bar a:hover {
    color: white;
}
.top-info {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}
.top-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
}
.top-info i {
    font-size: 0.75rem;
    opacity: 0.9;
}
.top-social {
    display: flex;
    gap: 8px;
}
.top-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    transition: all 0.25s;
    font-size: 0.8rem;
}
.top-social a:hover {
    background: #0b63a5;
    color: white;
}

/* ── Header (Daikin VRV pill style) ── */
header.header-pill {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header.header-pill.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
header.header-pill.scrolled nav {
    padding: 10px 24px;
}
header.header-pill.scrolled .site-brand-logo { width: 188px; }
header.header-pill.scrolled .nav-pill {
    padding: 4px 6px;
}
header.header-pill.scrolled .nav-links > li > a {
    padding: 7px 12px;
    font-size: 0.85rem;
}
header.header-pill nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    max-width: 1280px;
    margin: 0 auto;
    transition: padding 0.25s ease;
}

/* Logo - sol taraf */
header.header-pill .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.site-brand-logo {
    display: block;
    width: clamp(172px, 16vw, 205px);
    height: auto;
    transition: width 0.25s ease;
}

/* Nav pill - gri yuvarlak kapsül */
.nav-pill-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-pill {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 999px;
    padding: 6px 8px;
    transition: padding 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.header-pill .nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-pill .nav-links > li {
    position: relative;
}
.header-pill .nav-links > li > a {
    padding: 10px 16px;
    color: #0b2a4a;
    transition: padding 0.25s ease, font-size 0.25s ease;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 999px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.header-pill .nav-links > li > a:hover,
.header-pill .nav-links > li > a.active {
    background: #fff;
    color: #0b2a4a;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.header-pill .nav-arrow {
    font-size: 0.5rem;
    opacity: 0.6;
}
.nav-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
    position: relative;
}
.nav-lang .lang-link {
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s;
}
.nav-lang .lang-link:hover,
.nav-lang .lang-link.active {
    color: #0b2a4a;
    background: #fff;
    font-weight: 600;
}
/* Dil dropdown - oval, basit */
.nav-lang-dropdown {
    border-radius: 999px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.06);
}
.nav-lang-dropdown .lang-trigger {
    cursor: pointer;
    padding: 4px 4px;
    border-radius: 999px;
}
.nav-links > li.nav-lang-dropdown:hover .dropdown-menu { opacity: 0; visibility: hidden; transform: translateY(-4px); }
.nav-links > li.nav-lang-dropdown.open .lang-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-lang-dropdown .lang-dropdown {
    right: 0; left: auto; min-width: 220px;
}
.nav-lang-dropdown .lang-dropdown a {
    padding: 12px 18px;
    white-space: nowrap;
}
.nav-lang-dropdown .lang-dropdown .lang-flag {
    margin-right: 10px;
    font-size: 1.1em;
}
.nav-lang-dropdown .lang-dropdown a.active {
    background: #f1f5f9; color: #0b2a4a; font-weight: 600;
}

/* Mobil menü - sadece mobilde görünür */
.mm { display: none; }

/* CTA butonu - koyu mavi, pill'in sağında */
.nav-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0b2a4a;
    color: #fff !important;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(11,42,74,0.25);
    transition: all 0.2s;
}
.nav-cta-pill:hover {
    background: #002244;
    box-shadow: 0 4px 12px rgba(11,42,74,0.35);
}

/* Dropdown - pill içinden */
header.header-pill .dropdown-menu {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    margin-top: 6px;
}
header.header-pill .dropdown-menu a {
    color: #334155;
}
header.header-pill .dropdown-menu a:hover {
    background: #f8fafc;
    color: #0b2a4a;
}
header.header-pill .dropdown-menu a i {
    color: #0b63a5;
}

/* ── Ürünler Mega Menu ── */
.products-mega-menu {
    padding: 0 !important;
    width: 240px;
    min-width: 0;
    overflow: hidden;
}
.products-mega-menu .mega-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px 8px 8px;
}
.mega-col {
    padding: 2px 8px 6px;
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
}
.mega-col:last-child { border-bottom: none; }
.mega-parent-link {
    display: flex !important;
    align-items: center;
    gap: 7px;
    padding: 6px 8px !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    color: #334155 !important;
    border-radius: 7px;
    background: none !important;
    white-space: nowrap;
    margin-bottom: 4px;
}
.mega-parent-link i { color: var(--accent) !important; font-size: 0.76rem !important; flex-shrink: 0; }
.mega-parent-link:hover { background: rgba(11,99,165,0.06) !important; color: var(--accent) !important; }
.mega-children {
    list-style: none;
    margin: 0 0 0 6px;
    padding: 0 0 0 8px;
    border-left: 2px solid #f1f5f9;
}
.mega-children li a {
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 4px 7px !important;
    font-size: 0.76rem !important;
    color: #64748b !important;
    border-radius: 5px;
    white-space: nowrap;
    background: none !important;
    transition: background 0.15s, color 0.15s;
}
.mega-children li a i { color: #94a3b8 !important; font-size: 0.7rem !important; width: 12px !important; flex-shrink: 0; }
.mega-children li a:hover { background: #f1f5f9 !important; color: var(--accent) !important; }
.mega-children li a:hover i { color: var(--accent) !important; }
.mega-footer {
    border-top: 1px solid #f1f5f9;
    padding: 9px 18px;
    background: #fafbfc;
}
.mega-all-link {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    font-size: 0.79rem !important;
    font-weight: 600 !important;
    color: var(--accent) !important;
    padding: 0 !important;
    background: none !important;
}
.mega-all-link:hover { color: var(--primary) !important; background: none !important; }
.mega-all-link i { font-size: 0.75rem !important; color: inherit !important; }

header.header-pill .hamburger {
    display: none;
    color: #0b2a4a;
    background: #f1f5f9;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}
header.header-pill .hamburger:hover { background: #e2e8f0; }
header.header-hidden {
    transform: translateY(-100%);
}
.nav-mobile-cta {
    display: none;
}

/* Dropdown (if needed elsewhere) */
.dropdown-menu {
    position: absolute; top: 100%; left: 0; margin-top: 4px;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    padding: 8px; min-width: 220px;
    opacity: 0; visibility: hidden; transform: translateY(-4px);
    transition: all 0.25s var(--ease-out);
    border: 1px solid var(--light-gray); z-index: 100;
}
.nav-links > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; color: var(--dark-alt); text-decoration: none;
    border-radius: var(--radius-sm); font-size: 0.88rem; transition: all 0.2s;
}
.dropdown-menu a:hover { background: var(--light); color: var(--accent); }
.dropdown-menu a i { color: var(--accent); font-size: 0.8rem; width: 16px; text-align: center; }

/* ── Corporate feature strip ── */
.feature-strip {
    position: relative;
    z-index: 5;
    background: transparent;
    padding: 0 0 30px;
}
.feature-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: stretch;
    margin-top: -32px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(2, 23, 45, 0.12);
    overflow: hidden;
}
.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 19px 20px;
    background: #fff;
    border-right: 1px solid #e7eef5;
    transition: background 0.25s ease;
}
.feature-strip-item:last-child { border-right: 0; }
.feature-strip-item:hover {
    background: #f7fbff;
}
.feature-strip-icon {
    width: 40px;
    height: 40px;
    background: #edf7fc;
    border: 1px solid #d7edf8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0369a1;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.feature-strip-item h4 { font-size: 0.88rem; color: #0f2740; margin-bottom: 2px; }
.feature-strip-item p { font-size: 0.75rem; color: #708195; font-weight: 500; }

/* ── Hero ── */
.hero {
    min-height: 590px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 54px 0 84px;
    background:
        radial-gradient(circle at 88% 18%, rgba(11, 99, 165, 0.16), transparent 32%),
        linear-gradient(122deg, #06182b 0%, #082844 45%, #0a466c 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(1, 14, 28, 0.46), transparent 58%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    top: -280px;
    left: 18%;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(255,255,255,0.018), 0 0 0 180px rgba(255,255,255,0.012);
    pointer-events: none;
}
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to right, #000, transparent 74%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
    gap: 48px;
    align-items: center;
}
.hero-content { max-width: 610px; }
.hero-badge {
    border-color: rgba(116, 202, 241, 0.24);
    background: rgba(6, 38, 64, 0.56);
    color: #d8f4ff;
    backdrop-filter: blur(10px);
    letter-spacing: 0.12em;
}
.hero-content h1 {
    font-size: clamp(2.55rem, 4vw, 3.65rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.03;
    letter-spacing: -0.05em;
}
.hero-content h1 span {
    color: #a9d6f0;
}
.hero-content .hero-lead {
    color: rgba(228, 241, 250, 0.76);
    font-size: 0.96rem;
    margin-bottom: 18px;
    max-width: 590px;
    line-height: 1.62;
}
.hero-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 22px;
}
.hero-proof-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.84);
    font-size: 0.8rem;
    font-weight: 600;
}
.hero-proof-list i { color: #a9d6f0; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-buttons .btn { border-radius: 12px; padding: 14px 24px; }
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #0b63a5, #2c7fb8);
    box-shadow: 0 12px 34px rgba(11, 99, 165, 0.28);
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(86px, 1fr));
    gap: 14px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #b7dcef;
}
.hero-stat p {
    color: rgba(226, 240, 249, 0.56);
    font-size: 0.7rem;
    margin-top: 3px;
    font-weight: 600;
    line-height: 1.35;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-photo-card {
    position: relative;
    width: 100%;
    height: 430px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 30px 80px rgba(0, 9, 20, 0.38);
    background: #0b2238;
}
.hero-photo-card::before {
    content: '';
    position: absolute;
    inset: 12px;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 19px;
    pointer-events: none;
}
.hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 57% center;
    display: block;
    transform: scale(1.01);
}
.hero-photo-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 20, 35, 0.18) 32%, rgba(3, 20, 35, 0.76) 100%);
}
.hero-photo-label {
    position: absolute;
    z-index: 4;
    top: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    background: rgba(2, 24, 42, 0.66);
    backdrop-filter: blur(14px);
    color: #fff;
}
.hero-photo-label-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(102, 213, 255, 0.16);
    color: #7cddff;
}
.hero-photo-label small,
.hero-photo-label strong { display: block; }
.hero-photo-label small {
    color: rgba(229, 245, 252, 0.64);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.hero-photo-label strong { font-size: 0.84rem; margin-top: 2px; }
.hero-category-links {
    position: absolute;
    z-index: 4;
    left: 24px;
    right: 24px;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.hero-category-links a {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 12px;
    border-radius: 11px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(2, 25, 44, 0.68);
    backdrop-filter: blur(10px);
    color: #eaf8ff;
    text-decoration: none;
    font-size: 0.69rem;
    font-weight: 650;
}
.hero-category-links a:hover { background: rgba(5, 107, 156, 0.76); border-color: rgba(116, 216, 255, 0.42); }
.hero-category-links i { color: #79dcff; flex-shrink: 0; }
.hero-category-links span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Brands Scroll ── */
.brands { background: var(--light); padding: 48px 0; border-bottom: 1px solid var(--light-gray); }
.brands-wrapper { overflow: hidden; position: relative; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.brands-track { display: flex; gap: 40px; animation: scroll-brands 35s linear infinite; width: max-content; }
@keyframes scroll-brands { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.brand-item {
    display: flex; align-items: center; justify-content: center;
    min-width: 160px; height: 64px; background: var(--white);
    border-radius: var(--radius-md); padding: 14px 28px;
    border: 1px solid var(--light-gray);
    font-weight: 700; font-size: 0.85rem;
    color: var(--gray); white-space: nowrap;
    transition: all 0.4s var(--ease-out); letter-spacing: 0.5px;
}
.brand-item img { filter: grayscale(30%); opacity: 0.8; transition: all 0.3s; }
.brand-item:hover img { filter: grayscale(0%); opacity: 1; }
.brand-item:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--shadow-lg); color: var(--accent); border-color: rgba(37,99,235,0.2);
}

/* ── Services ── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-card {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 32px 24px; text-align: center;
    border: 1px solid var(--light-gray);
    transition: all 0.4s var(--ease-out);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-accent); transform: scaleX(0);
    transition: transform 0.4s var(--ease-out); transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(6,182,212,0.06));
    border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
    transition: all 0.4s var(--ease-spring);
}
.service-icon i { font-size: 1.5rem; color: var(--accent); }
.service-card:hover .service-icon { background: var(--gradient-accent); transform: scale(1.1) rotate(5deg); }
.service-card:hover .service-icon i { color: white; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* ── Products (Ana sayfa + Ürünler sayfası) ── */
.products { padding: 64px 0; background: #f8fafc; }
.featured-products .products-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
}
.products-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(12,74,110,0.08);
    color: #0369a1;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 14px;
}
.products-title {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 10px;
}
.products-desc { font-size: 1rem; color: #64748b; line-height: 1.6; }
.products-footer { text-align: center; margin-top: 40px; }
.products-btn { padding: 14px 32px; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 10px; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.product-card-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.4s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    gap: 7px;
    color: #24435f;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 18%, rgba(14, 165, 233, 0.16), transparent 29%),
        linear-gradient(145deg, rgba(255,255,255,0.72), rgba(227, 240, 249, 0.58));
}
.product-placeholder::before,
.pcard-placeholder::before,
.pd-img-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(15, 77, 119, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 77, 119, 0.16) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(135deg, #000, transparent 78%);
    pointer-events: none;
}
.product-placeholder > *,
.pcard-placeholder > *,
.pd-img-fallback > * { position: relative; z-index: 1; }
.product-placeholder i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255,255,255,0.72);
    box-shadow: 0 9px 24px rgba(0, 62, 105, 0.1);
    font-size: 1.35rem;
    color: #0877ae;
}
.product-placeholder strong { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.04em; }
.product-placeholder span { font-size: 0.61rem; font-weight: 700; color: #6c8194; letter-spacing: 0.12em; text-transform: uppercase; }
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0c4a6e;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 600;
}
.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-brand {
    font-size: 0.7rem;
    font-weight: 600;
    color: #0369a1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.product-name,
.product-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-excerpt,
.product-info p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.55;
    flex-grow: 1;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}
.product-price {
    font-weight: 700;
    color: #0c4a6e;
    font-size: 0.95rem;
}
.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.82rem;
    color: #0369a1;
    transition: gap 0.2s;
}
.product-card:hover .product-cta { gap: 8px; }
.product-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.82rem; color: #0369a1; }

/* ══════════════════════════════════════
   Ürün Detay Sayfası
   ══════════════════════════════════════ */
.pd-page {
    background: #f8fafc;
    min-height: 60vh;
    padding: 40px 0 80px;
}
.pd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Breadcrumb */
.pd-crumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.pd-crumb a { color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.pd-crumb a:hover { color: var(--accent); }
.pd-crumb i { font-size: 0.6rem; opacity: 0.5; }
.pd-crumb span:last-child { color: #475569; font-weight: 500; }

/* Ana Grid */
.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    margin-bottom: 28px;
}

/* Sol: Görsel */
.pd-visual {
    background: #f8fafc;
    border-right: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}
.pd-img-box {
    flex: 1;
    min-height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}
.pd-img-box img {
    max-width: 100%;
    max-height: 340px;
    object-fit: contain;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}
.pd-img-box:hover img { transform: scale(1.04); }
.pd-img-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    color: #284861;
    gap: 10px;
    overflow: hidden;
    background: radial-gradient(circle at 70% 22%, rgba(14, 165, 233, 0.14), transparent 32%);
}
.pd-img-fallback i {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(255,255,255,0.72);
    box-shadow: 0 14px 36px rgba(0, 62, 105, 0.1);
    font-size: 2rem;
    color: #0877ae;
}
.pd-img-fallback strong { font-size: 1.05rem; font-weight: 800; letter-spacing: 0.04em; }
.pd-img-fallback span { font-size: 0.67rem; font-weight: 700; color: #708497; letter-spacing: 0.13em; text-transform: uppercase; }
.pd-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 7px;
    z-index: 2;
    letter-spacing: 0.03em;
}

/* Güven bantları */
.pd-trust-bar {
    display: flex;
    border-top: 1px solid #f1f5f9;
}
.pd-trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    border-right: 1px solid #f1f5f9;
}
.pd-trust-item:last-child { border-right: none; }
.pd-trust-item i { font-size: 1rem; color: var(--accent); }

/* Sağ: Bilgi */
.pd-info {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
}
.pd-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.pd-brand-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: rgba(11,99,165,0.08);
    border: 1px solid rgba(11,99,165,0.15);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
}
.pd-brand-pill:hover { background: rgba(11,99,165,0.14); color: var(--primary); }
.pd-category-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: #f1f5f9;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}
.pd-title {
    font-size: clamp(1.35rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 14px;
}
.pd-intro {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}
.pd-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.pd-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #16a34a;
}
.pd-feature-tag i { font-size: 0.7rem; }
.pd-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 20px 0;
}
.pd-price-area { margin-bottom: 28px; }
.pd-price-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.pd-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.pd-price-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    margin: 0;
}
.pd-price-note i { color: var(--accent); flex-shrink: 0; }
.pd-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
}
.pd-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(11,99,165,0.3);
}
.pd-btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,99,165,0.38); }
.pd-btn-secondary-row { display: flex; gap: 10px; }
.pd-btn-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.pd-btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: rgba(11,99,165,0.03); }
.pd-btn-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    background: #25D366;
    border: 1.5px solid #25D366;
    border-radius: 10px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.pd-btn-whatsapp:hover { background: #1fb855; border-color: #1fb855; color: #fff; }

/* Tab Bölümü */
.pd-tabs-section {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-bottom: 28px;
}
.pd-tab-nav {
    display: flex;
    border-bottom: 1px solid #f1f5f9;
    background: #fafbfc;
    padding: 0 8px;
}
.pd-tab-btn {
    padding: 16px 22px;
    border: none;
    background: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
    font-family: inherit;
}
.pd-tab-btn:hover { color: var(--primary); }
.pd-tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.pd-tab-pane { display: none; padding: 32px; }
.pd-tab-pane.active { display: block; }
.pd-desc-body {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
}
.pd-desc-body p { margin-bottom: 14px; }
.pd-desc-body p:last-child { margin-bottom: 0; }
.pd-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.pd-spec-row {
    display: contents;
}
.pd-spec-row > * {
    padding: 12px 16px;
    font-size: 0.88rem;
    border-bottom: 1px solid #f1f5f9;
}
.pd-spec-key {
    font-weight: 600;
    color: var(--dark);
    background: #fafbfc;
    border-right: 1px solid #f1f5f9;
}
.pd-spec-val { color: #64748b; }

/* İlgili Ürünler */
.pd-related { margin-bottom: 0; }
.pd-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.pd-related-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.pd-related-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s;
}
.pd-related-all:hover { gap: 9px; color: var(--primary); }
.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ── Why Us ── */
/* ── Why Us ── */
.why-us {
    padding: 72px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.why-us-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.why-us-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(12,74,110,0.08);
    color: #0369a1;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 16px;
}
.why-us-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.why-us-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.65;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0c4a6e, #0369a1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.why-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.why-card:hover::after { transform: scaleX(1); }
.why-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.why-card-icon i { font-size: 1.15rem; color: #0369a1; }
.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, #0c4a6e, #0369a1);
}
.why-card:hover .why-card-icon i { color: #fff; }
.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.35;
}
.why-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Usage Areas ── */
.usage-areas { background: var(--light); }
.usage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.usage-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    min-height: 200px; transition: all 0.4s var(--ease-out);
}
.usage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.usage-card-bg {
    position: absolute; inset: 0; opacity: 0.9;
    transition: opacity 0.4s;
}
.usage-card:hover .usage-card-bg { opacity: 1; }
.usage-card-content {
    position: relative; z-index: 2; padding: 28px 20px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; height: 100%; justify-content: center;
}
.usage-card-content i { font-size: 2rem; color: white; margin-bottom: 14px; }
.usage-card-content h3 { font-size: 1rem; color: white; font-weight: 700; margin-bottom: 8px; }
.usage-card-content p { font-size: 0.8rem; color: rgba(255,255,255,0.85); line-height: 1.5; }

/* ── Brands Detail ── */
.brands-detail { background: var(--white); }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.brand-detail-card {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 32px 20px; text-align: center;
    border: 1px solid var(--light-gray);
    transition: all 0.4s var(--ease-out);
}
.brand-detail-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.brand-logo-img {
    width: 100px; height: 60px; object-fit: contain;
    margin: 0 auto 16px; display: block;
    transition: transform 0.3s ease;
}
.brand-detail-card:hover .brand-logo-img { transform: scale(1.1); }
.brand-logo-placeholder {
    width: 120px; height: 60px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800; letter-spacing: 1px; opacity: 0.8;
}
.brand-detail-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.brand-detail-card p { font-size: 0.85rem; color: var(--gray); }
.brand-products-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
    font-size: 0.85rem; font-weight: 600; color: var(--accent);
    transition: gap 0.3s ease;
}
.brand-detail-card:hover .brand-products-link { gap: 10px; }

/* ══════════════════════════════════════
   Modern Markalar Sayfası
   ══════════════════════════════════════ */
.brands-page-modern { background: #f4f8fb; }
.brands-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 84px;
    background:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        radial-gradient(circle at 84% 18%, rgba(44,127,184,0.25), transparent 31%),
        linear-gradient(128deg, #05182b 0%, #082e4e 55%, #075f8f 100%);
    background-size: 58px 58px, 58px 58px, auto, auto;
}
.brands-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(114,216,255,0.55), transparent);
}
.brands-hero-orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
}
.brands-hero-orb-one { width: 460px; height: 460px; right: -130px; top: -230px; }
.brands-hero-orb-two { width: 260px; height: 260px; left: 43%; bottom: -210px; }
.brands-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
    gap: 76px;
    align-items: center;
}
.brands-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    color: rgba(224,243,253,0.58);
    font-size: 0.78rem;
}
.brands-breadcrumb a { color: rgba(235,248,255,0.8); text-decoration: none; }
.brands-breadcrumb a:hover { color: #fff; }
.brands-breadcrumb i { font-size: 0.55rem; }
.brands-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(117,214,255,0.2);
    border-radius: 999px;
    background: rgba(8,55,87,0.52);
    color: #cdefff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.brands-hero-copy h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(2.55rem, 5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.055em;
}
.brands-hero-copy h1 span { display: block; color: #65d2ff; }
.brands-hero-copy > p {
    max-width: 680px;
    color: rgba(226,242,250,0.76);
    font-size: 1.02rem;
    line-height: 1.75;
}
.brands-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 650px;
    margin-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.brands-hero-stats div { padding: 22px 22px 0 0; }
.brands-hero-stats strong { display: block; color: #fff; font-size: 1.6rem; line-height: 1; }
.brands-hero-stats span { display: block; margin-top: 7px; color: rgba(218,238,249,0.62); font-size: 0.72rem; font-weight: 600; }
.brands-hero-panel {
    padding: 26px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055));
    box-shadow: 0 24px 70px rgba(0,14,30,0.28);
    backdrop-filter: blur(16px);
}
.brands-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.brands-panel-head div { display: flex; flex-direction: column; gap: 3px; }
.brands-panel-head span { color: rgba(226,244,253,0.64); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.brands-panel-head strong { color: #fff; font-size: 1rem; }
.brands-panel-head > i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: rgba(101,210,255,0.13);
    color: #65d2ff;
}
.brands-panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.brands-panel-grid span {
    position: relative;
    overflow: hidden;
    padding: 16px 14px 16px 18px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 13px;
    background: rgba(2,25,44,0.36);
    color: #f7fcff;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
}
.brands-panel-grid span::before {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--brand-color);
}
.brands-hero-panel > p {
    display: flex;
    gap: 9px;
    margin-top: 18px;
    color: rgba(224,242,251,0.64);
    font-size: 0.73rem;
    line-height: 1.55;
}
.brands-hero-panel > p i { margin-top: 3px; color: #65d2ff; }

.brands-modern-catalog { padding: 90px 0 96px; }
.brands-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.6fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 42px;
}
.brands-section-badge {
    display: inline-flex;
    margin-bottom: 13px;
    color: #0877ae;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.brands-section-head h2 {
    max-width: 680px;
    color: #0b2033;
    font-size: clamp(2rem, 3.6vw, 3.15rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
}
.brands-section-head > p { color: #667b8e; font-size: 0.95rem; line-height: 1.75; }
.brands-modern-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.brands-modern-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e3ebf1;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(10,45,70,0.045);
    transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.brands-modern-card:hover {
    transform: translateY(-7px);
    border-color: color-mix(in srgb, var(--brand-color) 34%, #dfe8ef);
    box-shadow: 0 22px 48px rgba(10,45,70,0.12);
}
.brands-modern-card > a { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.brands-card-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 164px;
    padding: 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 15%, color-mix(in srgb, var(--brand-color) 16%, transparent), transparent 32%),
        linear-gradient(145deg, #f8fbfd, #eef4f8);
    border-bottom: 1px solid #edf2f6;
}
.brands-card-visual::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-color);
}
.brands-card-index { align-self: flex-end; color: #9aabb8; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; }
.brands-card-mark {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    max-width: 210px;
}
.brands-card-mark::before {
    content: '';
    width: 5px;
    height: 42px;
    margin-right: 14px;
    border-radius: 5px;
    background: var(--brand-color);
}
.brands-card-wordmark {
    color: var(--brand-color);
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
}
.brands-card-mark img {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 1;
    width: 190px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
    background: #f5f9fc;
}
.brands-card-status {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    color: #607384;
    font-size: 0.65rem;
    font-weight: 700;
}
.brands-card-status i { color: var(--brand-color); }
.brands-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.brands-card-series { color: var(--brand-color); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.brands-card-body h3 { margin-top: 8px; color: #10283d; font-size: 1.15rem; }
.brands-card-body h3 span { color: #8a9ba9; font-weight: 500; }
.brands-card-body > p { flex: 1; min-height: 68px; margin-top: 11px; color: #6b7e8e; font-size: 0.8rem; line-height: 1.62; }
.brands-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid #edf2f6;
    color: #80909c;
    font-size: 0.7rem;
}
.brands-card-footer strong { color: #163248; font-size: 0.85rem; }
.brands-card-link { display: inline-flex; align-items: center; gap: 7px; color: #0a6fa4; font-weight: 700; white-space: nowrap; }
.brands-modern-card:hover .brands-card-link { color: var(--brand-color); }
.brands-modern-card:hover .brands-card-link i { transform: translateX(3px); }
.brands-card-link i { transition: transform 0.25s; }

.brands-project-cta { padding: 0 0 96px; }
.brands-cta-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 85% 5%, rgba(44,127,184,0.2), transparent 32%),
        linear-gradient(130deg, #061b2f, #0b3e61);
    box-shadow: 0 24px 60px rgba(5,35,56,0.18);
}
.brands-cta-copy { padding: 52px 56px; }
.brands-cta-copy > span { color: #65d2ff; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.brands-cta-copy h2 { max-width: 720px; margin-top: 12px; color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.18; }
.brands-cta-copy > p { max-width: 690px; margin-top: 14px; color: rgba(224,240,249,0.7); font-size: 0.9rem; line-height: 1.7; }
.brands-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.brands-cta-actions a { display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: 10px; font-size: 0.78rem; font-weight: 700; text-decoration: none; }
.brands-cta-primary { background: #fff; color: #0a4166; box-shadow: 0 10px 28px rgba(0,0,0,0.16); }
.brands-cta-primary:hover { transform: translateY(-2px); color: #0877ae; }
.brands-cta-secondary { border: 1px solid rgba(255,255,255,0.18); color: #e4f5fd; background: rgba(255,255,255,0.04); }
.brands-cta-secondary:hover { border-color: rgba(255,255,255,0.34); color: #fff; background: rgba(255,255,255,0.08); }
.brands-cta-trust {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 42px;
    border-left: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.035);
}
.brands-cta-trust div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 17px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 13px;
    color: #edf9ff;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(1,19,33,0.2);
}
.brands-cta-trust i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: #65d2ff; background: rgba(101,210,255,0.1); }

@media (max-width: 1040px) {
    .brands-hero-inner { grid-template-columns: 1fr 380px; gap: 42px; }
    .brands-modern-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
    .brands-hero { padding: 52px 0 64px; }
    .brands-hero-inner { grid-template-columns: 1fr; }
    .brands-hero-copy h1 { max-width: 700px; }
    .brands-hero-panel { max-width: 620px; }
    .brands-section-head { grid-template-columns: 1fr; gap: 18px; }
    .brands-section-head > p { max-width: 600px; }
    .brands-cta-shell { grid-template-columns: 1fr; }
    .brands-cta-trust { border-top: 1px solid rgba(255,255,255,0.1); border-left: 0; }
}
@media (max-width: 600px) {
    .brands-hero { padding: 38px 0 52px; }
    .brands-breadcrumb { margin-bottom: 22px; }
    .brands-hero-copy h1 { font-size: 2.35rem; }
    .brands-hero-copy > p { font-size: 0.91rem; }
    .brands-hero-stats { gap: 12px; }
    .brands-hero-stats div { padding-right: 0; }
    .brands-hero-stats strong { font-size: 1.32rem; }
    .brands-hero-stats span { font-size: 0.63rem; line-height: 1.35; }
    .brands-hero-panel { padding: 19px; border-radius: 20px; }
    .brands-panel-grid span { padding: 13px 10px 13px 14px; font-size: 0.7rem; }
    .brands-modern-catalog { padding: 66px 0 70px; }
    .brands-section-head { margin-bottom: 30px; }
    .brands-modern-grid { grid-template-columns: 1fr; gap: 16px; }
    .brands-card-visual { min-height: 150px; }
    .brands-card-body > p { min-height: 0; }
    .brands-project-cta { padding-bottom: 70px; }
    .brands-cta-shell { border-radius: 22px; }
    .brands-cta-copy { padding: 36px 25px; }
    .brands-cta-trust { padding: 24px; }
    .brands-cta-actions { flex-direction: column; align-items: stretch; }
    .brands-cta-actions a { justify-content: center; }
}

/* ══════════════════════════════════════
   Modern Hizmetler Sayfası
   ══════════════════════════════════════ */
.services-page-modern { background: #f4f8fb; }
.services-modern-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 84px;
    background:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        radial-gradient(circle at 82% 16%, rgba(0,180,224,0.27), transparent 31%),
        linear-gradient(128deg, #05182b 0%, #082e4e 55%, #075f8f 100%);
    background-size: 58px 58px, 58px 58px, auto, auto;
}
.services-modern-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(114,216,255,0.55), transparent);
}
.services-hero-orb {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}
.services-hero-orb-one { width: 480px; height: 480px; right: -155px; top: -250px; }
.services-hero-orb-two { width: 270px; height: 270px; left: 41%; bottom: -220px; }
.services-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
    gap: 76px;
    align-items: center;
}
.services-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    color: rgba(224,243,253,0.58);
    font-size: 0.78rem;
}
.services-breadcrumb a { color: rgba(235,248,255,0.8); text-decoration: none; }
.services-breadcrumb a:hover { color: #fff; }
.services-breadcrumb i { font-size: 0.55rem; }
.services-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(117,214,255,0.2);
    border-radius: 999px;
    background: rgba(8,55,87,0.52);
    color: #cdefff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.services-hero-copy h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(2.55rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.055em;
}
.services-hero-copy h1 span { display: block; color: #65d2ff; }
.services-hero-copy > p {
    max-width: 680px;
    color: rgba(226,242,250,0.76);
    font-size: 1.02rem;
    line-height: 1.75;
}
.services-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 650px;
    margin-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.services-hero-stats div { padding: 22px 22px 0 0; }
.services-hero-stats strong { display: block; color: #fff; font-size: 1.6rem; line-height: 1; }
.services-hero-stats span { display: block; margin-top: 7px; color: rgba(218,238,249,0.62); font-size: 0.72rem; font-weight: 600; }
.services-journey-panel {
    padding: 26px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055));
    box-shadow: 0 24px 70px rgba(0,14,30,0.28);
    backdrop-filter: blur(16px);
}
.services-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.services-panel-head > div { display: flex; flex-direction: column; gap: 3px; }
.services-panel-head span { color: rgba(226,244,253,0.64); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.services-panel-head strong { color: #fff; font-size: 1rem; letter-spacing: 0.08em; }
.services-panel-head > i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: rgba(101,210,255,0.13);
    color: #65d2ff;
}
.services-journey-list { display: grid; gap: 9px; }
.services-journey-list > div {
    display: grid;
    grid-template-columns: 28px 36px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 13px;
    background: rgba(2,25,44,0.36);
}
.services-journey-number { color: rgba(219,241,251,0.38); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; }
.services-journey-list i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: #65d2ff; background: rgba(101,210,255,0.1); }
.services-journey-list strong { color: #f7fcff; font-size: 0.78rem; }
.services-journey-panel > p { display: flex; gap: 9px; margin-top: 17px; color: rgba(224,242,251,0.64); font-size: 0.73rem; line-height: 1.55; }
.services-journey-panel > p i { margin-top: 3px; color: #65d2ff; }

.services-modern-catalog { padding: 90px 0 96px; }
.services-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.6fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 42px;
}
.services-section-badge { display: inline-flex; margin-bottom: 13px; color: #0877ae; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.services-section-head h2 { max-width: 700px; color: #0b2033; font-size: clamp(2rem, 3.6vw, 3.15rem); line-height: 1.1; letter-spacing: -0.045em; }
.services-section-head > p { color: #667b8e; font-size: 0.95rem; line-height: 1.75; }
.services-modern-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 19px; }
.services-modern-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border: 1px solid #e2eaf0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(10,45,70,0.045);
    transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.services-modern-card::before { content: ''; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, #0877ae, #29b6e8); opacity: 0; transition: opacity 0.3s; }
.services-modern-card:hover { transform: translateY(-7px); border-color: #bad9e8; box-shadow: 0 22px 48px rgba(10,45,70,0.12); }
.services-modern-card:hover::before { opacity: 1; }
.services-card-head {
    position: relative;
    min-height: 132px;
    padding: 20px;
    background:
        radial-gradient(circle at 82% 12%, rgba(44,127,184,0.12), transparent 32%),
        linear-gradient(145deg, #f8fbfd, #eef4f8);
    border-bottom: 1px solid #edf2f6;
}
.services-card-index { position: absolute; top: 17px; right: 18px; color: #a4b3bf; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; }
.services-card-icon { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid #d4e7f1; border-radius: 16px; color: #0877ae; font-size: 1.18rem; background: #fff; box-shadow: 0 9px 24px rgba(8,75,110,0.1); }
.services-card-stage { display: inline-flex; margin-top: 15px; color: #0877ae; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.services-card-body { display: flex; min-height: 230px; flex-direction: column; padding: 23px 21px 21px; }
.services-card-body h3 { color: #10283d; font-size: 1.02rem; line-height: 1.3; }
.services-card-body p { flex: 1; margin-top: 12px; color: #6b7e8e; font-size: 0.78rem; line-height: 1.65; }
.services-card-body a { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding-top: 16px; border-top: 1px solid #edf2f6; color: #0877ae; font-size: 0.7rem; font-weight: 800; text-decoration: none; }
.services-card-body a i { transition: transform 0.25s; }
.services-modern-card:hover .services-card-body a i { transform: translateX(4px); }

.services-process-section { padding: 0 0 96px; }
.services-process-shell { padding: 56px; border: 1px solid #dfe8ee; border-radius: 28px; background: #fff; box-shadow: 0 18px 50px rgba(10,45,70,0.07); }
.services-process-head { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.35fr) minmax(280px, 0.85fr); gap: 36px; align-items: end; margin-bottom: 42px; }
.services-process-head > span { align-self: start; color: #0877ae; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.services-process-head h2 { color: #0b2033; font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.15; letter-spacing: -0.04em; }
.services-process-head > p { color: #667b8e; font-size: 0.86rem; line-height: 1.72; }
.services-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.services-process-grid article { position: relative; min-width: 0; padding: 0 27px; border-left: 1px solid #e6edf2; }
.services-process-grid article:first-child { padding-left: 0; border-left: 0; }
.services-process-grid article:last-child { padding-right: 0; }
.services-process-grid article > span { position: absolute; top: 3px; right: 24px; color: #c5d2db; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; }
.services-process-grid article > div { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; color: #fff; background: linear-gradient(135deg, #0877ae, #1aaee0); box-shadow: 0 10px 24px rgba(8,119,174,0.2); }
.services-process-grid h3 { margin-top: 18px; color: #153147; font-size: 0.92rem; }
.services-process-grid p { margin-top: 9px; color: #718391; font-size: 0.74rem; line-height: 1.62; }

.services-project-cta { padding: 0 0 96px; }
.services-cta-shell { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); overflow: hidden; border-radius: 28px; background: radial-gradient(circle at 85% 5%, rgba(44,127,184,0.2), transparent 32%), linear-gradient(130deg, #061b2f, #0b3e61); box-shadow: 0 24px 60px rgba(5,35,56,0.18); }
.services-cta-copy { padding: 52px 56px; }
.services-cta-copy > span { color: #65d2ff; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.services-cta-copy h2 { max-width: 720px; margin-top: 12px; color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.18; }
.services-cta-copy > p { max-width: 690px; margin-top: 14px; color: rgba(224,240,249,0.7); font-size: 0.9rem; line-height: 1.7; }
.services-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.services-cta-actions a { display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: 10px; font-size: 0.78rem; font-weight: 700; text-decoration: none; }
.services-cta-primary { color: #0a4166; background: #fff; box-shadow: 0 10px 28px rgba(0,0,0,0.16); }
.services-cta-primary:hover { transform: translateY(-2px); color: #0877ae; }
.services-cta-secondary { border: 1px solid rgba(255,255,255,0.18); color: #e4f5fd; background: rgba(255,255,255,0.04); }
.services-cta-secondary:hover { border-color: rgba(255,255,255,0.34); color: #fff; background: rgba(255,255,255,0.08); }
.services-cta-trust { display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 42px; border-left: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.035); }
.services-cta-trust div { display: flex; align-items: center; gap: 14px; padding: 15px 17px; border: 1px solid rgba(255,255,255,0.09); border-radius: 13px; color: #edf9ff; font-size: 0.78rem; font-weight: 600; background: rgba(1,19,33,0.2); }
.services-cta-trust i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: #65d2ff; background: rgba(101,210,255,0.1); }

@media (max-width: 1100px) {
    .services-hero-inner { grid-template-columns: 1fr 380px; gap: 42px; }
    .services-modern-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .services-card-body { min-height: 205px; }
    .services-process-head { grid-template-columns: 1fr 1.5fr; }
    .services-process-head > p { grid-column: 2; }
}
@media (max-width: 820px) {
    .services-modern-hero { padding: 52px 0 64px; }
    .services-hero-inner { grid-template-columns: 1fr; }
    .services-hero-copy h1 { max-width: 700px; }
    .services-journey-panel { max-width: 620px; }
    .services-section-head { grid-template-columns: 1fr; gap: 18px; }
    .services-section-head > p { max-width: 600px; }
    .services-process-shell { padding: 42px 30px; }
    .services-process-head { grid-template-columns: 1fr; gap: 14px; }
    .services-process-head > p { grid-column: auto; max-width: 620px; }
    .services-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 0; }
    .services-process-grid article:nth-child(3) { padding-left: 0; border-left: 0; }
    .services-cta-shell { grid-template-columns: 1fr; }
    .services-cta-trust { border-top: 1px solid rgba(255,255,255,0.1); border-left: 0; }
}
@media (max-width: 600px) {
    .services-modern-hero { padding: 38px 0 52px; }
    .services-breadcrumb { margin-bottom: 22px; }
    .services-hero-copy h1 { font-size: 2.3rem; }
    .services-hero-copy > p { font-size: 0.91rem; }
    .services-hero-stats { gap: 12px; }
    .services-hero-stats div { padding-right: 0; }
    .services-hero-stats strong { font-size: 1.32rem; }
    .services-hero-stats span { font-size: 0.63rem; line-height: 1.35; }
    .services-journey-panel { padding: 19px; border-radius: 20px; }
    .services-journey-list > div { grid-template-columns: 24px 32px minmax(0, 1fr); padding: 11px; }
    .services-journey-list i { width: 31px; height: 31px; }
    .services-modern-catalog { padding: 66px 0 70px; }
    .services-section-head { margin-bottom: 30px; }
    .services-modern-grid { grid-template-columns: 1fr; gap: 16px; }
    .services-card-body { min-height: 0; }
    .services-process-section { padding-bottom: 70px; }
    .services-process-shell { padding: 34px 22px; border-radius: 22px; }
    .services-process-grid { grid-template-columns: 1fr; gap: 0; }
    .services-process-grid article,
    .services-process-grid article:nth-child(3) { padding: 24px 0; border-top: 1px solid #e6edf2; border-left: 0; }
    .services-process-grid article:first-child { padding-top: 0; border-top: 0; }
    .services-process-grid article:last-child { padding-bottom: 0; }
    .services-process-grid article > span { top: 27px; right: 0; }
    .services-process-grid article:first-child > span { top: 3px; }
    .services-project-cta { padding-bottom: 70px; }
    .services-cta-shell { border-radius: 22px; }
    .services-cta-copy { padding: 36px 25px; }
    .services-cta-trust { padding: 24px; }
    .services-cta-actions { flex-direction: column; align-items: stretch; }
    .services-cta-actions a { justify-content: center; }
}

/* ── Blog (index + liste) ── */
.blog, .blog-page { padding: 48px 0 64px; background: #f8fafc; }
.blog-page .page-header { margin-bottom: 0; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    padding-top: 40px;
}
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }
.blog-card-link { text-decoration: none; color: inherit; display: block; }
.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    padding: 14px;
    background: linear-gradient(145deg, #f8fbff 0%, #eaf4ff 100%);
}
.blog-image img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    transition: filter 0.3s ease;
}
.blog-card:hover .blog-image img { filter: saturate(1.06); }
.blog-image-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 2.5rem;
}
.blog-category {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(255,255,255,0.95);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}
.blog-card-body { padding: 20px; }
.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 12px;
}
.blog-meta i { margin-right: 4px; opacity: 0.8; }
.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-excerpt {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
}
.blog-card:hover .blog-card-cta { color: var(--primary); }
.blog-empty {
    text-align: center;
    padding: 64px 24px;
    background: #fff;
    border-radius: 16px;
    margin-top: 32px;
}
.blog-empty-icon { font-size: 3rem; color: #cbd5e1; margin-bottom: 16px; }
.blog-empty h2 { font-size: 1.25rem; margin-bottom: 8px; }
.blog-empty p { color: #64748b; margin-bottom: 24px; }
.blog-empty .btn { padding: 12px 28px; }

/* ── Blog Detay ── */
.blog-detail-section { padding: 48px 0 64px; background: #f8fafc; }
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}
.blog-article {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.blog-article-image {
    margin: 0;
    line-height: 0;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f8fbff 0%, #eaf4ff 100%);
}
.blog-article-image img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    object-position: center;
}
.blog-article-body { padding: 40px 36px; }
.blog-article-body .table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 22px 0 30px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
}
.blog-article-body table { width: 100%; border-collapse: collapse; min-width: 520px; }
.blog-article-body th,
.blog-article-body td { padding: 13px 16px; text-align: left; border-bottom: 1px solid #e5edf6; line-height: 1.55; }
.blog-article-body th { background: #eaf4ff; color: #0c4a6e; font-weight: 700; }
.blog-article-body tbody tr:last-child td { border-bottom: 0; }
.blog-article-body tbody tr:nth-child(even) { background: #f8fbff; }
.blog-article-body.prose {
    font-size: 1rem;
    line-height: 1.75;
    color: #334155;
}
.blog-article-body.prose h2 { font-size: 1.4rem; margin: 28px 0 12px; color: #0f172a; }
.blog-article-body.prose h3 { font-size: 1.15rem; margin: 24px 0 10px; color: #0f172a; }
.blog-article-body.prose p { margin-bottom: 16px; }
.blog-article-body.prose ul, .blog-article-body.prose ol {
    margin: 0 0 16px 24px;
    padding: 0;
}
.blog-article-body.prose li { margin-bottom: 6px; }
.blog-article-body.prose blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--accent);
    background: #f8fafc;
    font-style: italic;
    color: #475569;
}
.blog-article-body.prose img { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }
.blog-article-body.prose a { color: var(--accent); text-decoration: underline; }
.blog-article-body.prose a:hover { color: var(--primary); }
.blog-share {
    padding: 24px 36px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 16px;
}
.blog-share-label { font-size: 0.9rem; font-weight: 600; color: #64748b; }
.blog-share a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: #f1f5f9;
    border-radius: 10px;
    color: #64748b;
    transition: all 0.2s;
}
.blog-share a:hover { background: var(--accent); color: #fff; }
.blog-aside { display: flex; flex-direction: column; gap: 24px; }
.blog-aside-widget {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.blog-aside-widget h3 { font-size: 1rem; margin-bottom: 16px; color: #0f172a; }
.blog-aside-posts { display: flex; flex-direction: column; gap: 12px; }
.blog-aside-post {
    display: block;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}
.blog-aside-post:hover { background: #f1f5f9; }
.blog-aside-post-cat { font-size: 0.7rem; color: var(--accent); font-weight: 600; display: block; margin-bottom: 4px; }
.blog-aside-post-title { font-size: 0.9rem; font-weight: 600; color: #0f172a; display: block; line-height: 1.4; margin-bottom: 4px; }
.blog-aside-post-date { font-size: 0.78rem; color: #64748b; }
.blog-aside-cta {
    background: var(--gradient-primary);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    color: #fff;
}
.blog-aside-cta i { font-size: 2rem; margin-bottom: 12px; opacity: 0.9; }
.blog-aside-cta h3 { font-size: 1.1rem; margin-bottom: 8px; color: #fff; }
.blog-aside-cta p { font-size: 0.88rem; opacity: 0.9; margin-bottom: 16px; }
.blog-aside-cta .btn { background: #fff !important; color: var(--primary) !important; }
.page-header-blog .blog-detail-title { font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1.3; }
.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 16px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
}
.blog-detail-meta span { display: flex; align-items: center; gap: 6px; }
.blog-detail-meta i { opacity: 0.8; }

/* ── Page Header ── */
.page-header {
    background: var(--gradient-primary); padding: 56px 0 48px;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gradient-mesh); opacity: 0.3;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: white; font-size: 2.2rem; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.breadcrumb {
    display: flex; align-items: center; gap: 8px; list-style: none;
    font-size: 0.85rem; color: rgba(255,255,255,0.6); flex-wrap: wrap;
    margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 0.6rem; opacity: 0.6; }

/* ══════════════════════════════════════
   Ürünler Kataloğu (Yeni Tasarım)
   ══════════════════════════════════════ */
.catalog-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    align-items: start;
}

/* ── Sidebar ── */
.catalog-sidebar {
    position: sticky;
    top: 88px;
    padding-right: 24px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e2e8f0 transparent;
}
.catalog-sidebar::-webkit-scrollbar { width: 4px; }
.catalog-sidebar::-webkit-scrollbar-track { background: transparent; }
.catalog-sidebar::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }
.sidebar-block {
    margin-bottom: 20px;
}
.sidebar-search {
    display: flex;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.sidebar-search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(11,99,165,0.1);
}
.sidebar-search-input {
    flex: 1;
    border: none;
    padding: 11px 14px;
    font-size: 0.88rem;
    font-family: inherit;
    color: var(--dark);
    background: transparent;
}
.sidebar-search-input::placeholder { color: #94a3b8; }
.sidebar-search-input:focus { outline: none; }
.sidebar-search-btn {
    padding: 0 14px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
}
.sidebar-search-btn:hover { color: var(--accent); }
.sidebar-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 8px;
}
.sidebar-unit-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.unit-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1.5px solid transparent;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.18s;
    text-align: left;
    font-family: inherit;
}
.unit-tab:hover { background: #f1f5f9; color: var(--primary); }
.unit-tab.active {
    background: rgba(11,99,165,0.08);
    border-color: rgba(11,99,165,0.2);
    color: var(--accent);
    font-weight: 600;
}
.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.sidebar-list-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    padding: 7px 10px;
    background: none;
    border: none;
    border-radius: 7px;
    font-size: 0.83rem;
    color: #64748b;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-list-btn span { overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.sidebar-list-btn i { font-size: 0.78rem; opacity: 0.65; width: 13px; text-align: center; flex-shrink: 0; }
.sidebar-list-btn:hover { background: #f1f5f9; color: var(--dark); }
.sidebar-list-btn.active {
    background: rgba(11,99,165,0.08);
    color: var(--accent);
    font-weight: 600;
}
.sidebar-brands-list .sidebar-list-btn { padding-left: 10px; }
.sidebar-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ef4444;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s;
}
.sidebar-clear-btn:hover { background: #fef2f2; color: #dc2626; }

/* ── Hiyerarşik Kategori Ağacı ── */
.sidebar-tree-item { position: relative; }
.sidebar-tree-row {
    display: flex;
    align-items: center;
    gap: 2px;
}
.sidebar-tree-row .sidebar-list-btn {
    flex: 1;
    min-width: 0;
}
.sidebar-expand {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 7px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.18s;
    padding: 0;
}
.sidebar-expand i {
    font-size: 0.7rem;
    transition: transform 0.22s ease;
}
.sidebar-expand.open i { transform: rotate(90deg); }
.sidebar-expand:hover { background: #f1f5f9; color: var(--dark); }
.sidebar-children {
    display: none;
    list-style: none;
    margin: 2px 0 2px 14px;
    padding: 0 0 0 8px;
    border-left: 2px solid #f1f5f9;
}
.sidebar-children.open { display: block; }
.sidebar-child-btn {
    font-size: 0.8rem !important;
    padding: 6px 8px !important;
    color: #475569 !important;
}
.sidebar-child-btn.active {
    background: rgba(11,99,165,0.08) !important;
    color: var(--accent) !important;
    font-weight: 600 !important;
}
.sidebar-child-btn i { font-size: 0.72rem !important; }

/* ── Kategori Hızlı Erişim Pilleri ── */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
}
.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.18s ease;
}
.category-pill i { font-size: 0.8rem; color: #94a3b8; }
.category-pill:hover {
    background: rgba(11,99,165,0.06);
    border-color: rgba(11,99,165,0.2);
    color: var(--accent);
}
.category-pill:hover i { color: var(--accent); }
.cpill-count {
    font-size: 0.72rem;
    font-weight: 700;
    background: #e2e8f0;
    color: #64748b;
    padding: 2px 7px;
    border-radius: 99px;
}
.category-pill:hover .cpill-count {
    background: rgba(11,99,165,0.1);
    color: var(--accent);
}

/* ── Ürün Kartı Kategori Etiketi ── */
.pcard-cat-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 0.63rem;
    font-weight: 600;
    color: #64748b;
    background: rgba(255,255,255,0.92);
    border: 1px solid #e2e8f0;
    padding: 3px 8px;
    border-radius: 5px;
    letter-spacing: 0.02em;
}

/* ── Catalog Main ── */
.catalog-main { min-width: 0; }
.catalog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}
.catalog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-bottom: 6px;
}
.catalog-breadcrumb a { color: #94a3b8; text-decoration: none; }
.catalog-breadcrumb a:hover { color: var(--accent); }
.catalog-breadcrumb span:last-child { color: var(--dark); font-weight: 500; }
.catalog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.catalog-count {
    font-size: 0.85rem;
    color: #94a3b8;
    white-space: nowrap;
}
.catalog-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    background: rgba(11,99,165,0.08);
    border: 1px solid rgba(11,99,165,0.15);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent);
}
.filter-tag-remove { color: #94a3b8; text-decoration: none; line-height: 1; }
.filter-tag-remove:hover { color: #ef4444; }

/* ── Product Cards ── */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.pcard {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.pcard:hover {
    border-color: rgba(11,99,165,0.15);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.pcard-img {
    position: relative;
    height: 190px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pcard-img img {
    max-width: 82%;
    max-height: 82%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.06); }
.pcard-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    position: relative;
    width: 100%;
    height: 100%;
    color: #24435f;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 18%, rgba(14, 165, 233, 0.15), transparent 30%),
        linear-gradient(145deg, rgba(255,255,255,0.7), rgba(228, 240, 249, 0.52));
}
.pcard-placeholder i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 9px 24px rgba(0, 62, 105, 0.1);
    font-size: 1.25rem;
    color: #0877ae;
}
.pcard-placeholder strong { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em; }
.pcard-placeholder span { font-size: 0.58rem; font-weight: 700; color: #718598; letter-spacing: 0.12em; text-transform: uppercase; }
.pcard-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.03em;
}
.pcard-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px;
}
.pcard-brand {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 7px;
}
.pcard-name {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pcard-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}
.pcard-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}
.pcard-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.2s;
}
.pcard:hover .pcard-cta { gap: 8px; }

/* ── Pagination ── */
.catalog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 48px;
}
.page-dots { color: #94a3b8; padding: 0 4px; font-size: 0.9rem; }

/* ── Mobile Filter Toggle ── */
.mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
    padding: 11px 18px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s;
}
.mobile-filter-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* ── Empty ── */
.catalog-empty {
    text-align: center;
    padding: 80px 24px;
    border: 1.5px dashed #e2e8f0;
    border-radius: 16px;
    margin-top: 8px;
}
.catalog-empty i {
    font-size: 3rem;
    color: #cbd5e1;
    display: block;
    margin-bottom: 20px;
}
.catalog-empty h2 { font-size: 1.2rem; color: var(--dark); margin-bottom: 10px; }
.catalog-empty p { color: #64748b; margin-bottom: 24px; font-size: 0.95rem; }

/* Eski class'lardan kalma uyumluluk */
.products-filters, .products-filter-group, .products-filter-group select,
.filter-search-wrap, .filter-search-input, .filter-search-btn,
.products-filter-clear { /* artık kullanılmıyor */ }
.filter-group { display: flex; align-items: center; gap: 8px; }
.filter-group label { font-weight: 600; font-size: 0.85rem; color: var(--dark); white-space: nowrap; }
.filter-group select, .filter-group input {
    padding: 10px 16px; border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm); font-family: inherit; font-size: 0.88rem;
    background: var(--white); color: var(--dark);
    transition: all 0.2s; cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    padding-right: 36px;
}
.filter-group select:hover, .filter-group input:hover { border-color: var(--accent); }
.filter-group select:focus, .filter-group input:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* ── Pagination ── */
.pagination {
    display: flex; justify-content: center; gap: 8px; margin: 40px 0 20px;
    flex-wrap: wrap;
}
.page-link {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 44px; height: 44px; padding: 0 16px;
    border-radius: 14px; border: 1px solid rgba(11,42,74,0.1);
    background: #fff; color: var(--dark); font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: all 0.25s var(--ease-smooth);
}
.page-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(11,99,165,0.06);
    transform: translateY(-2px);
}
.page-link.active {
    background: var(--gradient-accent);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-accent);
}
.page-link.active:hover { color: #fff; transform: none; }
.page-link.page-prev:hover, .page-link.page-next:hover { border-color: var(--accent); color: var(--accent); }
.page-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── Empty State ── */
.empty-state {
    text-align: center; padding: 64px 24px;
    background: var(--white); border-radius: var(--radius-xl); border: 1px solid var(--light-gray);
}
.empty-state i { font-size: 3.5rem; color: var(--light-gray); margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 1.3rem; margin-bottom: 8px; }
.empty-state p { color: var(--gray); margin-bottom: 24px; }

/* ── CTA ── */
/* ── CTA ── */
.cta {
    background: var(--gradient-primary);
    padding: 56px 20px 64px;
    text-align: center;
}
.cta .container { max-width: 600px; margin: 0 auto; }
.cta-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.95);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 16px;
}
.cta-title {
    color: #fff;
    font-size: clamp(1.45rem, 3.5vw, 1.9rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}
.cta-desc {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}
.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}
.cta-btn-primary { background: #fff; color: var(--primary); }
.cta-btn-primary:hover { background: #f8fafc; }
.cta-btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.cta-btn-ghost:hover { background: rgba(255,255,255,0.1); }
.cta-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.cta-contact-link {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.cta-contact-link:hover { color: #fff; }
.cta-contact-link.cta-wa { color: #bbf7d0; }

/* ── Footer ── */
.site-footer {
    background: linear-gradient(160deg, #020617 0%, #0a2540 50%, #0a3d6b 100%);
    color: rgba(255,255,255,0.75); padding: 56px 0 20px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px 32px; margin-bottom: 36px;
}
.footer-grid.has-categories { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.footer-about { min-width: 0; }
.footer-logo {
    display: inline-flex; align-items: center;
    text-decoration: none; color: inherit;
    padding: 9px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 28px rgba(0,0,0,.16);
}
.footer-logo img { display:block; width:230px; max-width:100%; height:auto; }
.footer-desc {
    color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.75;
    margin-top: 16px; max-width: 280px;
}
.footer-social {
    display: flex; gap: 10px; margin-top: 20px;
}
.footer-social a {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 10px; background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7); transition: all 0.25s; font-size: 0.9rem;
}
.footer-social a:hover { background: var(--accent); color: white; transform: translateY(-2px); }
.footer-social a:focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 2px; }
.footer-col h4 {
    color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(255,255,255,0.6); font-size: 0.9rem; text-decoration: none;
    transition: color 0.2s, padding 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
}
.footer-col a:hover { color: white; }
.footer-col a i { font-size: 0.8rem; opacity: 0.8; flex-shrink: 0; width: 16px; }
.footer-contact a { display: inline-flex; }
.footer-bottom {
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.5; }

/* ── WhatsApp & Back to Top ── */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
    transition: all 0.3s var(--ease-spring);
    animation: whatsapp-pulse 2s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0.1); }
}
.back-to-top {
    position: fixed; bottom: 28px; right: 96px; z-index: 999;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent); color: white; border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s var(--ease-spring);
    opacity: 0; visibility: hidden; transform: translateY(20px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

/* ── Animations ── */
.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.06s; }
.fade-in-delay-2 { transition-delay: 0.12s; }
.fade-in-delay-3 { transition-delay: 0.18s; }

/* ── Contact Page (Daikin Teklif Formu style) ── */
.contact-wrapper {
    display: grid; grid-template-columns: 380px 1fr;
    gap: 48px; align-items: start; padding: 48px 0;
}
.contact-info-card {
    background: var(--white); border-radius: var(--radius-xl); padding: 32px;
    border: 1px solid var(--light-gray); position: sticky; top: 100px;
}
.contact-info-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.contact-info-card > p { color: var(--gray); font-size: 0.9rem; margin-bottom: 24px; }
.contact-item {
    display: flex; gap: 16px; align-items: flex-start; padding: 16px 0;
    border-bottom: 1px solid var(--light-gray);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
    width: 44px; height: 44px; background: linear-gradient(135deg, rgba(11,99,165,0.1), rgba(44,127,184,0.06));
    border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.1rem; flex-shrink: 0;
}
.contact-item h4 { font-size: 0.85rem; color: var(--gray); font-weight: 600; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--dark); text-decoration: none; }
.contact-item a:hover { color: var(--accent); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 0; }
.contact-form {
    background: var(--white); border-radius: var(--radius-xl); padding: 40px;
    border: 1px solid var(--light-gray); box-shadow: var(--shadow-sm);
}
.contact-form h2, .contact-form h3 { margin-bottom: 24px; font-size: 1.35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--dark); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 18px; border: 1px solid var(--light-gray);
    border-radius: var(--radius-md); font-family: inherit; font-size: 0.95rem;
    transition: all 0.2s; background: var(--white);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #94a3b8; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(11,99,165,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit {
    width: 100%; padding: 16px 24px; background: var(--gradient-accent); color: white;
    border: none; border-radius: var(--radius-md); font-weight: 600; font-size: 1rem;
    cursor: pointer; transition: all 0.3s var(--ease-out);
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-accent); }

/* Alerts */
.alert { padding: 16px 20px; border-radius: var(--radius-md); margin-bottom: 24px; display: flex; align-items: flex-start; gap: 12px; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-success i { color: #10b981; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-error i { color: #ef4444; }

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }

/* ── Modal (Sizi Arayalım - Daikin style) ── */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,31,61,0.6);
    backdrop-filter: blur(4px); z-index: 9998;
    display: flex; align-items: center; justify-content: center;
    padding: 24px; opacity: 0; visibility: hidden;
    transition: opacity 0.3s var(--ease-smooth), visibility 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
    background: var(--white); border-radius: var(--radius-xl);
    max-width: 460px; width: 100%; max-height: 90vh; overflow-y: auto;
    box-shadow: var(--shadow-2xl); transform: scale(0.95) translateY(20px);
    transition: transform 0.35s var(--ease-out);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-header {
    padding: 24px 28px; border-bottom: 1px solid var(--light-gray);
    display: flex; justify-content: space-between; align-items: center;
}
.modal-header h3 { font-size: 1.2rem; margin: 0; }
.modal-close {
    width: 36px; height: 36px; border: none; background: var(--light);
    border-radius: var(--radius-sm); cursor: pointer; color: var(--gray);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.modal-close:hover { background: var(--light-gray); color: var(--dark); }
.modal-body { padding: 28px; }
.modal-note { font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; }

/* ── Responsive ── */
@media (min-width: 901px) and (max-width: 1180px) {
    .hero .container { grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr); gap: 34px; }
    .hero-content h1 { font-size: clamp(2.55rem, 4.5vw, 3.25rem); }
    .hero-photo-card { height: 400px; }
    .hero-category-links { grid-template-columns: 1fr; }
    .hero-category-links a:nth-child(n+2) { display: none; }
}

@media (min-width: 901px) and (max-height: 800px) {
    .hero { min-height: 520px; padding-top: 38px; padding-bottom: 68px; }
    .hero-photo-card { height: 380px; }
    .hero-content h1 { font-size: clamp(2.4rem, 3.7vw, 3.2rem); margin-bottom: 13px; }
    .hero-content .hero-lead { margin-bottom: 14px; line-height: 1.5; }
    .hero-proof-list { margin-bottom: 17px; }
    .hero-stats { margin-top: 20px; padding-top: 14px; }
}

@media (max-width: 1024px) {
    .hero-content { max-width: 760px; }
    .feature-strip .container { grid-template-columns: repeat(2, 1fr); }
    .feature-strip-item:nth-child(2) { border-right: 0; }
    .feature-strip-item:nth-child(-n+2) { border-bottom: 1px solid #e7eef5; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .contact-grid, .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info-card { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
    .footer-about { grid-column: 1 / -1; }
    .footer-desc { max-width: none; }
}

@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; gap: 44px; }
    .hero { min-height: auto; padding: 64px 0 98px; }
    .hero-visual { order: 0; }
    .hero-photo-card { height: 480px; }
    .hero-stats { max-width: 620px; }
}

@media (max-width: 1024px) {
    .catalog-wrap { grid-template-columns: 190px 1fr; padding: 32px 16px 64px; }
    .catalog-sidebar { padding-right: 16px; }
    .catalog-grid { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
    .pd-info { padding: 32px 28px; }
    .pd-related-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero { padding: 58px 0 84px; }
    .hero .container { gap: 34px; }
    .hero-content h1 { font-size: clamp(2.35rem, 9vw, 3.35rem); }
    .hero-content .hero-lead { font-size: 0.96rem; }
    .hero-photo-card { height: 420px; border-radius: 22px; }
    .hero-photo-label { top: 24px; left: 24px; }
    .hero-category-links { left: 24px; right: 24px; bottom: 24px; }
    .cta { padding: 48px 16px 56px; }
    .form-row { grid-template-columns: 1fr; }
    .feature-strip { padding-bottom: 22px; }
    .feature-strip .container { margin-top: -30px; }
    header.header-pill .hamburger { display: flex; align-items: center; justify-content: center; }
    .nav-pill-wrap { display: none !important; }

    /* ══ Mobil Menü (mm) ─ Modern ══ */
    .mm {
        display: block !important;
        position: fixed;
        inset: 0;
        z-index: 9999;
        visibility: hidden;
        transition: visibility 0.35s;
    }
    .mm.open { visibility: visible; }
    .mm-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mm.open .mm-backdrop { opacity: 1; }
    .mm-panel {
        position: absolute;
        top: 0; right: 0; bottom: 0;
        width: 300px;
        max-width: 88vw;
        background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-shadow: -8px 0 40px rgba(0, 51, 102, 0.08);
        border-left: 1px solid rgba(0, 115, 183, 0.06);
    }
    .mm.open .mm-panel { transform: translateX(0); }
    .mm-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24px 20px;
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        flex-shrink: 0;
    }
    .mm-logo {
        font-size: 1.3rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #0f172a;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0;
    }
    .mm-logo img { display:block; width:178px; max-width:100%; height:auto; }
    .mm-close {
        width: 44px;
        height: 44px;
        border: none;
        background: #f8fafc;
        border-radius: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #64748b;
        font-size: 1rem;
        transition: all 0.2s ease;
    }
    .mm-close:hover {
        background: #f1f5f9;
        color: #0f172a;
        transform: scale(0.96);
    }
    .mm-nav {
        flex: 1;
        overflow-y: auto;
        padding: 20px 16px 24px;
        -webkit-overflow-scrolling: touch;
    }
    .mm-link {
        display: block;
        padding: 15px 18px;
        font-size: 1rem;
        font-weight: 500;
        color: #334155;
        text-decoration: none;
        border-radius: 12px;
        margin-bottom: 4px;
        transition: all 0.2s ease;
    }
    .mm-link:hover {
        background: rgba(0, 115, 183, 0.06);
        color: #0b63a5;
        padding-left: 22px;
    }
    .mm-group {
        margin-bottom: 6px;
    }
    .mm-trigger {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 18px;
        font-size: 1rem;
        font-weight: 500;
        color: #334155;
        background: none;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        text-align: left;
        font-family: inherit;
        transition: all 0.2s ease;
    }
    .mm-trigger:hover {
        background: rgba(0, 115, 183, 0.06);
        color: #0b63a5;
    }
    .mm-trigger::after {
        content: '';
        width: 6px;
        height: 6px;
        border-right: 2px solid #94a3b8;
        border-bottom: 2px solid #94a3b8;
        transform: rotate(45deg);
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        margin-right: 4px;
    }
    .mm-group.open .mm-trigger::after { transform: rotate(-135deg); }
    .mm-drop {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-left: 12px;
        margin-left: 14px;
        border-left: 2px solid rgba(0, 115, 183, 0.12);
    }
    .mm-group.open .mm-drop { grid-template-rows: 1fr; }
    .mm-drop-inner {
        overflow: hidden;
        padding: 6px 0 10px 4px;
    }
    .mm-drop a {
        display: block;
        padding: 11px 16px;
        font-size: 0.9rem;
        font-weight: 500;
        color: #64748b;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.2s ease;
    }
    .mm-drop a:hover {
        background: rgba(0, 115, 183, 0.06);
        color: #0b63a5;
    }
    .mm-drop .mm-sub {
        padding-left: 20px;
        font-size: 0.88rem;
        font-weight: 400;
        color: #94a3b8;
    }
    .mm-langs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    .mm-lang {
        padding: 10px 16px;
        font-size: 0.88rem;
        font-weight: 500;
        color: #64748b;
        background: #f8fafc;
        border: 1px solid rgba(0, 0, 0, 0.04);
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    .mm-lang:hover {
        background: rgba(0, 115, 183, 0.08);
        color: #0b63a5;
        border-color: rgba(0, 115, 183, 0.15);
    }
    .mm-foot {
        padding: 20px;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
        flex-shrink: 0;
    }
    .mm-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        padding: 16px 24px;
        background: linear-gradient(135deg, #0b2a4a 0%, #0b63a5 100%);
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        border-radius: 14px;
        margin-bottom: 12px;
        box-shadow: 0 4px 20px rgba(0, 115, 183, 0.35);
        transition: all 0.25s ease;
    }
    .mm-cta:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0, 115, 183, 0.4);
    }
    .mm-mail {
        display: block;
        font-size: 0.86rem;
        font-weight: 500;
        color: #64748b;
        text-decoration: none;
        text-align: center;
        transition: color 0.2s;
    }
    .mm-mail:hover { color: #0b63a5; }

    .hero-stats { gap: 16px; }
    .hero-stat h3 { font-size: 1.6rem; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .product-image { height: 180px; }
    .blog-grid { grid-template-columns: 1fr; gap: 20px; padding-top: 28px; }
    .blog-detail-layout { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-contact { order: -1; }
    .footer-bottom p { font-size: 0.82rem; }
    .catalog-wrap { grid-template-columns: 1fr; padding: 24px 16px 60px; gap: 0; }
    .catalog-sidebar {
        position: fixed; top: 0; left: -100%; width: 280px; height: 100vh;
        background: #fff; z-index: 1000; padding: 32px 24px; overflow-y: auto;
        box-shadow: 4px 0 24px rgba(0,0,0,0.12); transition: left 0.3s ease;
    }
    .catalog-sidebar.sidebar-open { left: 0; }
    .mobile-filter-toggle { display: flex; }
    .catalog-header { flex-direction: column; align-items: flex-start; gap: 6px; }
    .catalog-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
    .pd-grid { grid-template-columns: 1fr; }
    .pd-visual { border-right: none; border-bottom: 1px solid #f1f5f9; }
    .pd-img-box { min-height: 280px; }
    .pd-info { padding: 28px 24px; }
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-specs-grid { grid-template-columns: 1fr; }
    .pd-spec-key { border-right: none; border-bottom: none; }
    .product-detail-layout { grid-template-columns: 1fr; gap: 40px; }
    .product-main-image { position: static; }
    .product-img-wrap { max-height: 320px; aspect-ratio: 4/3; }
    .product-related-grid { grid-template-columns: 1fr 1fr; }
    .brands-detail .brands-grid { grid-template-columns: 1fr 1fr; }
    .top-info { gap: 12px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-proof-list { display: grid; grid-template-columns: 1fr; gap: 9px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .hero-photo-card { height: 330px; }
    .hero-photo-label { top: 20px; left: 20px; padding: 10px 12px; }
    .hero-photo-label-icon { width: 34px; height: 34px; }
    .hero-category-links { left: 20px; right: 20px; bottom: 20px; grid-template-columns: 1fr; }
    .hero-category-links a:nth-child(n+2) { display: none; }
    .feature-strip .container { grid-template-columns: 1fr; border-radius: 14px; }
    .feature-strip-item { border-right: 0; border-bottom: 1px solid #e7eef5; }
    .feature-strip-item:last-child { border-bottom: 0; }
    .catalog-grid { grid-template-columns: 1fr 1fr; }
    .pd-related-grid { grid-template-columns: 1fr 1fr; }
    .pd-btn-secondary-row { flex-direction: column; }
    .products-grid { grid-template-columns: 1fr; }
    .product-related-grid { grid-template-columns: 1fr; }
    .brands-detail .brands-grid { grid-template-columns: 1fr; }
    .top-bar { display: none; }
    .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
    .back-to-top { bottom: 16px; right: 76px; width: 40px; height: 40px; }
}

/* ── Print ── */
@media print {
    .whatsapp-float, .back-to-top, .hamburger, .top-bar, .nav-cta, .hero-grid-pattern { display: none !important; }
    header { position: static; }
    .hero { min-height: auto; padding: 40px 0; }
    section { padding: 40px 0; }
}
/* Cookie consent & marketing preferences */
.cookie-consent[hidden]{display:none!important}
.cookie-consent{position:fixed;z-index:9999;left:clamp(14px,3vw,36px);right:clamp(14px,3vw,36px);bottom:20px;display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:18px;max-width:1120px;margin:0 auto;padding:18px 20px;border:1px solid rgba(148,163,184,.32);border-radius:18px;background:rgba(7,29,53,.97);box-shadow:0 24px 70px rgba(2,12,27,.34);color:#fff;backdrop-filter:blur(16px)}
.cookie-consent-icon{width:46px;height:46px;border-radius:14px;display:grid;place-items:center;background:rgba(14,165,233,.17);color:#7dd3fc;font-size:1.1rem}.cookie-consent-copy strong{display:block;font-size:.95rem;margin-bottom:5px}.cookie-consent-copy p{margin:0;color:#cbd5e1;font-size:.79rem;line-height:1.55}.cookie-consent-actions{display:flex;gap:9px;align-items:center}.cookie-btn{border:0;border-radius:10px;padding:11px 14px;white-space:nowrap;font:inherit;font-size:.77rem;font-weight:700;cursor:pointer}.cookie-btn-primary{background:#0ea5e9;color:#fff}.cookie-btn-secondary{background:rgba(255,255,255,.1);color:#e2e8f0;border:1px solid rgba(255,255,255,.14)}.cookie-btn:focus-visible,.cookie-settings-link:focus-visible{outline:3px solid #7dd3fc;outline-offset:3px}.cookie-settings-link{border:0;background:none;color:inherit;opacity:.8;cursor:pointer;font:inherit;font-size:.75rem;display:inline-flex;gap:7px;align-items:center}.cookie-settings-link:hover{opacity:1}
@media(max-width:760px){.cookie-consent{grid-template-columns:1fr;gap:12px;bottom:12px;padding:16px}.cookie-consent-icon{display:none}.cookie-consent-actions{display:grid;grid-template-columns:1fr 1fr}.cookie-btn{white-space:normal}.footer-bottom{gap:10px}}
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
    font-family: "Noto Kufi Arabic", "Inter", sans-serif;
}
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select { text-align: right; }
html[dir="rtl"] .nav-links,
html[dir="rtl"] .top-info,
html[dir="rtl"] .top-social,
html[dir="rtl"] .breadcrumb,
html[dir="rtl"] .blog-meta,
html[dir="rtl"] .product-meta { direction: rtl; }
html[dir="rtl"] .dropdown-menu { left: auto; right: 0; text-align: right; }
html[dir="rtl"] .lang-dropdown { left: auto; right: 0; }
html[dir="rtl"] .fa-arrow-right,
html[dir="rtl"] .fa-chevron-right,
html[dir="rtl"] .fa-arrow-left,
html[dir="rtl"] .fa-chevron-left { transform: scaleX(-1); }
html[dir="rtl"] .blog-article-body th,
html[dir="rtl"] .blog-article-body td { text-align: right; }
html[dir="rtl"] .mm-panel { left: 0; right: auto; }
