
:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Roboto", sans-serif;

  /* BRAND (zlato-oranžová z loga) */
  --brand: #eecf80;        /* hlavní */
  --brand-dark: #B88400;   /* tmavší */
  --brand-2: #E0AA0A;      /* světlejší/gradient */
  --brand-soft: #F7E6C2;   /* světlé pozadí pill/ikon */

  --color-gold: var(--brand);
  --gold: var(--brand);

  --text:#0f0f0f;
  --muted:#6b7280;
  --card:#ffffff;
  --border:#ececec;
  --shadow: 0 18px 45px rgba(0,0,0,.08);
  --shadow2: 0 26px 60px rgba(0,0,0,.12);
  --gold: #eecf80;
  --gold2: #eecf80;
 --bg: #000;
  --card: rgba(18,18,18,.78);
  --cardHover: rgba(18,18,18,.92);
  --border: rgba(255,255,255,.10);
   --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.52);
  --muted2: rgba(255,255,255,.36);
}

*{ box-sizing: border-box; }
html, body{ overflow-x: hidden; }

*{
       
  touch-action: pan-y;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    
    
}

a {
    text-decoration: none;
    color:inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Header */

header {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 40px; 
}

.header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 22px;

  background: rgb(255, 255, 255);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.55);

  box-shadow:
    0 18px 55px rgba(0,0,0,.10),
    0 2px 0 rgba(255,255,255,.35) inset;

  display: flex;
  align-items: center;
  justify-content: space-between;  
  gap: 18px;
}

/* Flex */

.header__nav {
  margin-left: auto;    
  margin-right: auto;  

}

.header__right {
  margin-right: 0; 
}

.header__left {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0; 
}


.text__fitness {
  color: var(--color-gold);
  font-weight: 700;
}

.logo__header{
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.logo__text{
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
}

.header__list{
  display:flex;
  gap: 26px;
}

.header__left{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: inherit;
  padding: 8px 10px;
  border-radius: 14px;
  transition: transform .2s ease, background .2s ease;
}
.header__left:hover{
  background: rgba(0,0,0,.04);
  transform: translateY(-1px);
}


.header__text{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(17,17,17,.80);
  font-weight: 600;
  position: relative;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}

.header__text:hover{
  background: rgba(234,179,8,.18);
  color: #111;
  transform: translateY(-1px);
}


.header__text.is-active{
  background: rgba(234,179,8,.26);
  color:#111;
}

.header__btn{
  padding: 10px 18px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(212,160,23,.28);
}

.header__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(234,179,8,.40);
}


/* Hero */

.hero__welcome {
  padding-top: 140px; 
  padding-bottom: 60px;

  min-height: 800px;
  background: url("/img/backgroundprice.png")  center/cover no-repeat;

  position: relative;
 
  overflow: hidden;
}


.hero__welcome::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.32) 52%,
    rgba(0,0,0,0.12) 100%
  );
  z-index: 1;
}
.hero__container{
  position: relative;
  z-index: 2;

  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 40px 60px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

/* vlevo */
.welcome__title{
  margin: 0 0 18px;
  font-size: 96px;
  line-height: 100%;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}

.welcome__title .gold{
  color: var(--color-gold);
}

.welcome__desc{
  max-width: 520px;
  margin: 0 0 26px;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 133%;
  
}

/* tlacitka */
.hero__actions{
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.welcome__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 14px;

  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn__icon{
  width: 16px;
  height: 16px;
}


.welcome__btn--primary{
  background: var(--color-gold);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(234,179,8,0.25);
}

.welcome__btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(234,179,8,0.35);
}

.welcome__btn--ghost{
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
}

.welcome__btn--ghost:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.28);
}

/* foto lachtana */
.hero__right{
  display: flex;
  justify-content: flex-end;
}

