/* ============================
   Design System & Resets
   ============================ */

:root{
  /* Colors */
  --bg: #0f0f11;
  --bg-alt:#121214;
  --card:#151518;
  --elev:#1a1a1e;
  --text:#f2f2f3;
  --muted:#a2a6b0;

  /* Premium golds */
  --gold-1:#E9D27D;
  --gold-2:#B69C5A;
  --gold-3:#9C8552;

  /* Accents / states */
  --success:#55d18f;
  --danger:#ff6b6b;

  /* Radii & shadows */
  --r-sm:12px;
  --r-md:18px;
  --r-lg:24px;

  --shadow: 0 10px 30px rgba(0,0,0,.35), 0 2px 8px rgba(0,0,0,.3);

  /* Layout */
  --container: 1200px;
  --pad: clamp(16px, 3vw, 28px);
}

*,
*::before,
*::after{ box-sizing:border-box; scroll-behavior: smooth; }

html, body{
  margin:0;
  padding:0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg{ display:block; max-width:100%; height:auto }

/* Containers & utilities */
.container{
  width:min(100% - 2*var(--pad), var(--container));
  margin-inline:auto;
}

.align-center{ text-align:center }
.muted{ color: var(--muted) }
.small{ font-size:.9rem }






.header{

}
.headerWrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav{

}
.ham{
    display: none;
}

.nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    margin: 0;
}

.nav li{
    list-style: none;
}

.nav a{
    color: inherit;
    text-decoration: none;
}

