
:root{
  --bg0:#060b14;
  --bg1:#071a35;
  --glass: rgba(255,255,255,.06);
  --glass2: rgba(255,255,255,.04);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.60);
  --blue:#4ea3ff;
  --blue2:#2b78c6;
  --shadow: 0 22px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 78% -10%, rgba(78,163,255,.28), transparent 55%),
    radial-gradient(900px 600px at 10% 20%, rgba(52,90,255,.18), transparent 60%),
    radial-gradient(800px 500px at 80% 70%, rgba(52,90,255,.14), transparent 60%),
    linear-gradient(180deg, var(--bg0), #040711 60%, #030610);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{width:min(1100px, calc(100% - 48px)); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(8,14,27,.78), rgba(8,14,27,.38));
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar__inner{
  display:flex; align-items:center; gap:18px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width:260px}
.brand__mark{
  width:42px; height:42px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(78,163,255,.35);
  color:#0b1323;
  font-weight:800;
}
.brand__text{display:flex; flex-direction:column; line-height:1.15}
.brand__name{font-weight:700}
.brand__sub{font-size:12px; color:var(--muted2)}

.nav{display:flex; gap:18px; align-items:center; margin-left:auto}
.nav a{color:var(--muted); font-weight:600; font-size:14px}
.nav a:hover{color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:14px;
  padding:12px 18px;
  font-weight:700;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.btn--primary{
  background: linear-gradient(180deg, rgba(78,163,255,.95), rgba(43,120,198,.95));
  border-color: rgba(78,163,255,.65);
  color: #06101f;
}
.btn--primary:hover{filter:brightness(1.03)}
.btn--pill{border-radius:999px}
.btn--contact{margin-left:8px}
.btn--wide{
  width:100%;
  border-radius:14px;
  padding:14px 18px;
  background: linear-gradient(180deg, rgba(78,163,255,.95), rgba(43,120,198,.95));
  color:#06101f;
  border-color: rgba(78,163,255,.65);
}

.navToggle{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  margin-left:auto;
}
.navToggle span{display:block; height:2px; margin:6px 10px; background: rgba(255,255,255,.85); border-radius:99px}

.hero{padding:90px 0 40px}
.hero h1{
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing:-0.02em;
  line-height:1.05;
  text-align:center;
  margin:0 0 18px;
}
.hero .btn--primary{display:block; margin:0 auto 26px; width:fit-content}

.card{
  background: linear-gradient(180deg, var(--glass), var(--glass2));
  border:1px solid var(--stroke);
  border-radius:26px;
  box-shadow: var(--shadow);
}

.coachCard{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap:22px;
  padding:22px;
  margin: 28px auto 18px;
}
.coachCard__photo{
  width:220px;
  height:220px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
}
.coachCard__photo img{width:100%; height:100%; object-fit:cover; display:block}
.coachCard h2{margin:6px 0 8px; font-size:30px}
.coachCard p{margin:0 0 14px; color:var(--muted); max-width:680px}
.pillRow{display:flex; gap:12px; flex-wrap:wrap}
.pill{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(78,163,255,.35);
  background: rgba(11,26,52,.55);
  color: rgba(255,255,255,.9);
  font-weight:700;
  font-size:14px;
}
.pill:hover{border-color: rgba(78,163,255,.6); background: rgba(11,26,52,.7)}

.whyCard{padding:20px 22px; margin: 0 auto}
.whyCard h3{margin:0 0 10px; font-size:22px}

.section{padding:48px 0}
.sectionTitle{font-size:32px; margin:0 0 10px}
.sectionLead{color:var(--muted); margin:0 0 18px; max-width:840px}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.featureCard{padding:18px 18px}
.featureCard h3{margin:0 0 8px; font-size:20px}
.featureCard p{margin:0 0 10px; color:var(--muted)}
.dotlist{margin:0; padding-left:18px; color:var(--muted)}
.dotlist li{margin:8px 0}

.ctaBar{padding:16px 18px; margin-top:16px}
.ctaBar p{margin:0; color:rgba(255,255,255,.9)}

.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:center;
}
.imageFrame{padding:14px; text-align:center; display:flex; flex-direction:column; align-items:center; justify-content:center}
.imageFrame__img{width:min(420px,100%); height:auto; display:block; border-radius:22px}
.caption{margin:10px 6px 0; color:var(--muted2); font-size:13px}

.miniGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}
.miniCard{padding:14px 14px}
.miniCard__top{font-weight:800}
.miniCard__sub{color:var(--muted2); margin-top:6px; font-size:13px; line-height:1.25}

.checklist{list-style:none; margin:0; padding:0}
.checklist li{
  display:flex; gap:10px;
  padding:10px 0;
  color:var(--muted);
}
.checklist--wide li{padding:12px 0}
.check{
  width:22px; height:22px; flex:0 0 22px;
  border-radius:8px;
  background: rgba(78,163,255,.22);
  border:1px solid rgba(78,163,255,.35);
  position:relative;
  margin-top:2px;
}
.check::after{
  content:"✓";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-weight:900;
  color: rgba(255,255,255,.92);
  font-size:14px;
}

