/* Alex Schwarze Coaching - Custom One-Page (premium dark + gold) */
:root{
  --bg:#0b0c0f;
  --bg2:#0f1117;
  --card:#121522;
  --text:#f6f7fb;
  --muted:rgba(246,247,251,.78);
  --muted2:rgba(246,247,251,.62);
  --gold:#d8b463;
  --gold2:#b08a2c;
  --stroke:rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

.wrap{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.topbar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:50;
  background:linear-gradient(to bottom, rgba(11,12,15,.82), rgba(11,12,15,.25));
  backdrop-filter: blur(8px);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  font-weight:800;
  letter-spacing:.08em;
  font-size:12px;
  opacity:.95;
}
.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  font-size:13px;
}
.nav a:hover{color:var(--text)}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:132px 0 96px;
  overflow:hidden;
}
@media (min-width: 900px){
  .hero{min-height:92vh}
}
.hero__bg, .hero__bg img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero__bg img{
  filter:saturate(1.02) contrast(1.02);
  /* Micro framing tweak: slightly zoom out + show more hair/top and elbow/bottom */
  object-position: 58% 6%;
  transform: scale(1.0);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(60% 60% at 65% 32%, rgba(0,0,0,.26), rgba(0,0,0,.66)),
    linear-gradient(to bottom, rgba(0,0,0,.48), rgba(0,0,0,.72));
}
.hero__content{position:relative; z-index:2; max-width:720px; margin:0 auto; text-align:center}
.badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 14px;
  border:1px solid var(--stroke);
  border-radius:999px;
  font-size:12px;
  letter-spacing:.08em;
  font-weight:700;
  color:var(--muted);
  background:rgba(18,21,34,.35);
}
.h1{
  margin:18px 0 10px;
  font-size: clamp(44px, 6vw, 76px);
  line-height:1.03;
  letter-spacing:-.03em;
}
.sub{
  margin:0 0 22px;
  font-size: clamp(16px, 1.6vw, 20px);
  color:var(--muted);
  line-height:1.5;
}
.ctaRow{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}
.hero .ctaRow{justify-content:center}
.micro{
  margin:16px 0 0;
  color:var(--muted2);
  font-size:13px;
}

.hero__scrollHint{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(246,247,251,.55);
}

.section{
  position:relative;
  padding:86px 0;
}
.section--dark{background:var(--bg)}
.section--dark2{background:var(--bg2)}
.section--image{
  overflow:hidden;
}
.section__bg, .section__bg img{
  position:absolute;
  inset:0;
  width:100%; height:100%;
  object-fit:cover;
}
.section__overlay{
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.78), rgba(0,0,0,.84));
}
.section__overlay--strong{
  background:linear-gradient(to bottom, rgba(0,0,0,.82), rgba(0,0,0,.90));
}
.section .wrap{position:relative; z-index:2}

.h2{
  margin:0 0 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing:-.02em;
}
.h3{
  margin:0 0 10px;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing:-.02em;
}
.p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:16px;
}
.p--narrow{max-width:720px}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px 34px;
  margin-top:14px;
}
@media (max-width: 820px){
  .grid2{grid-template-columns: 1fr}
  .nav{display:none}
}

.pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
  background:rgba(18,21,34,.28);
}