.stopScroll{
    overflow: hidden;
}
.logo{
    position: relative;
    z-index: 1000;
    font-size: 24px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.logo-text span{
  color: #e2cb78;
}
@media screen and (max-width: 800px) {
    .nav{
        position: fixed;
        inset: 0;
        background-color: #111;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 100vh;
        z-index: 999;
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transition: .3s all cubic-bezier(0.23, 1, 0.320, 1);
        -webkit-transition: .3s all cubic-bezier(0.23, 1, 0.320, 1);
        -moz-transition: .3s all cubic-bezier(0.23, 1, 0.320, 1);
        -ms-transition: .3s all cubic-bezier(0.23, 1, 0.320, 1);
        -o-transition: .3s all cubic-bezier(0.23, 1, 0.320, 1);
}
    .nav.active{
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
}

    .nav ul{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .ham {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: transform 400ms;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        display: flex;
        z-index: 1000;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#fff;
  stroke-width:5.5;
  stroke-linecap:round;
}
.ham7 .top {
  stroke-dasharray: 40 82;
}
.ham7 .middle {
  stroke-dasharray: 40 111;
}
.ham7 .bottom {
  stroke-dasharray: 40 161;
}
.ham7.active .top {
  stroke-dasharray: 17 82;
  stroke-dashoffset: -62px;
}
.ham7.active .middle {
  stroke-dashoffset: 23px;
}
.ham7.active .bottom {
  stroke-dashoffset: -83px;
}
.ham8 .top {
  stroke-dasharray: 40 160;
}
}
/* ============================
   Buttons
   ============================ */
.btn{
  --ring: rgba(233,210,125,.35);
  display:inline-flex; align-items:center; justify-content:center;
  gap:.6em; text-decoration:none; font-weight:700; letter-spacing:.2px;
  padding:12px 18px; border-radius:18px; border:1px solid transparent; position:relative;
  transition: transform .15s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 2px 0 rgba(255,255,255,.03) inset, 0 12px 30px rgba(0,0,0,.35);
}
.btn--lg{ padding:14px 22px; border-radius:20px }
.btn--gold{
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  color:#121214; border-color: rgba(233,210,125,.35);
}
.btn--gold:hover{
  box-shadow: 0 0 0 6px var(--ring), 0 14px 36px rgba(233,210,125,.25);
  transform: translateY(-1px);
}
.btn--ghost{
  color: var(--text); background: transparent; border-color: rgba(255,255,255,.12);
}
.btn--ghost:hover{
  border-color: rgba(233,210,125,.5); color: var(--gold-1)
}

/* ============================
   Hero
   ============================ */
.hero{
  position:relative; overflow:hidden; padding: clamp(80px, 13vw, 180px) 0 clamp(48px, 8vw, 90px);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(233,210,125,.09), transparent 60%),
              linear-gradient(180deg, #0f0f11, #0f0f11);
}
.hero__bg{ position:absolute; inset:0; }
.hero__bg .wheel{ position:absolute; width:110vmin; height:auto; left:50%; top:35%; transform:translate(-40%,-30%) rotate(-6deg); opacity:.8 }
.vignette{ position:absolute; inset:-20%; background: radial-gradient(closest-side, transparent, #0f0f11 70%); pointer-events:none }

.hero__content{ position:relative; z-index:1 }
.kicker{ color: var(--gold-1); font-weight:700; letter-spacing:.18em; text-transform:uppercase; font-size:.9rem }
.hero__title{ font-size: clamp(2rem, 4.2vw, 4rem); line-height:1.1; margin:.4em 0 .3em; text-transform: uppercase; font-weight: 800; }
.hero__title .accent{ color: var(--gold-1) }
.hero__lead{ color: var(--muted); max-width: 62ch }
.hero__actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:18px }

.chips .chip{ position:absolute; filter: drop-shadow(0 12px 28px rgba(0,0,0,.4)); opacity:.8; transform: translateZ(0) }
.chip--1{ right:8%; top:18% }
.chip--2{ right:18%; bottom:14% }

/* ============================
   Sections / Cards / Grids
   ============================ */
.section{ padding: clamp(48px, 7vw, 90px) 0; background: var(--bg) }
.section--alt{ background: var(--bg-alt) }
.section--cta{
  background:
    radial-gradient(800px 400px at 90% 20%, rgba(233,210,125,.08), transparent 60%),
    linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.section__title{
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0 0 .6em;
}
.section__lede{ color: var(--muted); margin:0 0 1.2rem }

.grid-2{ display:grid; grid-template-columns: 1.2fr .8fr; gap: clamp(18px, 4vw, 40px) }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2.4vw, 28px) }

.card{
  background: linear-gradient(180deg, var(--card), #121216);
  border:1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 28px);
  position: relative;
  overflow: hidden;
}
.articleSpan{
  position: absolute;
  content: '';
  bottom: -30px;
  right: -40px;
  opacity: 1;
  width: 120px;
  height: 120px;
  background-color: transparent;
  border: 20px solid #e2cb78;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: .3s all linear;
  -webkit-transition: .3s all linear;
  -moz-transition: .3s all linear;
  -ms-transition: .3s all linear;
  -o-transition: .3s all linear;
}
.card--hover{ transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease }
.card--hover:hover{
  transform: translateY(-2px);
  border-color: rgba(233,210,125,.35);
  box-shadow: 0 10px 30px rgba(233,210,125,.12), var(--shadow);
 .articleSpan{
    transform: scale(110%);
    -webkit-transform: scale(110%);
    -moz-transform: scale(110%);
    -ms-transform: scale(110%);
    -o-transform: scale(110%);
}
}


.cards{ display:grid; gap:18px }
.card h3{
  margin: 0;
}
.moreBtn{
  color: #e2cb78;
  text-decoration: none;
}
.cards--3{ grid-template-columns: repeat(3, 1fr) }
.cards .wide{ grid-column: span 3 }

/* checklist */
.checklist{ padding:0; margin:.8rem 0 1.1rem; list-style:none }
.checklist li{ display:flex; gap:10px; align-items:flex-start; }
.checklist li::before{
  content:""; margin-top:.45em; width:10px; height:10px; border-radius:50%;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 0 0 3px rgba(233,210,125,.16);
}

/* Illust panel */
.illust{ align-self:center }
.inline-cta{ display:flex; align-items:center; gap:12px; margin-top:10px }

/* Metrics */
.metric{
  background: linear-gradient(180deg, var(--elev), #101013);
  border:1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  padding: 22px;
  text-align:center
}
.metric__num{ font-weight:800; font-size: clamp(1.6rem, 3.4vw, 2.6rem); color: var(--gold-1) }
.metric__label{ color: var(--muted) }

/* Testimonials */
.testi{
  display:grid; grid-template-columns: 1fr 1fr; gap:18px
}
.quote{
  border-radius: var(--r-lg);
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, var(--card), #111114);
  padding:24px;
  box-shadow: var(--shadow);
}

.quote a{
  text-decoration: underline;
  color: #E2CB78;
}
.quote cite{ display:block; color: var(--muted); margin-top:10px }


/* CTA */
.cta__wrap{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:center
}
.form{
  background: linear-gradient(180deg, var(--card), #0f0f11);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding:16px;
  box-shadow: var(--shadow);
  display:grid; grid-template-columns: 1fr 1fr auto; gap:10px; align-items:center;
}
.form input{
  background:#0e0e10; border:1px solid rgba(255,255,255,.12); color:var(--text);
  border-radius: 14px; padding:12px 14px; outline:0; width:100%;
}
.form input:focus{ border-color: rgba(233,210,125,.55); box-shadow: 0 0 0 6px rgba(233,210,125,.08) }
.form__note{ grid-column: 1 / -1; color: var(--muted); margin: 2px 0 0 }
.form__success{ grid-column: 1 / -1; color: var(--success); margin: 6px 0 0 }

/* Footer */
.site-footer{
  padding: 32px 0;
  background: linear-gradient(180deg, #0d0d0f, #0f0f11);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__grid{
  display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:18px; align-items:start
}
.footer__nav{ display:grid; gap:6px }
.footer__nav a{ color: var(--muted); text-decoration:none }
.footer__nav a:hover{ color: var(--gold-1) }

/* ============================
   Motion / Fade-in
   ============================ */
.fade-in{ opacity:0; transform: translateY(12px); transition: opacity .7s ease, transform .7s ease }

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  .fade-in{ transition: none }
  .btn, .card--hover{ transition: none }
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1024px){
  .grid-2{ grid-template-columns: 1fr }
  .cta__wrap{ grid-template-columns: 1fr }
  .form{ grid-template-columns: 1fr; }
  .chips{ display:none }
}
@media (max-width: 860px){
  .grid-3{ grid-template-columns: 1fr }
  .cards--3{ grid-template-columns: 1fr }
  .cards .wide{ grid-column:auto }
  .testi{ grid-template-columns: 1fr }
  .footer__grid{ grid-template-columns: 1fr }
  .nav__toggle{ display:inline-block }
  .nav__list{ display:none; position:absolute; right:var(--pad); top:60px; background:var(--elev);
    border:1px solid rgba(255,255,255,.08); border-radius:14px; padding:8px; z-index:60; box-shadow: var(--shadow) }
  .nav__list.show{ display:block }
}


/* Strategy Matrix */
.tagline{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px }
.pill{
  font-size:.8rem; font-weight:800; letter-spacing:.2px; text-transform:uppercase;
  padding:6px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.pill--low{ color:#9fe3b6; border-color: rgba(159,227,182,.3) }
.pill--mid{ color:#f5d488; border-color: rgba(233,210,125,.35) }
.pill--high{ color:#ff9aa9; border-color: rgba(255,154,169,.35) }

.rule{
  display:flex; align-items:center; justify-content:space-between;
  margin-top:10px; padding-top:10px; border-top:1px dashed rgba(255,255,255,.08)
}
.rule__label{ color: var(--muted) }
.rule__value{ font-weight:800; color: var(--gold-1) }


/* Stats Table */
.table-wrap{ overflow:auto }
.table{
  width:100%; border-collapse:separate; border-spacing:0;
}
.table thead th{
  text-align:left; font-size:.9rem; color:var(--muted); font-weight:700;
  padding:12px 14px; position:sticky; top:0; background: linear-gradient(180deg, #141417, #111115);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.table tbody td{ padding:14px; border-bottom:1px solid rgba(255,255,255,.06) }

.v-badge{
  font-size:.75rem; font-weight:800; letter-spacing:.2px; text-transform:uppercase;
  padding:4px 8px; border-radius:999px; border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.v-high{ color:#ff9aa9; border-color: rgba(255,154,169,.35) }
.v-mid{ color:#f5d488; border-color: rgba(233,210,125,.35) }

.bar{
  --h: 8px;
  position:relative; height:var(--h); border-radius:999px; background:#0e0e10;
  border:1px solid rgba(255,255,255,.08); overflow:hidden; margin-bottom:6px;
}
.bar > span{
  display:block; height:100%; width:0%;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 8px 20px rgba(233,210,125,.15) inset;
  transition: width .9s cubic-bezier(.22,1,.36,1);
}


/* Insights / Articles */
.article{ display:grid; gap:12px }
.article__media img{ border-radius: var(--r-lg); border:1px solid rgba(255,255,255,.06) }
.article__head{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-direction: column; }
.article__title{ font-size:1.05rem; margin:.2rem 0 }



/*   НАСТРОЙКА SCROLL-BAR   */
::-webkit-scrollbar {
    width: 0.5em;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #E9D27D;
}


::-webkit-scrollbar-thumb:active {
    background-color: #E9D27D;
}


.f-social{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.f-social i{
  font-size: 24px;
  color: #e2cb78;
}
.mob{
  display: none;
}

@media (max-width: 800px) {
  .quote{
    width: 95%;
    margin: 0 auto;
  }
  #strategy .section__title{
    text-align: center;
  }
  #strategy .section__lede{
    text-align: center;
  }

  

   #stats .section__title{
    text-align: center;
  }
  #stats .section__lede{
    text-align: center;
  }

  .table tr th:last-child{
    display: none;
  }
  .table tr td:last-child{
    display: none;
  }
  #stats .note {
    display: none;
  }

  .article__media img{
    display: none;
  }


  #insights .section__title{
    text-align: center;
  }
  #insights .section__lede{
    text-align: center;
  }
  .article__media{
    margin: 0;  
  }


  

  #why .section__title{
    text-align: center;
  }
  #why .section__lede{
    text-align: center;
  }

  

   #cta .section__title{
    text-align: center;
  }
  #cta .section__lede{
    text-align: center;
  }
  .cta__copy p{
    text-align: center;
  }

  .brand--footer{
    display: flex;
    justify-content: center;
    align-items: center;
    order: 0;
  }
  .footer__legal {
    display: none;
  }

  .footer__nav a{
    text-align: center;
  }
  .f-social{
    justify-content: center;
  }
  .mob{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mob p{
    text-align: center;
    opacity: .5;
  }
}