*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --bg:#0f172a;
  --card:#16213a;
  --soft:#111c33;
  --text:#f8fafc;
  --muted:#cbd5e1;
  --subtle:#94a3b8;
  --accent:#f5c542;
  --accent-dark:#d4a820;
  --border:rgba(255,255,255,0.1);
  --radius:24px;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

html{
  scroll-behavior:smooth;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(1100px,92%);
  margin:auto;
}

/* NAVBAR */

header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:100;
  backdrop-filter:blur(14px);
  background:rgba(15,23,42,0.85);
  border-bottom:1px solid var(--border);
}

nav{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:22px;
  font-weight:800;
  letter-spacing:-1px;
}

.logo span{
  color:var(--accent);
}

.nav-links{
  display:flex;
  gap:28px;
  align-items:center;
  color:var(--muted);
  font-size:14px;
}

.nav-links a:hover{
  color:white;
}

.nav-btn{
  padding:10px 16px;
  border-radius:999px;
  background:var(--accent);
  color:#111827;
  font-weight:700;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:120px;
  background:
  radial-gradient(circle at 80% 20%, rgba(245,197,66,0.18), transparent 30%),
  radial-gradient(circle at 20% 70%, rgba(59,130,246,0.15), transparent 30%),
  var(--bg);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:50px;
  align-items:center;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
  margin-bottom:24px;
  background:rgba(255,255,255,0.03);
  font-size:14px;
}

.badge::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
}

h1{
  font-size:clamp(48px,7vw,82px);
  line-height:0.95;
  letter-spacing:-4px;
  margin-bottom:24px;
}

.hero p{
  font-size:19px;
  color:var(--muted);
  margin-bottom:34px;
  max-width:600px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:30px;
}

.btn{
  padding:14px 20px;
  border-radius:999px;
  font-weight:700;
  transition:0.25s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-primary{
  background:var(--accent);
  color:#111827;
}

.btn-primary:hover{
  transform:translateY(-3px);
  background:var(--accent-dark);
}

.btn-secondary{
  border:1px solid var(--border);
  background:rgba(255,255,255,0.04);
}

.btn-secondary:hover{
  transform:translateY(-3px);
}

.hero-tags{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:var(--subtle);
  font-size:14px;
}

/* MOCK WEBSITE */

.mock-card{
  background:linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  padding:24px;
  border-radius:30px;
  border:1px solid var(--border);
}

.mock-browser{
  background:white;
  border-radius:22px;
  overflow:hidden;
  color:black;
}

.browser-top{
  background:#e2e8f0;
  padding:14px;
  display:flex;
  gap:8px;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#94a3b8;
}

.mock-content{
  padding:28px;
}

.mock-label{
  font-size:12px;
  font-weight:800;
  color:#b45309;
  margin-bottom:10px;
}

.mock-content h3{
  font-size:34px;
  line-height:1;
  margin-bottom:14px;
  letter-spacing:-2px;
}

.mock-content p{
  color:#475569;
  margin-bottom:20px;
  font-size:14px;
}

.mock-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.mock-box{
  height:100px;
  border-radius:18px;
  background:linear-gradient(135deg,#fde68a,#93c5fd);
}

/* GENERAL */

section{
  padding:90px 0;
}

.section-head{
  max-width:700px;
  margin-bottom:44px;
}

.section-head h2{
  font-size:clamp(34px,5vw,54px);
  line-height:1;
  margin-bottom:16px;
  letter-spacing:-3px;
}

.section-head p{
  color:var(--muted);
  font-size:18px;
}

/* SERVICES */

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  background:var(--card);
  border-radius:var(--radius);
  border:1px solid var(--border);
  padding:28px;
  transition:0.25s;
}

.card:hover{
  transform:translateY(-6px);
}

.card-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  background:rgba(245,197,66,0.14);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  color:var(--accent);
  font-weight:900;
}

.card h3{
  margin-bottom:10px;
  font-size:22px;
}

.card p{
  color:var(--muted);
  font-size:15px;
}

/* PRICING */

.pricing{
  background:var(--soft);
}

.pricing-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:22px;
}

.price-card,
.side-card{
  background:var(--card);
  border-radius:30px;
  border:1px solid var(--border);
  padding:34px;
}

.price-card{
  border:1px solid rgba(245,197,66,0.3);
}

.price{
  font-size:58px;
  color:var(--accent);
  font-weight:900;
  margin:20px 0;
  letter-spacing:-1px;
  line-height:1;
}

