:root{
  --bg:#121212;
  --card:#1a1a1a;
  --card2:#171717;
  --text:#fcfcfc;
  --muted:#c7c7c7;
  --accent:#e89c6f;
  --radius:24px;
  --max:1120px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.55;
}

img{
  width:100%;
  display:block;
  object-fit:cover;
}

a{
  color:inherit;
  text-decoration:none;
}

.wrap{
  width:min(100% - 42px, var(--max));
  margin-inline:auto;
}

.topbar{
  position:fixed;
  top:0;
  left:50%;
  transform:translateX(-50%);
  z-index:50;
  width:min(100%, 1180px);
  height:72px;
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(18,18,18,.72);
  backdrop-filter:blur(16px);
  border-bottom-left-radius:20px;
  border-bottom-right-radius:20px;
}

.brand img{
  width:72px;
  height:auto;
  object-fit:contain;
}

.topbar nav{
  display:flex;
  align-items:center;
  gap:22px;
  font-size:13px;
  color:var(--muted);
}

.topbar nav a:hover{
  color:var(--accent);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 28px;
  border-radius:14px;
  background:var(--accent);
  color:#111;
  font-size:14px;
  font-weight:800;
  border:0;
  cursor:pointer;
  transition:.2s;
}

.btn:hover{
  transform:translateY(-2px);
  filter:brightness(1.07);
}

.btn-menu{
  min-height:38px;
  padding:0 20px;
  font-size:12px;
}

.full{
  width:100%;
  margin-top:20px;
}

.hero{
  min-height:650px;
  padding-top:118px;
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:78px;
  align-items:center;
}

.hero h1{
  color:var(--accent);
  font-size:clamp(34px, 4.8vw, 58px);
  line-height:1.05;
  max-width:480px;
  margin-bottom:22px;
}

.hero p{
  color:var(--muted);
  font-size:17px;
  max-width:500px;
  margin-bottom:8px;
}

.hero-carousel{
  height:430px;
}

.carousel{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  background:#181818;
}

.carousel-track{
  height:100%;
  display:flex;
  transition:transform .45s ease;
}

.carousel-slide{
  min-width:100%;
  height:100%;
}

.carousel-slide img{
  height:100%;
  border-radius:var(--radius);
}

.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border-radius:50%;
  border:0;
  background:rgba(0,0,0,.42);
  color:#fff;
  font-size:24px;
  cursor:pointer;
  display:grid;
  place-items:center;
}

.carousel-btn.prev{
  left:12px;
}

.carousel-btn.next{
  right:12px;
}

.carousel-dots{
  position:absolute;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}

.carousel-dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:rgba(255,255,255,.45);
  border:0;
}

.carousel-dot.active{
  width:18px;
  background:var(--accent);
}

.split{
  padding:82px 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:78px;
  align-items:center;
}

.section-label{
  display:block;
  color:var(--accent);
  font-size:15px;
  font-weight:800;
  margin-bottom:16px;
}

h2{
  font-size:clamp(30px, 4vw, 45px);
  line-height:1.1;
  margin-bottom:22px;
}

h3{
  color:var(--accent);
  font-size:28px;
  line-height:1.15;
  margin-bottom:18px;
}

p{
  color:var(--muted);
  font-size:16px;
  margin-bottom:14px;
}

.mosaic{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:16px;
}

.mosaic img{
  height:190px;
  border-radius:20px;
}

.mosaic img:nth-child(2),
.mosaic img:nth-child(3){
  height:230px;
}

.photo-card img{
  height:470px;
  border-radius:var(--radius);
}

.title-center{
  text-align:center;
  margin-bottom:40px;
}

.service-grid{
  padding:58px 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:82px;
  align-items:center;
}

.service-grid.invert .carousel{
  order:2;
}

.service-carousel{
  height:430px;
}

.why{
  padding:80px 0;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.card{
  min-height:170px;
  padding:26px;
  border-radius:18px;
  background:var(--card);
}

.card h4{
  color:var(--accent);
  margin-bottom:12px;
  font-size:17px;
}

.card p{
  font-size:14px;
}

.reviews{
  padding:80px 0;
}

.review-header{
  background:#181818;
  border-radius:16px;
  padding:18px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

.review-header div{
  display:flex;
  align-items:center;
  gap:12px;
}

.review-header small{
  color:#4285f4;
  font-weight:800;
}

.review-header strong{
  color:#fff;
}

.review-header span{
  color:var(--muted);
}

.review-header a{
  background:var(--accent);
  color:#111;
  border-radius:10px;
  padding:8px 16px;
  font-weight:800;
  font-size:13px;
}

.review-row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.review{
  min-height:190px;
  background:var(--card);
  border-radius:16px;
  padding:22px;
}

.review strong{
  color:var(--accent);
  display:block;
  margin-bottom:14px;
}

.review p{
  font-size:14px;
}

.story-carousel{
  height:360px;
}

.faq{
  padding:80px 0;
  max-width:960px;
}

.faq-item{
  border-bottom:1px solid rgba(255,255,255,.12);
}

.faq-item button{
  width:100%;
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:transparent;
  border:0;
  color:#fff;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  text-align:left;
}

.faq-item button::after{
  content:"+";
  color:var(--accent);
  font-size:18px;
}

.faq-item.active button::after{
  content:"−";
}

.faq-item p{
  max-height:0;
  overflow:hidden;
  transition:.28s ease;
  margin:0;
  font-size:15px;
}

.faq-item.active p{
  max-height:180px;
  padding-bottom:20px;
}

.cta{
  margin-top:70px;
  margin-bottom:80px;
  padding:70px;
  background:var(--card);
  border-radius:var(--radius);
  text-align:center;
}

.cta p{
  max-width:720px;
  margin-inline:auto;
}

footer{
  padding:34px;
  text-align:center;
  color:var(--muted);
}

@media(max-width:900px){
  .topbar nav{
    display:none;
  }

  .btn-menu{
    display:none;
  }

  .hero,
  .split,
  .service-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .hero{
    padding-top:110px;
    min-height:auto;
  }

  .hero-carousel,
  .service-carousel{
    height:360px;
  }

  .service-grid.invert .carousel{
    order:0;
  }

  .cards,
  .review-row{
    grid-template-columns:1fr;
  }

  .photo-card img{
    height:380px;
  }

  .cta{
    padding:42px 24px;
  }
}

@media(max-width:520px){
  .wrap{
    width:min(100% - 28px, var(--max));
  }

  .topbar{
    height:62px;
    padding:0 18px;
  }

  .hero h1{
    font-size:33px;
  }

  .hero-carousel,
  .service-carousel{
    height:310px;
  }

  .mosaic{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .mosaic img,
  .mosaic img:nth-child(2),
  .mosaic img:nth-child(3){
    height:145px;
    border-radius:16px;
  }

  .split,
  .why,
  .reviews,
  .faq{
    padding:58px 0;
  }
  .whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:65px;
  height:65px;
  z-index:999;
  cursor:pointer;
}

.whatsapp-float img{
  width:100%;
  height:100%;
  object-fit:contain;
  transition:0.2s;
}

.whatsapp-float:hover img{
  transform:scale(1.1);
}
}
