:root{
  --black:#050505;
  --panel:#0b0d10;
  --soft:#11151b;
  --gold:#f5b82e;
  --gold2:#ffcf57;
  --blue:#0088ff;
  --blue2:#02a9ff;
  --white:#f7f7f4;
  --muted:#9aa3ad;
  --line:rgba(255,255,255,.12);
  --shadow:0 30px 100px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Arial, sans-serif;
  background:var(--black);
  color:var(--white);
  line-height:1.55;
}
img,video{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px clamp(18px,4vw,54px);
  background:rgba(5,5,5,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.brand-link img{
  width:174px;
  height:58px;
  object-fit:contain;
}
.desktop-nav{
  display:flex;
  gap:34px;
  color:#dbe3ea;
  font-weight:600;
  font-size:.92rem;
}
.desktop-nav a:hover{color:var(--gold)}
.header-cta{
  padding:11px 18px;
  border:1px solid rgba(245,184,46,.55);
  border-radius:999px;
  color:var(--gold2);
  font-weight:800;
}

.hero{
  position:relative;
  min-height:calc(100vh - 86px);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:40px;
  padding:80px clamp(20px,6vw,86px);
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 78% 25%, rgba(0,136,255,.26), transparent 34%),
    radial-gradient(circle at 18% 20%, rgba(245,184,46,.18), transparent 28%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  z-index:-1;
}
.hero-content{max-width:780px}
.eyebrow,.section-label{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:900;
  font-size:.76rem;
}
h1,h2,h3{margin:0;line-height:1.02;letter-spacing:-.04em}
h1{
  font-size:clamp(3.4rem,9vw,8.6rem);
  max-width:900px;
}
h2{
  font-size:clamp(2.3rem,5vw,5rem);
  max-width:980px;
}
h3{font-size:1.5rem}
.hero-copy{
  font-size:clamp(1.05rem,1.6vw,1.35rem);
  color:#cdd5df;
  max-width:720px;
  margin:28px 0 34px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 20px;
  border-radius:999px;
  font-weight:900;
  border:1px solid transparent;
}
.btn-gold{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#090909;
}
.btn-blue{
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:white;
}
.btn-outline{
  border-color:rgba(255,255,255,.25);
  color:#fff;
}
.btn-outline-dark{
  border-color:rgba(5,5,5,.18);
  color:#101010;
}
.btn-dark{
  background:#101010;
  color:#fff;
}
.hero-logo{
  border:1px solid var(--line);
  border-radius:32px;
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.01));
  box-shadow:var(--shadow);
  padding:22px;
}
.hero-logo img{
  width:100%;
  border-radius:22px;
  object-fit:contain;
}

.section{
  padding:clamp(70px,10vw,140px) clamp(20px,6vw,86px);
}
.intro{
  max-width:1180px;
  margin:0 auto;
  text-align:center;
}
.intro p{
  color:var(--muted);
  font-size:1.18rem;
  max-width:820px;
  margin:24px auto 0;
}
.section-top{
  display:grid;
  grid-template-columns:1.1fr .8fr;
  gap:42px;
  align-items:end;
  margin-bottom:34px;
}
.section-top p{
  color:var(--muted);
  font-size:1.08rem;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.service-card{
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  min-height:245px;
}
.service-card span{
  color:var(--blue2);
  font-weight:900;
}
.service-card h3{margin:28px 0 12px}
.service-card p{color:var(--muted);margin:0}

.portfolio-section{
  background:
    radial-gradient(circle at top left, rgba(0,136,255,.10), transparent 32%),
    linear-gradient(180deg,#050505,#0a0a0a);
}
.project-card{
  border-top:1px solid var(--line);
  padding:54px 0 30px;
}
.project-head{
  max-width:920px;
  margin-bottom:22px;
}
.project-number{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(245,184,46,.12);
  color:var(--gold2);
  font-weight:900;
  font-size:.8rem;
  border:1px solid rgba(245,184,46,.2);
}
.project-head h3{
  font-size:clamp(2rem,4vw,4rem);
  margin:18px 0 8px;
}
.project-category{
  color:var(--blue2)!important;
  font-weight:800;
}
.project-head p{color:#c4ccd6}

.media-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.media-item{
  margin:0;
  border:1px solid var(--line);
  border-radius:26px;
  background:rgba(255,255,255,.035);
  overflow:hidden;
}
.media-item img,.media-item video{
  width:100%;
  height:320px;
  object-fit:cover;
  background:#111;
}
.video-item video{height:380px}
figcaption{
  padding:14px 16px 18px;
  color:#cdd5df;
  font-size:.9rem;
}
figcaption strong{color:var(--gold2)}

.contact-section{
  background:#f6f3eb;
  color:#101010;
}
.contact-card{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
  background:white;
  border-radius:38px;
  padding:clamp(36px,7vw,82px);
  box-shadow:0 30px 80px rgba(0,0,0,.12);
}
.contact-card p{
  max-width:780px;
  margin:22px auto;
  color:#4b5563;
  font-size:1.08rem;
}
.contact-actions{justify-content:center}
.contact-line{
  font-weight:800;
  color:#111!important;
}

.floating-whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:40;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  padding:13px 16px;
  font-weight:900;
  box-shadow:0 20px 50px rgba(0,136,255,.26);
}
.footer{
  padding:56px 20px;
  text-align:center;
  border-top:1px solid var(--line);
  color:#b7c0ca;
  background:#050505;
}
.footer img{
  width:220px;
  margin:0 auto 22px;
}
.footer p{
  max-width:920px;
  margin:8px auto;
  font-size:.92rem;
}

@media (max-width: 950px){
  .desktop-nav{display:none}
  .hero{
    grid-template-columns:1fr;
    padding-top:56px;
  }
  .hero-logo{order:-1}
  .section-top{grid-template-columns:1fr}
  .services-grid,.media-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 640px){
  .topbar{height:78px}
  .brand-link img{width:132px;height:48px}
  .header-cta{font-size:.82rem;padding:10px 13px}
  .hero{min-height:auto}
  .hero-actions .btn,.contact-actions .btn{width:100%}
  .services-grid,.media-grid{grid-template-columns:1fr}
  .media-item img,.media-item video,.video-item video{height:auto;max-height:520px}
  .floating-whatsapp{left:18px;text-align:center}
}


.portfolio-subsection{
  margin-top:22px;
}
.portfolio-subsection h4{
  margin:0 0 14px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
  font-weight:900;
}
.project-card .portfolio-subsection + .portfolio-subsection{
  margin-top:28px;
}
