*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  font-size:18px;
  line-height:1.55;
  color:#f2f2f2;
  background:#0b0b0b;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}

.container{
  max-width:1100px;
  margin:0 auto;
  padding-left:20px;
  padding-right:20px;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,11,11,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
}
.logo i{
  color:#ff3b1a;
  font-size:20px;
}

.menu-btn{
  display:none;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#f2f2f2;
  cursor:pointer;
  font:inherit;
}
.menu-btn:hover{background:rgba(255,255,255,.10)}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.nav a{
  padding:10px 10px;
  border-radius:12px;
  border:1px solid transparent;
  color:rgba(255,255,255,.86);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.nav a:hover{
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
}

.hero{
  padding:34px 0;
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(255,59,26,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(255,255,255,.06), transparent 60%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:center;
}
.hero h1{
  margin:0 0 10px;
  font-size:42px;
  line-height:1.08;
  letter-spacing:.6px;
  text-transform:uppercase;
}
.hero p{
  margin:0 0 18px;
  color:rgba(255,255,255,.74);
  max-width:70ch;
}
.hero-img{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  box-shadow:0 18px 48px rgba(0,0,0,.55);
}
.hero-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:4/3;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:8px 0 18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#f2f2f2;
  cursor:pointer;
  font:inherit;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.22);
  transform:translateY(-1px);
}
.btn.primary{
  background:linear-gradient(135deg, rgba(255,59,26,.36), rgba(255,106,58,.18));
  border-color:rgba(255,59,26,.45);
}
.btn.primary:hover{border-color:rgba(255,59,26,.65)}

.mini-info{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  color:rgba(255,255,255,.78);
}
.mini-info > div{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.20);
}
.mini-info i{color:#ff3b1a}

.section{
  padding:44px 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.section h2{
  margin:0 0 8px;
  font-size:28px;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.muted{
  color:rgba(255,255,255,.70);
}
.small{font-size:14px}

.cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  margin-top:16px;
}
.card{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  box-shadow:0 14px 36px rgba(0,0,0,.40);
}
.card img{
  width:100%;
  height:190px;
  object-fit:cover;
}
.card-body{
  padding:14px;
}
.card-body h3{
  margin:0 0 6px;
  font-size:18px;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.card-body p{margin:0}

.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:16px;
}
.box{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  padding:16px;
}
.box h3{
  margin:0 0 10px;
  font-size:18px;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.box h3 i{color:#ff3b1a}

.list{
  margin:10px 0 0;
  padding-left:18px;
  color:rgba(255,255,255,.72);
}
.list li{margin:6px 0}

.form{
  display:grid;
  gap:12px;
  margin-top:10px;
}
.form label{
  display:grid;
  gap:6px;
  color:rgba(255,255,255,.86);
  font-weight:650;
}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.26);
  color:#f2f2f2;
  outline:none;
  font:inherit;
}
textarea{resize:vertical}
input:focus,select:focus,textarea:focus{
  border-color:rgba(255,59,26,.55);
  box-shadow:0 0 0 4px rgba(255,59,26,.14);
}

.wide-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:28px 0 18px;
  background:rgba(0,0,0,.22);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .7fr 1fr;
  gap:16px;
  align-items:start;
}
.footer-links{
  display:grid;
  gap:10px;
}
.footer-links a{
  color:rgba(255,255,255,.82);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.footer-links a:hover{color:#fff}
.footer-contact{
  display:grid;
  gap:10px;
  color:rgba(255,255,255,.78);
}
.footer-contact i{color:#ff3b1a}
.footer-bottom{
  margin-top:16px;
  color:rgba(255,255,255,.60);
  font-size:14px;
}

.modal{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background:rgba(0,0,0,.65);
  z-index:200;
  padding:18px;
}
.modal[aria-hidden="false"]{display:grid}
.modal-box{
  width:min(520px, 100%);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(12,12,12,.94);
  padding:18px;
  box-shadow:0 18px 48px rgba(0,0,0,.60);
}
.modal-box h3{
  margin:0 0 8px;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.modal-box p{margin:0 0 14px}

.cookie{
  position:fixed;
  left:14px;
  right:14px;
  bottom:14px;
  display:none;
  z-index:150;
}
.cookie.is-visible{display:block}
.cookie-row{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(12,12,12,.94);
  padding:14px;
  box-shadow:0 18px 48px rgba(0,0,0,.60);
}
.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:repeat(2, 1fr)}
  .footer-grid{grid-template-columns:1fr}
  .hero h1{font-size:36px}
}
@media (max-width: 760px){
  .menu-btn{display:inline-flex}
  .nav{
    display:none;
    position:absolute;
    left:20px;
    right:20px;
    top:64px;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:12px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(12,12,12,.94);
  }
  .nav.is-open,.nav.open{display:flex}
  .nav a{width:100%}
  .two{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .cookie-row{flex-direction:column;align-items:stretch}
  .cookie-actions{justify-content:flex-start}
}
.features{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:18px;
}
.feature{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.feature i{
  color:#ff3b1a;
  margin-top:3px;
  font-size:18px;
}

.three{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:16px;
}

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
  color:rgba(255,255,255,.78);
}
.tags span{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  font-size:14px;
}
.tags i{color:#ff3b1a}

.notice{
  margin-top:16px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
}

.reviews{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:16px;
}
.review{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.review-top{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:10px;
}
.avatar{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.22);
  color:#fff;
  font-weight:800;
  letter-spacing:.06em;
}
.review p{margin:0}

.faq{
  margin-top:16px;
  display:grid;
  gap:12px;
}
.faq details{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  padding:12px 14px;
}
.faq summary{
  cursor:pointer;
  list-style:none;
  font-weight:750;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.faq summary::-webkit-details-marker{display:none}
.faq details[open]{border-color:rgba(255,59,26,.30)}
.faq details > div{
  margin-top:10px;
  color:rgba(255,255,255,.72);
}

@media (max-width: 980px){
  .features{grid-template-columns:1fr}
  .three{grid-template-columns:1fr}
  .reviews{grid-template-columns:1fr}
}
