/* Sayfa bazlı CSS: projeler.html */

:root{
  --bg:#020b17;
  --white:#f4f7fb;
  --muted:rgba(255,255,255,.62);
  --red:#ff1e24;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg);
  color:var(--white);
  font-family:'Public Sans',sans-serif;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img,video{max-width:100%;display:block}
.container{
  width:min(1440px, calc(100% - 60px));
  margin:0 auto;
  position:relative;
  z-index:3;
}

/* Header copied from homepage behavior */
.topbar{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-shrink:0;
  position:relative;
  z-index:20;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-family:'Rajdhani',sans-serif;
  font-weight:700;
}
.brand-dot{
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--red);
  box-shadow:0 0 22px rgba(255,30,36,.35);
}
.brand-name{
  font-size:36px;
  letter-spacing:.02em;
  white-space:nowrap;
}
.nav{
  display:flex;
  align-items:center;
  gap:32px;
  font-size:18px;
  font-weight:600;
}
.nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  height:92px;
  color:rgba(255,255,255,.88);
  transition:color .25s ease, transform .25s ease, text-shadow .25s ease;
}
.nav a:hover,
.nav a.active{
  color:#fff;
  transform:translateY(-2px);
  text-shadow:0 0 8px rgba(255,30,36,.45);
}
.nav a::before{
  content:"";
  position:absolute;
  left:0;
  bottom:18px;
  width:100%;
  height:2px;
  background:linear-gradient(90deg, transparent, var(--red), transparent);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .35s ease;
}
.nav a:hover::before,
.nav a.active::before{transform:scaleX(1)}
.nav a::after{display:none!important;content:none!important}
.header-right{
  display:flex;
  align-items:center;
  gap:18px;
}
.header-cta{
  background:transparent;
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  font-weight:700;
  padding:14px 22px;
  font-family:'Rajdhani',sans-serif;
  font-size:15px;
  letter-spacing:.04em;
  white-space:nowrap;
  transition:color .25s ease, border-color .25s ease, background .25s ease;
}
.header-cta:hover{
  color:#ff1e24;
  border-color:#ff1e24;
  background:rgba(255,30,36,.05);
}
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  position:relative;
  cursor:pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after{
  content:"";
  position:absolute;
  left:12px;
  width:20px;
  height:2px;
  background:#fff;
  transition:.25s;
}
.menu-toggle span{top:22px}
.menu-toggle::before{top:15px}
.menu-toggle::after{top:29px}
.menu-toggle.is-open span{opacity:0}
.menu-toggle.is-open::before{top:22px;transform:rotate(45deg)}
.menu-toggle.is-open::after{top:22px;transform:rotate(-45deg)}
.mobile-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background:rgba(2,11,23,.96);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(14px);
  z-index:20;
}
.mobile-menu.is-open{display:block}
.mobile-menu a{
  display:flex;
  padding:15px 18px;
  border-top:1px solid rgba(255,255,255,.06);
  font-weight:600;
}
.mobile-menu a:first-child{border-top:0}

.sub-page{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(255,30,36,.13), transparent 25%),
    radial-gradient(circle at 82% 22%, rgba(80,150,255,.15), transparent 28%),
    linear-gradient(180deg,#020b17 0%,#030d19 48%,#010711 100%);
}
.sub-page::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,30,36,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,30,36,.035) 1px, transparent 1px);
  background-size:82px 82px;
  opacity:.45;
  pointer-events:none;
}
.sub-hero{
  position:relative;
  z-index:2;
  padding:112px 0 58px;
  text-align:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:13px;
  margin-bottom:22px;
  font-family:'Rajdhani',sans-serif;
  font-size:17px;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.pulse-dot{
  width:11px;
  height:11px;
  border-radius:50%;
  background:var(--red);
  position:relative;
  display:inline-block;
  box-shadow:0 0 12px rgba(255,30,36,.65);
}
.pulse-dot::before,
.pulse-dot::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:var(--red);
  opacity:.6;
  animation:pulseRing 1.8s ease-out infinite;
}
.pulse-dot::after{animation-delay:.9s}
@keyframes pulseRing{
  0%{transform:scale(1);opacity:.6}
  70%{transform:scale(3);opacity:0}
  100%{transform:scale(3);opacity:0}
}
.sub-hero h1{
  margin:0 auto 22px;
  max-width:980px;
  font-family:'Orbitron',sans-serif;
  font-size:clamp(42px, 5vw, 74px);
  line-height:1.08;
  letter-spacing:.035em;
  text-transform:uppercase;
  text-shadow:0 0 12px rgba(255,255,255,.08),0 0 30px rgba(80,150,255,.12);
}
.sub-hero p{
  max-width:780px;
  margin:0 auto;
  color:rgba(255,255,255,.68);
  font-size:20px;
  line-height:1.75;
  font-weight:600;
}

/* Footer final */
.footer{
  position:relative;
  background:#010711;
  border-top:1px solid rgba(255,255,255,.08);
  padding:70px 0 0;
  color:rgba(255,255,255,.55);
}
.footer::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:90%;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,30,36,0.9), transparent);
  box-shadow:0 0 10px rgba(255,30,36,0.6),0 0 25px rgba(255,30,36,0.3);
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}
.footer-logo img{
  max-width:300px;
  height:auto;
  display:block;
  transition:all .35s ease;
  filter:drop-shadow(0 0 12px rgba(255,140,0,.25));
}
.footer-logo img:hover{
  transform:scale(1.05);
  filter:drop-shadow(0 0 18px rgba(255,140,0,.6)) drop-shadow(0 0 35px rgba(255,80,0,.4));
}
.footer-desc{
  margin-top:12px;
  color:rgba(255,255,255,.6);
}
.footer-col h4{
  font-family:'Rajdhani',sans-serif;
  margin-bottom:14px;
  color:#fff;
  font-size:22px;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-col li{
  margin-bottom:8px;
  color:rgba(255,255,255,.6);
  transition:color .25s ease, transform .25s ease;
}
.footer-col li:hover{
  color:#ff1e24;
  transform:translateX(4px);
}
.footer-social{
  display:flex;
  gap:14px;
  margin-top:20px;
}
.footer-social a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  font-size:16px;
  transition:all .3s ease;
  background:rgba(255,255,255,.02);
}
.footer-social a:hover{
  transform:translateY(-3px);
  border-color:#ff1e24;
  color:#ff1e24;
  box-shadow:0 0 10px rgba(255,30,36,.4),0 0 25px rgba(255,30,36,.2);
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:40px;
  padding:20px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
}
.floating-cta{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:999;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:132px;
  height:42px;
  padding:0 15px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,30,36,.88);
  color:#fff;
  font-family:'Rajdhani',sans-serif;
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  box-shadow:0 12px 28px rgba(255,30,36,.20);
  transition:.28s;
}
@media(max-width:1100px){
  .nav{display:none}
  .menu-toggle{display:block}
  .header-cta{display:none}
  .topbar{height:84px}
  .brand-name{font-size:30px}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:760px){
  .container{width:calc(100% - 28px)}
  .sub-hero{padding:76px 0 46px}
  .sub-hero p{font-size:16px}
  .footer-grid{grid-template-columns:1fr}
  .footer-inner{display:grid}
  .footer-logo img{max-width:240px}
}

