:root{
  --bg0:#070A10;
  --bg1:#0B1220;
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --muted2: rgba(255,255,255,.56);
  --brandA:#00C2D1;
  --brandB:#FF8A00;
  --radius: 22px;
  --radius2: 28px;
  --max: 1120px;
  --shadow: 0 18px 55px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family:"Manrope", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 650px at 20% 0%, rgba(0,194,209,.20), transparent 55%),
    radial-gradient(900px 600px at 80% 10%, rgba(255,138,0,.18), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
a.u{ text-decoration: underline; text-underline-offset: 2px; }

.wrap{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7,10,16,.65);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:.2px;
}

.brand img{
  height:32px;
  width:auto;
  display:block;
}

/* --- LANGUAGE SWITCHER (Dashboard Style) --- */
.lang-switch {
    display: inline-flex;
    background: rgba(0,0,0,0.2);
    padding: 3px;
    border-radius: 12px;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--muted);
    padding: 6px 10px;
    border-radius: 9px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.lang-btn:hover {
    color: var(--text);
}

.lang-btn.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* ------------------------------------------ */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, filter .15s ease;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
}

.btn:active{ transform: translateY(0px); }

.btnPrimary{
  border:none;
  background: linear-gradient(135deg, var(--brandA), var(--brandB));
  color:#061019;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

.btnPrimary:hover{
  background: linear-gradient(135deg, var(--brandA), var(--brandB));
  filter: brightness(1.08);
}

.btnLarge{
  padding: 16px 28px;
  font-size: 17px;
  border-radius: 16px;
}

main{ padding: 0; }

section{ padding: 40px 0; }

h1{
  margin:0 0 14px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

h2{
  margin:0 0 12px;
  font-size: 26px;
  letter-spacing: -0.2px;
}

h3{
  margin:0 0 8px;
  font-size: 16px;
  letter-spacing: -0.2px;
}

p{
  margin:0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
}

.hero{
  padding: 60px 0 40px;
}

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

.sub{
  margin:0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  max-width: 64ch;
}

.pricing{
  margin-top: 14px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: 14px;
}

.positioning{
  margin-top: 12px;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.45;
  max-width: 70ch;
}

.heroActions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
  align-items:center;
}

.microcopy{
  margin-top: 14px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 500;
}

.afterClick{
  margin-top: 10px;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.4;
}

.afterClick strong{
  color: var(--brandA);
  font-weight: 700;
}

.textLink{
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s ease;
}

.textLink:hover{
  color: var(--text);
}

.textLinkSmall{
  display: inline-block;
  margin-top: 22px;
  color: var(--muted2);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity .15s ease;
}

.textLinkSmall:hover{
  opacity: 1;
}

.heroVisual{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.18);
}

.heroVisual.slideshow{
  border: none;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}

.heroVisual img{
  width:100%;
  height:auto;
  display:block;
}

/* Slideshow */
.slideshow{
  position: relative;
}

.slideContainer{
  position: relative;
  width: 100%;
  height: 420px;
}

.slide{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active{
  opacity: 1;
}

.slide img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  border-radius: var(--radius2);
  object-fit: contain;
}

.slideIndicators{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slideIndicator{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.slideIndicator.active{
  background: var(--brandA);
  transform: scale(1.2);
}

.slideIndicator:hover{
  background: rgba(255,255,255,.5);
}

.sectionSub{
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 78ch;
}

/* Trust Section */
.trust{
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.trustGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trustBullet{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
}

.trustIcon{
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.trustBullet strong{
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.trustBullet span{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

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

.card{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: var(--card);
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
}

.card p{
  font-size: 14px;
  line-height: 1.45;
}

footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding: 24px 0 40px;
  color: var(--muted2);
  font-size: 13px;
}

.footRow{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footRight{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footDivider{
  color: var(--muted2);
}

.lang-switch-footer{
  background: rgba(0,0,0,0.3);
}

.lang-switch-footer .lang-btn{
  font-size: 12px;
  padding: 5px 8px;
}

.page{
  padding: 54px 0 10px;
}

.pageInner{
  max-width: 860px;
  margin: 0 auto;
}

.page h1{
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.page h2{
  margin: 26px 0 10px;
  font-size: 18px;
  letter-spacing: -0.1px;
}

.page p, .page li{
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.note{
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}

.kv{
  color: var(--text);
  font-weight: 800;
}

ul{ margin: 8px 0 0 20px; padding:0; }

/* Cookie banner - compact */
.cookie-banner{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, calc(100% - 24px));
  background: rgba(10,14,22,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 12px 16px;
  z-index: 10000;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  line-height: 1.4;
  pointer-events: auto;
}

.cookie-banner > div:first-child{
  flex: 1;
  color: var(--muted);
}

.cookie-actions{
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn{
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  pointer-events: auto;
}

.cookie-btn.primary{
  background: linear-gradient(135deg, var(--brandA), var(--brandB));
  color:#061019;
}

.cookie-btn.secondary{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Testimonials Carousel */
.testimonials{
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.testimonials h2{
  text-align: center;
  margin-bottom: 32px;
}

.testimonialCarousel{
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonialTrack{
  display: flex;
  overflow: hidden;
  border-radius: var(--radius2);
}

.testimonialSlide{
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
}

.testimonialSlide.active{
  opacity: 1;
  display: block;
}

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

.testimonialOverlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 24px;
  pointer-events: none;
}

.testimonialName{
  align-self: flex-start;
  background: #000;
  padding: 12px 18px;
  border-radius: 0;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.testimonialQuote{
  align-self: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,0,0,.75), rgba(0,0,0,.6));
  padding: 20px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  max-width: 85%;
  line-height: 1.6;
  letter-spacing: 0.2px;
  border-left: 3px solid var(--brandA);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.testimonialNav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.testimonialArrow{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}

.testimonialArrow:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}

.testimonialDots{
  display: flex;
  gap: 10px;
}

.testimonialDot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.testimonialDot.active{
  background: var(--brandA);
  transform: scale(1.2);
}

.testimonialDot:hover{
  background: rgba(255,255,255,.5);
}

@media(max-width:900px){
  .heroGrid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .trustGrid{ grid-template-columns: 1fr; }
  .top{ padding: 12px 0; }
}

@media(max-width:600px){
  .cookie-banner{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    bottom: 12px;
  }
  .cookie-actions{
    justify-content: flex-end;
  }
  .testimonialSlide{
    aspect-ratio: 4 / 3;
  }
  .testimonialOverlay{
    padding: 14px 16px;
  }
  .testimonialName{
    font-size: 16px;
    padding: 10px 14px;
  }
  .testimonialQuote{
    font-size: 14px;
    padding: 14px 20px;
  }
  .testimonialArrow{
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}
