
:root{
  --bg:#0d0f10;
  --panel:#171b1e;
  --panel2:#22282d;
  --text:#f3f3f3;
  --muted:#b9c0c5;
  --green:#65b32e;
  --orange:#f5a51a;
  --line:#313942;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--max), calc(100% - 32px));margin:auto}
.contact.section{
  padding:35px 0 28px;
}

.gallery-item{
  color:inherit;
  text-decoration:none;
}

.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(13,15,16,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  height:76px;display:flex;align-items:center;justify-content:space-between;gap:18px;
}
.logo{display:flex;align-items:center;gap:12px;font-weight:900;letter-spacing:.4px}
.logo img{width:230px;height:auto;max-height:60px;object-fit:contain}
.logo-mark{width:54px;height:38px;border:2px solid var(--orange);border-radius:8px;display:flex;align-items:center;justify-content:center;color:var(--orange);font-weight:900}
.logo span{display:block;line-height:1.05}
.logo small{color:var(--green);font-size:12px}
.menu{display:flex;gap:22px;align-items:center;font-size:14px;font-weight:700}
.menu a{opacity:.9}
.menu a:hover,.menu a.active{color:var(--green)}
.phone{color:var(--green);font-weight:900;white-space:nowrap}
.lang{display:flex;gap:8px;font-size:13px}
.lang a{border:1px solid var(--line);padding:5px 8px;border-radius:999px}
.lang a.active{background:var(--green);border-color:var(--green);color:#091006}
.hamb{display:none;background:none;border:0;color:white;font-size:31px}

.hero{
  position:relative;
  overflow:hidden;
  min-height:640px;
  display:flex;
  align-items:center;
  background-color:#000;
  background-blend-mode:normal;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.38) 45%, rgba(0,0,0,.05)),
    url('img/hero-wheel.jpg');
  background-repeat:no-repeat;
  background-size:cover, auto 100%;
  background-position:center, right center;
  border-bottom:1px solid var(--line);
}

.hero:after{content:"";position:absolute;left:0;right:0;bottom:0;height:135px;background:linear-gradient(0deg, rgba(0,0,0,.56), transparent);pointer-events:none}
.hero:before{content:"";position:absolute;left:0;right:0;top:0;height:100%;background:linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.48) 38%, rgba(0,0,0,.12) 68%, rgba(0,0,0,.10) 100%);pointer-events:none}

.hero-content{
  position:relative;
  z-index:2;
  max-width:680px;
  padding:75px 0;
  margin-left:clamp(20px, 5vw, 80px);
  text-shadow:0 3px 20px rgba(0,0,0,.7);
}