.projects-section{position:relative;z-index:2;padding:34px 0 108px}
.projects-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px}
.project-card{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));transition:.35s;clip-path:polygon(0 0,100% 0,100% calc(100% - 36px),calc(100% - 36px) 100%,0 100%)}
.project-img{position:relative;height:245px;overflow:hidden}.project-img img{width:100%;height:100%;object-fit:cover;filter:brightness(.82) contrast(1.08);transition:.45s ease}
.project-card:hover{transform:translateY(-8px);border-color:rgba(255,30,36,.42);box-shadow:0 20px 42px rgba(0,0,0,.38),0 0 22px rgba(255,30,36,.08)}
.project-card:hover .project-img img{transform:scale(1.06);filter:brightness(1) contrast(1.08)}
.project-content{position:relative;z-index:2;padding:24px 24px 30px}
.project-no{display:block;margin-bottom:16px;font-family:'Orbitron',sans-serif;font-size:42px;color:rgba(255,255,255,.14)}
.project-content h3{margin:0 0 12px;font-family:'Rajdhani',sans-serif;font-size:25px;font-weight:800;letter-spacing:.045em;text-transform:uppercase}
.project-content p{margin:0;color:rgba(255,255,255,.63);line-height:1.75}
.projects-cta{margin-top:42px;padding:38px;display:flex;align-items:center;justify-content:space-between;gap:24px;border:1px solid rgba(255,255,255,.08);background:linear-gradient(135deg,rgba(255,30,36,.16),rgba(255,255,255,.035))}
.projects-cta h2{margin:0 0 10px;font-family:'Orbitron',sans-serif;font-size:clamp(28px,3vw,44px);text-transform:uppercase}
.projects-cta p{margin:0;color:rgba(255,255,255,.62)}
.cta-btn{min-width:188px;height:56px;display:inline-flex;align-items:center;justify-content:center;background:#ff1e24;font-family:'Rajdhani',sans-serif;font-size:18px;font-weight:800;letter-spacing:.04em;transition:.25s}
.cta-btn:hover{transform:translateY(-3px);box-shadow:0 16px 30px rgba(255,30,36,.22)}
@media(max-width:1050px){.projects-grid{grid-template-columns:repeat(2,1fr)}.projects-cta{display:grid}}
@media(max-width:760px){.projects-grid{grid-template-columns:1fr}.project-img{height:220px}}

:root{
      --bg:#020b17;
      --white:#f4f7fb;
      --muted:rgba(255,255,255,.62);
      --red:#ff1e24;
    }
    *{box-sizing:border-box}
    html,body{margin:0;padding:0}
    body{background:var(--bg);color:var(--white);font-family:'Public Sans',sans-serif;overflow-x:hidden}
    a{text-decoration:none;color:inherit}
    img,video{max-width:100%;display:block}
    .container{width:min(1440px, calc(100% - 60px));margin:0 auto;position:relative;z-index:3}

    .hero{
      min-height:100svh;
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      background:#020b17;
    }
    .video-bg{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      opacity:.68;
      filter:brightness(.78) contrast(1.18) saturate(1.12);
      transform:scale(1.04);
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, rgba(1,8,18,.08), rgba(1,8,18,.38)),
        radial-gradient(circle at 50% 40%, rgba(65,145,255,.18), transparent 34%),
        repeating-linear-gradient(90deg, rgba(61,121,187,.06) 0 1px, transparent 1px 122px),
        repeating-linear-gradient(180deg, rgba(61,121,187,.04) 0 1px, transparent 1px 82px);
      pointer-events:none;
      z-index:1;
    }
    .hero::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at center, rgba(0,0,0,0) 0%, rgba(0,0,0,.12) 58%, rgba(0,0,0,.34) 100%);
      pointer-events:none;
      z-index:1;
    }

    .hero-grid-lines{
      position:absolute;
      inset:0;
      pointer-events:none;
      z-index:2;
      opacity:.9;
    }
    .hero-grid-lines i{
      position:absolute;
      display:block;
      background:linear-gradient(180deg, transparent, rgba(255,30,36,.9), transparent);
      box-shadow:0 0 14px rgba(255,30,36,.22), 0 0 1px rgba(255,30,36,.6);
      overflow:visible;
    }
    .hero-grid-lines i::before,
    .hero-grid-lines i::after{
      content:"";
      position:absolute;
      background:rgba(255,30,36,.9);
      box-shadow:0 0 12px rgba(255,30,36,.55);
    }
    .hero-grid-lines i::before{
      width:7px;
      height:7px;
      border-radius:50%;
      left:50%;
      top:0;
      transform:translate(-50%,-50%);
    }
    .hero-grid-lines i::after{
      width:1px;
      height:38px;
      left:50%;
      top:0;
      transform:translateX(-50%);
      background:linear-gradient(180deg, rgba(255,30,36,.95), transparent);
      animation:dataPulse 3.6s linear infinite;
    }
    .hero-grid-lines .v1{left:13%;top:13%;width:1px;height:64%}
    .hero-grid-lines .v2{left:63%;top:0;width:1px;height:56%}
    .hero-grid-lines .v3{right:18%;top:0;width:1px;height:30%}
    .hero-grid-lines .v4{left:80%;top:0;width:1px;height:74%}
    .hero-grid-lines .h1{
      left:0;
      top:46%;
      width:19%;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(255,30,36,.9), transparent);
    }
    .hero-grid-lines .h1::before{left:100%;top:50%}
    .hero-grid-lines .h1::after{
      width:44px;
      height:1px;
      left:0;
      top:50%;
      background:linear-gradient(90deg, transparent, rgba(255,30,36,.95), transparent);
      animation:dataPulseX 3.4s linear infinite;
    }
    .hero-grid-lines .h2{
      left:70%;
      top:57%;
      width:12%;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(255,30,36,.9), transparent);
    }
    .hero-grid-lines .h2::before{left:0;top:50%}
    .hero-grid-lines .h2::after{
      width:44px;
      height:1px;
      left:0;
      top:50%;
      background:linear-gradient(90deg, transparent, rgba(255,30,36,.95), transparent);
      animation:dataPulseX 3.2s linear infinite reverse;
    }

    .hero > .container{min-height:100svh;display:flex;flex-direction:column}

    .topbar{
      height:92px;display:flex;align-items:center;justify-content:space-between;gap:24px;
      flex-shrink:0;position:relative;z-index:10;
    }
    .brand{display:flex;align-items:center;gap:14px;font-family:'Rajdhani',sans-serif;font-weight:700}
    .brand-dot{width:32px;height:32px;border-radius:50%;background:var(--red);box-shadow:0 0 22px rgba(255,30,36,.35)}
    .brand-name{font-size:36px;letter-spacing:.02em;white-space:nowrap}
    .nav{display:flex;align-items:center;gap:38px;font-size:18px;font-weight:600}
    .nav a{
      position:relative;display:inline-flex;align-items:center;height:92px;color:rgba(255,255,255,.88);
      transition:color .25s ease, transform .25s ease, text-shadow .25s ease;
    }
    .nav a:hover{color:#fff;transform:translateY(-2px);text-shadow:0 0 8px rgba(255,30,36,.45)}
    .nav a::before{
      content:"";position:absolute;left:0;bottom:18px;width:100%;height:2px;
      background:linear-gradient(90deg, transparent, var(--red), transparent);
      transform:scaleX(0);transform-origin:center;transition:transform .35s ease;
    }
    .nav a:hover::before{transform:scaleX(1)}
    .nav a::after{content:"▼";font-size:9px;margin-left:6px;opacity:.72}

    .header-right{display:flex;align-items:center;gap:18px}
    .header-cta{
      background:transparent;
      border:1px solid rgba(255,255,255,.22);
      color:#fff;
      font-weight:700;
      padding:14px 22px;
      font-family:'Rajdhani',sans-serif;
      font-size:15px;
      letter-spacing:.04em;
      box-shadow:none;
      white-space:nowrap;
      transition:color .25s ease, border-color .25s ease, background .25s ease;
    }
    .header-cta:hover{
      color:#ff1e24;
      border-color:#ff1e24;
      background:rgba(255,30,36,.05);
    }
    .menu-toggle{display:none;width:46px;height:46px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.04);position:relative;cursor:pointer}
    .menu-toggle span,.menu-toggle::before,.menu-toggle::after{content:"";position:absolute;left:12px;width:20px;height:2px;background:#fff;transition:.25s}
    .menu-toggle span{top:22px}.menu-toggle::before{top:15px}.menu-toggle::after{top:29px}
    .menu-toggle.is-open span{opacity:0}.menu-toggle.is-open::before{top:22px;transform:rotate(45deg)}.menu-toggle.is-open::after{top:22px;transform:rotate(-45deg)}
    .mobile-menu{display:none;position:absolute;top:100%;left:0;right:0;background:rgba(2,11,23,.96);border:1px solid rgba(255,255,255,.08);backdrop-filter:blur(14px);z-index:20}
    .mobile-menu.is-open{display:block}
    .mobile-menu a{display:flex;padding:15px 18px;border-top:1px solid rgba(255,255,255,.06);font-weight:600}
    .mobile-menu a:first-child{border-top:0}

    .hero-content{
      flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;
      text-align:center;padding:28px 0 24px;position:relative;z-index:5;
    }
    .hero-title{
      position:relative;
      display:inline-block;
      font-family:'Orbitron',sans-serif;
      font-size:clamp(66px, 9.1vw, 148px);
      line-height:.94;
      letter-spacing:.105em;
      font-weight:900;
      text-transform:uppercase;
      margin:34px 0 22px;
      padding:20px 52px;
      text-shadow:0 0 30px rgba(255,255,255,.16), 0 0 50px rgba(55,140,255,.16);
    }
    .hero-title span{position:relative;z-index:2}
    .corner{position:absolute;width:22px;height:22px;border:2px solid rgba(255,255,255,.95);animation:cornerPulse 2.6s infinite}
    .corner.tl{top:0;left:0;border-right:none;border-bottom:none}
    .corner.tr{top:0;right:0;border-left:none;border-bottom:none}
    .corner.bl{bottom:0;left:0;border-right:none;border-top:none}
    .corner.br{bottom:0;right:0;border-left:none;border-top:none}
    @keyframes cornerPulse{0%,100%{opacity:.5}50%{opacity:1}}

    .hero-text{max-width:940px;font-size:22px;line-height:1.7;color:rgba(255,255,255,.58);font-weight:700;margin:0 auto 28px}

    .outline-btn{
      position:relative;
      overflow:hidden;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:202px;
      height:52px;
      border:2px solid rgba(255,255,255,.88);
      color:#fff;
      font-family:'Rajdhani',sans-serif;
      font-weight:800;
      font-size:17px;
      letter-spacing:.035em;
      text-transform:uppercase;
      background:rgba(255,255,255,.015);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
      isolation:isolate;
    }
    .outline-btn::before{
      content:"";position:absolute;inset:-1px;
      background:linear-gradient(105deg, transparent 0%, transparent 28%, rgba(255,255,255,.22) 42%, rgba(255,30,36,.18) 50%, transparent 64%, transparent 100%);
      transform:translateX(-140%);transition:transform .55s ease;z-index:0;
    }
    .outline-btn::after{
      content:"";
      position:absolute;
      left:9px;
      right:9px;
      bottom:7px;
      height:2px;
      background:linear-gradient(90deg, transparent, var(--red) 24%, #fff 50%, var(--red) 76%, transparent);
      transform:scaleX(.18);
      transform-origin:center;
      opacity:.9;
      transition:transform .22s ease, opacity .22s ease, box-shadow .22s ease;
      box-shadow:0 0 10px rgba(255,30,36,.20);
      z-index:0;
    }
    .outline-btn:hover{
      transform:translateY(-2px);
      border-color:#fff;
      background:rgba(255,255,255,.045);
      box-shadow:
        0 0 0 1px rgba(255,255,255,.10),
        0 14px 30px rgba(255,30,36,.16),
        0 0 22px rgba(255,30,36,.12),
        inset 0 0 0 1px rgba(255,255,255,.09);
    }
    .outline-btn:hover::before{transform:translateX(140%)}
    .outline-btn:hover::after{transform:scaleX(1);opacity:1;box-shadow:0 0 16px rgba(255,30,36,.35),0 0 30px rgba(255,30,36,.20)}
    .outline-btn span{position:relative;z-index:1}

    .services-row{
      position:relative;
      z-index:5;
      padding:18px 0 34px;
      flex-shrink:0;
    }
    .services-grid{
      display:grid;
      grid-template-columns:repeat(6,minmax(0,1fr));
      gap:72px;
      align-items:start;
    }
    .service-item{
      text-align:center;
      padding:6px 2px;
      position:relative;
    }
    .service-icon{
      height:106px;
      display:flex;
      align-items:flex-start;
      justify-content:center;
      margin-bottom:24px;
    }
    .service-icon svg{
      width:82px;
      height:82px;
      stroke:var(--red);
      fill:none;
      stroke-width:5.3;
      stroke-linecap:round;
      stroke-linejoin:round;
      filter:drop-shadow(0 0 16px rgba(255,30,36,.34));
      transition:transform .3s ease, filter .3s ease, stroke .3s ease;
    }
    .service-item:hover .service-icon svg{
      stroke:#ff3a3f;
      filter:drop-shadow(0 0 22px rgba(255,30,36,1));
      transform:scale(1.16) translateY(-4px);
    }
    
    .service-item:hover .service-icon svg{
      stroke:#ff3a3f;
      filter:drop-shadow(0 0 16px rgba(255,30,36,.9));
      transform:scale(1.12);
    }
    .service-item::after{
      content:"";
      position:absolute;
      left:50%;
      bottom:-6px;
      width:0%;
      height:2px;
      background:linear-gradient(90deg, transparent, var(--red), transparent);
      transform:translateX(-50%);
      transition:width .35s ease;
    }
    .service-item:hover::after{width:70%}

    .service-title{
      font-family:'Rajdhani',sans-serif;
      font-size:17px;
      font-weight:800;
      letter-spacing:.14em;
      color:rgba(255,255,255,.96);
      text-transform:uppercase;
      line-height:1.05;
      text-shadow:0 0 10px rgba(255,255,255,.05);
    }

    .why-section{
      position:relative;overflow:hidden;padding:118px 0 110px;
      background:radial-gradient(circle at 18% 30%, rgba(36,112,216,.16), transparent 28%),radial-gradient(circle at 80% 50%, rgba(255,30,36,.08), transparent 28%),linear-gradient(180deg, #03101f 0%, #020a15 100%);
      border-top:1px solid rgba(255,255,255,.06);
    }
    .why-section::before{content:"";position:absolute;inset:0;background:linear-gradient(rgba(255,30,36,.045) 1px, transparent 1px),linear-gradient(90deg, rgba(255,30,36,.045) 1px, transparent 1px);background-size:80px 80px;opacity:.55}
    .why-wrap{
      display:grid;
      grid-template-columns:1.14fr .86fr;
      align-items:center;
      gap:34px;
      min-height:560px;
      position:relative;
      z-index:2;
    }
    .why-copy{
      max-width:860px;
      width:100%;
    }
    .why-kicker{
      display:inline-flex;
      align-items:center;
      gap:14px;
      font-family:'Rajdhani',sans-serif;
      font-size:22px;
      letter-spacing:.20em;
      font-weight:800;
      text-transform:uppercase;
      margin-bottom:22px;
      color:#fff;
    }
    .pulse-dot{width:11px;height:11px;border-radius:50%;background:var(--red);position:relative;display:inline-block;box-shadow:0 0 12px rgba(255,30,36,.65)}
    .pulse-dot::before,.pulse-dot::after{content:"";position:absolute;inset:0;border-radius:50%;background:var(--red);opacity:.6;animation:pulseRing 1.8s ease-out infinite}
    .pulse-dot::after{animation-delay:.9s}
    @keyframes pulseRing{0%{transform:scale(1);opacity:.6}70%{transform:scale(3);opacity:0}100%{transform:scale(3);opacity:0}}
    .why-title{
      margin:0 0 30px;
      font-family:'Orbitron',sans-serif;
      font-size:clamp(46px, 4.55vw, 74px);
      line-height:1.03;
      letter-spacing:.032em;
      text-transform:uppercase;
      white-space:nowrap;
      text-align:left;
      text-shadow:0 0 25px rgba(255,255,255,.08);
    }
    .why-content{
      display:grid;
      grid-template-columns:220px 1fr;
      gap:28px;
      align-items:stretch;
      max-width:670px;
    }
    .exp-card{min-height:auto;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));padding:22px}
    .exp-card strong{font-family:'Orbitron',sans-serif;font-size:86px;line-height:1}
    .exp-card span{margin-top:14px;color:rgba(255,255,255,.72);text-align:center;font-weight:700}
    .why-list{margin:0;padding:0;list-style:none;display:grid;gap:15px}
    .why-list li{position:relative;padding-left:24px;font-size:18px;line-height:1.55;font-weight:600}
    .why-list li::before{content:"✓";position:absolute;left:0;color:var(--red);font-weight:900}
    .why-cta{margin-top:30px;display:inline-flex;align-items:center;justify-content:center;height:56px;padding:0 22px;background:var(--red);font-family:'Rajdhani',sans-serif;font-size:20px;font-weight:800}
    .why-visual{
      position:relative;
      min-height:560px;
      display:flex;
      align-items:center;
      justify-content:flex-end;
      overflow:visible;
    }
    .camera-wrapper{position:relative;display:inline-block;width:min(620px,46vw);max-width:620px;flex:0 0 auto}
    .camera-img{width:100%;max-width:100%;display:block;transform:translateX(70px);filter:drop-shadow(0 28px 46px rgba(0,0,0,.42));transition:transform .08s linear}

    .content-section{padding:105px 0;background:linear-gradient(180deg,#020a15,#030d19);border-top:1px solid rgba(255,255,255,.06)}
    .section-head{max-width:900px;margin-bottom:38px}
    .section-label{color:#ff6b70;font-family:'Rajdhani',sans-serif;font-weight:800;letter-spacing:.22em;font-size:16px;text-transform:uppercase}
    .section-title{font-family:'Orbitron',sans-serif;font-size:clamp(32px,4vw,56px);line-height:1.08;margin:14px 0 0;text-transform:uppercase}
    .cards{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
    .card{min-height:260px;padding:30px;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018))}
    .card .num{font-family:'Orbitron',sans-serif;color:rgba(255,255,255,.18);font-size:52px;margin-bottom:34px}
    .card h3{font-family:'Rajdhani',sans-serif;font-size:26px;text-transform:uppercase;margin:0 0 12px}
    .card p{color:rgba(255,255,255,.64);line-height:1.75;margin:0}
    .contact-band{padding:92px 0 110px;background:#020914;border-top:1px solid rgba(255,255,255,.06)}
    .contact-shell{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:38px;border:1px solid rgba(255,255,255,.08);background:linear-gradient(135deg,rgba(255,30,36,.15),rgba(255,255,255,.035))}
    .contact-shell h2{margin:0 0 10px;font-family:'Orbitron',sans-serif;font-size:clamp(30px,4vw,50px);text-transform:uppercase}
    .contact-shell p{margin:0;color:var(--muted)}
    .contact-actions{display:flex;gap:14px;flex-wrap:wrap}
    .contact-btn{display:inline-flex;align-items:center;justify-content:center;min-height:58px;padding:0 24px;font-family:'Rajdhani',sans-serif;font-weight:800;border:1px solid rgba(255,255,255,.2)}
    .contact-btn.primary{background:var(--red);border-color:var(--red)}
    .footer{padding:30px 0;background:#010711;border-top:1px solid rgba(255,255,255,.08);color:rgba(255,255,255,.55)}
    .footer-inner{display:flex;justify-content:space-between;gap:20px}

    @media(max-width:1100px){
      .nav{display:none}.menu-toggle{display:block}.header-cta{display:none}.topbar{height:84px}.brand-name{font-size:30px}
      .services-grid{grid-template-columns:repeat(3,1fr)}
      .why-wrap{grid-template-columns:1fr}.why-content{grid-template-columns:1fr}.why-visual{justify-content:center;min-height:auto}.camera-wrapper{width:min(560px,100%)}.camera-img{transform:none}
      .cards{grid-template-columns:1fr 1fr}.contact-shell{display:grid}
    }
    @media(max-width:760px){
      .container{width:calc(100% - 28px)}.hero-title{font-size:clamp(36px,11vw,58px);padding:16px 34px}.hero-text{font-size:14px}
      .services-grid{grid-template-columns:repeat(2,1fr);gap:18px}.service-icon svg{width:42px;height:42px}.service-title{font-size:13px;letter-spacing:.06em}
      .why-section,.content-section,.contact-band{padding:72px 0}.why-title{font-size:clamp(30px,9vw,44px)}.cards{grid-template-columns:1fr}.footer-inner{display:grid}.camera-wrapper{width:min(420px,100%)}
    }
  
    .floating-cta{
      position:fixed;
      right:24px;
      bottom:24px;
      z-index:999;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:132px;
      height:42px;
      padding:0 15px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,30,36,.88);
      color:#fff;
      font-family:'Rajdhani',sans-serif;
      font-size:13px;
      font-weight:800;
      letter-spacing:.04em;
      box-shadow:0 12px 28px rgba(255,30,36,.20);
      transform:translateY(16px);
      opacity:0;
      pointer-events:none;
      transition:opacity .28s ease, transform .28s ease, box-shadow .28s ease, background .28s ease;
    }
    .floating-cta.is-visible{
      opacity:1;
      pointer-events:auto;
      transform:translateY(0);
    }
    .floating-cta:hover{
      transform:translateY(-2px);
      background:#ff1e24;
      box-shadow:0 16px 34px rgba(255,30,36,.26);
    }
    @media(max-width:760px){
      .floating-cta{
        right:14px;
        bottom:14px;
        min-width:120px;
        height:40px;
        font-size:12px;
        padding:0 13px;
      }
    }

  
    .industry-section{
      position:relative;
      overflow:hidden;
      padding:110px 0 118px;
      background:
        linear-gradient(180deg, rgba(4,13,27,.92), rgba(2,11,23,.98)),
        radial-gradient(circle at 22% 20%, rgba(70,120,190,.14), transparent 28%);
      border-top:1px solid rgba(255,255,255,.06);
    }
    .industry-section::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(120deg, rgba(255,255,255,.08) 0 1px, transparent 1px 220px),
        radial-gradient(circle at 18% 26%, rgba(255,255,255,.16) 0 8px, transparent 9px),
        radial-gradient(circle at 40% 5%, rgba(255,255,255,.14) 0 10px, transparent 11px),
        radial-gradient(circle at 88% 30%, rgba(255,255,255,.10) 0 12px, transparent 13px);
      opacity:.45;
      pointer-events:none;
    }
    .industry-section::after{
      content:"";
      position:absolute;
      left:0;right:0;bottom:0;height:42%;
      background:#020b17;
      pointer-events:none;
    }
    .industry-wrap{position:relative;z-index:2}
    .industry-head{text-align:center;max-width:1020px;margin:0 auto 72px}
    .industry-kicker{
      display:inline-flex;
      align-items:center;
      gap:13px;
      font-family:'Rajdhani',sans-serif;
      font-size:16px;
      font-weight:800;
      letter-spacing:.22em;
      text-transform:uppercase;
      margin-bottom:24px;
    }
    .industry-head h2{
      margin:0;
      font-family:'Orbitron',sans-serif;
      font-size:clamp(34px, 3.55vw, 54px);
      line-height:1.22;
      letter-spacing:.032em;
      text-transform:uppercase;
      text-shadow:0 0 22px rgba(255,255,255,.08);
    }
    .industry-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:26px;
      position:relative;
      z-index:3;
    }
    .industry-card{
      position:relative;
      overflow:hidden;
      min-height:340px;
      background:#162130;
      clip-path:polygon(0 0,100% 0,100% calc(100% - 34px),calc(100% - 34px) 100%,0 100%);
      border:1px solid rgba(255,255,255,.06);
      transition:transform .3s ease, filter .3s ease;
    }
    .industry-card:hover{transform:translateY(-6px);filter:drop-shadow(0 20px 30px rgba(0,0,0,.28))}
    .industry-img{
      height:228px;
      background-size:cover;
      background-position:center;
      position:relative;
    }
    .industry-img::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, transparent 35%, rgba(255,30,36,.82) 100%);
      mix-blend-mode:screen;
    }
    .img-hotel{background-image:url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=900&q=80')}
    .img-property{background-image:url('https://images.unsplash.com/photo-1449844908441-8829872d2607?auto=format&fit=crop&w=900&q=80')}
    .img-distribution{background-image:url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=900&q=80')}
    .img-schools{background-image:url('https://images.unsplash.com/photo-1562774053-701939374585?auto=format&fit=crop&w=900&q=80')}
    .industry-name{
      height:112px;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:18px;
      background:#182332;
      font-family:'Rajdhani',sans-serif;
      font-size:20px;
      font-weight:800;
      letter-spacing:.06em;
      text-transform:uppercase;
      color:#fff;
    }
    @media(max-width:1100px){
      .industry-grid{grid-template-columns:repeat(2,1fr)}
      .industry-head{margin-bottom:48px}
    }
    @media(max-width:760px){
      .industry-section{padding:76px 0 82px}
      .industry-grid{grid-template-columns:1fr;gap:18px}
      .industry-card{min-height:300px}
      .industry-img{height:205px}
      .industry-name{height:96px;font-size:18px}
    }

  
    .services-detail-section{
      position:relative;
      overflow:visible;
      padding:130px 0 112px;
      background:#020b17;
      border-top:1px solid rgba(255,255,255,.06);
    }
    .services-detail-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:84px 34px;
    }
    .service-detail-card{
      position:relative;
      min-height:286px;
      padding:92px 28px 32px;
      text-align:center;
      background:transparent;
      border:0;
      overflow:visible;
      transition:transform .3s ease, filter .3s ease;
    }
    .service-detail-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:#1a2533;
      border:1px solid rgba(255,255,255,.06);
      clip-path:polygon(0 0,100% 0,100% calc(100% - 46px),calc(100% - 46px) 100%,0 100%);
      z-index:0;
      transition:background .3s ease;
    }
    .service-detail-card:hover{
      transform:translateY(-6px);
      filter:drop-shadow(0 18px 28px rgba(0,0,0,.28));
    }
    .service-detail-card:hover::before{
      background:#1d2a3a;
    }
    .detail-icon{
      position:absolute;
      top:-48px;
      left:50%;
      transform:translateX(-50%);
      width:96px;
      height:96px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--red);
      box-shadow:0 20px 40px rgba(255,30,36,.25);
      z-index:3;
    }
    .detail-icon svg{
      width:56px;
      height:56px;
      stroke:#fff;
      fill:none;
      stroke-width:3.4;
      stroke-linecap:round;
      stroke-linejoin:round;
    }
    .detail-no{
      position:absolute;
      top:42px;
      right:30px;
      font-family:'Rajdhani',sans-serif;
      font-size:18px;
      font-weight:700;
      color:#b9c8da;
      z-index:2;
    }
    .service-detail-card h3{
      position:relative;
      z-index:2;
      margin:0 0 16px;
      font-family:'Rajdhani',sans-serif;
      font-size:22px;
      font-weight:800;
      letter-spacing:.04em;
      text-transform:uppercase;
      color:#fff;
    }
    .service-detail-card p{
      position:relative;
      z-index:2;
      margin:0;
      color:rgba(230,238,250,.72);
      font-size:16px;
      line-height:1.75;
    }
    @media(max-width:1100px){
      .services-detail-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media(max-width:760px){
      .services-detail-section{padding:104px 0 82px}
      .services-detail-grid{grid-template-columns:1fr;gap:58px}
      .service-detail-card{min-height:250px;padding:82px 24px 28px}
    }

  
    /* Hero alt ikonları - responsive final override */
    @media(max-width:1100px){
      .services-grid{gap:34px}
      .service-icon{height:72px;margin-bottom:14px}
      .service-icon svg{width:58px;height:58px;stroke-width:4.2}
      .service-title{font-size:14px;letter-spacing:.09em}
    }
    @media(max-width:760px){
      .services-grid{gap:22px}
      .service-icon{height:58px;margin-bottom:10px}
      .service-icon svg{width:48px;height:48px;stroke-width:3.8}
      .service-title{font-size:13px;letter-spacing:.08em}
    }

  
    .hero-light{
      position:absolute;
      inset:0;
      pointer-events:none;
      z-index:2;
      background:
        radial-gradient(circle at 50% 46%, rgba(80,155,255,.24), transparent 24%),
        radial-gradient(circle at 50% 46%, rgba(255,255,255,.08), transparent 14%);
      mix-blend-mode:screen;
      opacity:.85;
    }

  
    @media(max-width:760px){
      .outline-btn{
        min-width:170px;
        height:46px;
        font-size:15px;
      }
    }

  
    .hero-grid-lines .d1{
      left:8%;
      top:72%;
      width:28%;
      height:1px;
      transform:rotate(24deg);
      transform-origin:left center;
      background:linear-gradient(90deg, transparent, rgba(255,30,36,.78), transparent);
    }
    .hero-grid-lines .d1::before{left:72%;top:50%}
    .hero-grid-lines .d1::after{
      width:52px;
      height:1px;
      left:8%;
      top:50%;
      background:linear-gradient(90deg, transparent, rgba(255,30,36,.95), transparent);
      animation:dataPulseX 4s linear infinite;
    }
    .hero-grid-lines .d2{
      left:58%;
      top:16%;
      width:16%;
      height:1px;
      transform:rotate(-28deg);
      transform-origin:left center;
      background:linear-gradient(90deg, transparent, rgba(255,30,36,.78), transparent);
    }
    .hero-grid-lines .d2::before{left:100%;top:50%}
    .hero-grid-lines .d2::after{
      width:45px;
      height:1px;
      left:0;
      top:50%;
      background:linear-gradient(90deg, transparent, rgba(255,30,36,.95), transparent);
      animation:dataPulseX 3.8s linear infinite reverse;
    }
    .hero-grid-lines .node{
      width:9px;
      height:9px;
      border-radius:50%;
      background:rgba(255,30,36,.95);
      box-shadow:0 0 0 4px rgba(255,30,36,.08), 0 0 18px rgba(255,30,36,.72);
      animation:nodeBlink 2.2s ease-in-out infinite;
    }
    .hero-grid-lines .node::before,
    .hero-grid-lines .node::after{display:none}
    .hero-grid-lines .n1{left:20%;top:45%}
    .hero-grid-lines .n2{left:64%;top:28%;animation-delay:.45s}
    .hero-grid-lines .n3{left:88%;top:74%;animation-delay:.9s}

    @keyframes dataPulse{
      0%{transform:translateX(-50%) translateY(0);opacity:0}
      18%{opacity:1}
      100%{transform:translateX(-50%) translateY(360px);opacity:0}
    }
    @keyframes dataPulseX{
      0%{transform:translateX(0);opacity:0}
      18%{opacity:1}
      100%{transform:translateX(220px);opacity:0}
    }
    @keyframes nodeBlink{
      0%,100%{opacity:.45;transform:scale(.88)}
      50%{opacity:1;transform:scale(1.15)}
    }

  
    @media(max-width:1100px){
      .hero-title{
        font-size:clamp(56px, 9vw, 108px);
        letter-spacing:.075em;
        padding:18px 42px;
      }
    }
    @media(max-width:760px){
      .hero-title{
        font-size:clamp(34px, 11vw, 56px);
        letter-spacing:.05em;
        padding:14px 28px;
      }
      .hero-grid-lines{opacity:.55}
    }

  
    /* URL tarzı bağlantılı kırmızı cyber ağ */
    .hero-grid-lines{display:none!important}
    .hero-network{
      position:absolute;
      inset:0;
      z-index:2;
      pointer-events:none;
      opacity:.9;
      overflow:hidden;
      mix-blend-mode:screen;
    }
    .net-node{
      position:absolute;
      width:8px;
      height:8px;
      border-radius:50%;
      background:#ff1e24;
      box-shadow:
        0 0 0 4px rgba(255,30,36,.08),
        0 0 18px rgba(255,30,36,.75);
      animation:netBlink 2.4s ease-in-out infinite;
    }
    .net-node::after{
      content:"";
      position:absolute;
      inset:-9px;
      border-radius:50%;
      border:1px solid rgba(255,30,36,.18);
      animation:netRing 2.4s ease-out infinite;
    }

    .net-node.n1{left:11%;top:28%}
    .net-node.n2{left:22%;top:52%;animation-delay:.2s}
    .net-node.n3{left:36%;top:39%;animation-delay:.4s}
    .net-node.n4{left:55%;top:22%;animation-delay:.6s}
    .net-node.n5{left:67%;top:47%;animation-delay:.8s}
    .net-node.n6{left:82%;top:31%;animation-delay:1s}
    .net-node.n7{left:77%;top:72%;animation-delay:1.2s}
    .net-node.n8{left:15%;top:74%;animation-delay:1.4s}

    .net-line{
      position:absolute;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(255,30,36,.85), transparent);
      box-shadow:0 0 14px rgba(255,30,36,.18);
      transform-origin:left center;
      opacity:.72;
      overflow:hidden;
    }
    .net-line::before{
      content:"";
      position:absolute;
      top:0;
      left:-50px;
      width:50px;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(255,255,255,.95), rgba(255,30,36,1), transparent);
      animation:netFlow 3.8s linear infinite;
    }
    .net-line::after{
      content:"";
      position:absolute;
      right:-3px;
      top:-3px;
      width:6px;
      height:6px;
      border-radius:50%;
      background:rgba(255,30,36,.85);
      box-shadow:0 0 12px rgba(255,30,36,.55);
    }

    .net-line.l1{left:11%;top:28%;width:260px;transform:rotate(24deg)}
    .net-line.l2{left:22%;top:52%;width:210px;transform:rotate(-20deg)}
    .net-line.l3{left:36%;top:39%;width:260px;transform:rotate(-25deg)}
    .net-line.l4{left:55%;top:22%;width:220px;transform:rotate(28deg)}
    .net-line.l5{left:67%;top:47%;width:180px;transform:rotate(-18deg)}
    .net-line.l6{left:67%;top:47%;width:210px;transform:rotate(52deg)}
    .net-line.l7{left:15%;top:74%;width:250px;transform:rotate(-31deg)}
    .net-line.l8{left:22%;top:52%;width:210px;transform:rotate(38deg)}
    .net-line.l9{left:55%;top:22%;width:160px;transform:rotate(96deg);opacity:.48}

    .net-line.l2::before{animation-delay:.35s}
    .net-line.l3::before{animation-delay:.7s}
    .net-line.l4::before{animation-delay:1.05s}
    .net-line.l5::before{animation-delay:1.35s}
    .net-line.l6::before{animation-delay:1.7s}
    .net-line.l7::before{animation-delay:2.05s}
    .net-line.l8::before{animation-delay:2.35s}
    .net-line.l9::before{animation-delay:2.65s}

    @keyframes netFlow{
      0%{left:-55px;opacity:0}
      12%{opacity:1}
      88%{opacity:1}
      100%{left:100%;opacity:0}
    }
    @keyframes netBlink{
      0%,100%{opacity:.42;transform:scale(.85)}
      50%{opacity:1;transform:scale(1.18)}
    }
    @keyframes netRing{
      0%{transform:scale(.5);opacity:.45}
      100%{transform:scale(1.9);opacity:0}
    }

    @media(max-width:1100px){
      .hero-network{opacity:.58}
      .net-line{opacity:.45}
    }
    @media(max-width:760px){
      .hero-network{opacity:.34}
      .net-node{width:6px;height:6px}
      .net-line{opacity:.32}
    }

  
    


  
    /* WHY SECTION FINAL FIX - minimal, non-destructive */
    .why-section .why-wrap{
      grid-template-columns:1.08fr .92fr !important;
      align-items:center !important;
      gap:34px !important;
    }

    .why-section .why-copy{
      max-width:900px !important;
      width:100% !important;
      text-align:left !important;
    }

    .why-section .why-kicker{
      font-size:18px !important;
      letter-spacing:.18em !important;
      margin-bottom:14px !important;
      justify-content:flex-start !important;
    }

    .why-section .why-title{
      display:block !important;
      width:100% !important;
      max-width:none !important;
      margin:0 0 24px !important;
      font-family:'Orbitron',sans-serif !important;
      font-size:clamp(42px, 3.6vw, 62px) !important;
      line-height:1.05 !important;
      letter-spacing:.03em !important;
      text-transform:uppercase !important;
      white-space:nowrap !important;
      text-align:left !important;
      word-break:normal !important;
      overflow-wrap:normal !important;
    }

    .why-section .why-content{
      max-width:670px !important;
      grid-template-columns:220px 1fr !important;
      align-items:stretch !important;
    }

    .why-section .why-visual{
      display:flex !important;
      visibility:visible !important;
    }

    @media(max-width:1100px){
      .why-section .why-wrap{
        grid-template-columns:1fr !important;
      }
      .why-section .why-title{
        white-space:normal !important;
        font-size:clamp(34px, 7vw, 52px) !important;
      }
      .why-section .why-content{
        max-width:none !important;
        grid-template-columns:1fr !important;
      }
    }

    @media(max-width:760px){
      .why-section .why-kicker{
        font-size:15px !important;
        letter-spacing:.16em !important;
      }
      .why-section .why-title{
        font-size:clamp(30px, 9vw, 44px) !important;
      }
    }

  
    /* Industry headline final URL-like sizing */
    .industry-section .industry-head{
      max-width:1080px !important;
    }
    .industry-section .industry-head h2{
      font-size:clamp(34px, 3.55vw, 54px) !important;
      line-height:1.22 !important;
      letter-spacing:.032em !important;
    }
    @media(max-width:760px){
      .industry-section .industry-head h2{
        font-size:clamp(25px, 7vw, 36px) !important;
        line-height:1.2 !important;
      }
    }

  
