/* ============================================================
   Clean Fit Gym — styles
   ============================================================ */
:root {
  --bg:        #140b07;
  --bg-2:      #1c0f08;
  --panel:     rgba(30, 16, 9, 0.55);
  --panel-brd: rgba(255, 138, 76, 0.14);
  --orange:    #ff4d17;
  --orange-2:  #ff7a3c;
  --orange-lo: #b23c14;
  --text:      #f7efe9;
  --muted:     #c8b3a6;
  --faint:     #9a8577;
  --white:     #ffffff;

  --radius:    22px;
  --radius-lg: 34px;
  --ease:      cubic-bezier(.2, .7, .2, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --shadow:    0 30px 80px -30px rgba(0,0,0,.75);
  --maxw:      1240px;
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: radial-gradient(140% 120% at 78% 8%, #4a1c0b 0%, var(--bg-2) 42%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
em { font-style: normal; color: var(--orange-2); }

/* hide native cursor on pointer devices when custom cursor active */
body.has-cursor,
body.has-cursor a,
body.has-cursor button,
body.has-cursor summary { cursor: none; }

/* ---------- selection ---------- */
::selection { background: var(--orange); color: #fff; }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  mix-blend-mode: normal; will-change: transform; }
.cursor__dot {
  position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), opacity .25s;
}
.cursor__ring {
  position: absolute; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(255,122,60,.6); transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease),
              background .3s var(--ease), border-color .3s var(--ease), opacity .3s;
}
.cursor__label {
  position: absolute; transform: translate(-50%, -50%);
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; opacity: 0; transition: opacity .2s; white-space: nowrap;
}
/* states set from JS */
body.cur-hover .cursor__ring { width: 64px; height: 64px; background: rgba(255,77,23,.12); border-color: rgba(255,122,60,.9); }
body.cur-link  .cursor__ring { width: 54px; height: 54px; border-color: rgba(255,122,60,.9); }
body.cur-link  .cursor__dot  { width: 4px; height: 4px; }
body.cur-play  .cursor__ring { width: 78px; height: 78px; background: var(--orange); border-color: transparent; }
body.cur-play  .cursor__dot  { opacity: 0; }
body.cur-play  .cursor__label { opacity: 1; }
body.cur-down  .cursor__ring { width: 30px; height: 30px; }

@media (hover: none) { .cursor, .ambient-glow { display: none; } }

/* ambient glow follows pointer */
.ambient-glow {
  position: fixed; top: 0; left: 0; width: 620px; height: 620px; z-index: 0;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,77,23,.16), transparent 62%);
  transform: translate(-50%, -50%); will-change: transform; filter: blur(6px);
}

/* ---------- scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9998; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-2)); box-shadow: 0 0 14px var(--orange); }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; top: 18px; left: 0; right: 0; z-index: 900;
  display: flex; justify-content: center; padding: 0 22px;
  transition: top .4s var(--ease); }
.nav__inner {
  width: 100%; max-width: var(--maxw);
  display: flex; align-items: center; gap: 24px;
  padding: 12px 12px 12px 28px;
  background: var(--panel); border: 1px solid var(--panel-brd);
  border-radius: 60px; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px -18px rgba(0,0,0,.7);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.nav.scrolled .nav__inner { background: rgba(24,13,7,.82); box-shadow: 0 16px 50px -18px rgba(0,0,0,.85); }
.nav.hidden { top: -90px; }

.brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; }
.brand__bolt { color: var(--orange); filter: drop-shadow(0 0 8px rgba(255,77,23,.7)); }
.brand__name { color: #fff; }

.nav__links { display: flex; gap: 6px; margin-right: auto; margin-left: 14px; }
.nav__links a { position: relative; padding: 8px 16px; font-weight: 500; color: var(--muted);
  border-radius: 40px; transition: color .3s var(--ease), background .3s var(--ease); }
.nav__links a::after { content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--orange); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { position: relative; display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1rem; border: 0; border-radius: 60px;
  padding: 16px 30px; overflow: hidden; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease); }
.btn--sm { padding: 11px 24px; font-size: .95rem; }
.btn--lg { padding: 20px 40px; font-size: 1.1rem; }

.btn--primary { color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-lo));
  box-shadow: 0 12px 30px -10px rgba(255,77,23,.7), inset 0 1px 0 rgba(255,255,255,.25); }
.btn--primary::before { content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, var(--orange-2), var(--orange)); opacity: 0; transition: opacity .35s var(--ease); }
.btn--primary:hover::before { opacity: 1; }
.btn--primary > * { position: relative; z-index: 1; }

/* 3D press button */
.btn--3d { transform-style: preserve-3d; }
.btn--3d:hover { box-shadow: 0 22px 45px -12px rgba(255,77,23,.75), inset 0 1px 0 rgba(255,255,255,.3); }
.btn--3d:active { transform: translateY(2px) scale(.99); }
.btn__chevrons { font-size: 1.15em; transition: transform .35s var(--ease); }
.btn--3d:hover .btn__chevrons { transform: translateX(5px); }