.hero__photo{
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 22px;
  display: block;
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

/* o mne */
.about{
  padding: 90px 40px;
  background: #fff;
}

.about__container{
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

.about__title{
  margin: 0 0 18px;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
}

.about__text{
  margin: 0 0 18px;
  max-width: 620px;

  font-size: 18px;
  line-height: 1.8;
  color: #6b6b6b;
}

.about__right{
  display: flex;
  justify-content: flex-end;
}

.about__photo{
  width: 100%;
  max-width: 460px;
  height: auto;

  border-radius: 18px;
  display: block;

  box-shadow: 0 20px 55px rgba(0,0,0,0.15);
}



/* sluzby */


.services{
  padding: 140px 0 130px;
  background: linear-gradient(
    180deg,
    #f7f7f7 0%,
    #ffffff 45%
  );
}

.services__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.services__head{
  text-align: center;
  margin-bottom: 50px;
}

.services__title{
  margin: 0 0 12px;
  font-size: 40px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
}

.services__gold{
  color: var(--color-gold);
}

.services__subtitle{
  margin: 0 auto;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* grid */
.services__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}

/* sluzby */
.plan{
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 34px 34px 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}

.plan__topline{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

/* icon  */
.plan__icon{
  width: 64px;
  height: 64px;
  border-radius: 16px;

  border: 1px solid #ececec;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f6f6 100%
  );

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.plan__icon img{
  width: 30px;
  height: 30px;
}

.plan__title{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.plan__desc{
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}


.plan__list{
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.plan__item{
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.plan__item img{
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

/* tlacitka nahoru animace */
.plan__btn{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;

  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;

  transition: transform .25s ease,
              box-shadow .25s ease,
              background .25s ease,
              color .25s ease,
              border-color .25s ease;
}

.plan__btn:active{
  transform: translateY(-1px);
}


.plan__btn--dark{
  background: #111;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.plan__btn--dark:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.24);
}


.plan__btn--light{
  background: #fff;
  color: #111;
  border: 1px solid #dcdcdc;
}

.plan__btn--light:hover{
  transform: translateY(-4px);
  border-color: #cfcfcf;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}


/* osobni trenink */


.pricing{
  background: var(--bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* top glow */
.pricing::before{
  content:"";
  position:absolute;
  left:50%;
  top:-180px;
  transform:translateX(-50%);
  width: 980px;
  height: 520px;
  background: radial-gradient(circle, rgba(212,160,23,.55) 0%, rgba(212,160,23,.22) 35%, rgba(0,0,0,0) 70%);
  pointer-events:none;
  z-index:0;
}

.pricing__container{
  width:1200px;
  max-width:92%;
  margin:0 auto;
  position:relative;
  z-index:1;
  text-align:center;
}

.pricing__kicker{
  margin:0 0 14px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: #eecf80;
}

.pricing__title{
  margin:0 0 14px;
  font-size:64px;
  line-height:1.05;
  font-weight:900;
  color:#fff;
}

.pricing__accent{ color: var(--gold); }

.pricing__subtitle{
  margin:0 auto 56px;
  max-width:760px;
  font-size:15px;
  line-height:1.7;
  color: rgba(255,255,255,.60);
}

/* grid */
.pricing__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

/* card */
.priceCard{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 26px 22px;
  text-align:left;
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  backdrop-filter: blur(12px);
  position:relative;
  overflow:hidden;

  /* ключевое: ничего не разъезжается */
  display:flex;
  flex-direction:column;
  min-height: 560px;

  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

/* side glow on hover */
.priceCard::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 26px;
  background:
    radial-gradient(220px 320px at 0% 55%, rgba(212,160,23,.24), rgba(0,0,0,0) 70%),
    radial-gradient(220px 320px at 100% 55%, rgba(212,160,23,.24), rgba(0,0,0,0) 70%);
  opacity:0;
  transition: opacity .22s ease;
  pointer-events:none;
}

.priceCard:hover{
  transform: translateY(-12px);
  background: var(--cardHover);
  border-color: rgba(212,160,23,.35);
  box-shadow:
    0 45px 120px rgba(0,0,0,.78),
    0 0 0 1px rgba(212,160,23,.12) inset,
    0 0 90px rgba(212,160,23,.10);
}
.priceCard:hover::after{ opacity:1; }

/* head */
.priceCard__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}

.priceCard__title{
  margin:0 0 6px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  color:#fff;
}

.priceCard__sub{
  margin:0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}


.priceCard__icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  flex: 0 0 44px;
}
.priceCard__icon img{
  width:22px;
  height:22px;
  display:block;
}

/* rows list must stretch */
.priceCard__list{
  display:flex;
  flex-direction:column;
  flex: 1;
}

/* row */
.priceRow{
  display:grid;
  grid-template-columns: 1fr auto; /* FIX: не разъезжается */
  align-items:center;
  column-gap: 18px;

  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.priceRow__left{
  display:flex;
  flex-direction:column;
  min-width: 0;
}

.priceRow__name{
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
}

.priceRow__meta{
  margin-top: 4px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.25;
}

.priceRow__price{
  color:#fff;
  font-weight: 900;
  font-size: 20px;
  white-space: nowrap;
  text-align:right;
}

/* note */
.priceCard__note{
  margin: 14px 0 18px;
  color: rgba(255,255,255,.40);
  font-size: 12.5px;
  line-height: 1.6;
}

/* button (default black → gold on hover) */
.priceCard__btn{
  margin-top: auto;             /* FIX: кнопка всегда снизу */
  display:flex;
  align-items:center;
  justify-content:center;
  height: 52px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 14px;
  text-decoration:none;

  background: #111;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.10);

  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.priceCard__btn:hover{
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
  border-color: rgba(212,160,23,.6);
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(212,160,23,.35), 0 0 35px rgba(212,160,23,.25);
}

/* main card has gold border always a bit */
.priceCard--main{
  border-color: rgba(212,160,23,.25);
}

/* responsive */
@media (max-width: 980px){
  .pricing__title{ font-size: 44px; }
  .pricing__grid{ grid-template-columns: 1fr; }
  .priceCard{ min-height: auto; }
}


/* online trener */


.online{
  position: relative;
  padding: 120px 0;
  background: #f6f6f6;
  overflow: hidden;
}

/* svetlo nahore */
.online::after{
  content: "";
  position: absolute;
  top: 0;
  right: -150px;
  width: 800px;
  height: 100%;
  background: url("/img/svetlo.svg") no-repeat right top;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

/* conteiner */
.online__container{
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}


/* titly */


.online__kicker{
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.online__title{
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.online__accent{
  color: var(--brand);
}

.online__subtitle{
  max-width: 650px;
  margin: 0 auto 80px auto;
  color: #666;
  line-height: 1.6;
}


/* features */


.online__features{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 100px;
}

.feature{
  background: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  text-align: left;
}

.feature__icon{
  width: 55px;
  height: 55px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
}

.feature__icon img{
  width: 22px;
}

.feature__title{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature__text{
  color: #666;
  line-height: 1.6;
}

/* plany */

.online__plansTitle{
  font-size: 28px;
  font-weight: 800;
  margin: 48px 0 28px;
  text-align: center;
  letter-spacing: -0.3px;
  color: #111;
}

.plans{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}


.plan{
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 34px 34px 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden; 
}

.plan::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:#e5e5e5;
}

.plan:hover{
  transform: translateY(-8px);
  box-shadow: 0 26px 65px rgba(0,0,0,0.12);
}

.plan--basic::before{
  background:#dedede;
}

.plan--pro::before{
  background:var(--brand);
}

.plan__badge{
  position:absolute;
  top:0;
  right:1px;
  background:var(--brand);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing: .12em;
  padding: 8px 14px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  line-height: 1;
  text-transform: uppercase;
  z-index: 2;
}


.plan h3,
.plan__name{
  margin: 8px 0 6px;
  font-size: 20px;
  font-weight: 800;
  color:#111;
}

/* popis pod textem hlavnim */
.plan__hint{
  margin: 0 0 18px;
  color:#777;
  font-size:14px;
  line-height:1.6;
}

/* cena */
.plan__priceRow{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin: 0 0 20px;
}

.plan__price{
  font-size: 44px;        
  font-weight: 900; 
  letter-spacing: -0.8px;
  color:#111;
}

.plan__per{
  color:#8a8a8a;
  font-size: 15px;
}

.plan__list{
  list-style:none;
  padding:0;
  margin:0 0 22px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.plan__list li{
  display:flex;
  align-items:center;
  gap:12px;
  color:#333;
  font-size:15px;
  line-height:1.45;
}


.plan__list li img{
  width:18px;
  height:18px;
  flex: 0 0 18px;
}

/* tlacitka */

/* vlevo seda */
.plan__btn--ghost{
  background:#f1f1f1;
  color:#333;
}

.plan__btn--ghost:hover{
  transform: translateY(-2px);
  filter: brightness(0.98);
}

/* prava zlata */
.plan__btn--gold{
  background:var(--brand);
  color:#fff;
}

.plan__btn--gold:hover{
  transform: translateY(-2px);
  filter: brightness(0.95);
}



/* faq */

.faq{
  padding: 110px 0;
  background: #fff;
}

.faq__container{
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: start;
}

/* vlevo */
.faq__pill{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.faq__title{
  margin: 0 0 16px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
  color: #111;
}

.faq__accent{ color:var(--brand); }

.faq__text{
  margin: 0 0 20px;
  max-width: 380px;
  color:#6f6f6f;
  line-height: 1.75;
  font-size: 15px;
}

.faq__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color:#eecf80;
  font-weight: 800;
  text-decoration: none;
  
}

.faq__link:hover{ text-decoration: underline; }

/* vpravo */
.faq__right{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* item card */
.faqItem{
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faqItem__summary{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
}

.faqItem__summary::-webkit-details-marker{ display:none; }

.faqItem__q{
  font-size: 16px;
  font-weight: 800;
  color:#111;
}


.faqItem__icon{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f3f3;       
  border: none;                
  flex: 0 0 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("/img/faq.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;

  transition: transform .2s ease, background-color .2s ease;
}


.faqItem__content{
  padding: 0 22px 18px;
  color:#6f6f6f;
  font-size: 14.5px;
  line-height: 1.7;
}

.faqItem[open] .faqItem__icon{
  transform: rotate(180deg);
  background-color: #ececec;
}

.faqItem[open] .faqItem__summary{
  border-bottom: 1px solid #ededed;
}


/* footer */

.footer{
  padding: 70px 0 36px;
  background: radial-gradient(900px 360px at 50% 0%, rgba(255,255,255,0.05), rgba(0,0,0,0) 60%),
              linear-gradient(180deg, #171717 0%, #111 100%);
  color: #d6d6d6;
}

.footer__container{
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 80px;
  align-items: start;
}


.footer__logoRow{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer__logoImg{
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.footer__logoText{
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.footer__logoName{
  font-size: 20px;
  color: #fff;
}

.footer__logoAccent{
  font-size: 20px;
  color: var(--brand);
}

.footer__desc{
  margin: 0;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-size: 14px;
  max-width: 420px;
}


.footer__title{
  margin: 6px 0 16px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;  
}

.footer__links a{
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease, transform .2s ease;
}

.footer__links a:hover{
  color: rgba(255,255,255,0.85);
  transform: translateX(2px);
}

/* dole */
.footer__bottom{
  margin-top: 42px;
}

.footer__bottomInner{
  display: block;
}

.footer__line{
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 0 18px;
}

.footer__copy{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}




/*  <= 1200px */
@media (max-width: 1200px){
  header{ padding: 0 40px; }         
  .header__container{ padding: 18px 40px; } 

  .header__left{ margin-left: 50; }
  .header__right{ margin-right: 0; }
  .header__nav{ margin-right: 50; }

  .hero__container{
    padding: 70px 22px 50px;
    grid-template-columns: 1fr 0.9fr;
  }
  .welcome__title{ font-size: 72px; }
}

/*  <= 980px */
@media (max-width: 980px){

  .hero__container{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 70px 18px 50px;
  }
  .hero__right{ justify-content: center; }
  .hero__photo{ max-width: 520px; }

  .welcome__title{ font-size: 60px; }

  .about{ padding: 70px 18px; }
  .about__container{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about__right{ justify-content: center; }
  .about__title{ font-size: 52px; }

  .services{ padding: 90px 0 90px; }
  .services__container{ padding: 0 18px; }
  .services__grid{ grid-template-columns: 1fr; }

  .price{ padding: 90px 0 110px; }
  .price__inner{ padding: 0 18px; }
  .price__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .price__center{ order: -1; } 

  .online{ padding: 90px 0; }
  .online__container{ max-width: 92%; }
  .online__features{ grid-template-columns: 1fr 1fr; }
  .plans{ grid-template-columns: 1fr; max-width: 560px; }

  .faq__container{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .faq__title{ font-size: 44px; }
  .faq__text{ max-width: 600px; }

  .footer__container{
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* <= 560px */
@media (max-width: 560px){
  header{ top: 14px; padding: 0 12px; }
  .header__container{
    padding: 14px 14px;
    border-radius: 16px;
  }

  .welcome__title{ font-size: 44px; }
  .welcome__desc{ font-size: 14px; }

  .hero__actions{ gap: 10px; }
  .welcome__btn{ padding: 10px 14px; font-size: 13px; }

  .about__title{ font-size: 42px; }
  .about__text{ font-size: 16px; }

  .services__title{ font-size: 32px; }

  .online__title{ font-size: 34px; }
  .online__subtitle{ margin-bottom: 50px; }
  .online__features{ grid-template-columns: 1fr; }

  .plan{ padding: 28px 22px 22px; }
  .plan__price{ font-size: 38px; }

  .faqItem__summary{ padding: 18px 18px; }
  .faqItem__q{ font-size: 15px; }
}


/* burger */


.burger{
  display: none;                 
  width:46px;
  height:46px;
  background:#111;
  border:1px solid rgba(234,179,8,0.4);
  border-radius:14px;
  cursor:pointer;
  padding:0;

  position: relative;            
  margin-left: auto;             

  align-items:center;
  justify-content:center;

  box-shadow: 0 0 25px rgba(234,179,8,0.4);
}


.burger span{
  position:absolute;
  width:20px;
  height:2px;
  background: var(--gold);
  border-radius:999px;
  transition: all .25s ease;
}


.burger span:nth-child(1){
  transform: translateY(-6px);
}

.burger span:nth-child(2){
  transform: translateY(0);
}

.burger span:nth-child(3){
  transform: translateY(6px);
}


.burger.is-open span:nth-child(1){
  transform: rotate(45deg);
}
.burger.is-open span:nth-child(2){
  opacity:0;
}
.burger.is-open span:nth-child(3){
  transform: rotate(-45deg);
}

@media (max-width: 980px){

  .burger{ display:inline-flex; }
  .header__right{ display:none; }

 
  .header__nav{
    position: fixed;
    top: 92px;
    left: 14px;
    right: 14px;

    background: #111;
    border: 1px solid rgba(234,179,8,0.25);
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0,0,0,0.6);

    padding: 18px;

    opacity:0;
    transform: translateY(-10px) scale(0.96);
    pointer-events:none;
    transition: all .25s ease;
  }

  .header__nav.is-open{
    opacity:1;
    transform: translateY(0) scale(1);
    pointer-events:auto;
  }

  .header__list{
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  
  .header__text{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:16px 18px;
    border-radius:16px;

    font-size:16px;
    font-weight:600;

    background:#1a1a1a;
    color:#fff;
    border:1px solid rgba(255,255,255,0.05);

    transition: all .2s ease;
  }

  .header__text::after{
    content:"→";
    font-size:16px;
    opacity:.5;
    transition: transform .2s ease, opacity .2s ease;
  }

  .header__text:hover{
    background: linear-gradient(
      90deg,
      rgba(234,179,8,0.15),
      rgba(234,179,8,0.05)
    );
    border-color: rgba(234,179,8,0.4);
    color: var(--gold);
    transform: translateX(4px);
  }

  .header__text:hover::after{
    transform: translateX(4px);
    opacity:1;
    color: var(--gold);
  }
}



/* nav-menu */


@media (max-width: 1024px){


  header{
    position: fixed;
    top: 12px;              
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 12px;        
  }

  
  .header__container{
    padding: 12px 14px;     
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  }


  .logo__header{ width: 38px; height: 38px; }
  .logo__text{ font-size: 14px; }

  
  .burger{
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

 
  body{
    padding-top: 96px;      
  }
}



.header__left{ margin-left: 0 !important; }


.header__nav{ margin-left: 0 !important; margin-right: 0 !important; }


.burger{
  margin-left: 0 !important;
  flex: 0 0 auto !important;
}

.header__container{
  justify-content: space-between !important;
  gap: 14px !important;
}


@media (max-width: 1024px){
  .header__container{
    padding: 12px 14px !important;
  }

  
  .header__nav{
    position: fixed !important;
    top: 86px !important;
    left: 12px !important;
    right: 12px !important;

    background: #111 !important;
    border: 1px solid rgba(234,179,8,0.25) !important;
    border-radius: 20px !important;
    box-shadow: 0 35px 80px rgba(0,0,0,0.6) !important;

    padding: 16px !important;

    opacity: 0 !important;
    transform: translateY(-10px) scale(.98) !important;
    pointer-events: none !important;
    transition: .2s ease !important;
  }

  .header__nav.is-open{
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
  }


  .header__list{
    display:flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
}

.nav__mobileOnly{ display: none; }

@media (max-width: 980px){
  
  .nav__mobileOnly{ display: block; }

  
  .header__text--cta{
    justify-content: center !important;
    background: linear-gradient(180deg, #eecf80) !important;
    color: #111 !important;
    border: 1px solid rgba(0,0,0,.10) !important;
    box-shadow: 0 14px 30px rgba(234,179,8,.25) !important;
  }

  .header__text--cta::after{
    content: "" !important; 
  }
}