
:root{
  --bg:#07070b;
  --bg-soft:#0d1017;
  --panel:rgba(13,16,23,.72);
  --text:#f4f7fb;
  --muted:#b5bfd2;
  --line:rgba(255,255,255,.08);
  --accent:#ff4d3b;
  --accent-2:#ff705e;
  --shadow:0 22px 64px rgba(0,0,0,.40);
  --radius:22px;
  --max:1280px;
  --header-h:84px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:Inter,Arial,Helvetica,sans-serif;
  line-height:1.5;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,77,59,.14), transparent 26%),
    radial-gradient(circle at 82% 20%, rgba(105,66,255,.08), transparent 24%),
    linear-gradient(180deg,#07070b 0%, #0a0d15 52%, #07070b 100%);
  overflow-x:hidden;
}
body.menu-open{overflow:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}
.container{width:min(var(--max), calc(100% - 32px)); margin-inline:auto}

.site-header{
  position:sticky; top:0; z-index:1000;
  height:var(--header-h);
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 22px;
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  background:linear-gradient(180deg, rgba(7,7,11,.82), rgba(7,7,11,.58));
  border-bottom:1px solid rgba(255,255,255,.06);
}
.brand{display:flex; align-items:center; gap:12px; min-width:0}
.brand img{width:42px; height:42px; object-fit:contain; filter:drop-shadow(0 0 16px rgba(255,77,59,.25))}
.brand span{font-weight:800; font-size:1.15rem; white-space:nowrap}

.main-nav{display:flex; align-items:center; gap:18px}
.main-nav a{font-size:.96rem; opacity:.9}
.main-nav a:hover{opacity:1}

.menu-toggle{
  display:none; width:48px; height:48px; border:none; border-radius:14px;
  background:rgba(255,255,255,.06); color:#fff; cursor:pointer; font-size:1.4rem;
}
.menu-overlay{
  position:fixed; inset:0; z-index:1200;
  background:rgba(5,7,12,.95);
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  opacity:0; visibility:hidden; pointer-events:none; transition:.28s ease;
  padding:100px 24px 32px;
}
.menu-overlay.active{opacity:1; visibility:visible; pointer-events:auto}
.menu-overlay-inner{width:min(680px,100%); margin:0 auto; display:grid; gap:14px}
.menu-overlay-inner a{
  padding:18px 20px; border-radius:18px; background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06); font-size:1.08rem;
}
.menu-cta{
  background:linear-gradient(135deg,var(--accent),var(--accent-2)) !important;
  border:none !important; color:#fff !important; font-weight:800; text-align:center;
}

.hero{position:relative; padding:56px 0 28px; overflow:hidden}
.hero-grid{
  display:grid; grid-template-columns:1.03fr .97fr; gap:34px; align-items:center;
  min-height:calc(100vh - var(--header-h) - 40px); position:relative; z-index:1;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px; padding:10px 14px; border-radius:999px;
  border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.04); margin-bottom:20px;
}
.eyebrow-dot{
  width:10px; height:10px; border-radius:50%; background:var(--accent);
  box-shadow:0 0 16px rgba(255,77,59,.8); animation:pulseDot 1.9s infinite ease-in-out;
}
@keyframes pulseDot{0%,100%{transform:scale(1)}50%{transform:scale(1.28)}}
.hero h1{margin:0 0 14px; font-size:clamp(2.1rem, 4vw, 4rem); line-height:.98; letter-spacing:-.035em; max-width:11ch}
.hero p{margin:0 0 26px; color:var(--muted); font-size:clamp(1rem, 1.5vw, 1.16rem); max-width:58ch}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px; align-items:center; margin-bottom:28px}
.btn,.ghost-btn{
  display:inline-flex; align-items:center; justify-content:center; min-height:52px; padding:0 22px;
  border-radius:16px; font-weight:800; transition:.24s ease;
}
.btn{color:#fff; background:linear-gradient(135deg,var(--accent),var(--accent-2)); box-shadow:0 16px 36px rgba(255,77,59,.24)}
.ghost-btn{color:#fff; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.04)}
.hero-metrics{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.metric{
  padding:18px 16px; border-radius:20px; background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.07); box-shadow:var(--shadow); animation:floatCard 5.6s ease-in-out infinite;
}
.metric:nth-child(2){animation-delay:.5s}
.metric:nth-child(3){animation-delay:1s}
.metric strong{display:block; font-size:1.4rem; margin-bottom:8px}
.metric span{color:#d6deef; font-size:.95rem}
@keyframes floatCard{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}

.hero-panel{
  position:relative; padding:16px; border-radius:28px; background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08); box-shadow:var(--shadow); overflow:hidden; display:flex; align-items:center; justify-content:center;
}
.hero-panel img{width:100%; border-radius:20px; object-fit:cover}
.hero-glow{
  position:absolute; inset:auto auto 5% 50%; transform:translateX(-50%); width:70%; height:130px;
  background:radial-gradient(circle, rgba(255,77,59,.28), transparent 70%); filter:blur(18px);
}

section{padding:34px 0}
.section-head{display:grid; grid-template-columns:1fr 1fr; gap:20px; align-items:end; margin-bottom:20px}
.section-head h2{margin:0; font-size:clamp(1.7rem, 2.4vw, 2.5rem); line-height:1.05}
.section-head p{margin:0; color:var(--muted)}

.services-grid,.work-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
.service-card,.work-card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.07); border-radius:24px; box-shadow:var(--shadow);
  padding:22px; min-height:100%;
}
.service-card h3,.work-card h3{margin:0 0 10px; font-size:1.18rem}
.service-card p,.work-card p{margin:0; color:var(--muted)}
.work-card img{width:100%; aspect-ratio:16/10; object-fit:cover; border-radius:18px; margin-bottom:16px}
.work-placeholder{
  aspect-ratio:16/10; border-radius:18px; margin-bottom:16px; display:grid; place-items:center;
  text-align:center; padding:20px; background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02)),
    radial-gradient(circle at center, rgba(255,77,59,.16), transparent 58%);
  border:1px dashed rgba(255,255,255,.12);
}
.work-placeholder span{font-size:.8rem; color:#ffb6ad; letter-spacing:.12em}
.work-placeholder strong{display:block; margin-top:8px; font-size:1.06rem}
.work-placeholder p{margin:10px 0 0; color:var(--muted)}

.panel{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.07); border-radius:28px; box-shadow:var(--shadow);
}
.cta-band{display:grid; grid-template-columns:1.2fr .8fr; gap:20px; align-items:center; padding:24px}
.cta-band h2{margin:0 0 10px; font-size:clamp(1.6rem, 2vw, 2.3rem)}
.cta-band p{margin:0 0 18px; color:var(--muted)}
.cta-band img{max-width:240px; justify-self:end}