.btn--ghost { color: #fff; background: rgba(255,255,255,.05); border: 1px solid var(--panel-brd);
  backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,122,60,.14); border-color: rgba(255,122,60,.5); }

/* shine sweep */
.btn--primary::after { content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; z-index: 2;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .7s var(--ease); }
.btn--primary:hover::after { left: 130%; }

/* watch video */
.watch { display: inline-flex; align-items: center; gap: 16px; background: none; border: 0; color: #fff; font-weight: 700; font-size: 1.05rem; }
.watch__play { position: relative; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-lo)); box-shadow: 0 10px 26px -8px rgba(255,77,23,.7);
  transition: transform .35s var(--ease); }
.watch:hover .watch__play { transform: scale(1.08); }
.watch__play::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(255,122,60,.4);
  animation: ripple 2.4s var(--ease) infinite; }
@keyframes ripple { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }
.tri { width: 0; height: 0; margin-left: 3px; border-style: solid; border-width: 8px 0 8px 13px; border-color: transparent transparent transparent #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 22px 60px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 80% at 80% 30%, rgba(255,77,23,.28), transparent 60%),
    radial-gradient(50% 60% at 15% 90%, rgba(255,122,60,.12), transparent 60%); }

.hero__figure { position: absolute; right: 0; bottom: 0; top: 0; width: 58%; z-index: 1; will-change: transform; }
.hero__runner { position: absolute; right: -2%; bottom: 0; height: 100%; width: 100%; object-fit: cover; object-position: center top;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%);
          mask-image: linear-gradient(90deg, transparent, #000 28%); }
.hero__figure-fade { position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 30%),
              linear-gradient(0deg, rgba(20,11,7,.7), transparent 45%); }

.hero__content { position: relative; z-index: 3; width: 100%; max-width: var(--maxw); margin: 0 auto; }

.hero__badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; margin-bottom: 26px;
  font-size: .85rem; font-weight: 500; color: var(--muted);
  background: var(--panel); border: 1px solid var(--panel-brd); border-radius: 40px; backdrop-filter: blur(8px); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(255,77,23,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,77,23,.6); } 70% { box-shadow: 0 0 0 10px rgba(255,77,23,0); } 100% { box-shadow: 0 0 0 0 rgba(255,77,23,0); } }

.hero__title { font-size: clamp(3rem, 8.5vw, 7rem); line-height: .95; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; }
.title-o { position: relative; display: inline-block; color: var(--orange-2); }
.title-o::after { content: ''; position: absolute; left: 50%; top: 6%; width: 22%; height: 40%; background: var(--orange); transform: translateX(-50%) rotate(20deg); border-radius: 40% 40% 40% 0; }

.hero__sub { max-width: 540px; margin: 26px 0 34px; font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--muted); }

.hero__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.hero__social { display: flex; align-items: center; gap: 20px; margin-top: 46px; }
.avatars { display: flex; align-items: center; }
.avatars img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--bg-2); margin-left: -12px; object-fit: cover; transition: transform .3s var(--ease); }
.avatars img:first-child { margin-left: 0; }
.avatars:hover img { transform: translateY(-3px); }
.avatars__more { display: grid; place-items: center; width: 46px; height: 46px; margin-left: -12px; border-radius: 50%; border: 1.5px solid rgba(255,122,60,.6); color: var(--orange-2); font-weight: 700; background: var(--bg-2); }
.hero__rating .stars { color: var(--orange); letter-spacing: 2px; font-size: 1rem; }
.hero__rating .reviews { font-size: .9rem; color: var(--muted); }
.hero__rating .reviews strong { color: #fff; }

.hero__tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 46px; max-width: 640px; }
.hero__tags li { padding: 11px 22px; font-size: .92rem; color: var(--muted);
  border: 1px solid var(--panel-brd); border-radius: 40px; background: rgba(255,255,255,.02);
  transition: transform .3s var(--ease), color .3s, border-color .3s, background .3s; }
