:root{
  --red:#e50914;
  --red2:#ff2435;
  --bg:#050505;
  --panel:#101010;
  --text:#fff;
  --muted:#b9b9b9;
  --line:rgba(255,255,255,.12);
  --gold:#c9a84c;
  --gold2:#f0d080;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);font-family:'Segoe UI',Arial,Helvetica,sans-serif;line-height:1.55}
a{text-decoration:none;color:inherit}

/* ── PRE-TOP BAR ── */
.pretop{
  height:36px;
  background:linear-gradient(90deg,#080808 0%,#0e0e0e 50%,#080808 100%);
  color:#b0b0b0;
  border-bottom:1px solid rgba(229,9,20,.18);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 6%;
  font-size:12.5px;
  letter-spacing:.3px;
  position:relative;
}
.pretop::after{
  content:"";
  position:absolute;
  bottom:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(229,9,20,.4) 30%,rgba(229,9,20,.4) 70%,transparent);
}

/* ── HEADER / NAVBAR ── */
.header{
  height:88px;
  position:sticky;
  top:0;
  z-index:99;
  background:rgba(4,4,4,.88);
  backdrop-filter:blur(22px) saturate(160%);
  -webkit-backdrop-filter:blur(22px) saturate(160%);
  border-bottom:1px solid rgba(229,9,20,.22);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 6%;
  transition:background .35s,box-shadow .35s;
  box-shadow:0 4px 40px rgba(0,0,0,.55),0 1px 0 rgba(229,9,20,.15);
}
.header::before{
  content:"";
  position:absolute;
  top:0;left:6%;right:6%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.07) 30%,rgba(255,255,255,.07) 70%,transparent);
}

/* Logo */
.logo b,.footer-logo b{
  display:block;
  font-size:29px;
  font-weight:1000;
  font-style:italic;
  letter-spacing:2.5px;
  background:linear-gradient(135deg,#fff 40%,rgba(255,255,255,.7));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  filter:drop-shadow(0 0 12px rgba(229,9,20,.35));
}
.logo small,.footer-logo small{
  display:block;
  color:var(--red);
  letter-spacing:7px;
  font-weight:900;
  font-size:10px;
  text-align:center;
  text-shadow:0 0 14px rgba(229,9,20,.5);
}

/* Nav links */
nav{display:flex;gap:6px;align-items:center}
nav a{
  font-size:13.5px;
  color:#c8c8c8;
  font-weight:600;
  padding:8px 14px;
  border-radius:2px;
  letter-spacing:.4px;
  position:relative;
  transition:color .22s;
}
nav a::after{
  content:"";
  position:absolute;
  bottom:4px;left:50%;right:50%;
  height:1.5px;
  background:var(--red2);
  transition:left .22s,right .22s;
  border-radius:1px;
}
nav a:hover{color:#fff}
nav a:hover::after{left:14px;right:14px}

/* CTA button in nav */
.head-btn{
  background:linear-gradient(135deg,var(--red) 0%,#b5000c 100%);
  padding:11px 22px;
  border-radius:2px;
  font-weight:900;
  font-size:13.5px;
  letter-spacing:.5px;
  box-shadow:0 0 22px rgba(229,9,20,.35),inset 0 1px 0 rgba(255,255,255,.12);
  transition:box-shadow .22s,transform .15s;
  position:relative;
  overflow:hidden;
}
.head-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.08),transparent 60%);
}
.head-btn:hover{
  box-shadow:0 0 35px rgba(229,9,20,.55),inset 0 1px 0 rgba(255,255,255,.16);
  transform:translateY(-1px);
}

/* ── HERO ── */
.hero{
  min-height:calc(100vh - 124px);
  position:relative;
  display:flex;
  align-items:center;
  padding:100px 6% 140px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(105deg,#050505 0%,rgba(5,5,5,.9) 38%,rgba(5,5,5,.2) 70%,transparent),
    radial-gradient(ellipse 55% 70% at 78% 52%,rgba(229,9,20,.38),transparent),
    radial-gradient(ellipse 30% 40% at 88% 20%,rgba(255,36,53,.12),transparent),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1800&q=80') center/cover;
}
/* subtle animated noise/grain overlay */
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.06) 2px,
    rgba(0,0,0,.06) 4px
  );
  pointer-events:none;
}

