:root{
  --bg:#0b0f14;
  --card:#101826;
  --text:#eaf0ff;
  --muted:#b9c2d6;
  --accent:#f2b705; /* hurda sarı */
  --accent2:#3ddc97;
  --border:rgba(255,255,255,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 10% 10%, rgba(242,183,5,.18), transparent 60%),
              radial-gradient(900px 500px at 90% 30%, rgba(61,220,151,.12), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{width:min(1100px, calc(100% - 40px)); margin:0 auto;}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background: rgba(11,15,20,.70);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; gap:12px; align-items:center;
}
.logo{
  width:42px; height:42px; border-radius:12px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.20), transparent 60%),
    linear-gradient(135deg, rgba(242,183,5,1), rgba(242,183,5,.6));
  box-shadow: 0 10px 30px rgba(242,183,5,.25);
  border:1px solid rgba(255,255,255,.18);
  display:grid; place-items:center;
  font-weight:800;
}
.brand h1{font-size:16px; margin:0; letter-spacing:.2px}
.brand p{margin:0; font-size:12px; color:var(--muted)}

.menu{display:flex; gap:16px; align-items:center}
.menu a{
  padding:10px 12px; border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
}
.menu a:hover{color:var(--text); border-color:rgba(255,255,255,.12); background:rgba(255,255,255,.04)}
.menu a.active{color:var(--text); border-color:rgba(242,183,5,.40); background:rgba(242,183,5,.10)}

.cta{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:14px;
  border:1px solid rgba(242,183,5,.45);
  background: linear-gradient(180deg, rgba(242,183,5,.18), rgba(242,183,5,.06));
  box-shadow: 0 14px 35px rgba(242,183,5,.12);
  color:var(--text);
  font-weight:700;
}
.cta:hover{transform: translateY(-1px)}

/* Hero */
.hero{
  padding:34px 0 10px;
}
.heroGrid{
  display:grid; gap:22px;
  grid-template-columns: 1.1fr .9fr;
  align-items:stretch;
}
.heroCard{
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: rgba(16,24,38,.55);
}
.heroMedia{
  min-height: 340px;
  background: linear-gradient(180deg, rgba(11,15,20,.10), rgba(11,15,20,.82)),
              url('assets/hero-scrapyard.jpg') center/cover no-repeat;
}
.heroBody{padding:18px 18px 20px}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-size:12px; color:var(--muted);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:8px 10px; border-radius:999px;
}
.dot{width:8px; height:8px; border-radius:999px; background: var(--accent); box-shadow: 0 0 0 6px rgba(242,183,5,.12)}
.heroTitle{margin:12px 0 10px; font-size:34px; line-height:1.12; letter-spacing:-.4px}
.heroText{margin:0 0 16px; color:var(--muted)}
.badges{display:flex; flex-wrap:wrap; gap:10px}
.badge{
  font-size:12px; color:var(--text);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  padding:8px 10px; border-radius:999px;
}

.side{
  padding:18px;
  display:flex; flex-direction:column; gap:14px;
}
.side h2{margin:0; font-size:16px}
.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(16,24,38,.55);
  box-shadow: var(--shadow);
}
.cardPad{padding:16px}

.list{display:grid; gap:10px; margin:12px 0 0; padding:0; list-style:none}
.item{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px; border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.icon{
  width:34px; height:34px; border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background: radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.18), transparent 60%),
              rgba(242,183,5,.12);
  display:grid; place-items:center;
  flex:0 0 auto;
}
.item b{display:block; margin-bottom:2px}
.item span{color:var(--muted); font-size:13px}

/* Sections */
.section{padding:26px 0}
.sectionTitle{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:14px}
.sectionTitle h2{margin:0; font-size:20px}
.sectionTitle p{margin:0; color:var(--muted); font-size:13px}

.grid3{display:grid; gap:14px; grid-template-columns: repeat(3, 1fr)}
.feature{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(16,24,38,.55);
  padding:16px;
  box-shadow: var(--shadow);
}
.feature h3{margin:10px 0 6px; font-size:16px}
.feature p{margin:0; color:var(--muted); font-size:13px}

.mediaCard{
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(16,24,38,.55);
  box-shadow: var(--shadow);
}
.media{
  height:210px;
  background: linear-gradient(180deg, rgba(11,15,20,.10), rgba(11,15,20,.82)),
              url('assets/copper-wire.jpg') center/cover no-repeat;
}
.media2{
  height:210px;
  background: linear-gradient(180deg, rgba(11,15,20,.10), rgba(11,15,20,.82)),
              url('assets/e-waste.jpg') center/cover no-repeat;
}

.note{
  border:1px dashed rgba(242,183,5,.55);
  background: rgba(242,183,5,.08);
  border-radius: var(--radius);
  padding:14px 16px;
  color:var(--muted);
}

.footer{
  padding:24px 0 34px;
  border-top:1px solid var(--border);
  color:var(--muted);
}
.footerGrid{display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; align-items:center}
.small{font-size:12px}

/* Responsive */
@media (max-width: 900px){
  .heroGrid{grid-template-columns: 1fr;}
  .heroMedia{min-height: 280px;}
  .grid3{grid-template-columns: 1fr;}
  .menu{display:none}
}
