/* style.css */
:root{
  --purple: #2a0a4a;
  --purple-2: #3b0f66;
  --red: #b0122a;
  --red-2: #730202;
  --green: #21d07a;

  --brown: #5a3b1e;

  --bg-0: #2c0875;
  --bg-1: #0b0615;

  --text: #f5f2ff;
  --muted: rgba(245,242,255,.78);
  --line: rgba(255,255,255,.12);

  --glass: rgba(255,255,255,.06);
  --glass-2: rgba(255,255,255,.10);

  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.35);

  --radius: 18px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1120px;
  --gap: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 18% 8%, rgba(123,46,255,.22), transparent 60%),
    radial-gradient(900px 500px at 82% 22%, rgba(255,39,87,.16), transparent 55%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

.site-header{
  background: linear-gradient(180deg, var(--purple), rgba(42,10,74,.92));
  position: relative;
}

.logo-bar{
  background: var(--brown);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.logo-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  padding:6px;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-text strong{
  letter-spacing:.3px;
  font-weight:800;
}
.brand-text span{
  color:rgba(255,255,255,.82);
  font-size:.92rem;
}

.nav-toggle{
  display:none;
  width:46px;
  height:42px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.18);
  color:var(--text);
  box-shadow: var(--shadow-soft);
  cursor:pointer;
  padding:10px;
}
.nav-toggle span{
  display:block;
  height:2px;
  background: rgba(255,255,255,.9);
  margin:5px 0;
  border-radius: 2px;
}

.navbar{
  background: linear-gradient(90deg, var(--red), var(--red-2));
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0,0,0,.25);
  box-shadow: 0 10px 35px rgba(0,0,0,.30);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:12px;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0;
  margin:0;
}
.nav-link{
  display:inline-block;
  padding:10px 12px;
  border-radius: 12px;
  font-weight:700;
  letter-spacing:.2px;
  color:rgba(255,255,255,.95);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.nav-link:hover,
.nav-link:focus-visible{
  background: var(--green);
  color:#06110b;
  box-shadow: 0 14px 35px rgba(33,208,122,.22);
  transform: translateY(-1px);
  outline:none;
}

.cta-mini{
  white-space:nowrap;
}

.hero{
  padding: 26px 0 8px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
}

.hero-left h1{
  margin: 6px 0 10px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: .2px;
}
.hero-lead{
  margin:0 0 16px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 16px;
}

.hero-trust{
  display:grid;
  gap:8px;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow-soft);
}
.trust-item{
  display:flex;
  gap:10px;
  align-items:center;
  color: rgba(255,255,255,.86);
}
.trust-item .dot{
  width:10px;
  height:10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, var(--green));
  box-shadow: 0 0 0 6px rgba(33,208,122,.10);
}

.slider{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  box-shadow: var(--shadow);
  min-height: 320px;
}

.slides{
  position:relative;
  height:100%;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .70s ease;
}
.slide.is-active{
  opacity:1;
  transform: scale(1);
}
.slide img{
  width:100%;
  height: 360px;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.08);
}

.slide-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:6px;
  padding:18px 18px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.74));
}
.slide-title{
  margin:0;
  font-weight:800;
  font-size: 1.05rem;
}
.slide-subtitle{
  margin:0;
  color: rgba(255,255,255,.80);
  line-height:1.45;
}

.slider-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;
  height:44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.30);
  color: rgba(255,255,255,.95);
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size: 26px;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.slider-btn:hover,
.slider-btn:focus-visible{
  background: var(--green);
  color:#06110b;
  border-color: rgba(0,0,0,.22);
  outline:none;
  transform: translateY(-50%) scale(1.03);
}
.slider-btn.prev{ left: 12px; }
.slider-btn.next{ right: 12px; }