/* scanline glow strip */
.hero::before{
  content:"";
  position:absolute;
  left:0;right:0;
  top:0;
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(229,9,20,.6) 30%,rgba(229,9,20,.6) 70%,transparent);
  z-index:4;
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width:900px;
}

/* Badge / kicker */
.mini{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--red2);
  font-size:12px;
  letter-spacing:4px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:4px;
}
.mini::before{
  content:"";
  display:inline-block;
  width:28px;height:2px;
  background:var(--red2);
  border-radius:1px;
}

/* H1 */
h1{
  font-size:clamp(52px,8.5vw,120px);
  line-height:.9;
  text-transform:uppercase;
  font-weight:1000;
  letter-spacing:-4px;
  text-shadow:0 2px 60px rgba(229,9,20,.25),0 0 120px rgba(0,0,0,.8);
}
h1 span{
  color:var(--red2);
  display:block;
  filter:drop-shadow(0 0 28px rgba(229,9,20,.45));
}

/* Tagline */
.hero-p{
  font-size:clamp(16px,1.8vw,22px);
  color:#d8d8d8;
  margin:24px 0 34px;
  max-width:560px;
  line-height:1.6;
  font-weight:400;
}

/* Buttons */
.hero-buttons{display:flex;gap:14px;flex-wrap:wrap}
.hero-buttons a{
  padding:17px 30px;
  font-weight:900;
  font-size:14px;
  letter-spacing:.6px;
  border-radius:2px;
  transition:transform .18s,box-shadow .22s;
  position:relative;
  overflow:hidden;
}
.hero-buttons a:first-child{
  background:linear-gradient(135deg,var(--red) 0%,#b5000c 100%);
  box-shadow:0 0 30px rgba(229,9,20,.4),inset 0 1px 0 rgba(255,255,255,.1);
}
.hero-buttons a:first-child::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.1),transparent 55%);
}
.hero-buttons a:first-child:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 40px rgba(229,9,20,.55);
}
.hero-buttons a:nth-child(2){
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.22);
  color:#e8e8e8;
  backdrop-filter:blur(8px);
}
.hero-buttons a:nth-child(2):hover{
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.38);
  transform:translateY(-2px);
}

