*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  background:#08111e;
  color:#ffffff;
  line-height:1.5;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:95%;
  max-width:1180px;
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(8,17,30,0.92);
  border-bottom:1px solid rgba(255,255,255,0.06);
  box-shadow:0 10px 30px rgba(0,0,0,0.18);
}

.header-inner{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  font-size:22px;
  letter-spacing:0.3px;
}

.logo-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#ff6f00,#ff2d2d);
  color:#ffffff;
  font-size:24px;
  box-shadow:0 10px 25px rgba(255,90,0,0.28);
}

.logo-text{
  color:#ffffff;
}

.nav{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav a{
  font-size:15px;
  font-weight:600;
  color:rgba(255,255,255,0.88);
  transition:all 0.25s ease;
  position:relative;
  padding-bottom:4px;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  border-radius:999px;
  background:#ff6f00;
  transition:width 0.25s ease;
}

.nav a:hover{
  color:#ff8b2b;
}

.nav a:hover::after,
.nav a.active::after{
  width:100%;
}

.nav a.active{
  color:#ff6f00;
}
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.btn{
  padding:12px 22px;
  border-radius:16px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:all 0.25s ease;
  position:relative;
  overflow:hidden;
}

.btn{
  padding:12px 22px;
  border-radius:16px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:all 0.25s ease;
  position:relative;
  overflow:hidden;
}

.btn-outline{
  border:1px solid rgba(255,255,255,0.22);
  color:#ffffff;
  background:rgba(255,255,255,0.04);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.03);
}

.btn-primary{
  background:linear-gradient(135deg,#ff6a00,#ff4d3d);
  color:#ffffff;
  box-shadow:0 14px 30px rgba(255,106,0,0.28);
  border:1px solid rgba(255,255,255,0.08);
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(255,106,0,0.36);
  filter:brightness(1.03);
}


.menu-toggle{
  display:none;
  background:none;
  border:none;
  color:#ffffff;
  font-size:28px;
  cursor:pointer;
}

.hero{
  position:relative;
  background:
    linear-gradient(90deg, rgba(6,12,22,0.92) 0%, rgba(6,12,22,0.70) 45%, rgba(6,12,22,0.42) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  overflow:hidden;
}

.hero-grid{
  min-height:620px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:34px;
  align-items:center;
  padding:48px 0 56px;
}

.hero-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.10);
  font-size:14px;
  color:#f5f7fa;
  margin-bottom:24px;
}

.hero-content h1{
  font-size:82px;
  line-height:0.92;
  font-weight:900;
  letter-spacing:-2px;
  margin-bottom:6px;
}

.hero-content h2{
  font-size:38px;
  color:#ff7a00;
  font-weight:800;
  margin:0 0 24px;
}

.hero-tags span{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  padding:12px 16px;
  border-radius:16px;
  font-weight:600;
  font-size:15px;
  color:#f7fafc;
  backdrop-filter:blur(4px);
  transition:all 0.25s ease;
}

.hero-tags span:hover{
  background:rgba(255,255,255,0.12);
  transform:translateY(-1px);
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:24px;
}

.feature-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:80%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition:left 0.55s ease;
}

.hero-slogan{
  font-size:28px;
  font-weight:900;
  margin-bottom:18px;
  line-height:1.1;
}

.quote-box{
  max-width:560px;
  background:rgba(10,22,38,0.78);
  border:1px solid rgba(255,122,0,0.30);
  border-radius:22px;
  padding:20px 24px;
  box-shadow:0 16px 30px rgba(0,0,0,0.18);
  backdrop-filter:blur(6px);
}

.quote-box strong{
  display:block;
  color:#ff9b2f;
  font-size:20px;
  margin-bottom:8px;
}

.quote-box p{
  color:#e5e7eb;
  font-size:16px;
}

.hero-visual{
  min-height:430px;
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:0 30px 70px rgba(0,0,0,0.35);
  position:relative;
  overflow:hidden;
}

