
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #0B0F14; 
  color: #FFFFFF;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }


:root{
  --bg: #0B0F14;
  --panel: #142033;     
  --panel-2: #101a2a;    
  --text: #ffffff;
  --muted: #cfd6df;
  --muted-2: #9aa6b2;
  --accent: #F4B000;     
  --border: rgba(255,255,255,.12);
  --shadow: 0 14px 40px rgba(0,0,0,.55);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1120px;
}


.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.accent{ color: var(--accent); }
.muted{ color: var(--muted-2); }

.section{
  padding: 72px 0;
}
.section--alt{
  background: radial-gradient(1200px 500px at 20% 0%, rgba(244,176,0,.10), transparent 55%),
              radial-gradient(900px 420px at 80% 10%, rgba(20,32,51,.9), rgba(11,15,20,1));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section__head{
  margin-bottom: 22px;
}
.section__head h2{
  margin: 0 0 6px 0;
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing: .2px;
}
.section__head p{
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}


.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,15,20,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner{
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}
.brand__logo{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.14);
}
.brand__text{
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 14px;
  color: var(--text);
  opacity: .95;
}


.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a{
  color: rgba(255,255,255,.82);
  font-size: 14px;
  padding: 10px 8px;
  border-radius: 10px;
  transition: 140ms ease;
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  color: #fff;
}

.burger{
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: #fff;
}


.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .2px;
  transition: 160ms ease;
  cursor: pointer;
  user-select: none;
}

.btn--primary{
  background: var(--accent);
  color: #101010;
  border-color: rgba(255,255,255,.14);
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(244,176,0,.18);
}

.btn--ghost{
  background: rgba(255,255,255,.04);
  color: #fff;
  border-color: var(--border);
}
.btn--ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
}

.btn--block{
  width: 100%;
}


.hero{
  padding: 56px 0 36px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(244,176,0,.14), transparent 60%),
    radial-gradient(1200px 500px at 80% 0%, rgba(20,32,51,.95), rgba(11,15,20,1));
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 22px;
  align-items: start;
}
.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  margin: 0 0 14px;
}
.hero h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: .4px;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 56ch;
}
.hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.trust{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust__item{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.86);
  font-size: 14px;
}


.card{
  background: linear-gradient(180deg, rgba(20,32,51,.92), rgba(16,26,42,.92));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: 160ms ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(244,176,0,.18);
}

.card h2, .card h3{
  margin: 0 0 8px;
}
.card p{
  margin: 0;
  color: var(--muted);
}
.list{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.88);
}
.big{
  font-size: 18px;
}


.hero__card h3{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: .2px;
}


.cards{
  display: grid;
  gap: 14px;
}

.cards--3{
  grid-template-columns: repeat(3, 1fr);
}
.cards--6{
  grid-template-columns: repeat(3, 1fr);
}
.cards--6 .card{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
}


.gallery{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery img{
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  transition: 160ms ease;
}
.gallery img:hover{
  transform: translateY(-2px);
  border-color: rgba(244,176,0,.22);
}


.info__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hours{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.hours > div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.hours span{ color: rgba(255,255,255,.78); }
.hours b{ color: #fff; }

.Tarifs{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.Tarifs > div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.Tarifs span{ color: rgba(255,255,255,.78); }
.Tarifs b{ color: #fff; }




.contact__grid{
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 14px;
}
.social{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  transition: 160ms ease;
}
.chip:hover{
  transform: translateY(-1px);
  border-color: rgba(244,176,0,.22);
}

.card--qr{
  text-align: center;
}
.qr{
  width: min(260px, 70%);
  margin: 10px auto 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: #fff;
  padding: 10px;
}


.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  color: rgba(255,255,255,.76);
}
.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer a{
  color: rgba(255,255,255,.85);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.footer a:hover{
  border-color: rgba(244,176,0,.22);
}


@media (max-width: 980px){
  .hero__grid{
    grid-template-columns: 1fr;
  }
  .cards--3,
  .cards--6{
    grid-template-columns: 1fr;
  }
  .info__grid{
    grid-template-columns: 1fr;
  }
  .contact__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px){
  .nav{ display: none; }
  .burger{ display: inline-flex; align-items:center; justify-content:center; }
}

@media (max-width: 560px){
  .section{ padding: 56px 0; }
  .gallery{ grid-template-columns: 1fr; }
  .brand__text{ display: none; }
}