.dots{
  position:absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display:flex;
  gap:8px;
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.dot-btn{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor:pointer;
  background: rgba(255,255,255,.35);
  transition: transform .18s ease, background .18s ease;
}
.dot-btn.is-active{
  background: var(--green);
  transform: scale(1.15);
}

.section-block{
  padding: 28px 0;
}

.section-title{
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  letter-spacing: .2px;
}
.section-desc{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 75ch;
}

.features-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.feature-card{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.feature-card:hover{
  transform: translateY(-2px);
  border-color: rgba(33,208,122,.55);
  background: linear-gradient(180deg, rgba(33,208,122,.12), rgba(255,255,255,.03));
}
.feature-card h3{
  margin:0 0 8px;
  font-size:1.02rem;
}
.feature-card p{
  margin:0;
  color: rgba(255,255,255,.80);
  line-height: 1.55;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}
.about-left p{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}
.glass-panel{
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.glass-panel h3{
  margin:0 0 10px;
  font-size:1.05rem;
}
.checklist{
  margin:0;
  padding:0 0 0 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

.services-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.service-card{
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.service-card:hover{
  transform: translateY(-2px);
  border-color: rgba(33,208,122,.55);
  background: linear-gradient(180deg, rgba(33,208,122,.11), rgba(255,255,255,.03));
}
.service-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 10px;
}
.service-card p{
  margin:0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.product-card{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.product-card:hover{
  transform: translateY(-3px);
  border-color: rgba(33,208,122,.58);
  background: linear-gradient(180deg, rgba(33,208,122,.12), rgba(255,255,255,.03));
}
.product-card img{
  width:100%;
  height: 170px;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.08);
}
.product-body{
  padding: 14px;
}
.product-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.product-top h3{
  margin:0;
  font-size: 1rem;
  line-height:1.25;
  letter-spacing:.1px;
}
.price{
  margin: 10px 0 12px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing:.2px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2px;
  white-space: nowrap;
}
.badge-solid{
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.18);
}
.badge-soft{
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
}

.btn{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.20);
  color: rgba(255,255,255,.95);
  padding: 11px 14px;
  border-radius: 14px;
  cursor:pointer;
  font-weight: 800;
  letter-spacing:.2px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.btn:hover,
.btn:focus-visible{
  background: var(--green);
  border-color: rgba(0,0,0,.22);
  color:#06110b;
  box-shadow: 0 16px 40px rgba(33,208,122,.20);
  transform: translateY(-1px);
  outline:none;
}
.btn-primary{
  background: linear-gradient(90deg, var(--purple-2), rgba(255,255,255,.08));
  border-color: rgba(255,255,255,.22);
}
.btn-outline{
  background: rgba(0,0,0,.16);
  border-color: rgba(255,255,255,.20);
}
.btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.btn-full{
  width:100%;
}
.btn-sm{
  padding: 10px 12px;
  border-radius: 13px;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.contact-card{
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: var(--shadow-soft);
}
.contact-card p{
  margin: 0 0 10px;
  color: rgba(255,255,255,.86);
  line-height: 1.7;
}
.link{
  text-decoration: underline;
  text-underline-offset: 3px;
}
.closing-seo{
  margin-top: 12px;
  color: var(--muted);
}

.map-wrap{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.18);
}
.map-wrap iframe{
  width:100%;
  height: 320px;
  border:0;
  display:block;
}

.site-footer{
  padding: 18px 0 92px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}
.footer-inner p{
  margin:0;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.18);
  background: #008000;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.wa-float svg{
  width: 22px;
  height: 22px;
  fill: rgba(255,255,255,.92);
}
.wa-float span{
  font-weight: 900;
  letter-spacing:.2px;
}
.wa-float:hover{
  background: var(--green);
  border-color: rgba(0,0,0,.22);
  color:#06110b;
}
.wa-float:hover svg{
  fill:#06110b;
}

.to-top{
  position: fixed;
  right: 16px;
  bottom: 76px;
  z-index: 79;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: red;
  color: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease, color .18s ease;
}
.to-top.is-show{
  opacity:1;
  pointer-events:auto;
  transform: translateY(0);
}
.to-top:hover,
.to-top:focus-visible{
  background: var(--green);
  color:#06110b;
  outline:none;
}

.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in-view{
  opacity:1;
  transform: translateY(0);
}

/* Breakpoints */
@media (max-width: 1024px){
  .hero-grid{ grid-template-columns: 1fr; }
  .slider .slide img{ height: 340px; }
  .features-grid{ grid-template-columns: repeat(2, 1fr); }
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
  .about-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .nav-toggle{ display:block; }
  .nav-inner{ align-items:flex-start; }
  .nav-links{
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display:none;
    flex-direction:column;
    gap:6px;
    padding: 12px 16px 14px;
    margin: 0;
    background: linear-gradient(180deg, rgba(176,18,42,.98), rgba(211,22,51,.92));
    border-bottom: 1px solid rgba(0,0,0,.25);
  }
  .nav-links.is-open{ display:flex; }
  .cta-mini{ display:none; }

  .services-grid{ grid-template-columns: 1fr; }
  .slider{ min-height: 300px; }
  .slider .slide img{ height: 320px; }
}

@media (max-width: 480px){
  .container{ width: calc(100% - 22px); }
  .product-grid{ grid-template-columns: 1fr; }
  .features-grid{ grid-template-columns: 1fr; }
  .brand-text span{ display:none; }
  .slider-btn{ width: 42px; height: 42px; }
}