.hero__tags li:hover { transform: translateY(-4px); color: #fff; border-color: rgba(255,122,60,.6); background: rgba(255,77,23,.1); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { position: relative; overflow: hidden; padding: 26px 0; border-top: 1px solid var(--panel-brd); border-bottom: 1px solid var(--panel-brd); background: rgba(0,0,0,.2); }
.marquee__track { display: flex; align-items: center; gap: 34px; white-space: nowrap; width: max-content;
  animation: scroll-x 26s linear infinite; }
.marquee__track span { font-size: clamp(1.4rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; color: transparent; -webkit-text-stroke: 1px rgba(255,122,60,.5); text-transform: uppercase; }
.marquee__track .dot { color: var(--orange); -webkit-text-stroke: 0; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { position: relative; z-index: 2; }
.about, .services, .project, .testimonials, .faq, .cta { max-width: var(--maxw); margin: 0 auto; padding: 110px 22px; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.eyebrow { display: inline-block; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--orange-2); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { padding: 34px 26px; background: var(--panel); border: 1px solid var(--panel-brd); border-radius: var(--radius); backdrop-filter: blur(8px);
  transition: transform .4s var(--ease), border-color .4s; }
.stat:hover { border-color: rgba(255,122,60,.45); }
.stat strong { display: block; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1; }
.stat span { display: block; margin-top: 10px; color: var(--muted); font-size: .95rem; }

/* ---------- services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service { position: relative; padding: 34px 30px; background: var(--panel); border: 1px solid var(--panel-brd); border-radius: var(--radius);
  backdrop-filter: blur(8px); overflow: hidden; transform-style: preserve-3d;
  transition: border-color .4s var(--ease), background .4s var(--ease); }
.service::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .4s var(--ease);
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(255,77,23,.16), transparent 60%); }
.service:hover::before { opacity: 1; }
.service:hover { border-color: rgba(255,122,60,.45); }
.service__icon { font-size: 2.2rem; margin-bottom: 18px; transform: translateZ(40px); }
.service h3 { font-size: 1.3rem; color: #fff; margin-bottom: 10px; transform: translateZ(28px); }
.service p { color: var(--muted); transform: translateZ(18px); }
.service__arrow { position: absolute; top: 30px; right: 30px; color: var(--orange-2); font-size: 1.3rem; opacity: 0; transform: translateX(-8px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.service:hover .service__arrow { opacity: 1; transform: translateX(0); }

/* ---------- project ---------- */
.project__card { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center;
  padding: 56px; border-radius: var(--radius-lg); overflow: hidden; transform-style: preserve-3d;
  background: linear-gradient(120deg, rgba(40,20,11,.9), rgba(28,15,8,.7));
  border: 1px solid var(--panel-brd); box-shadow: var(--shadow); }
.project__text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin: 12px 0 16px; transform: translateZ(30px); }
.project__text p { color: var(--muted); margin-bottom: 26px; max-width: 460px; transform: translateZ(20px); }
.project__visual { position: relative; height: 300px; }
.orb { position: absolute; inset: 0; margin: auto; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--orange-2), var(--orange) 40%, var(--orange-lo) 75%, #5a1c07);
  box-shadow: 0 40px 90px -20px rgba(255,77,23,.6), inset 0 -20px 60px rgba(0,0,0,.5);
  animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(-10px); } 50% { transform: translateY(10px); } }

/* ---------- testimonials 3D ---------- */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; perspective: 1200px; }
.tcard { transform-style: preserve-3d; will-change: transform; }
.tcard__inner { position: relative; height: 100%; padding: 36px 32px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(42,22,12,.9), rgba(26,14,8,.75));
  border: 1px solid var(--panel-brd); box-shadow: var(--shadow); backdrop-filter: blur(8px);
  transform-style: preserve-3d; overflow: hidden; }
