/* AGT Transformatör – Yapım Aşamasında Stilleri */
:root{
  --bg:#0b132b;
  --bg-soft:#111a3a;
  --card:#151f45;
  --text:#e6e8ef;
  --muted:#a9b1c7;
  --primary:#3a86ff;
  --accent:#00d1b2;
  --shadow:0 10px 30px rgba(0,0,0,.25);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(160deg,var(--bg) 0%,#0f1836 50%, var(--bg) 100%);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.container{width:min(1100px,92%);margin:0 auto}

.site-header{position:sticky;top:0;background:rgba(11,19,43,.6);backdrop-filter:saturate(140%) blur(10px);border-bottom:1px solid rgba(255,255,255,.06);z-index:10}
.site-header .brand{display:flex;align-items:center;gap:14px;padding:18px 0}
.logo{width:42px;height:42px}
.brand-text h1{font-size:1.25rem;margin:0;letter-spacing:.3px}
.brand-text .legal{margin:2px 0 0;color:var(--muted);font-size:.85rem}

.hero{padding:72px 0 48px}
.hero h2{font-size:2.2rem;margin:0 0 12px}
.lead{color:var(--muted);font-size:1.05rem;line-height:1.7;max-width:820px}

/* Hero two-column layout with illustration */
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center;margin-top:12px}
.hero-content{display:flex;flex-direction:column;gap:16px}
.hero-visual{display:flex;align-items:center;justify-content:center}
.hero-visual img{width:100%;max-width:560px;max-height:520px;height:auto;border-radius:16px;filter:drop-shadow(0 22px 40px rgba(0,0,0,.35))}

.card{background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03));border:1px solid rgba(255,255,255,.08);border-radius:16px;box-shadow:var(--shadow)}
.card.contact{margin-top:28px;padding:20px}

.contact-list{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:1fr;gap:12px}
.contact-list li{display:flex;flex-wrap:wrap;gap:8px;align-items:center}
.label{display:inline-flex;align-items:center;justify-content:center;background:var(--card);color:#c7d2fe;border:1px solid rgba(255,255,255,.08);padding:6px 10px;border-radius:999px;font-size:.8rem;letter-spacing:.2px}

a{color:var(--primary);text-decoration:none}
a:hover{color:#77a7ff;text-decoration:underline}

.highlights{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:28px}
.highlights .card{padding:18px}
.highlights h3{margin:4px 0 8px}
.highlights p{margin:0;color:var(--muted)}

.site-footer{border-top:1px solid rgba(255,255,255,.08);margin-top:56px;padding:22px 0 34px;color:var(--muted);font-size:.92rem}
.site-footer .mini{font-size:.8rem;margin-top:6px}

@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-visual img{max-width:680px}
  .highlights{grid-template-columns:1fr}
}