.formCard{padding:20px}
.formBlock h3{margin:12px 0 12px; font-size:20px}
.mt{margin-top:18px !important}
.fields2{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-bottom:12px}
.fields1{display:grid; grid-template-columns:1fr; gap:12px; margin-bottom:12px}

.field input, .field textarea{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.9);
  outline:none;
}
.field textarea{resize:vertical}
.field input::placeholder, .field textarea::placeholder{color: rgba(255,255,255,.45)}
.field input:focus, .field textarea:focus{border-color: rgba(78,163,255,.55)}

.field--box{
  padding:12px 12px;
  border-radius:14px;
  background: rgba(0,0,0,.12);
  border:1px solid rgba(255,255,255,.10);
}
.field__label{color: rgba(255,255,255,.55); font-weight:700; font-size:13px; margin-bottom:10px}
.days{display:flex; flex-wrap:wrap; gap:12px}
.days label{display:flex; align-items:center; gap:8px; color: rgba(255,255,255,.85); font-weight:700}
.days input{width:16px; height:16px; accent-color: var(--blue)}

.radioRow{display:flex; gap:28px; align-items:center; padding:8px 0 4px}
.radio{display:flex; align-items:center; gap:10px; color: rgba(255,255,255,.9); font-weight:700}
.radio input{width:16px; height:16px; accent-color: var(--blue)}

.footer{padding:28px 0 36px; color: rgba(255,255,255,.55)}
.footer__inner{display:flex; justify-content:center}

.sr{position:absolute; left:-9999px}

@media (max-width: 980px){
  .grid3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .miniGrid{grid-template-columns:1fr}
  .coachCard{grid-template-columns: 1fr; text-align:left}
  .coachCard__photo{max-width:260px}
}

@media (max-width: 900px){
  .nav{display:none}
  .btn--contact{display:none}
  .navToggle{display:block}
  .nav.nav--open{
    display:flex;
    position:absolute;
    right:24px;
    top:64px;
    flex-direction:column;
    gap:10px;
    padding:14px;
    border-radius:18px;
    background: rgba(8,14,27,.92);
    border:1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
  }
  .topbar__inner{position:relative}
}


.protectedWrap{position:relative}
.protectedWrap img{user-select:none; -webkit-user-drag:none}
.protectedOverlay{position:absolute; inset:0; background:transparent}


/* =====================================================
   GLOBAL BACKGROUND LAYER (FIXES SEAMS / BANDING)
   ===================================================== */

/* make sure page always has dark base */
html, body{
  min-height: 100%;
  background: #050a13 !important;
}

/* disable old pseudo-backgrounds that can create seams */
body::before,
body::after{
  content: none !important;
  display: none !important;
}

/* body itself stays transparent; background is drawn by .page-bg */
body{
  background: transparent !important;
}

/* stable background layer across whole viewport */
.page-bg{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(1400px 900px at 70% -20%, rgba(78,163,255,.22), transparent 65%),
    radial-gradient(1100px 800px at 15% 25%, rgba(52,90,255,.16), transparent 65%),
    radial-gradient(1100px 800px at 80% 85%, rgba(52,90,255,.12), transparent 65%),
    linear-gradient(180deg, #050a13 0%, #040712 60%, #030610 100%);

  background-repeat: no-repeat;
  box-shadow: inset 0 0 180px rgba(0,0,0,.55);

  /* GPU stability (prevents a horizontal seam on some displays) */
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  will-change: transform;
}

/* subtle grain to remove banding */
.page-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.03) 1px, transparent 1.6px),
    radial-gradient(circle at 75% 10%, rgba(255,255,255,.025) 1px, transparent 1.6px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.025) 1px, transparent 1.6px),
    radial-gradient(circle at 90% 60%, rgba(78,163,255,.025) 1px, transparent 1.6px);
  background-size: 160px 160px, 200px 200px, 240px 240px, 280px 280px;
  opacity: .10;
  filter: blur(.4px);
}

/* keep content above bg */
.page-content{
  position: relative;
  z-index: 0;
}

/* ensure no section paints white */
section, main, .container, .wrapper, .content{
  background: transparent !important;
}


/* ===== Licencie (safe, no background changes) ===== */
.about-licenses{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.license-pill{
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #e6f0ff;
  background: rgba(78,163,255,.12);
  border: 1px solid rgba(78,163,255,.30);
}


/* ===== GDPR checkbox ===== */
.gdpr-checkbox{
  display: block;
  margin-top: 14px;
  font-size: 12px;
  opacity: .85;
  line-height: 1.45;
}
.gdpr-checkbox input{
  margin-right: 10px;
  transform: translateY(1px);
}


/* =========================
   FOOTER CONTACT – SAFE
   ========================= */

.site-footer{
  margin-top: 40px;
  padding-bottom: 24px;
}

.footer-contact{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin: 12px 0 6px;
  font-size: 13px;
  color: rgba(230,240,255,.9);
}

.footer-link{
  color: rgba(230,240,255,.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(78,163,255,.25);
  transition: border-color .2s ease, color .2s ease;
}

.footer-link:hover{
  color: #ffffff;
  border-bottom-color: rgba(78,163,255,.7);
}

.footer-sep{
  opacity: .55;
}

.footer-copy{
  text-align:center;
  font-size: 13px;
  opacity: .7;
}
