
:root{
  --bg:#0f172a;
  --surface:#111827;
  --surface-2:#1e293b;
  --text:#f8fafc;
  --muted:#cbd5e1;
  --green:#16a34a;
  --green-2:#22c55e;
  --line:rgba(255,255,255,.12);
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit}
img{max-width:100%;display:block}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:20px clamp(20px,5vw,72px);
  background:rgba(15,23,42,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.brand img{width:210px;height:auto}
nav{display:flex;align-items:center;gap:28px;font-weight:700}
nav a{text-decoration:none;color:var(--muted)}
nav a:hover,nav a.active{color:var(--green-2)}
.hero{
  min-height:720px;
  position:relative;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(15,23,42,.96) 0%,rgba(15,23,42,.72) 44%,rgba(15,23,42,.35) 100%),
    url("assets/hero-pc-repair.png") center/cover no-repeat;
  border-bottom:1px solid var(--line);
}
.hero-content{
  width:min(var(--max),calc(100% - 40px));
  margin:auto;
  padding:90px 0;
}
.eyebrow{
  margin:0 0 12px;
  color:var(--green-2);
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.85rem;
}
h1,h2,h3{line-height:1.08;margin:0;color:white}
h1{
  max-width:850px;
  font-size:clamp(3rem,7vw,6.8rem);
  letter-spacing:-.07em;
}
h2{font-size:clamp(2rem,4vw,4rem);letter-spacing:-.05em}
h3{font-size:1.45rem}
.hero-copy{
  max-width:680px;
  margin:24px 0 0;
  font-size:clamp(1.08rem,2vw,1.35rem);
  color:var(--muted);
}
.button-row{display:flex;gap:16px;flex-wrap:wrap;margin-top:34px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:10px;
  font-weight:900;
  text-decoration:none;
  border:1px solid transparent;
  transition:transform .2s ease,background .2s ease,border .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn.primary{background:var(--green);color:white}
.btn.secondary{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.36);color:white}
.btn.dark{background:#020617;color:white}
.section{
  width:min(var(--max),calc(100% - 40px));
  margin:auto;
  padding:90px 0;
}
.intro{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.intro p:last-child{font-size:1.18rem;color:var(--muted)}
.services-grid{
  width:100%;
  max-width:none;
  padding:95px clamp(20px,5vw,72px);
  background:var(--surface);
  border-block:1px solid var(--line);
}
.section-heading{
  max-width:780px;
  margin:0 auto 44px;
  text-align:center;
}
.section-heading p:not(.eyebrow){color:var(--muted);font-size:1.15rem}
.cards{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.card{
  position:relative;
  overflow:hidden;
  padding:34px 28px;
  min-height:320px;
  text-align:center;
  background:linear-gradient(180deg,rgba(30,41,59,.95),rgba(15,23,42,.96));
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:0 24px 70px rgba(0,0,0,.22);
}
.card::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:4px;
  background:linear-gradient(90deg,var(--green),#60a5fa);
}
.icon{
  width:78px;
  height:78px;
  margin:0 auto 22px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:rgba(22,163,74,.13);
  border:1px solid rgba(34,197,94,.35);
}
.icon img{width:48px;height:48px}
.card h3{color:var(--green-2);margin-bottom:14px}
.card p{color:var(--text);margin:0;font-size:1.04rem}
.split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:54px;
  align-items:start;
}
.split p{color:var(--muted);font-size:1.12rem}
.feature-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.feature-list div{
  padding:24px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
}
.feature-list strong{display:block;color:white;margin-bottom:8px;font-size:1.08rem}
.feature-list span{display:block;color:var(--muted)}
.cta{
  width:min(var(--max),calc(100% - 40px));
  margin:20px auto 90px;
  padding:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border-radius:24px;
  background:linear-gradient(135deg,#15803d,var(--green));
  box-shadow:0 22px 70px rgba(22,163,74,.22);
}
.cta h2{font-size:clamp(1.8rem,4vw,3rem)}
.cta p{margin:10px 0 0;color:#ecfdf5}
.page-hero{
  width:min(var(--max),calc(100% - 40px));
  margin:auto;
  padding:90px 0 60px;
}
.page-hero h1{font-size:clamp(3rem,7vw,6rem)}
.content-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  padding:36px;
}
.service-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.service-list article{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
}
.service-list ul{margin:16px 0 0;padding-left:20px;color:var(--muted)}
.contact-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:28px;
}
.contact-details a{display:block;color:var(--green-2);font-weight:800;margin:10px 0;text-decoration:none}
form{display:grid;gap:16px}
label{font-weight:800;color:white}
input,textarea{
  width:100%;
  margin-top:7px;
  padding:15px 16px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#020617;
  color:white;
  font:inherit;
}
textarea{min-height:150px;resize:vertical}
footer{
  padding:38px 20px;
  border-top:1px solid var(--line);
  text-align:center;
  color:var(--muted);
  background:#0b1220;
}
.footer-inner{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:16px 24px;
  margin-bottom:14px;
}
.footer-inner a{color:var(--green-2);text-decoration:none;font-weight:800}
.reveal{animation:rise .7s ease both}
@keyframes rise{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
@media (max-width:980px){
  .site-header{position:static;flex-direction:column}
  nav{gap:18px}
  .brand img{width:190px}
  .hero{min-height:640px}
  .intro,.split,.contact-grid{grid-template-columns:1fr}
  .cards,.service-list,.feature-list{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .site-header{padding:18px}
  nav{width:100%;justify-content:center}
  h1{font-size:3rem}
  .hero{min-height:620px}
  .cards,.service-list,.feature-list{grid-template-columns:1fr}
  .cta{flex-direction:column;align-items:flex-start;padding:28px}
  .btn{width:100%}
}
