﻿/* Elexpro — birleşik stiller (index + iç sayfalar) */
@import url('pages-extra.css');
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green: #115826; --green-light: #1d7a38; --green-dark: #0a3b1a; --green-muted: #e8f2eb;
    --black: #0d0d0d; --gold: #EBBA17; --gold-light: #f5d154; --gold-muted: #fdf6d8;
    --white: #ffffff; --off-white: #fafaf8; --gray-100: #f2f3f0; --gray-200: #e4e6e1;
    --gray-300: #d0d2cc; --gray-400: #9ba09a; --gray-500: #7a7f78; --gray-600: #5c6259; --gray-800: #1e221c;
    --r-sm: 10px; --r-md: 18px; --r-lg: 28px; --r-xl: 40px; --r-full: 9999px;
    --sh-sm: 0 2px 12px rgba(0,0,0,0.06); --sh-md: 0 8px 32px rgba(0,0,0,0.1);
    --sh-lg: 0 20px 60px rgba(0,0,0,0.14); --sh-g: 0 12px 40px rgba(17,88,38,0.25);
    --f: 'Poppins', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--f); background: var(--off-white); color: var(--gray-800); overflow-x: hidden; }
  ::-webkit-scrollbar { width: 5px; } ::-webkit-scrollbar-track { background: var(--gray-100); }
  ::-webkit-scrollbar-thumb { background: var(--green); border-radius: 10px; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: env(safe-area-inset-top, 0) 40px 0;
    transition: all .4s cubic-bezier(.4,0,.2,1);
  }
  /* Anasayfa kaydırınca beyaz header (tüm ekranlar) */
  body.home.elex-home-scrolled #nav {
    background: rgba(255,255,255,.96) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 1px 0 rgba(0,0,0,.07), var(--sh-sm) !important;
  }
  nav.top,
  nav.home-nav {
    background: none;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  nav.scrolled { background: rgba(255,255,255,.96); backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(0,0,0,.07),var(--sh-sm); }
  body:not(.home) nav,
  body:not(.home) nav:not(.top) {
    background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,.07), var(--sh-sm);
  }
  body:not(.home) nav .nav-links > a,
  nav:not(.top) .nav-links > a { color: var(--gray-600); }
  body:not(.home) nav .nav-links > a:hover,
  body:not(.home) nav .nav-links > a.active,
  nav:not(.top) .nav-links > a:hover,
  nav:not(.top) .nav-links > a.active { background: var(--green-muted); color: var(--green); }
  body:not(.home) nav .btn-ghost,
  nav:not(.top) .btn-ghost { color: var(--green); border-color: var(--green); }
  body:not(.home) nav .btn-ghost:hover,
  nav:not(.top) .btn-ghost:hover { background: var(--green-muted); }
  body:not(.home) nav .nav-logo-img,
  nav:not(.top) .nav-logo-img { filter: none; }
  body:not(.home) nav .hamburger span,
  nav:not(.top) .hamburger span { background: var(--green-dark); }
  .nav-inner { max-width: 1340px; margin: 0 auto; display: flex; align-items: center; justify-content: flex-start; height: 80px; gap: 16px; }
  .nav-start { display: flex; align-items: center; gap: 8px 28px; flex-wrap: wrap; min-width: 0; }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo-mark { width: 42px; height: 42px; background: var(--green); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-g); }
  .nav-logo-mark svg { width: 22px; height: 22px; }
  .nav-logo-text { font-family: var(--f); font-size: 21px; font-weight: 700; color: var(--white); transition: color .4s; }
  nav.scrolled .nav-logo-text { color: var(--green-dark); }
  .nav-logo-text em { color: var(--gold); font-style: normal; }
  .nav-links { display: flex; align-items: center; gap: 2px; }
  .nav-links > a { font-size: 14px; font-weight: 500; padding: 8px 15px; color: rgba(255,255,255,.85); text-decoration: none; border-radius: var(--r-full); transition: all .25s; }
  nav.scrolled .nav-links > a { color: var(--gray-600); }
  .nav-links > a:hover { background: rgba(255,255,255,.14); color: var(--white); }
  nav.scrolled .nav-links > a:hover { background: var(--green-muted); color: var(--green); }
  .nav-dropdown-menu a {
    color: var(--gray-800);
    border-radius: var(--r-sm);
  }
  .nav-dropdown-menu a:hover {
    background: var(--green-muted);
    color: var(--green);
  }
  .nav-ctas { display: flex; gap: 10px; align-items: center; margin-left: auto; }
  .btn-ghost { font-size: 13px; font-weight: 600; padding: 10px 22px; color: rgba(255,255,255,.9); border: 1.5px solid rgba(255,255,255,.3); border-radius: var(--r-full); text-decoration: none; transition: all .25s; }
  .btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); }
  nav.scrolled .btn-ghost { color: var(--green); border-color: var(--green); }
  nav.scrolled .btn-ghost:hover { background: var(--green-muted); }
  .btn-primary { font-size: 13px; font-weight: 700; padding: 10px 24px; background: var(--gold); color: var(--gray-800); border-radius: var(--r-full); text-decoration: none; transition: all .25s; box-shadow: 0 4px 16px rgba(235,186,23,.35); }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* HERO */
  .hero { position: relative; height: 100vh; min-height: 700px; overflow: hidden; display: flex; align-items: center; }

  /* Anasayfa: şeffaf header arkasında body rengi görünmesin — hero üstü nav altına uzansın */
  body.home {
    background-color: var(--green-dark);
  }
  body.home .hero {
    margin-top: -80px;
    padding-top: 80px;
  }
  body.admin-bar.home .hero {
    margin-top: calc(-80px - 32px);
    padding-top: calc(80px + 32px);
  }
  .slider { position: absolute; inset: 0; z-index: 0; }
  .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s cubic-bezier(.4,0,.2,1); background-size: cover; background-position: center; }
  .slide.active { opacity: 1; }
  .slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg,rgba(10,59,26,.84) 0%,rgba(10,59,26,.58) 50%,rgba(0,0,0,.32) 100%); }
  .slide-1 { background-image: url('https://images.unsplash.com/photo-1581092160607-ee22731c9354?w=1920&q=80&auto=format&fit=crop'); }
  .slide-2 { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80&auto=format&fit=crop'); }
  .slide-3 { background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?w=1920&q=80&auto=format&fit=crop'); }
  .hero-content { position: relative; z-index: 10; max-width: 1340px; margin: 0 auto; padding: 0 40px; width: 100%; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(235,186,23,.16); border: 1px solid rgba(235,186,23,.35); border-radius: var(--r-full); padding: 8px 20px; font-size: 12px; font-weight: 600; color: var(--gold-light); letter-spacing: .8px; text-transform: uppercase; margin-bottom: 28px; }
  .hero-eyebrow-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: blink 2s infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
  .hero h1 { font-family: var(--f); font-weight: 800; font-size: clamp(40px,6vw,80px); line-height: 1.1; color: var(--white); margin-bottom: 22px; max-width: 760px; }
  .hero h1 .accent { color: var(--gold-light); font-style: italic; font-weight: 700; }
  .hero-sub { font-size: clamp(14px,1.5vw,17px); font-weight: 300; line-height: 1.85; color: rgba(255,255,255,.7); max-width: 520px; margin-bottom: 44px; }
  .hero-sub strong { color: rgba(255,255,255,.95); font-weight: 600; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .btn-hero-p { font-size: 14px; font-weight: 700; padding: 16px 36px; background: var(--gold); color: var(--gray-800); border-radius: var(--r-full); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all .3s; box-shadow: 0 8px 28px rgba(235,186,23,.45); }
  .btn-hero-p:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-hero-s { font-size: 14px; font-weight: 500; padding: 15px 36px; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); border-radius: var(--r-full); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all .3s; backdrop-filter: blur(4px); background: rgba(255,255,255,.08); }
  .btn-hero-s:hover { border-color: var(--white); background: rgba(255,255,255,.16); }
  .slider-dots { position: absolute; bottom: 118px; left: 40px; z-index: 20; display: flex; gap: 10px; align-items: center; }
  .dot { width: 8px; height: 8px; border-radius: var(--r-full); background: rgba(255,255,255,.35); cursor: pointer; transition: all .4s; border: none; padding: 0; }
  .dot.active { width: 28px; background: var(--gold); }
  .sl-arr { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .25s; }
  .sl-arr:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.6); }
  .sl-arr.prev { left: 36px; } .sl-arr.next { right: 36px; }
  .sl-arr svg { width: 20px; height: 20px; stroke: white; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .stats-bar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 15; background: rgba(255,255,255,.08); backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,.12); }
  .stats-inner { max-width: 1340px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(4,1fr); }
  .stat { padding: 22px 28px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
  .stat:last-child { border-right: none; }
  .stat-num { font-family: var(--f); font-size: 34px; font-weight: 800; color: var(--gold-light); line-height: 1; }
  .stat-label { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.55); margin-top: 5px; }

  /* SHARED */
  .container { max-width: 1340px; margin: 0 auto; padding: 0 40px; }
  .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
  .eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--green); border-radius: 2px; }
  .sec-title { font-family: var(--f); font-weight: 700; font-size: clamp(26px,3.5vw,48px); line-height: 1.18; color: var(--gray-800); }
  .sec-title.light { color: var(--white); }
  .sec-sub { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--gray-600); max-width: 520px; }
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

  /* PILLARS */
  .pillars { padding: 100px 0; background: var(--white); }
  .pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
  .pillar-card { background: var(--off-white); border-radius: var(--r-lg); padding: 48px 38px; position: relative; overflow: hidden; border: 1.5px solid var(--gray-200); transition: all .4s cubic-bezier(.4,0,.2,1); }
  .pillar-card:hover { border-color: var(--green); transform: translateY(-6px); box-shadow: var(--sh-lg),var(--sh-g); background: var(--white); }
  .p-bg-num { position: absolute; top: -10px; right: 18px; font-family: var(--f); font-size: 108px; font-weight: 900; color: var(--gray-100); line-height: 1; user-select: none; transition: color .4s; }
  .pillar-card:hover .p-bg-num { color: var(--green-muted); }
  .p-icon { width: 58px; height: 58px; border-radius: var(--r-md); background: var(--green-muted); border: 1.5px solid rgba(17,88,38,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: all .4s; }
  .pillar-card:hover .p-icon { background: var(--green); box-shadow: var(--sh-g); }
  .p-icon svg { width: 26px; height: 26px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .4s; }
  .pillar-card:hover .p-icon svg { stroke: var(--white); }
  .p-name { font-size: 20px; font-weight: 700; color: var(--gray-800); margin-bottom: 12px; }
  .p-desc { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--gray-600); }

  /* ABOUT */
  .about { padding: 120px 0; background: var(--off-white); }
  .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
  .about-imgs { position: relative; height: 540px; }
  .a-main { position: absolute; left: 0; top: 0; right: 68px; bottom: 68px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); background: url('https://images.unsplash.com/photo-1581092795360-fd1ca04f0952?w=800&q=80&auto=format&fit=crop') center/cover; }
  .a-sec { position: absolute; right: 0; bottom: 0; width: 205px; height: 205px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); background: url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=400&q=80&auto=format&fit=crop') center/cover; border: 4px solid var(--white); }
  .a-badge { position: absolute; top: 26px; right: 54px; background: var(--green); border-radius: var(--r-md); padding: 16px 20px; text-align: center; box-shadow: var(--sh-g); z-index: 2; }
  .a-badge-num { font-size: 34px; font-weight: 800; color: var(--white); line-height: 1; }
  .a-badge-label { font-size: 10px; font-weight: 500; color: rgba(255,255,255,.75); margin-top: 4px; }
  .about-text .sec-title { margin-bottom: 16px; }
  .about-text .sec-title em { color: var(--green); font-style: italic; }
  .about-body { font-size: 15px; line-height: 1.9; color: var(--gray-600); margin-bottom: 30px; font-weight: 300; }
  .about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
  .tag { font-size: 12px; font-weight: 600; padding: 7px 16px; border-radius: var(--r-full); background: var(--green-muted); color: var(--green); border: 1.5px solid rgba(17,88,38,.18); }
  .btn-gr { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; padding: 14px 30px; background: var(--green); color: var(--white); border-radius: var(--r-full); text-decoration: none; transition: all .3s; box-shadow: var(--sh-g); }
  .btn-gr:hover { background: var(--green-light); transform: translateY(-2px); }

  /* SERVICES */
  .services { padding: 120px 0; background: var(--green-dark); position: relative; overflow: hidden; }
  .services::before { content: ''; position: absolute; inset: 0; opacity: .04; background: radial-gradient(ellipse 80% 60% at 70% 50%,var(--gold) 0%,transparent 70%); }
  .srv-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
  .srv-header .eyebrow { color: var(--gold-light); } .srv-header .eyebrow::before { background: var(--gold); }
  .srv-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
  .srv-card { background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--r-xl); padding: 50px 42px; transition: all .4s; position: relative; overflow: hidden; backdrop-filter: blur(8px); }
  .srv-card:hover { background: rgba(255,255,255,.1); border-color: rgba(235,186,23,.4); transform: translateY(-5px); box-shadow: 0 24px 64px rgba(0,0,0,.3); }
  .srv-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle,rgba(235,186,23,.1) 0%,transparent 70%); top: -80px; right: -80px; pointer-events: none; opacity: 0; transition: opacity .4s; }
  .srv-card:hover .srv-glow { opacity: 1; }
  .srv-icon { width: 62px; height: 62px; border-radius: var(--r-md); background: rgba(235,186,23,.15); border: 1.5px solid rgba(235,186,23,.3); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; transition: all .4s; }
  .srv-card:hover .srv-icon { background: var(--gold); border-color: var(--gold); box-shadow: 0 8px 24px rgba(235,186,23,.4); }
  .srv-icon svg { width: 28px; height: 28px; stroke: var(--gold-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .4s; }
  .srv-card:hover .srv-icon svg { stroke: var(--gray-800); }
  .srv-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
  .srv-title { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
  .srv-desc { font-size: 14px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,.6); margin-bottom: 26px; }
  .srv-list { list-style: none; }
  .srv-list li { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.55); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; gap: 12px; }
  .srv-list li:last-child { border: none; }
  .srv-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; opacity: .7; }
  .srv-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--gold-light); text-decoration: none; margin-top: 22px; transition: gap .25s; }
  .srv-link:hover { gap: 14px; }
  .srv-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* PRODUCTS */
  .products { padding: 120px 0; background: var(--white); }
  .prod-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
  .prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
  .prod-card { border-radius: var(--r-lg); padding: 30px 24px; background: var(--off-white); border: 1.5px solid var(--gray-200); transition: all .35s; cursor: pointer; position: relative; overflow: hidden; }
  .prod-card:hover { background: var(--green); border-color: var(--green); transform: translateY(-5px); box-shadow: var(--sh-g); }
  .prod-card.feat { background: var(--green); border-color: var(--green); grid-column: span 2; }
  .prod-card.feat-g { background: var(--gold-muted); border-color: rgba(235,186,23,.4); grid-column: span 2; }
  .prod-emoji { font-size: 36px; margin-bottom: 14px; display: block; }
  .prod-name { font-size: 16px; font-weight: 700; color: var(--gray-800); margin-bottom: 5px; transition: color .35s; }
  .prod-card.feat .prod-name, .prod-card:hover .prod-name { color: var(--white); }
  .prod-sub { font-size: 12px; font-weight: 400; color: var(--gray-400); transition: color .35s; }
  .prod-card:hover .prod-sub { color: rgba(255,255,255,.7); }
  .prod-card.feat .prod-sub { color: rgba(255,255,255,.65); }
  .prod-arr { position: absolute; bottom: 24px; right: 24px; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.06); display: flex; align-items: center; justify-content: center; transition: all .35s; }
  .prod-card:hover .prod-arr, .prod-card.feat .prod-arr { background: rgba(255,255,255,.18); }
  .prod-arr svg { width: 14px; height: 14px; stroke: var(--gray-600); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .35s; }
  .prod-card:hover .prod-arr svg, .prod-card.feat .prod-arr svg { stroke: var(--white); }

  /* WHY */
  .why { padding: 120px 0; background: var(--off-white); }
  .why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-vis { background: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=800&q=80&auto=format&fit=crop') center/cover; height: 560px; border-radius: var(--r-xl); position: relative; overflow: hidden; box-shadow: var(--sh-lg); }
  .why-vis::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,59,26,.7) 0%,transparent 60%); }
  .why-vis-label { position: absolute; bottom: 26px; left: 26px; right: 26px; z-index: 2; background: rgba(255,255,255,.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-md); padding: 18px 22px; display: flex; align-items: center; gap: 14px; }
  .why-vis-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .why-vis-icon svg { width: 22px; height: 22px; stroke: var(--gray-800); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .why-vis-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); }
  .why-vis-text span { font-size: 12px; color: rgba(255,255,255,.65); }
  .why-items { display: flex; flex-direction: column; gap: 6px; }
  .why-item { border-radius: var(--r-md); padding: 20px 24px; border: 1.5px solid var(--gray-200); background: var(--white); display: flex; align-items: flex-start; gap: 16px; transition: all .35s; }
  .why-item:hover { border-color: var(--green); box-shadow: var(--sh-md); transform: translateX(6px); }
  .wi-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-muted); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .35s; }
  .why-item:hover .wi-icon { background: var(--green); box-shadow: 0 6px 20px rgba(17,88,38,.3); }
  .wi-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .35s; }
  .why-item:hover .wi-icon svg { stroke: var(--white); }
  .wi-title { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 3px; }
  .wi-desc { font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--gray-600); }

  /* PROCESS */
  .process { padding: 120px 0; background: var(--white); }
  .proc-header { text-align: center; max-width: 580px; margin: 0 auto 76px; }
  .proc-header .eyebrow { justify-content: center; } .proc-header .eyebrow::before { display: none; }
  .proc-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
  .proc-steps::before { content: ''; position: absolute; top: 44px; left: calc(100%/6); right: calc(100%/6); height: 2px; background: linear-gradient(90deg,var(--green-muted) 0%,var(--green) 50%,var(--green-muted) 100%); z-index: 0; }
  .proc-step { text-align: center; padding: 0 30px; position: relative; z-index: 1; }
  .proc-num { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 26px; background: var(--white); border: 3px solid var(--green); display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; color: var(--green); transition: all .4s; box-shadow: 0 0 0 8px var(--white),0 0 0 10px var(--green-muted); }
  .proc-step:hover .proc-num { background: var(--green); color: var(--white); box-shadow: 0 0 0 8px var(--white),0 12px 36px rgba(17,88,38,.3); }
  .proc-title { font-size: 20px; font-weight: 700; color: var(--gray-800); margin-bottom: 12px; }
  .proc-desc { font-size: 14px; line-height: 1.8; color: var(--gray-600); font-weight: 300; }

  /* INDUSTRIES */
  .industries { padding: 90px 0; background: var(--gray-100); }
  .ind-inner { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
  .ind-chip { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; padding: 13px 26px; border-radius: var(--r-full); background: var(--white); border: 1.5px solid var(--gray-200); color: var(--gray-800); transition: all .25s; }
  .ind-chip:hover { background: var(--green); color: var(--white); border-color: var(--green); box-shadow: var(--sh-g); transform: translateY(-2px); }

  /* TESTIMONIALS */
  .testimonials { padding: 120px 0; background: var(--off-white); }
  .test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
  .test-card { background: var(--white); border-radius: var(--r-xl); padding: 38px 34px; border: 1.5px solid var(--gray-200); transition: all .35s; position: relative; }
  .test-card:hover { border-color: var(--green); box-shadow: var(--sh-lg); transform: translateY(-5px); }
  .test-q { font-size: 50px; color: var(--green-muted); line-height: 1; margin-bottom: 8px; font-weight: 800; }
  .test-text { font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--gray-600); margin-bottom: 26px; font-style: italic; }
  .test-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1.5px solid var(--gray-100); }
  .test-av { width: 42px; height: 42px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--white); flex-shrink: 0; }
  .test-name { font-size: 13px; font-weight: 700; color: var(--gray-800); }
  .test-role { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
  .test-stars { position: absolute; top: 34px; right: 34px; color: var(--gold); font-size: 13px; letter-spacing: 2px; }

  /* CTA */
  .final-cta { padding: 120px 0; position: relative; overflow: hidden; background: var(--green); }
  .final-cta .cta-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80&auto=format&fit=crop') center/cover; opacity: .1; }
  .final-cta .cta-inner { position: relative; z-index: 2; text-align: center; max-width: 740px; margin: 0 auto; }
  .final-cta .cta-title { font-size: clamp(28px,4.5vw,50px); font-weight: 800; color: var(--white); line-height: 1.18; margin-bottom: 16px; }
  .final-cta .cta-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.7); line-height: 1.85; margin-bottom: 42px; }
  .final-cta .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-cta-g { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; padding: 14px 34px; background: var(--gold); color: var(--gray-800); border-radius: var(--r-full); text-decoration: none; transition: all .3s; box-shadow: 0 8px 28px rgba(235,186,23,.5); }
  .btn-cta-g:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-cta-o { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; padding: 13px 34px; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); border-radius: var(--r-full); text-decoration: none; transition: all .3s; background: rgba(255,255,255,.08); }
  .btn-cta-o:hover { border-color: var(--white); background: rgba(255,255,255,.15); }

  /* FOOTER */
  footer { background: var(--gray-800); color: rgba(255,255,255,.55); font-size: 15px; }
  .footer-top { padding: 96px 0 88px; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 64px; align-items: start; }
  .footer-brand > a { display: inline-block; margin-bottom: 8px; }
  .footer-brand p { font-size: 15px; line-height: 1.85; margin: 20px 0 28px; color: rgba(255,255,255,.5); max-width: 380px; }
  .footer-socials { display: flex; flex-wrap: wrap; gap: 12px; }
  .fsoc {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: background .25s, border-color .25s, color .25s, transform .2s;
  }
  .fsoc svg { display: block; flex-shrink: 0; width: 20px; height: 20px; }
  .fsoc:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: translateY(-2px);
  }
  .fcol-title { font-size: 13px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--white); margin-bottom: 22px; }
  .fcol ul { list-style: none; }
  .fcol ul li { margin-bottom: 14px; }
  .fcol ul li a,
  .fcol ul li .footer-hours { font-size: 15px; color: rgba(255,255,255,.48); text-decoration: none; transition: color .2s; }
  .fcol ul li a:hover { color: var(--gold); }
  .footer-bot { border-top: 1px solid rgba(255,255,255,.08); padding: 28px 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
  .footer-copy { font-size: 14px; color: rgba(255,255,255,.4); }
  .footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
  .footer-links a { font-size: 14px; color: rgba(255,255,255,.38); text-decoration: none; }
  .footer-links a:hover { color: var(--gold); }
  .footer-hours { font-size: 15px; color: rgba(255,255,255,.48); }

  /* Masaüstü: mobil menü gizli, anasayfa üst header şeffaf */
  @media (min-width: 1101px) {
    .mobile-menu { display: none !important; }
    body.home:not(.elex-home-scrolled) #nav,
    body.home:not(.elex-home-scrolled) nav#nav {
      background: none !important;
      background-color: transparent !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      box-shadow: none !important;
    }
    body.home #nav { padding-top: 0; }
  }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    body.home .hero {
      margin-top: calc(-64px - env(safe-area-inset-top, 0));
      padding-top: calc(64px + env(safe-area-inset-top, 0));
    }
    body.admin-bar.home .hero {
      margin-top: calc(-64px - 32px - env(safe-area-inset-top, 0));
      padding-top: calc(64px + 32px + env(safe-area-inset-top, 0));
    }
    /* Anasayfa ilk açılış: mobilde tam beyaz header */
    body.home:not(.elex-home-scrolled) #nav,
    body.home:not(.elex-home-scrolled) nav.top.home-nav,
    nav.top.home-nav,
    nav.top {
      background: rgba(255, 255, 255, 0.98) !important;
      background-color: rgba(255, 255, 255, 0.98) !important;
      backdrop-filter: blur(20px) !important;
      -webkit-backdrop-filter: blur(20px) !important;
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07), var(--sh-sm) !important;
    }
    nav.top .nav-logo-img {
      filter: none;
    }
    nav.top .hamburger span {
      background: var(--green-dark);
    }
    .nav-inner {
      width: 100%;
      height: 64px;
      justify-content: space-between;
      gap: 12px;
    }
    .nav-start {
      flex: 1;
      width: 100%;
      flex-wrap: nowrap;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .nav-links { display: none !important; }
    .nav-ctas { display: none; }
    .hamburger {
      display: flex !important;
      flex-shrink: 0;
      margin-left: 0;
      z-index: 1001;
    }
    .nav-logo-img { height: 48px; max-width: 150px; }
    .mobile-menu {
      top: calc(64px + env(safe-area-inset-top, 0));
      bottom: auto;
      max-height: calc(100dvh - 64px - env(safe-area-inset-top, 0));
      padding: 20px 24px 28px;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      border-top: 1px solid var(--gray-200);
    }
    .pillars-grid { grid-template-columns: 1fr; }
    .about-inner { grid-template-columns: 1fr; }
    .about-imgs { display: none; }
    .srv-grid { grid-template-columns: 1fr; }
    .prod-grid { grid-template-columns: repeat(2,1fr); }
    .prod-card.feat, .prod-card.feat-g { grid-column: span 2; }
    .why-inner { grid-template-columns: 1fr; }
    .why-vis { display: none; }
    .proc-steps { grid-template-columns: 1fr; gap: 40px; }
    .proc-steps::before { display: none; }
    .test-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    nav, .container { padding-left: 20px; padding-right: 20px; }
    .hero-content { padding: 0 20px; }
    .stats-inner { padding: 0 20px; }
    .slider-dots {
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      bottom: 128px;
      justify-content: center;
    }
  }
  @media (max-width: 640px) {
    nav { padding-left: 16px; padding-right: 16px; }
    .nav-logo-img { height: 42px; max-width: 130px; }
    .hero { min-height: 100svh; }
    .hero-content { padding-top: 12px; }
    .prod-grid { grid-template-columns: 1fr; }
    .prod-card.feat, .prod-card.feat-g { grid-column: span 1; }
    .stats-inner { grid-template-columns: repeat(2,1fr); }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bot { flex-direction: column; gap: 16px; text-align: center; }
    .footer-logo-img { height: 68px; max-width: 240px; }
    .footer-top { padding: 72px 0 64px; gap: 40px; }
    .sl-arr { display: none; }
    .slider-dots {
      left: 50%;
      transform: translateX(-50%);
      bottom: 158px;
    }
  }

  /* LOGO IMAGE */
  .nav-logo-img { height: 72px; width: auto; max-width: 220px; object-fit: contain; filter: brightness(0) invert(1); transition: filter 0.4s; }
  nav.scrolled .nav-logo-img { filter: none; }
  .footer-logo-img {
    height: 80px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
  }

  /* MOBILE MENU */
  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    padding: 8px; background: none; border: none;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px; background: var(--white);
    border-radius: 2px; transition: all 0.3s;
  }
  nav.scrolled .hamburger span { background: var(--green-dark); }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none; position: fixed; top: 80px; left: 0; right: 0; z-index: 999;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 20px 24px 28px; flex-direction: column; gap: 4px;
    border-top: 1px solid var(--gray-200);
    transform: translateY(-8px); opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
  }
  .mobile-menu.open {
    display: flex; opacity: 1; transform: translateY(0); pointer-events: all;
  }
  .mobile-menu a {
    font-size: 16px; font-weight: 600; padding: 14px 16px;
    color: var(--gray-800); text-decoration: none; border-radius: var(--r-md);
    transition: all 0.2s; border-bottom: 1px solid var(--gray-100);
  }
  .mobile-menu a:last-of-type { border-bottom: none; }
  .mobile-menu a:hover { background: var(--green-muted); color: var(--green); }
  .mobile-menu-ctas {
    display: flex; gap: 10px; margin-top: 16px; padding-top: 16px;
    border-top: 1.5px solid var(--gray-200);
  }
  .mobile-menu-ctas a { flex: 1; text-align: center; }

  /* ABOUT PAGE */
  .about-page { display: none; }
  .about-page.active { display: block; }
  .main-site { display: block; }
  .main-site.hidden { display: none; }

  /* ABOUT HERO */
  .about-hero {
    padding-top: 80px; min-height: 500px; position: relative;
    background: var(--green-dark); display: flex; align-items: center;
    overflow: hidden;
  }
  .about-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1581092795360-fd1ca04f0952?w=1920&q=80&auto=format&fit=crop') center/cover;
    opacity: 0.15;
  }
  .about-hero-content { position: relative; z-index: 2; padding: 80px 0; }
  .about-hero-breadcrumb {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55);
    margin-bottom: 28px;
  }
  .about-hero-breadcrumb a { color: var(--gold); text-decoration: none; }
  .about-hero-breadcrumb span { color: rgba(255,255,255,0.3); }
  .about-hero h1 {
    font-size: clamp(36px, 5vw, 62px); font-weight: 800; color: var(--white);
    line-height: 1.1; margin-bottom: 20px;
  }
  .about-hero h1 em { color: var(--gold-light); font-style: italic; font-weight: 700; }
  .about-hero-sub {
    font-size: 17px; font-weight: 300; line-height: 1.85;
    color: rgba(255,255,255,0.65); max-width: 580px;
  }

  /* ABOUT MAIN SECTION */
  .about-story { padding: 100px 0; background: var(--white); }
  .about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
  .about-story-text { }
  .about-story-text .eyebrow { margin-bottom: 14px; }
  .about-story-text h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--gray-800); margin-bottom: 28px; line-height: 1.2; }
  .about-story-text h2 em { color: var(--green); font-style: italic; }
  .about-story-para {
    font-size: 15px; font-weight: 300; line-height: 1.95; color: var(--gray-600);
    margin-bottom: 22px;
  }
  .about-story-para:last-of-type { margin-bottom: 0; }
  .about-story-sidebar { }
  .about-sidebar-img {
    width: 100%; height: 380px; border-radius: var(--r-xl);
    background: url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=800&q=80&auto=format&fit=crop') center/cover;
    box-shadow: var(--sh-lg); margin-bottom: 28px;
  }
  .about-sidebar-cards { display: flex; flex-direction: column; gap: 14px; }
  .about-sidebar-card {
    background: var(--off-white); border: 1.5px solid var(--gray-200);
    border-radius: var(--r-md); padding: 22px 24px;
    display: flex; align-items: center; gap: 16px; transition: all 0.3s;
  }
  .about-sidebar-card:hover { border-color: var(--green); background: var(--white); box-shadow: var(--sh-md); }
  .about-sidebar-card-icon {
    width: 46px; height: 46px; border-radius: 12px; background: var(--green-muted);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s;
  }
  .about-sidebar-card:hover .about-sidebar-card-icon { background: var(--green); }
  .about-sidebar-card-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
  .about-sidebar-card:hover .about-sidebar-card-icon svg { stroke: var(--white); }
  .about-sidebar-card-title { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 3px; }
  .about-sidebar-card-desc { font-size: 12px; font-weight: 300; color: var(--gray-500); }

  /* ABOUT VALUES */
  .about-values { padding: 100px 0; background: var(--off-white); }
  .about-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
  .value-card {
    background: var(--white); border-radius: var(--r-lg); padding: 40px 36px;
    border: 1.5px solid var(--gray-200); transition: all 0.35s;
    text-align: center;
  }
  .value-card:hover { border-color: var(--green); transform: translateY(-6px); box-shadow: var(--sh-lg); }
  .value-icon {
    width: 64px; height: 64px; border-radius: 50%; background: var(--green-muted);
    margin: 0 auto 24px; display: flex; align-items: center; justify-content: center;
    transition: all 0.35s;
  }
  .value-card:hover .value-icon { background: var(--green); box-shadow: var(--sh-g); }
  .value-icon svg { width: 28px; height: 28px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.35s; }
  .value-card:hover .value-icon svg { stroke: var(--white); }
  .value-title { font-size: 18px; font-weight: 700; color: var(--gray-800); margin-bottom: 12px; }
  .value-desc { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--gray-600); }

  /* ABOUT STATS */
  .about-stats-section { padding: 80px 0; background: var(--green); }
  .about-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
  .about-stat-item {
    text-align: center; padding: 44px 32px;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .about-stat-item:last-child { border-right: none; }
  .about-stat-num { font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: var(--gold-light); line-height: 1; }
  .about-stat-label { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.65); margin-top: 8px; }

  @media (max-width: 1100px) {
    .about-story-inner { grid-template-columns: 1fr; }
    .about-sidebar-img { height: 280px; }
    .about-values-grid { grid-template-columns: 1fr; }
    .about-stats-grid { grid-template-columns: repeat(2,1fr); }
    .about-stat-item:nth-child(2) { border-right: none; }
  }