/* Feature bar */
.hero-features{
  position:absolute;
  left:6%;right:6%;bottom:0;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:rgba(6,6,6,.96);
  border:1px solid rgba(229,9,20,.22);
  border-bottom:none;
  backdrop-filter:blur(12px);
  box-shadow:0 -4px 40px rgba(0,0,0,.6),inset 0 1px 0 rgba(255,255,255,.04);
}
.hero-features div{
  padding:26px 24px;
  border-right:1px solid rgba(255,255,255,.06);
  transition:background .22s;
  position:relative;
}
.hero-features div::before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(229,9,20,.5),transparent);
  opacity:0;
  transition:opacity .22s;
}
.hero-features div:hover{background:rgba(229,9,20,.05)}
.hero-features div:hover::before{opacity:1}
.hero-features strong{
  display:block;
  color:#fff;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.5px;
  margin-bottom:4px;
}
.hero-features span{color:#888;font-size:13px}
.why{display:grid;grid-template-columns:1fr 1fr;gap:50px;padding:100px 6%;align-items:center;background:#080808}
.why-img{min-height:520px;border-radius:2px;background:linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.65)),url('https://images.unsplash.com/photo-1542362567-b07e54358753?auto=format&fit=crop&w=1100&q=80') center/cover;border:1px solid rgba(229,9,20,.35);box-shadow:0 0 55px rgba(229,9,20,.15)}
.why h2,.title h2,.plotter h2,.warranty h2{font-size:clamp(34px,4.5vw,62px);line-height:1;letter-spacing:-2px;margin:10px 0 18px}
.why p{color:#cfcfcf}
.why-list{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:22px 0}
.why-list span{background:#111;border:1px solid var(--line);padding:14px;border-radius:2px;color:#ddd}
.red-link{display:inline-block;background:var(--red);padding:14px 22px;font-weight:1000}
.section{padding:95px 6%}
.black{background:#050505}
.title{text-align:center;max-width:850px;margin:0 auto 45px}
.title p{color:var(--red2);font-size:13px;letter-spacing:3px;font-weight:1000}
.services{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.services article,.product,.comments .comment-grid div,.faq details{background:linear-gradient(180deg,#141414,#080808);border:1px solid var(--line);padding:28px;border-radius:2px;position:relative;overflow:hidden}
.services article:before,.product:before{content:"";position:absolute;right:-60px;top:-60px;width:160px;height:160px;background:rgba(229,9,20,.18);border-radius:50%;filter:blur(20px)}
.services i{font-style:normal;color:var(--red);font-weight:1000}
.services h3,.product h3{font-size:24px;margin:10px 0}
.services p,.product p{color:var(--muted)}
.products{background:linear-gradient(180deg,#0a0a0a,#050505)}
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.product span{display:inline-block;background:var(--red);padding:6px 10px;font-weight:900;font-size:12px}
.product b{display:block;font-size:35px;margin:10px 0}
.product.hot{border-color:var(--red);box-shadow:0 0 38px rgba(229,9,20,.22)}
.plotter{padding:100px 6%;display:grid;grid-template-columns:1fr 1fr;gap:45px;align-items:center;background:radial-gradient(circle at left,rgba(229,9,20,.25),transparent 28%),#080808;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}
.plotter p{color:#d0d0d0}
.cut-card{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.cut-card span{padding:28px;background:#111;border:1px solid rgba(229,9,20,.35);font-weight:1000;text-align:center}
.warranty{padding:100px 6%;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;background:linear-gradient(135deg,#160000,#050505 50%,#090909)}
.warranty-text p{color:#d0d0d0}
.form{display:flex;gap:12px;margin:26px 0 8px}
.form input{flex:1;background:#050505;border:1px solid rgba(255,255,255,.22);padding:16px;color:#fff;font-size:16px;outline:none}
.form input:focus{border-color:var(--red)}
.form button{background:var(--red);border:0;color:#fff;font-weight:1000;padding:0 24px;cursor:pointer}
.output{margin-top:20px;background:#090909;border:1px solid rgba(229,9,20,.45);padding:22px}
.output h3{font-size:26px}
.outgrid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:14px}
.outgrid div{background:#111;padding:12px;color:#ccc}
.outgrid b{display:block;color:#fff}
.hide{display:none}
.lookup-card{margin-top:28px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.12);padding:22px;border-radius:2px}
.lookup-card label{display:block;font-weight:1000;margin-bottom:10px}
.lookup-row{display:flex;gap:12px}
.lookup-row input{flex:1;background:#050505;border:1px solid rgba(255,255,255,.22);padding:16px;color:#fff;font-size:16px;outline:none}
.lookup-row input:focus{border-color:var(--red)}
.lookup-row button{background:var(--red);color:#fff;border:0;padding:0 24px;font-weight:1000;cursor:pointer}
.lookup-card small{display:block;color:#aaa;margin-top:12px}
.carbox.detailed{background:linear-gradient(180deg,#161616,#060606);border:1px solid rgba(229,9,20,.45);padding:28px;box-shadow:0 0 55px rgba(229,9,20,.14)}
.carbox-title{text-align:center;margin-bottom:22px}
.carbox-title h3{font-size:32px;line-height:1;margin:7px 0}
.carbox-title span{color:#aaa}
.vehicle-maps{display:grid;grid-template-columns:.9fr 1.4fr .9fr;gap:18px;align-items:end}
.map-card{background:#0d0d0e;border:1px solid rgba(255,255,255,.09);padding:18px;min-height:285px;position:relative;overflow:hidden}
.map-card:before{content:"";position:absolute;inset:auto -40px -60px auto;width:160px;height:160px;background:rgba(229,9,20,.16);filter:blur(22px);border-radius:50%}
.map-card h4{text-align:center;color:var(--red2);margin-bottom:18px;font-size:15px;letter-spacing:1px;text-transform:uppercase}
.front-car,.side-car,.top-car{position:relative;margin:auto;background:linear-gradient(180deg,#f1f1f1 0%,#8a8a8a 48%,#3a3a3a 100%);box-shadow:inset 0 0 35px rgba(0,0,0,.35),0 0 35px rgba(255,255,255,.07)}
.front-car{width:220px;height:190px;border-radius:82px 82px 25px 25px}
.front-car:before{content:"";position:absolute;left:36px;right:36px;top:24px;height:45px;background:#101010;border-radius:18px;box-shadow:inset 0 0 18px rgba(255,255,255,.12)}
.front-car:after{content:"";position:absolute;left:24px;right:24px;bottom:29px;height:31px;background:#121212;border-radius:8px}
.side-car{width:340px;height:138px;border-radius:85px 45px 22px 22px;margin-top:48px}
.side-car:before{content:"";position:absolute;left:76px;top:18px;width:150px;height:46px;background:#111;border-radius:35px 35px 9px 9px}
.side-car:after{content:"";position:absolute;left:43px;bottom:-18px;width:56px;height:56px;background:#050505;border:8px solid #333;border-radius:50%;box-shadow:216px 0 0 -8px #050505,216px 0 0 0 #333}
.top-car{width:170px;height:265px;border-radius:88px 88px 45px 45px}
.top-car:before{content:"";position:absolute;left:35px;right:35px;top:84px;height:76px;background:#111;border-radius:25px}
.part{position:absolute;z-index:2;background:#1a1a1a;border:1px solid #5a5a5a;color:#ddd;font-weight:900;font-size:11px;padding:5px 8px;border-radius:999px;white-space:nowrap;cursor:default}
.part.on{background:linear-gradient(180deg,var(--red2),#8f0009);color:#fff;border-color:#ff6570;box-shadow:0 0 22px rgba(229,9,20,.75)}
.p-hood{left:82px;top:82px}.p-bumper{left:67px;bottom:6px}.p-left-front-fender{left:-55px;top:94px}.p-right-front-fender{right:-57px;top:94px}.p-headlights{left:77px;bottom:45px}
.p-mirrors{left:113px;top:-22px}.p-front-fender{left:-20px;top:72px}.p-doors{left:135px;top:70px}.p-side-skirt{left:145px;bottom:-36px}.p-rear-fender{right:-22px;top:72px}
.p-top-hood{left:55px;top:30px}.p-roof{left:55px;top:115px}.p-trunk{left:55px;bottom:35px}
.legend{display:flex;justify-content:center;gap:22px;margin-top:18px;color:#bbb}
.legend i{display:inline-block;width:14px;height:14px;background:var(--red);margin-right:6px}.legend i.off{background:#444}

.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.gallery div{height:260px;background:linear-gradient(135deg,#181818,#070707);border:1px solid rgba(229,9,20,.3);display:flex;align-items:end;padding:20px;font-weight:1000;color:#eee}
.comments{padding:95px 6%;background:#090909}
.comment-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.comment-grid div{color:var(--red2);font-weight:1000}
.comment-grid p{color:#ddd;margin-top:12px;font-weight:500}
.faq{padding:95px 6%;background:#050505}
.faq details{margin:12px auto;max-width:900px}
.faq summary{cursor:pointer;font-size:19px;font-weight:900}
.faq p{color:#ccc;margin-top:12px}
footer{padding:60px 6%;text-align:center;background:#020202;border-top:1px solid rgba(229,9,20,.35);color:#bbb}
footer a{display:inline-block;margin-top:18px;background:var(--red);padding:14px 22px;font-weight:1000}
.float{position:fixed;right:20px;bottom:20px;z-index:100;background:#25D366;color:#fff;padding:15px 19px;border-radius:999px;font-weight:1000;box-shadow:0 0 25px rgba(37,211,102,.45)}
@media(max-width:1000px){
  .pretop{display:none}.header{height:78px}nav{display:none}.nav-actions{display:none}
  .hero{min-height:92vh;padding-top:110px}
  .hero-features{position:relative;left:auto;right:auto;bottom:auto;margin-top:40px;grid-template-columns:1fr}
  .why,.plotter,.warranty{grid-template-columns:1fr}
  .services,.product-grid,.gallery,.comment-grid{grid-template-columns:1fr}
  .form{flex-direction:column}.form button{padding:16px}
  .why-list,.outgrid{grid-template-columns:1fr}
  .car{transform:scale(.9);transform-origin:center}
}

@media(max-width:980px){
  .vehicle-maps{grid-template-columns:1fr}
  .lookup-row{flex-direction:column}
  .lookup-row button{padding:16px}
  .side-car{transform:scale(.86);transform-origin:center}
}


.product ul{list-style:none;margin-top:16px;display:grid;gap:8px;color:#ddd}
.product li:before{content:"✓";color:var(--red);font-weight:1000;margin-right:8px}
.product p{min-height:120px}
.filled-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.filled-gallery .gallery-card{height:320px;border:1px solid rgba(229,9,20,.35);border-radius:2px;background-size:cover;background-position:center;display:flex;flex-direction:column;justify-content:flex-end;padding:22px;position:relative;overflow:hidden}
.filled-gallery .gallery-card:before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.88))}
.filled-gallery .gallery-card span,.filled-gallery .gallery-card p{position:relative;z-index:2}
.filled-gallery .gallery-card span{font-size:23px;font-weight:1000;color:#fff;text-transform:uppercase}
.filled-gallery .gallery-card p{color:#ddd;margin-top:6px}
/* Galeri görselleri — kendi fotoğraflarınızla değiştirmek için her .gN class'ının background-image URL'sini güncelleyin */
/* 1. PPF Uygulama — siyah lüks araç, PPF uygulama anı */
.g1{background-image:url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=900&q=80')}
/* 2. Mat PPF Dönüşüm — mat siyah/gri spor araç */
.g2{background-image:url('https://images.unsplash.com/photo-1626668893632-6f3a4466d22f?auto=format&fit=crop&w=900&q=80')}
/* 3. Cam Filmi — premium araç yan cam detayı */
.g3{background-image:url('https://images.unsplash.com/photo-1583121274602-3e2820c69888?auto=format&fit=crop&w=900&q=80')}
/* 4. Seramik Kaplama — su boncuklanma efekti, parlak boya */
.g4{background-image:url('https://images.unsplash.com/photo-1520031441872-265e4ff70366?auto=format&fit=crop&w=900&q=80')}
/* 5. Öncesi / Sonrası — detay çekim, boya yüzey */
.g5{background-image:url('https://images.unsplash.com/photo-1611566026373-c6c8da0ea861?auto=format&fit=crop&w=900&q=80')}
/* 6. Araç Teslim — showroom kalitesinde lüks araç */
.g6{background-image:url('https://images.unsplash.com/photo-1555215695-3004980ad54e?auto=format&fit=crop&w=900&q=80')}
@media(max-width:980px){
  .filled-gallery{grid-template-columns:1fr}
  .product p{min-height:auto}
}

/* =====================================================
   Garanti Sonuç Kartı — Premium Tasarım
   ===================================================== */

/* Durum rozetleri */
.ng-badge{display:inline-flex;align-items:center;gap:6px;padding:6px 14px;border-radius:999px;font-size:12px;font-weight:700;letter-spacing:.5px}
.badge-active{background:rgba(0,180,80,.12);border:1px solid rgba(0,180,80,.35);color:#5ddb8a}
.badge-warning{background:rgba(255,197,66,.1);border:1px solid rgba(255,197,66,.35);color:#ffc542}
.badge-expired{background:rgba(204,0,0,.12);border:1px solid rgba(204,0,0,.35);color:#ff6b6b}

/* Ana sonuç kartı */
.ng-result-card{background:linear-gradient(160deg,#141414 0%,#0a0a0a 60%,#0f0000 100%);border:1px solid rgba(229,9,20,.4);border-radius:4px;overflow:hidden;box-shadow:0 0 60px rgba(229,9,20,.12)}

/* Kart üst başlık */
.ng-card-header{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;background:rgba(0,0,0,.45);border-bottom:1px solid rgba(255,255,255,.07);flex-wrap:wrap;gap:12px}
.ng-card-header-left{display:flex;flex-direction:column;gap:4px}
.ng-card-logo b{font-size:16px;letter-spacing:3px;font-weight:900;color:#fff}
.ng-card-logo small{display:block;font-size:9px;letter-spacing:5px;color:#cc0000}
.ng-card-subtitle{font-size:10px;letter-spacing:2px;color:#555;text-transform:uppercase;margin-top:2px}
.ng-card-header-right{display:flex;flex-direction:column;align-items:flex-end;gap:8px}
.ng-code-display{font-family:'Courier New',monospace;font-size:20px;color:#e87070;letter-spacing:4px;font-weight:700}

/* Kart gövdesi */
.ng-card-body{padding:24px}

/* Bilgi grid */
.ng-info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:20px}
.ng-info-item{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.07);border-radius:4px;padding:12px 14px}
.ng-info-label{font-size:10px;color:#666;letter-spacing:1px;text-transform:uppercase;display:block;margin-bottom:4px}
.ng-info-value{font-size:13px;font-weight:600;color:#ddd;display:block}
.ng-expired-text{color:#ff6b6b}

/* PPF bölgeleri */
.ng-regions-block{background:rgba(229,9,20,.05);border:1px solid rgba(229,9,20,.2);border-radius:4px;padding:14px 18px;margin-bottom:14px}
.ng-region-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:2px}
.region-tag{background:rgba(229,9,20,.15);border:1px solid rgba(229,9,20,.35);color:#ff9090;font-size:12px;font-weight:600;padding:4px 12px;border-radius:999px}

/* Notlar */
.ng-notes-block{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.07);border-radius:4px;padding:14px 18px}
.ng-notes-text{font-size:13px;color:#aaa;line-height:1.6}

/* Kart alt footer */
.ng-card-footer{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;background:rgba(0,0,0,.3);border-top:1px solid rgba(255,255,255,.06);flex-wrap:wrap;gap:14px}
.ng-qr-block{display:flex;flex-direction:column;align-items:center;gap:4px}
.ng-qr-img{width:72px;height:72px;border-radius:4px;border:1px solid rgba(255,255,255,.1)}
.ng-qr-label{font-size:9px;letter-spacing:2px;color:#555;text-transform:uppercase}
.ng-footer-actions{display:flex;gap:10px;flex-wrap:wrap}
.ng-btn-pdf{background:#cc0000;color:#fff;border:none;padding:10px 20px;font-size:13px;font-weight:700;cursor:pointer;border-radius:2px;letter-spacing:.5px;transition:background .2s}
.ng-btn-pdf:hover{background:#a80000}
.ng-btn-wa{display:inline-flex;align-items:center;background:#25D366;color:#fff;padding:10px 20px;font-size:13px;font-weight:700;border-radius:2px;letter-spacing:.5px;transition:background .2s}
.ng-btn-wa:hover{background:#1da851}
.ng-footer-note{font-size:10px;color:#444;max-width:220px;line-height:1.5}

/* Hata kartı */
.ng-error-card{text-align:center;padding:32px 20px}
.ng-error-icon{font-size:40px;color:#cc0000;margin-bottom:12px}
.ng-error-card h3{font-size:20px;color:#fff;margin-bottom:10px}
.ng-error-card p{color:#aaa}
.ng-error-card a{color:#e87070;text-decoration:underline}

/* Responsive */
@media(max-width:700px){
  .ng-info-grid{grid-template-columns:1fr 1fr}
  .ng-card-footer{flex-direction:column;align-items:flex-start}
  .ng-footer-note{max-width:100%}
  .ng-code-display{font-size:16px;letter-spacing:2px}
}

/* ============================================================
   PREMIUM OVERRIDE — Navbar + Hero + Buttons
   Tüm override'lar burada, orijinal stiller bozulmaz.
   ============================================================ */

/* ── FONT UPGRADE ── */
body{font-family:'Segoe UI',system-ui,-apple-system,Arial,sans-serif}

/* ── PRE-TOP BAR ── */
.pretop{
  height:36px;
  background:linear-gradient(90deg,#060606 0%,#0c0c0c 50%,#060606 100%);
  font-size:12px;
  letter-spacing:.4px;
  color:#999;
  border-bottom:none;
  box-shadow:0 1px 0 rgba(229,9,20,.2),0 2px 0 rgba(229,9,20,.06);
}

/* ── NAVBAR ── */
.header{
  height:80px;
  background:rgba(3,3,3,.92);
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);
  border-bottom:1px solid rgba(229,9,20,.18);
  box-shadow:0 1px 0 rgba(255,255,255,.04),0 6px 48px rgba(0,0,0,.7);
}

.logo b{
  background:linear-gradient(150deg,#ffffff 30%,rgba(255,255,255,.55));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  filter:drop-shadow(0 0 14px rgba(229,9,20,.4));
  letter-spacing:3px;
}
.logo small{
  text-shadow:0 0 18px rgba(229,9,20,.6);
  letter-spacing:8px;
}

nav{gap:2px}
nav a{
  font-size:13px;
  color:#b8b8b8;
  font-weight:600;
  padding:9px 14px;
  border-radius:3px;
  letter-spacing:.3px;
  transition:color .2s,background .2s;
}
nav a:hover{
  color:#fff;
  background:rgba(229,9,20,.08);
}

/* ── NAV ACTION BUTTONS ── */
.nav-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}

.nav-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:9px 16px;
  border-radius:3px;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.4px;
  white-space:nowrap;
  transition:transform .15s,box-shadow .2s,background .2s,border-color .2s;
  position:relative;
}

/* Garanti Sorgula — ghost/outline */
.nav-btn--ghost{
  background:transparent;
  border:1px solid rgba(229,9,20,.45);
  color:#e87070;
}
.nav-btn--ghost:hover{
  background:rgba(229,9,20,.1);
  border-color:rgba(229,9,20,.75);
  color:#fff;
  transform:translateY(-1px);
}

/* Randevu Al — WhatsApp yeşil */
.nav-btn--primary{
  background:linear-gradient(135deg,#25D366 0%,#1aaa52 100%);
  color:#fff;
  border:1px solid transparent;
  box-shadow:0 0 18px rgba(37,211,102,.25),inset 0 1px 0 rgba(255,255,255,.1);
}
.nav-btn--primary:hover{
  box-shadow:0 0 32px rgba(37,211,102,.45);
  transform:translateY(-1px);
}

/* Eski .head-btn geriye dönük uyumluluk */
.head-btn{
  background:linear-gradient(135deg,#e50914 0%,#aa000d 100%);
  padding:10px 22px;
  border-radius:3px;
  font-size:13px;
  letter-spacing:.6px;
  box-shadow:0 0 24px rgba(229,9,20,.38),inset 0 1px 0 rgba(255,255,255,.1);
  transition:box-shadow .2s,transform .15s;
}
.head-btn:hover{
  box-shadow:0 0 40px rgba(229,9,20,.6),inset 0 1px 0 rgba(255,255,255,.15);
  transform:translateY(-1px);
}

/* ── HERO ── */
.hero{
  min-height:100vh;
  padding:120px 6% 160px;
  align-items:center;
}

.hero-bg{
  background:
    linear-gradient(110deg,#050505 0%,rgba(5,5,5,.88) 36%,rgba(5,5,5,.18) 68%,transparent 100%),
    radial-gradient(ellipse 55% 65% at 80% 55%,rgba(229,9,20,.35),transparent),
    radial-gradient(ellipse 25% 35% at 90% 15%,rgba(255,36,53,.1),transparent),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero-inner{max-width:920px}

.mini{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:11.5px;
  letter-spacing:4.5px;
  color:#ff2435;
  font-weight:900;
  margin-bottom:8px;
}
.mini::before{
  content:"";
  display:inline-block;
  width:32px;height:2px;
  background:linear-gradient(90deg,#ff2435,rgba(255,36,53,.3));
  border-radius:2px;
}

h1{
  font-size:clamp(54px,8.5vw,118px);
  line-height:.88;
  letter-spacing:-5px;
  text-shadow:0 4px 80px rgba(0,0,0,.9);
}
h1 span{
  filter:drop-shadow(0 0 32px rgba(229,9,20,.5));
}

.hero-p{
  font-size:clamp(15px,1.7vw,21px);
  color:#cccccc;
  margin:26px 0 38px;
  max-width:520px;
  line-height:1.65;
  font-weight:400;
}

/* ── HERO BUTTONS ── */
.hero-buttons a{
  font-size:13.5px;
  letter-spacing:.7px;
  border-radius:3px;
  transition:transform .18s,box-shadow .22s,background .2s;
  position:relative;
  overflow:hidden;
}
.hero-buttons a:first-child{
  background:linear-gradient(135deg,#e50914 0%,#aa000d 100%);
  box-shadow:0 0 32px rgba(229,9,20,.42),inset 0 1px 0 rgba(255,255,255,.12);
  padding:18px 34px;
}
.hero-buttons a:first-child:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 48px rgba(229,9,20,.6);
}
.hero-buttons a:nth-child(2){
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.2);
  color:#e0e0e0;
  padding:18px 30px;
  backdrop-filter:blur(10px);
}
.hero-buttons a:nth-child(2):hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.35);
  transform:translateY(-3px);
}

/* ── HERO FEATURE BAR ── */
.hero-features{
  background:rgba(5,5,5,.97);
  border:1px solid rgba(229,9,20,.2);
  border-bottom:none;
  backdrop-filter:blur(16px);
  box-shadow:0 -8px 60px rgba(0,0,0,.8),inset 0 1px 0 rgba(255,255,255,.04);
}
.hero-features div{
  padding:28px 26px;
  border-right:1px solid rgba(255,255,255,.05);
  transition:background .22s;
}
.hero-features div:hover{background:rgba(229,9,20,.06)}
.hero-features div:last-child{border-right:none}
.hero-features strong{
  font-size:23px;
  font-weight:900;
  letter-spacing:-.5px;
  color:#fff;
  margin-bottom:5px;
}
.hero-features span{font-size:12.5px;color:#777;letter-spacing:.2px}

/* ── MOBILE OVERRIDE ── */
@media(max-width:1000px){
  .hero{min-height:92vh;padding-top:110px;padding-bottom:0}
  .hero-features{
    position:relative;left:auto;right:auto;bottom:auto;
    margin-top:40px;
    grid-template-columns:1fr 1fr;
    border-bottom:1px solid rgba(229,9,20,.2);
  }
  nav a:hover{background:none}
  .head-btn:hover{transform:none}
}
@media(max-width:600px){
  .hero-features{grid-template-columns:1fr}
  h1{letter-spacing:-3px}
  .hero-buttons a:first-child,.hero-buttons a:nth-child(2){padding:16px 24px;width:100%;text-align:center}
  .hero-buttons{flex-direction:column}
}
@media(max-width:480px){
  .ng-info-grid{grid-template-columns:1fr}
  .ng-card-header{flex-direction:column;align-items:flex-start}
  .ng-card-header-right{align-items:flex-start}
}