.footer{
  background:#010711;
  border-top:1px solid rgba(255,255,255,.08);
  padding:70px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}
.footer-col h4{
  font-family:'Rajdhani',sans-serif;
  margin-bottom:14px;
}
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-col li{
  margin-bottom:8px;
  color:rgba(255,255,255,.6);
}
.footer-desc{
  margin-top:12px;
  color:rgba(255,255,255,.6);
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:40px;
  padding:20px 0;
}
@media(max-width:900px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:600px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}


.footer-logo img{
  max-width:220px;
  height:auto;
  display:block;
  filter:drop-shadow(0 0 12px rgba(255,140,0,.25));
}


/* FOOTER FINAL PREVIEW */
.footer{
  position:relative !important;
  background:#010711 !important;
  border-top:1px solid rgba(255,255,255,.08) !important;
  padding:70px 0 0 !important;
}

.footer::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:90%;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,30,36,0.9), transparent);
  box-shadow:
    0 0 10px rgba(255,30,36,0.6),
    0 0 25px rgba(255,30,36,0.3);
  animation:footerGlowLine 3s linear infinite;
}

@keyframes footerGlowLine{
  0%,100%{opacity:.62}
  50%{opacity:1}
}

.footer-logo img{
  max-width:300px !important;
  height:auto !important;
  display:block !important;
  transition:all .35s ease !important;
  filter:drop-shadow(0 0 12px rgba(255,140,0,.25)) !important;
}

