/* ----- Reset & base ----- */
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --bg:#1d1f23; --panel:#26292f; --ink:#f2f3f5; --muted:#9aa4b2;
  --brand:#f2d34a; --line:#32363e; --card:#2c3037;
  --radius:14px; --radius-sm:10px; --shadow:0 10px 30px rgba(0,0,0,.25);
}
html,body{height:100%}
body{font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial;
     color:var(--ink); background:var(--bg);}

/* ----- Layout ----- */
.container{max-width:1200px;margin:0 auto;padding:24px}
.section{padding:56px 0;border-top:1px solid var(--line)}
h1{font-size:clamp(28px,4vw,48px);font-weight:750}
h2{font-size:clamp(22px,3vw,28px);color:var(--brand);margin-bottom:18px}
.lead{color:var(--ink);opacity:.88;max-width:70ch}

/* ----- Header / Nav ----- */
header{background:#15171a;border-bottom:1px solid var(--line);position:sticky;top:0;z-index:40}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;gap:10px;align-items:center;font-weight:800}
.brand .bolt{color:var(--brand)}
.menu{display:flex;gap:22px}
.menu a{color:var(--ink);text-decoration:none;opacity:.9;padding:8px 10px;border-radius:10px}
.menu a:hover{background:#1a1c1f}
.menu a.active{background:#2a2d33;border:1px solid #3a3f46}

/* ----- Hero ----- */
.hero{background:linear-gradient(180deg,#2a2d33 0%,#1d1f23 100%);border-radius:var(--radius);padding:36px;box-shadow:var(--shadow)}
.hero-img{aspect-ratio:16/6;background:#3b4250 url('img/hero.jpg') center/cover no-repeat;border-radius:var(--radius);border:1px solid var(--line);margin-top:18px}

/* ----- Cards, grids ----- */
.grid{display:grid;gap:18px}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
@media (max-width:1024px){.grid-4{grid-template-columns:repeat(3,1fr)}}
@media (max-width:768px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.grid-3,.grid-4{grid-template-columns:1fr}}

.card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius-sm);overflow:hidden}
.card .thumb{aspect-ratio:4/3;background:#414754 url('img/placeholder.jpg') center/cover no-repeat}
.card .pad{padding:14px}
.kicker{font-size:.8rem;color:#c9ac2a;letter-spacing:.04em;text-transform:uppercase}

/* ----- Project blocks (Character Design) ----- */
.project{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#202228}
.project-header{display:flex;gap:10px;align-items:center;padding:16px 18px;border-bottom:1px solid var(--line)}
.project-header .dot{width:8px;height:8px;border-radius:50%;background:var(--brand)}
.project-body{padding:18px}
.project-grid{display:grid;gap:12px;grid-template-columns:repeat(5,1fr)}
@media (max-width:1024px){.project-grid{grid-template-columns:repeat(4,1fr)}}
@media (max-width:768px){.project-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:520px){.project-grid{grid-template-columns:repeat(2,1fr)}}
.tile{aspect-ratio:1; background:#3f4652 url('img/placeholder.jpg') center/cover no-repeat;border-radius:10px;border:1px solid #4a515c}

/* ----- Footer ----- */
footer{border-top:1px solid var(--line);padding:28px 0;color:var(--muted)}
footer a{color:var(--brand);text-decoration:none}
.footer-cols{display:grid;gap:18px;grid-template-columns:1fr 1fr}
@media (max-width:640px){.footer-cols{grid-template-columns:1fr}}
.copy{margin-top:12px;color:#7e8896;font-size:.9rem;opacity:.9}

/* util */
.muted{color:var(--muted)}
.btn{display:inline-block;padding:10px 14px;border-radius:10px;background:#2b2f36;border:1px solid var(--line);text-decoration:none;color:var(--ink);margin:8px;}
.btn:hover{background:#343943}
.badge{display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius:999px;background:#2f333b;border:1px solid #3a404a;font-size:.88rem}

.network_icon {width:8%; padding: 5px;}

//Services

.services-body{display:flex;align-items:center;gap:12px;margin-bottom:28px;}
.services-head{display:flex;align-items:center;gap:12px;margin-bottom:28px;}
.services-icon{width:35px;height:auto;float:left;}
.services-head h1{font-size:32px;font-weight:800;color:#c9c9c9}

//What We Do
.whatwedo{padding:52px 40px;background:#2b2c30}


.what-grid{display:flex;align-items:flex-start;gap:40px;position:relative;padding:40px;}
.what-left{
  flex:1;
  position:relative;
 //min-height:300px;
}
.what-left::before{
  content:"";
  position:absolute;
  top:-90px;
  width:400px;
  height:600px;
  z-index: -1;
  background:url("img/what-bg.png") no-repeat left bottom;
  background-size:contain;
}
.what-right{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
}


.what-title{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.what-icon{width:22px;height:auto}
.what-title h2{font-size:26px;font-weight:800;letter-spacing:.02em;color:#c9c9c9}
.what-copy{max-width:620px;color:#d6d6d6;font-size:16px;line-height:1.7}

@media(max-width:768px){
  .what-grid{flex-direction:column}
  .what-left,.what-right{flex:none;width:100%}
}


/* Concept */
.conceptBlock{
  display:grid;
  grid-template-columns: 38% 62%;
  align-items:center;
  gap:22px;                   
  padding:22px;             
  border-radius:14px;
  background:rgba(46,43,40,.85);  
  box-shadow:0 8px 20px rgba(0,0,0,.3);
  margin:40px;
  min-height:220px;
  overflow:visible;   
}

.conceptBlock-left{

  color:#fcf059;
  padding:28px 24px;
  border-radius:14px;         
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.conceptBlock-left h3{font-size:26px;font-weight:800;margin:0 0 8px}
.conceptBlock-left p{font-size:20px;font-weight:600;line-height:1.35;margin:0}

.conceptBlock-right{
  height:100%;
  margin-right: 25px;
}
.conceptBlock-right img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:14px;         
  filter:contrast(1.02);
}

/* Responsive */
@media (max-width:900px){
  .conceptBlock{
    grid-template-columns:1fr;
    gap:16px;
    min-height:auto;
  }
}


//Brands

.brands{background:#2b2c30;padding:70px 40px}
.brands-title{color:#c9c9c9;font-size:24px;font-weight:700;margin-bottom:30px}

.brands-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:20px;
}
.brand-item{
  background:#1f2023;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,.2);
}
.brand-item img{
  max-width:120px;
  max-height:60px;
  object-fit:contain;
  transition:.3s;
}
.brand-item img:hover{
  filter:none; 
}


//Ilustration

.illustration{background:#2b2c30;position:relative;padding:52px 40px}
.illustration::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("img/illu-bg.png") right center no-repeat;
  background-size:420px auto;
  opacity:.05;
  pointer-events:none;
}
.illustration>*{position:relative;z-index:1}

.illustration-head{display:flex;align-items:center;gap:12px;margin-bottom:28px;margin-top:28px}
.illustration-icon{width:65px;height:auto}
.illustration-head h1{font-size:32px;font-weight:800;color:#c9c9c9}

.illustration-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px}
@media(max-width:768px){.illustration-grid{grid-template-columns:1fr}}

.illu-item{display:flex;flex-direction:column;align-items:flex-start;gap:8px}
.illu-figure{border-radius:10px;overflow:hidden;box-shadow:0 6px 16px rgba(0,0,0,.25);width:100%;aspect-ratio:16/9}
.illu-figure img{width:100%;height:100%;object-fit:cover;display:block}
.illu-caption{font-size:15px;color:#d6d6d6;font-weight:600}