.kicker{display:none}
h1{font-size:clamp(38px,6vw,72px);line-height:.98;margin:16px 0 18px;text-transform:uppercase;text-shadow:0 4px 22px rgba(0,0,0,.65)}
h1 strong{color:var(--green)}
h1 em{color:var(--orange);font-style:normal}
.lead{font-size:clamp(18px,2.2vw,25px);color:#fff;max-width:570px;text-shadow:0 3px 16px rgba(0,0,0,.7);border-left:4px solid var(--orange);padding-left:18px}
.btns{display:flex;gap:14px;margin-top:30px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:13px 21px;border-radius:7px;border:1px solid rgba(255,255,255,.4);
  font-weight:900;font-size:13px;text-transform:uppercase;
}
.btn.primary{background:var(--green);border-color:var(--green);color:#071104}
.btn.orange{background:var(--orange);border-color:var(--orange);color:#160e00}
.notice{
  background:linear-gradient(90deg, rgba(245,165,26,.12), rgba(101,179,46,.05));
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
.notice-inner{
  padding:18px 0;display:flex;gap:13px;align-items:center;color:#fff;
}
.notice-icon{color:var(--orange);font-size:24px}
.section{padding:66px 0}
.section-title{margin-bottom:26px}
.section-title small{color:var(--green);font-weight:900;text-transform:uppercase}
.section-title h2{font-size:clamp(28px,4vw,44px);margin:6px 0 0}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.card{
  background:linear-gradient(180deg,var(--panel2),var(--panel));
  border:1px solid var(--line);
  border-radius:12px;overflow:hidden;min-height:100%;
  box-shadow:0 14px 45px rgba(0,0,0,.22);
}
.card-img{height:230px;background:#222;overflow:hidden}
.card-img img{width:100%;height:100%;object-fit:cover}
.card-body{padding:20px}
.card-icon{color:var(--green);font-size:33px;margin-bottom:8px}
.card h3{margin:0 0 10px;font-size:21px;line-height:1.1}
.card p{margin:0;color:var(--muted);font-size:14px}
.card .more{display:inline-flex;margin-top:18px;color:var(--orange);font-weight:900}

.benefits{
  background:
    radial-gradient(circle at 15% 20%, rgba(101,179,46,.16), transparent 25%),
    radial-gradient(circle at 85% 80%, rgba(245,165,26,.10), transparent 24%),
    #101315;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
.benefit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.benefit{padding:22px;border:1px solid var(--line);border-radius:12px;background:rgba(255,255,255,.03)}
.benefit b{color:#fff;display:block;margin-bottom:6px}
.benefit span{color:var(--muted);font-size:14px}

.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.gallery-item{border-radius:10px;overflow:hidden;border:1px solid var(--line);background:#222}
.gallery-item img{width:100%;aspect-ratio:1.45/1;object-fit:cover}
.gallery-item p{padding:10px;margin:0;font-size:13px;color:var(--muted)}
.contact{
  background:#0a0b0c;border-top:1px solid var(--line);
}
.contact-grid{display:grid;grid-template-columns:1fr 1fr 1.3fr;gap:28px}
.contact h3{color:var(--green);margin-top:0}
.map{
  min-height:210px;border:1px solid var(--line);border-radius:12px;overflow:hidden;
  background:linear-gradient(135deg,#e7edf2,#cdd9e4);
  color:#222;display:flex;align-items:center;justify-content:center;text-align:center;padding:24px;
}
.footer{border-top:1px solid var(--line);padding:18px 0;color:#78828a;font-size:13px}

.reveal{opacity:0;transform:translateY(35px);transition:opacity .7s ease, transform .7s ease}
.reveal.from-left{transform:translateX(-45px)}
.reveal.from-right{transform:translateX(45px)}
.reveal.visible{opacity:1;transform:translate(0,0)}

@media (max-width:900px){
  .hamb{display:block}
  .menu{
    position:fixed;left:0;right:0;top:76px;
    background:#101315;border-bottom:1px solid var(--line);
    flex-direction:column;align-items:stretch;gap:0;
    transform:translateY(-130%);transition:.25s ease;
  }
  .menu.open{transform:translateY(0)}
  .menu a{padding:16px 22px;border-top:1px solid var(--line)}
  .phone{display:none}
  .logo img{width:170px;max-height:52px}
  .hero{min-height:620px;background-position:62% center}
  .hero:before{background:linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.62) 55%, rgba(0,0,0,.22))}
  .hero:after{left:0;right:0;bottom:0;top:auto;width:auto;height:135px;border:0;border-radius:0;box-shadow:none}
  .cards,.benefit-grid,.contact-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .section{padding:46px 0}
  .card{display:block}
  .card-img{height:190px}
  .card-body{padding:18px}
  .notice-inner{align-items:flex-start}
}

.notice-symbol{
  color:var(--orange);
  font-weight:900;
  margin-right:8px;
  font-size:18px;
  display:inline-block;
  min-width:22px;
}




.subhero{
  padding:70px 0 34px;
  background:
    radial-gradient(circle at 85% 20%, rgba(101,179,46,.16), transparent 28%),
    linear-gradient(180deg,#101315,#0b0d0e);
  border-bottom:1px solid var(--line);
}

.subhero small{
  color:var(--green);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.12em;
}

.subhero h1{
  margin:10px 0 14px;
  font-size:clamp(34px,5vw,58px);
}

.subhero p{
  max-width:780px;
  color:var(--muted);
  font-size:18px;
}

.anchor-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}

.anchor-nav a{
  border:1px solid var(--line);
  background:#171b1e;
  padding:10px 14px;
  border-radius:999px;
  color:#fff;
  font-weight:800;
  font-size:14px;
}

.anchor-nav a:hover{
  border-color:var(--green);
  color:var(--green);
}

.narrow{
  max-width:920px;
}

.content-block{
  padding:34px 0;
  border-bottom:1px solid var(--line);
}

.content-block h2{
  color:#fff;
  font-size:clamp(26px,3vw,36px);
  margin:0 0 16px;
}

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

.content-block ul{
  color:var(--muted);
  padding-left:22px;
}

.content-block li{
  margin:8px 0;
}

.check-list,
.warn-list{
  list-style:none;
  padding-left:0 !important;
}

.check-list li::before{
  content:"?";
  color:var(--green);
  font-weight:900;
  margin-right:10px;
}

.warn-list li::before{
  content:"!";
  color:var(--orange);
  font-weight:900;
  margin-right:10px;
}

.page-cta{
  margin:45px 0 10px;
  padding:30px;
  border-radius:16px;
  border:1px solid var(--line);
  background:linear-gradient(135deg,rgba(101,179,46,.12),rgba(245,165,26,.08));
}

.page-cta h2{
  margin-top:0;
}

.page-cta p{
  color:var(--muted);
}

.content-block {
  scroll-margin-top: 75px;
}







.wheel-hero{
  position:relative;
  min-height:520px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  border-bottom:1px solid var(--line);
}

.wheel-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.wheel-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.35)),
    linear-gradient(to right, rgba(0,0,0,.55), transparent 60%);
  z-index:1;
}

.wheel-hero-content{
  position:relative;
  z-index:2;
  padding:90px 0 55px;
}

.wheel-hero h1{
  font-size:clamp(42px,6vw,78px);
  margin:0;
}

.wheel-hero p{
  color:#d2d7da;
  font-size:20px;
  margin:12px 0 30px;
}

.wheel-section{
  padding:55px 0;
  border-bottom:1px solid var(--line);
  scroll-margin-top:75px;
}

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

.wheel-grid.reverse{
  grid-template-columns:.9fr 1.1fr;
}

.wheel-grid.reverse .wheel-image{
  order:1;
}

.wheel-grid.reverse .wheel-text{
  order:2;
}

.wheel-text h2{
  font-size:clamp(28px,4vw,42px);
  margin:0 0 20px;
}

.wheel-text h3{
  margin-top:28px;
}

.wheel-text p{
  color:var(--muted);
  line-height:1.75;
}

.wheel-image img{
  width:100%;
  border-radius:18px;
  display:block;
  background:#121517;
  min-height:320px;
  object-fit:cover;
}

.before-after img{
  min-height:220px;
}

.info-box{
  margin-top:25px;
  padding:18px 22px;
  border-radius:18px;
  background:rgba(101,179,46,.10);
  border:1px solid rgba(101,179,46,.25);
  color:#fff;
}

.warn-box{
  padding:18px 22px;
  border-radius:18px;
  background:rgba(255,120,120,.08);
  border:1px solid rgba(255,120,120,.2);
  color:#ffb0b0;
  margin-bottom:24px;
}

.table-wrap{
  overflow:auto;
  margin-top:25px;
}

.price-table{
  width:100%;
  border-collapse:collapse;
  min-width:620px;
}

.price-table th{
  background:#161a1d;
  color:#fff;
  text-align:left;
  padding:16px;
}

.price-table td{
  padding:16px;
  border-top:1px solid var(--line);
  color:var(--muted);
}

.price-table tr:hover td{
  background:#131719;
}

.price-notes{
  margin-top:20px;
  color:var(--muted);
}

@media (max-width:900px){

  .wheel-grid,
  .wheel-grid.reverse{
    grid-template-columns:1fr;
  }

  .wheel-grid.reverse .wheel-image,
  .wheel-grid.reverse .wheel-text{
    order:unset;
  }

  .wheel-hero{
    min-height:460px;
  }

  .wheel-hero-content{
    padding:70px 0 40px;
  }

}


.before-after{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.compare-box{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    border:1px solid #23282f;
    background:#111;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.compare-box img{
    width:100%;
    display:block;
}

.compare-label{
    position:absolute;
    top:16px;
    left:16px;
    background:rgba(0,0,0,.75);
    color:#fff;
    font-weight:700;
    padding:8px 14px;
    border-radius:18px;
    letter-spacing:.08em;
    font-size:.8rem;
}

.compare-label.after{
    background:#74c61d;
    color:#000;
}


.check-list{
    list-style:none;
    padding:0;
}

.check-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
}

.check-list li::before{
    content:".check-list{
    list-style:none;
    padding:0;
}

.check-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
}

.check-list li::before {
    content:"\2713";
    position:absolute;
    left:0;
    top:0;
    color:#74c61d;
    font-weight:700;
}





.more-info{
  margin-top:22px;
  border:1px solid rgba(245,165,26,.28);
  border-radius:16px;
  background:rgba(245,165,26,.06);
  overflow:hidden;
}

.more-info summary{
  cursor:pointer;
  padding:16px 20px;
  color:var(--orange);
  font-weight:900;
  list-style:none;
}

.more-info summary::after{
  content:"+";
  float:right;
  color:var(--orange);
  font-size:22px;
  line-height:1;
}

.more-info[open] summary::after{
  content:"-";
}

.more-info p{
  padding:0 20px 18px;
  margin:0;
  color:var(--muted);
}





.tips-wrap{
  display:flex;
  flex-direction:column;
  gap:34px;
}

.tip-card{
  display:grid;
  grid-template-columns:1fr 280px;
  gap:28px;
  align-items:center;
  padding:28px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#111417;
}

.tip-card.image-left{
  grid-template-columns:280px 1fr;
}

.tip-card.image-left .tip-image{
  order:1;
}

.tip-card.image-left .tip-content{
  order:2;
}

.tip-content.full{
  grid-column:1 / -1;
}

.tip-content h2{
  margin-bottom:16px;
  color:var(--orange);
  font-size:30px;
}

.tip-content p{
  color:#d8d8d8;
  line-height:1.7;
  margin-bottom:14px;
}

.tip-image img{
  width:100%;
  border-radius:14px;
  border:1px solid var(--line);
  display:block;
}

.hero-text.narrow{
  max-width:760px;
}

@media(max-width:900px){

  .tip-card,
  .tip-card.image-left{
    grid-template-columns:1fr;
  }

  .tip-image{
    order:2!important;
  }

  .tip-content{
    order:1!important;
  }

}







.contact-grid-page{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.contact-card{
  padding:32px;
}

.contact-card h3{
  color:var(--accent);
  margin-bottom:18px;
  font-size:28px;
}

.contact-card p{
  line-height:1.8;
  margin-bottom:18px;
}

.contact-card hr{
  border:none;
  border-top:1px solid rgba(255,255,255,0.08);
  margin:28px 0;
}

.full-width{
  grid-column:1 / -1;
}

.contact-form label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  background:#0b0f14;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  color:#fff;
  padding:14px;
  margin-bottom:20px;
  font-size:16px;
}

.contact-form textarea{
  resize:vertical;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.map-holder{
  height:420px;
  border-radius:18px;
  overflow:hidden;
  background:#1a1f26;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#999;
  text-align:center;
}

@media(max-width:900px){

  .contact-grid-page{
    grid-template-columns:1fr;
  }

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

}

.socials{
  display:flex;
  gap:14px;
  margin-top:18px;
}

.socials .soc{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#1f2426;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  transition:0.25s;
}

.socials .soc img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* hover */
.socials .soc:hover{
  transform:scale(1.15);
}

.socials .soc:hover img{
  transform:scale(1.1);
}

/* barvy */
.socials .fb:hover{  box-shadow:0 0 18px #1877f2; }
.socials .ig:hover{  box-shadow:0 0 18px #d6249f; }
.socials .yt:hover{  box-shadow:0 0 18px #ff0000; }
.socials .wa:hover{  box-shadow:0 0 18px #1ebe5d; }



.footer-socials{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:18px;
  padding-bottom:24px;
}

.footer-socials a{
  width:46px;
  height:46px;
  border-radius:50%;
  overflow:hidden;
  transition:0.25s;
}

.footer-socials img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.footer-socials img:hover {
transform:scale(1.1);
}

.footer-socials .soc_fb:hover{  box-shadow:0 0 18px #1877f2; }
.footer-socials .soc_ig:hover{  box-shadow:0 0 18px #d6249f; }
.footer-socials .soc_yt:hover{  box-shadow:0 0 18px #ff0000; }
.footer-socials .soc_wa:hover{  box-shadow:0 0 18px #1ebe5d; }