.footer-logo img:hover{
  transform:scale(1.05);
  filter:
    drop-shadow(0 0 18px rgba(255,140,0,.6))
    drop-shadow(0 0 35px rgba(255,80,0,.4)) !important;
}

.footer-social{
  display:flex;
  gap:14px;
  margin-top:20px;
}

.footer-social a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  font-size:16px;
  transition:all .3s ease;
  background:rgba(255,255,255,.02);
}

.footer-social a:hover{
  transform:translateY(-3px);
  border-color:#ff1e24;
  color:#ff1e24;
  box-shadow:
    0 0 10px rgba(255,30,36,.4),
    0 0 25px rgba(255,30,36,.2);
}

.footer-social a:last-child:hover{
  color:#25D366;
  border-color:#25D366;
  box-shadow:
    0 0 12px rgba(37,211,102,.5),
    0 0 25px rgba(37,211,102,.3);
}

.footer-col h4{
  color:#fff;
  font-size:22px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.footer-col li{
  transition:color .25s ease, transform .25s ease;
}

.footer-col li:hover{
  color:#ff1e24;
  transform:translateX(4px);
}

@media(max-width:600px){
  .footer-logo img{
    max-width:240px !important;
  }
}


/* NAV FINAL FIX - no dropdown arrows */
.nav a::after{
  display:none !important;
  content:none !important;
}
.nav{
  gap:32px !important;
}

/* Ortak header/footer düzeltmesi: sayfa içerik yapısına dokunmaz */
.inner-header {
  background:linear-gradient(180deg, rgba(1,8,18,.96), rgba(1,8,18,.90)), #020b17;
  border-bottom:1px solid rgba(255,255,255,.08);
  position:relative;
  z-index:50;
}
.inner-header .container { min-height:auto !important; }
.inner-header .topbar { height:92px; }

.inner-page .brand-name,
body .inner-header .brand-name {
  font-size:36px !important;
  color:#f4f7fb !important;
  opacity:1 !important;
  -webkit-text-fill-color:initial !important;
  text-shadow:0 0 12px rgba(255,255,255,.10), 0 0 18px rgba(255,30,36,.16);
}
.inner-page .brand-dot,
body .inner-header .brand-dot {
  width:32px !important;
  height:32px !important;
}
@media(max-width:760px){
  .inner-page .brand-name,
  body .inner-header .brand-name { font-size:20px !important; }
  .inner-page .brand-dot,
  body .inner-header .brand-dot { width:18px !important; height:18px !important; }
}

.component-header-wrap {
  background:linear-gradient(180deg, rgba(1,8,18,.96), rgba(1,8,18,.90)), #020b17;
  border-bottom:1px solid rgba(255,255,255,.08);
  position:relative;
  z-index:50;
}
.component-header-wrap .container {
  min-height:auto !important;
}
.component-header-wrap .topbar {
  height:92px;
}
.component-header-wrap .brand-name {
  font-size:36px !important;
  color:#f4f7fb !important;
  opacity:1 !important;
  -webkit-text-fill-color:initial !important;
  text-shadow:0 0 12px rgba(255,255,255,.10), 0 0 18px rgba(255,30,36,.16);
}
.component-header-wrap .brand-dot {
  width:32px !important;
  height:32px !important;
}
@media(max-width:760px){
  .component-header-wrap .brand-name {
    font-size:20px !important;
  }
  .component-header-wrap .brand-dot {
    width:18px !important;
    height:18px !important;
  }
}



/* Project premium design v5: sade kart, gradient overlay, text animation, micro interaction */
.project-card{display:block;color:inherit;text-decoration:none;isolation:isolate;cursor:pointer!important;transform:translateZ(0);will-change:transform,box-shadow,border-color;}
.project-card::before{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;background:linear-gradient(180deg,rgba(2,11,23,0) 24%,rgba(2,11,23,.55) 62%,rgba(255,30,36,.16) 100%);opacity:.72;transition:opacity .35s ease,background .35s ease;}
.project-card::after{content:"";position:absolute;inset:-1px;z-index:0;pointer-events:none;background:linear-gradient(135deg,rgba(255,30,36,.55),rgba(68,132,255,.18),rgba(255,255,255,.06));opacity:0;transition:opacity .35s ease;}
.project-card:hover{transform:translateY(-10px) scale(1.012);border-color:rgba(255,30,36,.55);box-shadow:0 28px 70px rgba(0,0,0,.44),0 0 32px rgba(255,30,36,.12);}
.project-card:hover::before{opacity:1;background:linear-gradient(180deg,rgba(2,11,23,0) 12%,rgba(2,11,23,.48) 48%,rgba(255,30,36,.25) 100%);}
.project-card:hover::after{opacity:.42;}
.project-img::after{content:"";position:absolute;inset:0;z-index:2;pointer-events:none;background:radial-gradient(circle at 72% 18%,rgba(255,255,255,.24),transparent 28%),linear-gradient(180deg,transparent 34%,rgba(2,11,23,.78) 100%);opacity:.45;transition:opacity .35s ease;}
.project-card:hover .project-img::after{opacity:.82;}
.project-card:hover .project-img img{transform:scale(1.095);filter:brightness(.9) contrast(1.15) saturate(1.1);}
.project-content{transition:transform .35s ease;}
.project-card:hover .project-content{transform:translateY(-8px);}
.project-content h3,.project-content p,.project-no{transition:transform .36s ease,opacity .36s ease,color .36s ease;}
.project-content h3{transform:translateY(6px);}
.project-content p{transform:translateY(10px);opacity:.68;}
.project-card:hover .project-content h3{transform:translateY(0);color:#fff;}
.project-card:hover .project-content p{transform:translateY(0);opacity:1;color:rgba(255,255,255,.76);}
.project-card:hover .project-no{opacity:.28;transform:translateX(4px);}
.project-hover-cue{position:absolute;right:18px;bottom:18px;z-index:5;width:46px;height:46px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:rgba(255,30,36,.92);color:#fff;box-shadow:0 14px 34px rgba(255,30,36,.32);opacity:0;transform:translate(10px,10px) scale(.86);transition:opacity .32s ease,transform .32s ease,box-shadow .32s ease;}
.project-card:hover .project-hover-cue{opacity:1;transform:translate(0,0) scale(1);box-shadow:0 18px 44px rgba(255,30,36,.42);}
.project-detail-btn,.project-category-pill,.project-premium-overlay{display:none!important;}
.project-gallery-count{top:16px;right:16px;background:rgba(3,10,22,.68);backdrop-filter:blur(10px);}
@media(max-width:700px){.project-hover-cue{opacity:1;transform:none;width:40px;height:40px}.project-content p{opacity:1;transform:none}.project-content h3{transform:none}}


/* Phase 2 - Premium projects page conversion upgrades */
.projects-page .sub-hero{
  padding:130px 0 72px;
  overflow:hidden;
}
.projects-page .sub-hero::before{
  content:"";
  position:absolute;
  inset:28px max(22px,6vw) 0;
  border:1px solid rgba(255,255,255,.08);
  border-radius:34px;
  background:
    radial-gradient(circle at 16% 8%,rgba(255,30,36,.20),transparent 28%),
    radial-gradient(circle at 84% 18%,rgba(53,137,255,.22),transparent 30%),
    linear-gradient(135deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
  box-shadow:0 28px 90px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06);
  pointer-events:none;
}
.projects-page .sub-hero::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:20px;
  width:min(820px,70vw);
  height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(255,30,36,.85),rgba(72,149,255,.75),transparent);
  box-shadow:0 0 26px rgba(255,30,36,.28);
}
.projects-page .sub-hero .container{position:relative;z-index:2;}
.projects-page .sub-hero h1{
  max-width:1120px;
  background:linear-gradient(180deg,#fff,#d8e8ff 55%,#94b8ef);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.projects-page .sub-hero p{max-width:860px;color:rgba(231,241,255,.78);}
.projects-admin-stats{
  margin-top:-42px!important;
  position:relative;
  z-index:5;
}
.projects-admin-stat{
  background:linear-gradient(145deg,rgba(10,26,52,.78),rgba(255,255,255,.035))!important;
  border-color:rgba(112,167,255,.16)!important;
  box-shadow:0 18px 44px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.07);
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.projects-admin-stat:hover{transform:translateY(-5px);border-color:rgba(255,30,36,.38)!important;box-shadow:0 22px 54px rgba(0,0,0,.34),0 0 28px rgba(255,30,36,.08);}
.projects-admin-stat strong{font-size:clamp(30px,4vw,50px)!important;background:linear-gradient(90deg,#fff,#ff5160);-webkit-background-clip:text;background-clip:text;color:transparent!important;}
.projects-filter-bar{
  position:sticky;
  top:82px;
  z-index:20;
  width:max-content;
  max-width:100%;
  margin:0 auto 34px!important;
  padding:10px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background:rgba(2,11,23,.72);
  backdrop-filter:blur(16px);
  box-shadow:0 16px 42px rgba(0,0,0,.24);
}
.projects-filter-btn{min-height:42px;}
.projects-grid{gap:30px!important;}
.project-card{
  border-radius:28px!important;
  clip-path:none!important;
  min-height:100%;
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.028))!important;
  border-color:rgba(255,255,255,.11)!important;
  box-shadow:0 18px 48px rgba(0,0,0,.22);
}
.project-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg,rgba(255,255,255,.16),rgba(255,30,36,.25),rgba(69,145,255,.18));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:.35;
  pointer-events:none;
  transition:opacity .3s ease;
}
.project-card:hover::after{opacity:.9;}
.project-img{height:280px!important;border-radius:26px 26px 0 0;}
.project-content{padding:26px 26px 34px!important;}
.project-content h3{font-size:28px!important;}
.project-no{font-size:38px!important;margin-bottom:12px!important;}
.project-hover-cue{right:22px!important;bottom:22px!important;}
.projects-proof-section{
  position:relative;
  z-index:2;
  padding:4px 0 92px;
}
.projects-proof-head{
  max-width:780px;
  margin:0 auto 32px;
  text-align:center;
}
.projects-proof-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
  color:#95bcff;
  font-family:'Rajdhani',sans-serif;
  font-weight:900;
  letter-spacing:.22em;
  font-size:14px;
}
.projects-proof-head h2{
  margin:0 0 14px;
  font-family:'Orbitron',sans-serif;
  font-size:clamp(28px,3.2vw,48px);
  line-height:1.15;
  text-transform:uppercase;
}
.projects-proof-head p{
  margin:0;
  color:rgba(255,255,255,.68);
  line-height:1.8;
  font-weight:600;
}
.projects-proof-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.projects-proof-card{
  min-height:210px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:26px 22px;
  background:
    radial-gradient(circle at 85% 8%,rgba(255,30,36,.16),transparent 30%),
    linear-gradient(160deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  box-shadow:0 18px 44px rgba(0,0,0,.22);
  transition:transform .25s ease,border-color .25s ease,background .25s ease;
}
.projects-proof-card:hover{transform:translateY(-6px);border-color:rgba(255,30,36,.34);background:radial-gradient(circle at 85% 8%,rgba(255,30,36,.22),transparent 32%),linear-gradient(160deg,rgba(255,255,255,.08),rgba(255,255,255,.025));}
.projects-proof-card i{
  width:52px;
  height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  margin-bottom:20px;
  color:#fff;
  background:linear-gradient(135deg,#ff1e24,#2f8dff);
  box-shadow:0 14px 30px rgba(255,30,36,.18);
}
.projects-proof-card strong{
  display:block;
  margin-bottom:10px;
  color:#fff;
  font-family:'Rajdhani',sans-serif;
  font-size:22px;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.projects-proof-card span{display:block;color:rgba(255,255,255,.68);line-height:1.65;}
.projects-cta{
  border-radius:30px!important;
  padding:46px!important;
  background:
    radial-gradient(circle at 12% 0%,rgba(255,30,36,.26),transparent 28%),
    radial-gradient(circle at 92% 12%,rgba(62,142,255,.24),transparent 30%),
    linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.025))!important;
  border-color:rgba(255,255,255,.13)!important;
  box-shadow:0 28px 74px rgba(0,0,0,.30);
}
.cta-btn{border-radius:999px!important;box-shadow:0 16px 34px rgba(255,30,36,.24);}
@media(max-width:1050px){.projects-proof-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.projects-filter-bar{position:relative;top:auto;width:100%;justify-content:flex-start;overflow:auto;flex-wrap:nowrap!important;}}
@media(max-width:760px){.projects-page .sub-hero{padding:88px 0 54px}.projects-page .sub-hero::before{inset:14px 14px 0;border-radius:24px}.projects-admin-stats{margin-top:-24px!important}.project-img{height:230px!important}.projects-proof-grid{grid-template-columns:1fr}.projects-cta{padding:30px!important}.projects-filter-btn{white-space:nowrap}}