.tcard__inner::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%), rgba(255,122,60,.14), transparent 60%); }
.tcard:hover .tcard__inner::before { opacity: 1; }
.tcard__stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 18px; transform: translateZ(40px); }
.tcard__quote { color: #eadfd7; font-size: 1.05rem; margin-bottom: 26px; transform: translateZ(30px); }
.tcard__author { display: flex; align-items: center; gap: 14px; transform: translateZ(50px); }
.tcard__author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,122,60,.4); }
.tcard__author strong { display: block; color: #fff; }
.tcard__author span { color: var(--faint); font-size: .85rem; }

/* ---------- faq ---------- */
.faq__list { display: flex; flex-direction: column; gap: 14px; max-width: 860px; }
.faq__item { background: var(--panel); border: 1px solid var(--panel-brd); border-radius: var(--radius); overflow: hidden; backdrop-filter: blur(8px);
  transition: border-color .35s var(--ease), background .35s var(--ease); }
.faq__item[open] { border-color: rgba(255,122,60,.4); }
.faq__item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 28px; font-weight: 600; font-size: 1.1rem; color: #fff; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; flex: 0 0 22px; width: 22px; height: 22px; }
.faq__plus::before, .faq__plus::after { content: ''; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: var(--orange-2); transform: translate(-50%,-50%); transition: transform .35s var(--ease); border-radius: 2px; }
.faq__plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item[open] .faq__plus::after { transform: translate(-50%,-50%) rotate(0); }
.faq__body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__item[open] .faq__body { max-height: 220px; }
.faq__body p { padding: 0 28px 26px; color: var(--muted); }

/* ---------- cta ---------- */
.cta__inner { position: relative; text-align: center; padding: 80px 40px; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(120% 140% at 50% 0%, rgba(255,77,23,.28), transparent 60%), linear-gradient(160deg, rgba(42,22,12,.95), rgba(24,13,7,.9));
  border: 1px solid var(--panel-brd); box-shadow: var(--shadow); }
.cta__inner h2 { font-size: clamp(2rem, 5vw, 3.6rem); color: #fff; margin-bottom: 16px; }
.cta__inner p { color: var(--muted); font-size: 1.15rem; margin-bottom: 34px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--panel-brd); margin-top: 40px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 44px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { color: var(--muted); transition: color .3s; }
.footer__links a:hover { color: #fff; }
.footer__copy { color: var(--faint); font-size: .9rem; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

.reveal-mask > span { display: inline-block; transform: translateY(110%); transition: transform .9s var(--ease-out); }
.reveal-mask.in > span { transform: translateY(0); }
.hero__title .line:nth-child(2) > span { transition-delay: .12s; }

/* stagger helper (set via JS inline delay) */

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal, .reveal-mask > span { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .t-grid { grid-template-columns: repeat(2, 1fr); }
  .project__card { grid-template-columns: 1fr; }
  .project__visual { height: 220px; }
  .hero__figure { width: 70%; opacity: .55; }
}

@media (max-width: 720px) {
  .nav__links { position: fixed; inset: 0 0 auto 0; top: 82px; margin: 0 16px;
    flex-direction: column; gap: 4px; padding: 16px; background: rgba(24,13,7,.96);
    border: 1px solid var(--panel-brd); border-radius: 22px; backdrop-filter: blur(16px);
    transform: translateY(-12px) scale(.98); opacity: 0; pointer-events: none; transition: transform .35s var(--ease), opacity .35s var(--ease); }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__burger { display: flex; }
  .nav .btn--sm { margin-left: auto; }
  .hero { padding-top: 120px; }
  .hero__figure { width: 100%; opacity: .35; }
  .stats, .service-grid, .t-grid { grid-template-columns: 1fr; }
  .hero__actions { gap: 18px; }
  .project__card, .cta__inner { padding: 36px 24px; }
  .project__visual { height: 190px; margin-top: 8px; }
  .orb { position: static; width: 160px; height: 160px; margin: 0 auto; }
  .footer__inner { flex-direction: column; text-align: center; }
}