.site-footer{padding:28px 16px 38px; border-top:1px solid rgba(255,255,255,.06); background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01))}
.footer-brand,.footer-links,.footer-copy{width:min(var(--max), calc(100% - 32px)); margin-inline:auto}
.footer-brand{display:flex; gap:16px; align-items:flex-start; margin-bottom:20px}
.footer-brand img{width:54px; height:54px}
.footer-brand p{margin:6px 0 0; color:var(--muted); max-width:64ch}
.footer-links{display:flex; flex-wrap:wrap; gap:16px 20px; margin-bottom:14px}
.footer-copy{color:#99a3b8}

.cookie-banner{
  position:fixed; left:16px; right:16px; bottom:16px; z-index:1300; display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:18px; border-radius:22px; background:rgba(14,18,28,.95); border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 60px rgba(0,0,0,.4); backdrop-filter:blur(16px);
}
.cookie-banner[hidden]{display:none !important}
.cookie-banner strong{display:block; margin-bottom:4px}
.cookie-banner p{margin:0; color:var(--muted)}
.cookie-actions{display:flex; flex-wrap:wrap; gap:10px; flex-shrink:0}
.cookie-actions button{
  min-height:46px; padding:0 16px; border-radius:14px; border:none; cursor:pointer; font-weight:800;
}
#cookieAccept{background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:#fff}
#cookieEssential{background:rgba(255,255,255,.08); color:#fff; border:1px solid rgba(255,255,255,.10)}

.page-hero{padding:56px 0 18px}
.page-hero h1{margin:0 0 12px; font-size:clamp(1.9rem, 3vw, 3rem)}
.page-hero p{margin:0; color:var(--muted); max-width:70ch}

.price-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
.price-card{padding:24px; border-radius:24px; background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)); border:1px solid rgba(255,255,255,.07); box-shadow:var(--shadow)}
.price-card h3{margin:0 0 8px}
.price{font-size:2rem; font-weight:800; margin:0 0 14px}
.price-card ul{margin:0 0 18px; padding-left:18px; color:var(--muted)}
.price-card li{margin-bottom:6px}

@media (max-width:1180px){
  .main-nav{display:none}
  .menu-toggle{display:inline-flex; align-items:center; justify-content:center}
  .hero-grid,.section-head,.cta-band{grid-template-columns:1fr}
  .cta-band img{justify-self:start}
}
@media (max-width:860px){
  .hero-metrics,.services-grid,.work-grid,.price-grid{grid-template-columns:1fr}
  .hero{padding-top:18px}
  .section-head h2,.page-hero h1{font-size:1.65rem}
  .cookie-banner{left:12px; right:12px; bottom:12px; flex-direction:column; align-items:flex-start}
  .cookie-actions{width:100%}
  .cookie-actions button{flex:1 1 160px}
}
@media (max-width:560px){
  .site-header{padding:12px 14px}
  .brand img{width:36px; height:36px}
  .brand span{max-width:180px; overflow:hidden; text-overflow:ellipsis}
  .hero h1{font-size:clamp(1.95rem, 8vw, 2.8rem)}
  .hero-actions{gap:10px}
  .btn,.ghost-btn{width:100%}
}