.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:24px;
}
.card{
  background:rgba(18,21,34,.45);
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.card__title{
  font-weight:800;
  letter-spacing:-.01em;
  margin-bottom:8px;
}
.card__text{color:var(--muted); line-height:1.6}
@media (max-width: 900px){
  .cards3{grid-template-columns: 1fr}
}

.sectionHead{
  margin-bottom:24px;
}

.pricing{
  display:grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap:16px;
  align-items:stretch;
}
@media (max-width: 980px){
  .pricing{grid-template-columns: 1fr; }
}

.priceCard{
  background: linear-gradient(180deg, rgba(18,21,34,.75), rgba(18,21,34,.55));
  border:1px solid var(--stroke);
  border-radius:20px;
  padding:18px 18px 16px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.priceCard__top{margin-bottom:12px}
.priceName{
  font-weight:900;
  letter-spacing:-.02em;
  font-size:18px;
}
.priceValue{
  margin-top:8px;
  font-size:34px;
  font-weight:900;
  letter-spacing:-.03em;
}
.priceValue span{
  font-size:13px;
  font-weight:700;
  color:var(--muted2);
  margin-left:6px;
}
.priceNote{margin-top:8px; color:var(--muted); font-size:13px; line-height:1.5}

.ul{
  margin:14px 0 16px;
  padding-left:18px;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}
.ul li{margin:8px 0}

.priceCard--featured{
  border:1px solid rgba(216,180,99,.55);
  background: linear-gradient(180deg, rgba(18,21,34,.88), rgba(18,21,34,.62));
  transform: translateY(-8px);
}
@media (max-width: 980px){
  .priceCard--featured{transform:none}
}
.tag{
  position:absolute;
  top:14px; right:14px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(216,180,99,.14);
  border:1px solid rgba(216,180,99,.5);
  color:rgba(246,247,251,.92);
  font-weight:900;
  font-size:11px;
  letter-spacing:.12em;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  border:1px solid var(--stroke);
  color:var(--text);
  background:rgba(18,21,34,.35);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.18)}
.btn--gold{
  background: linear-gradient(135deg, #f1d28a 0%, var(--gold) 38%, var(--gold2) 100%);
  border:1px solid rgba(216,180,99,.62);
  color:#0b0c0f;
  box-shadow: 0 14px 44px rgba(216,180,99,.22), 0 0 0 1px rgba(216,180,99,.10) inset;
}
.btn--gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(216,180,99,.28), 0 0 18px rgba(216,180,99,.10);
}
.btn--ghost{
  background: rgba(0,0,0,.10);
  border:1px solid rgba(255,255,255,.18);
  color:var(--text);
}
.w100{width:100%}

.center{text-align:center}
.mt24{margin-top:24px}

.microBox{
  margin-top:26px;
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:16px 16px;
  background:rgba(18,21,34,.35);
}
.microBox__title{font-weight:900; margin-bottom:6px}
.microBox__text{color:var(--muted); line-height:1.6}

.quote{
  margin-top:18px;
  border-left: 3px solid rgba(216,180,99,.7);
  padding-left:14px;
}
.quote__big{font-weight:900; font-size:18px; letter-spacing:-.01em}
.quote__small{color:var(--muted); margin-top:8px}

.about{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:center;
}
@media (max-width: 980px){
  .about{grid-template-columns:1fr}
}
.about__img{
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--stroke);
  box-shadow: var(--shadow);
}
.about__img img{display:block; width:100%; height:auto}

.bullets{margin-top:14px; display:grid; gap:10px}
.bullet{display:flex; gap:10px; align-items:flex-start; color:var(--muted)}
.dot{width:10px; height:10px; border-radius:50%; background:rgba(216,180,99,.9); margin-top:6px; flex:0 0 auto}

.testGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
@media (max-width: 980px){
  .testGrid{grid-template-columns:1fr}
}
.testCard{
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:16px;
  background:rgba(18,21,34,.35);
}
.testText{color:var(--muted); line-height:1.65}
.testMeta{margin-top:10px; font-weight:800; font-size:13px; color:rgba(246,247,251,.85)}

.faq{
  display:grid;
  gap:10px;
  max-width:900px;
}
details{
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px 14px;
  background:rgba(18,21,34,.30);
}
summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
.faq__a{color:var(--muted); margin-top:10px; line-height:1.65}

.finalCta{
  margin-top:26px;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(216,180,99,.35);
  background: linear-gradient(180deg, rgba(216,180,99,.10), rgba(18,21,34,.30));
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
}

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

.footer{
  background: #07080a;
  border-top:1px solid rgba(255,255,255,.08);
  padding:22px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}


.emoji{font-size:.92em; opacity:.95; margin-left:2px}


#difference .section__bg img{object-position: 55% 18%; transform: scale(1.08)}

.microBox--tight{margin-top:18px}

#independence .wrap{padding:12px 0}
.h2--big{font-size: clamp(34px, 4vw, 56px); letter-spacing:-.03em}
.indepGrid{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.indepItem{
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px 14px;
  background:rgba(18,21,34,.28);
  color:var(--muted);
  font-weight:700;
}
@media (max-width: 820px){
  .indepGrid{grid-template-columns:1fr}
}

.aboutStats{
  margin:18px 0 10px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.aboutStat{
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px 14px;
  background:rgba(18,21,34,.28);
}
.aboutStat__num{
  font-weight:900;
  font-size:20px;
  letter-spacing:-.02em;
}
.aboutStat__label{
  color:var(--muted2);
  font-size:13px;
  margin-top:4px;
}
@media (max-width: 820px){
  .aboutStats{grid-template-columns:1fr}
}

.finalCtaBox{
  border:1px solid rgba(216,180,99,.22);
  border-radius:22px;
  padding:34px 26px;
  background:
    radial-gradient(80% 80% at 50% 0%, rgba(216,180,99,.10), rgba(0,0,0,0)),
    rgba(18,21,34,.32);
  box-shadow: var(--shadow);
  text-align:center;
}
.finalCtaBox .btn{margin-top:14px}