.hero-card{
  position:absolute;
  right:18px;
  bottom:18px;
  width:220px;
  padding:20px;
  border-radius:20px;
  background:rgba(8,17,30,0.82);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 16px 32px rgba(0,0,0,0.22);
  z-index:2;
}

.hero-card h3{
  font-size:21px;
  margin-bottom:8px;
  line-height:1.2;
}

.hero-card p{
  color:#d8e0ea;
  font-size:14px;
  line-height:1.5;
}

.section{
  padding:60px 0;
}

.light-section{
  background:#f6f7f9;
  color:#16202d;
}

.section-title{
  text-align:center;
  font-size:40px;
  font-weight:900;
  margin-bottom:28px;
  color:#111827;
}

.section-title.dark{
  color:#111827;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.step-card{
  background:#ffffff;
  border-radius:20px;
  padding:24px 18px;
  text-align:center;
  box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

.step-number{
  width:40px;
  height:40px;
  margin:0 auto 14px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-weight:900;
  color:#ffffff;
  background:linear-gradient(180deg,#ff7a00,#ff9b2f);
}

.step-icon{
  font-size:48px;
  margin-bottom:12px;
}

.step-card h3{
  font-size:24px;
  margin-bottom:8px;
  color:#111827;
}

.step-card p{
  color:#6b7280;
  font-size:15px;
}

.why-section{
  background:linear-gradient(90deg,#08111e,#0d1a2c 50%,#16202f 100%);
  padding:24px 0;
}

.why-grid{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:18px;
  align-items:center;
}

.why-title h2{
  font-size:36px;
  line-height:1;
  font-weight:900;
}

.why-items{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
}

.why-item{
  min-height:76px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:14px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  font-weight:700;
}

.categories-section{
  background:#ffffff;
  color:#16202d;
}

.categories-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:14px;
}

.category-card{
  min-height:125px;
  border-radius:20px;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:end;
  padding:14px;
  box-shadow:0 14px 30px rgba(0,0,0,0.12);
  background-size:cover;
  background-position:center;
  transition:transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(0,0,0,0.18);
}

.category-card span{
  position:relative;
  z-index:1;
  color:#ffffff;
  font-weight:800;
  font-size:17px;
  transition:transform 0.25s ease;
}

.category-card:hover span{
  transform:translateY(-2px);
}

.construction{background-image:url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=900&q=80');}
.renovation{background-image:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=900&q=80');}
.plumbing{background-image:url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=900&q=80');}
.electric{background-image:url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=900&q=80');}
.interior{background-image:url('https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=900&q=80');}
.landscape{background-image:url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=900&q=80');}

.more{
  background:#ededed;
  align-items:center;
  justify-content:center;
}

.more::before{
  display:none;
}

.more span{
  color:#333333;
}

.stats-section{
  background:linear-gradient(90deg,#6b340d 0%,#be6011 30%,#da7d15 50%,#93410d 100%);
  padding:24px 0;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.stat-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  min-height:72px;
}

.stat-icon{
  font-size:34px;
}

.stat-item strong{
  display:block;
  font-size:32px;
  line-height:1;
  font-weight:900;
}

.stat-item span{
  display:block;
  margin-top:4px;
  font-size:16px;
}

.app-section{
  background:linear-gradient(135deg,#07111d 0%,#10203a 50%,#0b1527 100%);
}

.app-grid{
  display:grid;
  grid-template-columns:320px 1fr 320px;
  gap:24px;
  align-items:center;
}

.phones{
  display:flex;
  gap:16px;
  justify-content:center;
  align-items:flex-end;
  flex-wrap:wrap;
}

.phone{
  width:145px;
  height:300px;
  border-radius:28px;
  border:7px solid #0a0a0a;
  background:#111111;
  position:relative;
  overflow:hidden;
}

.phone-notch{
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  width:70px;
  height:14px;
  border-radius:999px;
  background:#080808;
  z-index:2;
}

.phone-screen{
  position:absolute;
  inset:0;
  padding:32px 10px 10px;
  background:linear-gradient(180deg,#f7f8fb,#edf1f6);
  color:#111827;
}

.mini-logo{
  font-weight:900;
  font-size:18px;
  color:#143667;
  margin-bottom:10px;
}

.mini-search{
  height:28px;
  border-radius:8px;
  background:#ffffff;
  border:1px solid #d8dde6;
  margin-bottom:10px;
}

.mini-boxes{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:6px;
  margin-bottom:10px;
}

.mini-boxes div{
  background:#ffffff;
  border:1px solid #dce3eb;
  border-radius:8px;
  padding:8px 4px;
  text-align:center;
  font-size:10px;
  font-weight:700;
}

.mini-profile{
  background:#ffffff;
  border:1px solid #dce3eb;
  border-radius:12px;
  padding:10px;
}

.mini-profile strong{
  display:block;
  font-size:12px;
  margin-bottom:4px;
}

.mini-profile p{
  font-size:10px;
  color:#6b7280;
  margin-bottom:8px;
}

.mini-profile button{
  width:100%;
  height:28px;
  border:none;
  border-radius:8px;
  background:linear-gradient(90deg,#ff7a00,#ff9b2f);
  color:#ffffff;
  font-size:11px;
  font-weight:800;
  cursor:pointer;
}

.mini-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:6px;
  margin-bottom:8px;
}

.mini-gallery span{
  display:block;
  height:34px;
  border-radius:8px;
  background:linear-gradient(135deg,#d8e4f2,#b7c7db);
}

.app-content h2{
  font-size:46px;
  line-height:1.05;
  font-weight:900;
  margin-bottom:14px;
}

.app-content p{
  font-size:22px;
  color:#d4dde8;
  margin-bottom:22px;
  max-width:620px;
}

.store-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.store-btn{
  min-width:190px;
  padding:16px 18px;
  border-radius:16px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  font-weight:800;
  font-size:18px;
}

.trust-box{
  background:rgba(8,17,30,0.75);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:24px;
  padding:26px 22px;
  text-align:center;
}

.shield{
  font-size:48px;
  margin-bottom:10px;
}

.trust-box h3{
  font-size:32px;
  font-weight:900;
  margin-bottom:10px;
}

.trust-box p{
  color:#d7e0eb;
  font-size:17px;
}

.bottom-banner{
  background:#08111e;
  padding:26px 0 34px;
  text-align:center;
}

.bottom-banner h2{
  font-size:48px;
  font-weight:900;
}

.bottom-banner h2 span{
  color:#ff7a00;
}

.bottom-points{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  font-size:18px;
}

.footer{
  background:#060d17;
  padding:20px 0 30px;
  border-top:1px solid rgba(255,255,255,0.05);
  text-align:center;
  color:#aeb7c3;
  font-size:14px;
}

@media (max-width:1200px){
  .hero-grid{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr;}
  .why-items{grid-template-columns:repeat(3,1fr);}
  .categories-grid{grid-template-columns:repeat(4,1fr);}
  .app-grid{grid-template-columns:1fr;}
}

@media (max-width:900px){
  .menu-toggle{display:block;}
  .nav{
    position:absolute;
    top:86px;
    left:0;
    right:0;
    background:#0b1626;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:18px 20px;
    gap:16px;
  }
  .nav.show{display:flex;}
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{min-height:360px;}
  .steps-grid{grid-template-columns:repeat(2,1fr);}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
}

@media (max-width:700px){
  .header-inner{flex-wrap:wrap;}
  .header-actions{width:100%;justify-content:center;}
  .hero-content h1{font-size:58px;}
  .hero-content h2{font-size:24px;}
  .hero-slogan{font-size:22px;}
  .feature-btn{min-width:100%;}
  .hero-card{width:calc(100% - 24px);right:12px;bottom:12px;}
  .section-title{font-size:30px;}
  .why-items,
  .categories-grid,
  .steps-grid,
  .stats-grid{grid-template-columns:1fr;}
  .app-content h2{font-size:34px;}
  .app-content p{font-size:18px;}
  .bottom-banner h2{font-size:32px;}
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  background:#08111e;
  color:#ffffff;
  line-height:1.5;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:95%;
  max-width:1180px;
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(8,17,30,0.92);
  border-bottom:1px solid rgba(255,255,255,0.06);
  box-shadow:0 10px 30px rgba(0,0,0,0.18);
}

.header-inner{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  font-size:22px;
  letter-spacing:0.3px;
}

.logo-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#ff6f00,#ff2d2d);
  color:#ffffff;
  font-size:24px;
  box-shadow:0 10px 25px rgba(255,90,0,0.28);
}

.logo-text{
  color:#ffffff;
}

.nav{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav a{
  font-size:15px;
  font-weight:600;
  color:rgba(255,255,255,0.88);
  transition:0.25s ease;
}

.nav a:hover{
  color:#ff8b2b;
}

.nav a.active{
  color:#ff6f00;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.btn{
  padding:12px 20px;
  border-radius:14px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:0.25s ease;
}

.btn-outline{
  border:1px solid rgba(255,255,255,0.24);
  color:#ffffff;
  background:rgba(255,255,255,0.03);
}

.btn-outline:hover{
  background:rgba(255,255,255,0.07);
}

.btn-primary{
  background:linear-gradient(135deg,#ff6a00,#ff5a3d);
  color:#ffffff;
  box-shadow:0 12px 30px rgba(255,106,0,0.25);
}

.btn-primary:hover{
  transform:translateY(-1px);
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  color:#ffffff;
  font-size:28px;
  cursor:pointer;
}

.hero{
  position:relative;
  background:
    linear-gradient(90deg, rgba(6,12,22,0.92) 0%, rgba(6,12,22,0.70) 45%, rgba(6,12,22,0.42) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  overflow:hidden;
}

.hero-grid{
  min-height:680px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:34px;
  align-items:center;
  padding:48px 0 56px;
}

.hero-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.10);
  font-size:14px;
  color:#f5f7fa;
  margin-bottom:24px;
}

.hero-content h1{
  font-size:96px;
  line-height:0.92;
  font-weight:900;
  letter-spacing:-2px;
  margin-bottom:6px;
}

.hero-content h2{
  font-size:38px;
  color:#ff7a00;
  font-weight:800;
  margin:0 0 24px;
}

.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:26px;
}

.hero-tags span{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  padding:12px 16px;
  border-radius:14px;
  font-weight:600;
  font-size:15px;
  color:#f7fafc;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:24px;
}

.feature-btn{
  min-width:260px;
  padding:20px 22px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  box-shadow:0 20px 40px rgba(0,0,0,0.20);
  color:#ffffff;
  transition:0.25s ease;
}

.feature-btn:hover{
  transform:translateY(-2px);
}

.feature-btn strong{
  display:block;
  font-size:20px;
}

.feature-btn small{
  display:block;
  margin-top:5px;
  font-size:13px;
  opacity:0.96;
}

.feature-btn.orange{
  background:linear-gradient(135deg,#ff6f00,#ff9b2f);
}

.feature-btn.dark{
  background:linear-gradient(135deg,#17365f,#2b77a8);
}

.feature-btn span{
  font-size:28px;
  font-weight:900;
}

.hero-slogan{
  font-size:38px;
  font-weight:900;
  margin-bottom:18px;
  line-height:1.1;
}

.quote-box{
  max-width:560px;
  background:rgba(10,22,38,0.78);
  border:1px solid rgba(255,122,0,0.30);
  border-radius:20px;
  padding:18px 22px;
  box-shadow:0 16px 30px rgba(0,0,0,0.18);
}

.quote-box strong{
  display:block;
  color:#ff9b2f;
  font-size:22px;
  margin-bottom:6px;
}

.quote-box p{
  color:#e5e7eb;
  font-size:16px;
}

.hero-visual{
  min-height:500px;
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:0 30px 70px rgba(0,0,0,0.35);
  position:relative;
  overflow:hidden;
}

.hero-card{
  position:absolute;
  right:18px;
  bottom:18px;
  width:250px;
  padding:20px;
  border-radius:20px;
  background:rgba(8,17,30,0.82);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 16px 32px rgba(0,0,0,0.22);
  z-index:2;
}

.hero-card h3{
  font-size:21px;
  margin-bottom:8px;
  line-height:1.2;
}

.hero-card p{
  color:#d8e0ea;
  font-size:14px;
  line-height:1.5;
}

.section{
  padding:60px 0;
}

.light-section{
  background:#f6f7f9;
  color:#16202d;
}

.section-title{
  text-align:center;
  font-size:40px;
  font-weight:900;
  margin-bottom:28px;
  color:#111827;
}

.section-title.dark{
  color:#111827;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.step-card{
  background:#ffffff;
  border-radius:20px;
  padding:24px 18px;
  text-align:center;
  box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

.step-number{
  width:40px;
  height:40px;
  margin:0 auto 14px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-weight:900;
  color:#ffffff;
  background:linear-gradient(180deg,#ff7a00,#ff9b2f);
}

.step-icon{
  font-size:48px;
  margin-bottom:12px;
}

.step-card h3{
  font-size:24px;
  margin-bottom:8px;
  color:#111827;
}

.step-card p{
  color:#6b7280;
  font-size:15px;
}

.why-section{
  background:linear-gradient(90deg,#08111e,#0d1a2c 50%,#16202f 100%);
  padding:24px 0;
}

.why-grid{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:18px;
  align-items:center;
}

.why-title h2{
  font-size:36px;
  line-height:1;
  font-weight:900;
}

.why-items{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
}

.why-item{
  min-height:76px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:14px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  font-weight:700;
}

.categories-section{
  background:#ffffff;
  color:#16202d;
}

.categories-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:14px;
}

.category-card{
  min-height:125px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:end;
  padding:14px;
  box-shadow:0 14px 30px rgba(0,0,0,0.12);
  background-size:cover;
  background-position:center;
}

.category-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.65));
}

.category-card span{
  position:relative;
  z-index:1;
  color:#ffffff;
  font-weight:800;
  font-size:17px;
}

.construction{background-image:url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=900&q=80');}
.renovation{background-image:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=900&q=80');}
.plumbing{background-image:url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=900&q=80');}
.electric{background-image:url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=900&q=80');}
.interior{background-image:url('https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=900&q=80');}
.landscape{background-image:url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=900&q=80');}

.more{
  background:#ededed;
  align-items:center;
  justify-content:center;
}

.more::before{
  display:none;
}

.more span{
  color:#333333;
}

.stats-section{
  background:linear-gradient(90deg,#6b340d 0%,#be6011 30%,#da7d15 50%,#93410d 100%);
  padding:24px 0;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.stat-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  min-height:72px;
}

.stat-icon{
  font-size:34px;
}

.stat-item strong{
  display:block;
  font-size:32px;
  line-height:1;
  font-weight:900;
}

.stat-item span{
  display:block;
  margin-top:4px;
  font-size:16px;
}

.app-section{
  background:linear-gradient(135deg,#07111d 0%,#10203a 50%,#0b1527 100%);
}

.app-grid{
  display:grid;
  grid-template-columns:320px 1fr 320px;
  gap:24px;
  align-items:center;
}

.phones{
  display:flex;
  gap:16px;
  justify-content:center;
  align-items:flex-end;
  flex-wrap:wrap;
}

.phone{
  width:145px;
  height:300px;
  border-radius:28px;
  border:7px solid #0a0a0a;
  background:#111111;
  position:relative;
  overflow:hidden;
}

.phone-notch{
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  width:70px;
  height:14px;
  border-radius:999px;
  background:#080808;
  z-index:2;
}

.phone-screen{
  position:absolute;
  inset:0;
  padding:32px 10px 10px;
  background:linear-gradient(180deg,#f7f8fb,#edf1f6);
  color:#111827;
}

.mini-logo{
  font-weight:900;
  font-size:18px;
  color:#143667;
  margin-bottom:10px;
}

.mini-search{
  height:28px;
  border-radius:8px;
  background:#ffffff;
  border:1px solid #d8dde6;
  margin-bottom:10px;
}

.mini-boxes{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:6px;
  margin-bottom:10px;
}

.mini-boxes div{
  background:#ffffff;
  border:1px solid #dce3eb;
  border-radius:8px;
  padding:8px 4px;
  text-align:center;
  font-size:10px;
  font-weight:700;
}

.mini-profile{
  background:#ffffff;
  border:1px solid #dce3eb;
  border-radius:12px;
  padding:10px;
}

.mini-profile strong{
  display:block;
  font-size:12px;
  margin-bottom:4px;
}

.mini-profile p{
  font-size:10px;
  color:#6b7280;
  margin-bottom:8px;
}

.mini-profile button{
  width:100%;
  height:28px;
  border:none;
  border-radius:8px;
  background:linear-gradient(90deg,#ff7a00,#ff9b2f);
  color:#ffffff;
  font-size:11px;
  font-weight:800;
  cursor:pointer;
}

.mini-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:6px;
  margin-bottom:8px;
}

.mini-gallery span{
  display:block;
  height:34px;
  border-radius:8px;
  background:linear-gradient(135deg,#d8e4f2,#b7c7db);
}

.app-content h2{
  font-size:46px;
  line-height:1.05;
  font-weight:900;
  margin-bottom:14px;
}

.app-content p{
  font-size:22px;
  color:#d4dde8;
  margin-bottom:22px;
  max-width:620px;
}

.store-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.store-btn{
  min-width:190px;
  padding:16px 18px;
  border-radius:16px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  font-weight:800;
  font-size:18px;
}

.trust-box{
  background:rgba(8,17,30,0.75);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:24px;
  padding:26px 22px;
  text-align:center;
}

.shield{
  font-size:48px;
  margin-bottom:10px;
}

.trust-box h3{
  font-size:32px;
  font-weight:900;
  margin-bottom:10px;
}

.trust-box p{
  color:#d7e0eb;
  font-size:17px;
}

.bottom-banner{
  background:#08111e;
  padding:26px 0 34px;
  text-align:center;
}

.bottom-banner h2{
  font-size:48px;
  font-weight:900;
}

.bottom-banner h2 span{
  color:#ff7a00;
}

.bottom-points{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  font-size:18px;
}

.footer{
  background:#060d17;
  padding:20px 0 30px;
  border-top:1px solid rgba(255,255,255,0.05);
  text-align:center;
  color:#aeb7c3;
  font-size:14px;
}

@media (max-width:1200px){
  .hero-grid{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr;}
  .why-items{grid-template-columns:repeat(3,1fr);}
  .categories-grid{grid-template-columns:repeat(4,1fr);}
  .app-grid{grid-template-columns:1fr;}
}

@media (max-width:900px){
  .menu-toggle{display:block;}
  .nav{
    position:absolute;
    top:86px;
    left:0;
    right:0;
    background:#0b1626;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:18px 20px;
    gap:16px;
  }
  .nav.show{display:flex;}
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{min-height:360px;}
  .steps-grid{grid-template-columns:repeat(2,1fr);}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
}

@media (max-width:700px){
  .header-inner{flex-wrap:wrap;}
  .header-actions{width:100%;justify-content:center;}
  .hero-content h1{font-size:58px;}
  .hero-content h2{font-size:24px;}
  .hero-slogan{font-size:22px;}
  .feature-btn{min-width:100%;}
  .hero-card{width:calc(100% - 24px);right:12px;bottom:12px;}
  .section-title{font-size:30px;}
  .why-items,
  .categories-grid,
  .steps-grid,
  .stats-grid{grid-template-columns:1fr;}
  .app-content h2{font-size:34px;}
  .app-content p{font-size:18px;}
  .bottom-banner h2{font-size:32px;}
}
.logo-ger{
  color:#ffffff;
}

.logo-nas{
  color:#ff7a00;
}
.logo-text{
  font-weight:900;
  letter-spacing:1px;
}

.logo-nas{
  color:#ff7a00;
  text-shadow:0 0 10px rgba(255,122,0,0.4);
}
.logo-text{
  font-weight:900;
  letter-spacing:1px;
}

.logo-ger{
  color:#ffffff !important;
}

.logo-nas{
  color:#ff7a00 !important;
  text-shadow:0 0 10px rgba(255,122,0,0.35);
}
.hero-ger{
  color:#ffffff;
}

.hero-nas{
  color:#ff7a00;
  text-shadow:0 0 15px rgba(255,122,0,0.4);
}
.hero-content h1{
  letter-spacing:-1px;
}

.hero-nas{
  color:#ff7a00;
  text-shadow:0 0 20px rgba(255,122,0,0.6);
}
.categories{
  padding:60px 0;
}

.categories h2{
  font-size:28px;
  margin-bottom:25px;
  color:#ffffff;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.categories{
  padding:60px 0;
}

.categories h2{
  font-size:28px;
  margin-bottom:25px;
  color:#ffffff;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.form-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
  background:
    linear-gradient(180deg, rgba(6,12,22,0.92), rgba(6,12,22,0.96)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

.form-box{
  width:100%;
  max-width:560px;
  background:rgba(10,18,30,0.88);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 20px 50px rgba(0,0,0,0.28);
  border-radius:24px;
  padding:34px 28px;
}

.form-box h1{
  font-size:40px;
  margin-bottom:10px;
  color:#ffffff;
}

.form-subtitle{
  color:rgba(255,255,255,0.72);
  margin-bottom:24px;
  font-size:15px;
}

.custom-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.form-row{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-row label{
  font-size:14px;
  font-weight:700;
  color:#ffffff;
}

.form-row input,
.form-row select,
.form-row textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.06);
  color:#ffffff;
  outline:none;
  font-size:15px;
}

.form-row input::placeholder,
.form-row textarea::placeholder{
  color:rgba(255,255,255,0.45);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  border-color:rgba(255,122,0,0.65);
  box-shadow:0 0 0 3px rgba(255,122,0,0.10);
}

.form-row select option{
  color:#111;
}

.checkbox-row{
  margin-top:4px;
}

.checkbox-label{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:rgba(255,255,255,0.82);
  font-weight:500;
}

.checkbox-label input{
  width:auto;
}

.form-submit{
  width:100%;
  min-height:52px;
  font-size:16px;
  margin-top:8px;
}

.form-footer-links{
  margin-top:20px;
  line-height:1.9;
}

.form-footer-links a{
  color:#ff9b2f;
  font-size:14px;
}

.form-footer-links a:hover{
  text-decoration:underline;
}

@media (max-width:600px){
  .form-box{
    padding:26px 18px;
    border-radius:18px;
  }

  .form-box h1{
    font-size:32px;
  }
}
.register-links{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;   /* ORTALAR */
  text-align:center;    /* YAZIYI ORTALAR */
}

.register-links a{
  color:#ff9b2f;
  text-decoration:none;
  font-size:14px;
}

.register-links a:hover{
  text-decoration:underline;
}
.home-switch{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin:30px 0 24px;
}

.switch-card{
  display:block;
  padding:24px 22px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 18px 36px rgba(0,0,0,0.18);
  transition:all 0.25s ease;
}

.switch-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,122,0,0.28);
  box-shadow:0 24px 42px rgba(0,0,0,0.24);
}

.switch-icon{
  font-size:28px;
  margin-bottom:12px;
}

.switch-title{
  font-size:24px;
  font-weight:800;
  color:#fff;
  margin-bottom:8px;
}

.switch-text{
  font-size:15px;
  color:rgba(255,255,255,0.74);
  line-height:1.6;
}

@media (max-width:700px){
  .home-switch{
    grid-template-columns:1fr;
  }
}
<script>
  if (window.location.hash === "#magazalar") {
    document.getElementById("btnMagazalar").click();
  }
</script>
<style>
@media (max-width:700px){
  section[style*="grid-template-columns:repeat(2,1fr)"] > div,
  section[style*="grid-template-columns:repeat(3,1fr)"]{
    grid-template-columns:1fr !important;
  }
}
</style>