.extra-card .price{
  margin-top:auto;
  letter-spacing:-1px;
}

.price span{
  font-size:16px;
  color:var(--muted);
  font-weight:600;
  letter-spacing:0;
}

.features{
  list-style:none;
  margin:24px 0 30px;
  display:grid;
  gap:14px;
  color:var(--muted);
}

.starter-features{
  grid-template-columns:1fr 1fr;
  gap:18px 28px;
}

.features li{
  line-height:1.5;
}

.features li::before{
  content:"✓";
  color:var(--accent);
  font-weight:900;
  margin-right:10px;
}

.mini-list{
  list-style:none;
  display:grid;
  gap:12px;
}

.mini-list li{
  background:rgba(255,255,255,0.04);
  padding:14px;
  border-radius:14px;
  border:1px solid var(--border);
  color:var(--muted);
}

/* PORTFOLIO */

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.portfolio-card{
  overflow:hidden;
  border-radius:28px;
  background:var(--card);
  border:1px solid var(--border);
}

.portfolio-image{
  height:220px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.portfolio-card:nth-child(1) .portfolio-image{
  background-image:url("assets/cafe-1.avif");
}

.portfolio-card:nth-child(2) .portfolio-image{
  background-image:url("assets/salon1.png");
}

.portfolio-card:nth-child(3) .portfolio-image{
  background-image:url("assets/gym4.png");
}

.portfolio-content{
  padding:22px;
}

.portfolio-content h3{
  margin-bottom:8px;
}

.portfolio-content p{
  color:var(--muted);
  font-size:15px;
}

/* PROCESS */

.process{
  background:var(--soft);
}

.steps{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}

.step{
  background:var(--card);
  border-radius:22px;
  border:1px solid var(--border);
  padding:22px;
}

.step-number{
  color:var(--accent);
  font-weight:900;
  margin-bottom:10px;
}

.step h3{
  margin-bottom:8px;
  font-size:18px;
}

.step p{
  color:var(--muted);
  font-size:14px;
}

/* CONTACT */

.contact-box{
  background:linear-gradient(145deg, rgba(245,197,66,0.15), rgba(255,255,255,0.04));
  border-radius:34px;
  border:1px solid rgba(245,197,66,0.25);
  padding:44px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
}

.contact-box h2{
  font-size:clamp(34px,5vw,56px);
  line-height:1;
  letter-spacing:-3px;
  margin-bottom:16px;
}

.contact-box p{
  color:var(--muted);
  font-size:18px;
  max-width:620px;
}

/* FOOTER */

footer{
  padding:34px 0;
  border-top:1px solid var(--border);
  color:var(--subtle);
  font-size:14px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
}

/* RESPONSIVE */

@media(max-width:900px){

  .hero-grid,
  .pricing-grid,
  .contact-box{
    grid-template-columns:1fr;
  }

  .cards,
  .portfolio-grid{
    grid-template-columns:1fr 1fr;
  }

  .steps{
    grid-template-columns:1fr 1fr;
  }

  .nav-links{
    display:none;
  }

  .features{
  grid-template-columns:1fr;
}

.starter-features{
  grid-template-columns:1fr;
}

}

@media(max-width:600px){

  .cards,
  .portfolio-grid,
  .steps{
    grid-template-columns:1fr;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  section{
    padding:70px 0;
  }
}

.side-card p{
  margin-bottom:30px;
  line-height:1.7;
}

.pricing-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:stretch;
}

.side-card{
  width:100%;
}

.maintenance-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:28px;
  width:100%;
  margin:0 auto 28px;
  align-items:stretch;
}

.featured-maintenance{
  border:1px solid rgba(245,197,66,0.45);
}

.extra-services-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
  margin-top:28px;
}

.extra-card{
  display:grid;
  grid-template-rows:auto auto 1fr auto;
}

.extra-card .price{
  align-self:end;
  margin-top:32px;
  letter-spacing:0;
  line-height:1.1;
}

@media(max-width:900px){
  .maintenance-grid,
  .extra-services-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:1100px){
  .extra-services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .extra-services-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:850px){
  .maintenance-grid{
    grid-template-columns:1fr;
  }
}



body{
  overflow-x:hidden;
}

@media(max-width:600px){

  .mock-card{
    display:none;
  }

  .hero{
    min-height:auto;
    padding-top:130px;
  }

  .hero-grid{
    grid-template-columns:1fr;
  }

}