.elementor-1330 .elementor-element.elementor-element-5b48cd5{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-d8134cd *//* ══════════════════════════════════════
   TOKENS — Pure Black & White
══════════════════════════════════════ */
:root {
  --black:   #0A0A0A;
  --ink:     #111111;
  --dark:    #1A1A1A;
  --smoke:   #2E2E2E;
  --mid:     #5A5A5A;
  --silver:  #999999;
  --pale:    #DDDDDD;
  --light:   #EEEEEE;
  --off:     #F5F5F5;
  --white:   #FFFFFF;

  --head: 'Logam', 'Cormorant Garamond', Georgia, serif;
  --body: 'Lato', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══ SCROLL PROGRESS ══ */
#bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--black);
  z-index: 9999;
  width: 0%;
}

/* ══ REVEAL ══ */
.up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16,1,0.3,1),
              transform 1s cubic-bezier(0.16,1,0.3,1);
}
.up.on { opacity: 1; transform: none; }
.d1{transition-delay:.08s} .d2{transition-delay:.18s}
.d3{transition-delay:.28s} .d4{transition-delay:.40s}
.d5{transition-delay:.52s}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* Left — editorial text */
.hero__left {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 72px 180px;
  position: relative;
  z-index: 1;
}
.hero__left::after {
  content: '';
  position: absolute;
  top: 0; right: -1px;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.06);
}

.hero__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.hero__num {
  font-family: var(--head);
  font-size: clamp(130px, 16vw, 200px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
  line-height: 0.85;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 4px;
}

.hero__title {
  font-family: var(--head);
  font-size: clamp(35px, 5.5vw, 70px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  display: block;
  color: rgba(255,255,255,0.55);
}

.hero__sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-weight: 400;
  margin-bottom: 56px;
  line-height: 2;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 40px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  width: fit-content;
}
.hero__cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.hero__cta svg { transition: transform 0.2s; }
.hero__cta:hover svg { transform: translateX(5px); }

/* Right — model image */
.hero__right {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.hero__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%  !important;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero__img { transform: scale(1.03); }

/* Overlay text on image */
.hero__img-caption {
  position: absolute;
  bottom: 40px; right: 40px;
  text-align: right;
}
.hero__img-caption span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  line-height: 2;
}

/* Stats bar — bottom of hero */
.hero__stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--pale);
}
.hero__stat {
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid var(--pale);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-n {
  font-family: var(--head);
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero__stat-l {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 5px;
  font-weight: 700;
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker {
  background: var(--black);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ticker__track {
  display: inline-flex;
  animation: run 28s linear infinite;
}
@keyframes run { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker__item {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0 36px;
}
.ticker__dot { color: rgba(255,255,255,0.1); }

/* ══════════════════════════════════════
   MANIFESTO STRIP
══════════════════════════════════════ */
.manifesto {
  background: var(--white);
  padding: 100px 24px;
  text-align: center;
  border-bottom: 1px solid var(--light);
}
.manifesto__quote {
  font-family: var(--head);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 780px;
  margin: 0 auto 28px;
}
.manifesto__quote em { font-style: italic; color: var(--mid); }
.manifesto__rule {
  width: 48px;
  height: 1px;
  background: var(--pale);
  margin: 0 auto 22px;
}
.manifesto__attr {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ══════════════════════════════════════
   STEPS — Full editorial layout
══════════════════════════════════════ */
.steps { background: var(--off); }

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-bottom: 1px solid var(--pale);
}
.step--flip .step__img  { order: 2; }
.step--flip .step__body { order: 1; }

/* Image side */
.step__img {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  min-height: 500px;
}
.step__photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%) contrast(1.08) brightness(0.92);
  transition: transform 0.7s ease;
}
.step:hover .step__photo { transform: scale(1.03); }
.step__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 50%);
  pointer-events: none;
}
.step__step-num {
  position: absolute;
  top: 32px; left: 32px;
  font-family: var(--head);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 16px;
}
.step__tags {
  position: absolute;
  bottom: 28px; left: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.step__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 0;
}
.tag-am { background: var(--white); color: var(--black); }
.tag-pm { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); }
.tag-wk { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.12); }

/* Body side */
.step__body {
  background: var(--white);
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 18px;
}
.step__eyebrow-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--head);
  font-size: 12px;
  font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step__title {
  font-family: var(--head);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.step__title em { font-style: italic; color: var(--mid); font-weight: 300; }
.step__desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 380px;
}

/* Products */
.step__prod-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pale);
  margin-bottom: 10px;
}
.step__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 26px;
}
.chip {
  font-size: 11px;
  color: var(--smoke);
  background: var(--off);
  border: 1px solid var(--pale);
  padding: 6px 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}
.chip:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* Schedule */
.step__sched {
  border-left: 1px solid var(--black);
  padding: 14px 18px;
  margin-bottom: 18px;
}
.sched-row {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--mid);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 6px;
}
.sched-row:last-child { margin-bottom: 0; }
.sched-time {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  min-width: 58px;
  padding-top: 2px;
}

/* Result */
.step__result {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.step__result::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--black);
}

/* ══════════════════════════════════════
   JOIN
══════════════════════════════════════ */
.join {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}
.join__img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.join__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%) brightness(0.55) contrast(1.1);
}
.join__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0));
}
.join__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.join__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.join__title {
  font-family: var(--head);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.join__title em { font-style: italic; color: rgba(255,255,255,0.45); font-weight: 300; }
.join__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 380px;
}
.join__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
}
.join__input {
  height: 48px;
  padding: 0 18px;
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  font-size: 13px;
  font-family: var(--body);
  color: var(--white) !important;
  outline: none;
  font-weight: 300;
  letter-spacing: 0.04em;
  transition: border-color 0.2s;
  border-radius: 0 !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}
.join__input:focus { border-color: rgba(255,255,255,0.5) !important; background: rgba(255,255,255,0.1) !important; }
.join__input::placeholder { color: rgba(255,255,255,0.3) !important; }
.join__btn {
  height: 48px;
  background: var(--white);
  color: var(--black);
  border: none;
  cursor: pointer;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  margin-top: 4px;
}
.join__btn:hover { background: var(--light); }
.join__note {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  margin-top: 12px;
  font-weight: 300;
}

/* ══════════════════════════════════════
   BEFORE / AFTER
══════════════════════════════════════ */
.ba {
  background: var(--white);
  padding: 110px 24px;
}
.ba__inner { max-width: 1200px; margin: 0 auto; }
.ba__hd { text-align: center; margin-bottom: 64px; }
.section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-align: center;
}
.section-title em { font-style: italic; color: var(--mid); font-weight: 300; }
.section-sub {
  font-size: 13px;
  color: var(--silver);
  text-align: center;
  line-height: 1.8;
  margin: 12px auto 0;
  max-width: 480px;
  font-weight: 300;
}

.ba__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pale);
  border: 1px solid var(--pale);
  margin-bottom: 48px;
}
.ba__card {
  background: var(--off);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ba__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--off);
}
.ba__empty-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--pale);
}
.ba__empty-text {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
}
.ba__info {
  padding: 16px 20px;
  background: var(--white);
  border-top: 1px solid var(--pale);
}
.ba__name {
  font-family: var(--head);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 3px;
}
.ba__days {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}
.ba__cta { text-align: center; }
.btn-border {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 44px;
  border: 1px solid var(--black);
  color: var(--black);
  background: none;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-border:hover { background: var(--black); color: var(--white); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi { background: var(--off); padding: 110px 24px; }
.testi__inner { max-width: 1200px; margin: 0 auto; }
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--pale);
  border: 1px solid var(--pale);
  margin-top: 64px;
}
.testi__card {
  background: var(--white);
  padding: 44px 38px;
  position: relative;
  transition: background 0.25s;
}
.testi__card:hover { background: var(--off); }
.testi__open {
  font-family: var(--head);
  font-size: 80px;
  font-weight: 300;
  color: var(--light);
  line-height: 0.8;
  margin-bottom: 10px;
  display: block;
}
.testi__stars {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--black);
  margin-bottom: 16px;
}
.testi__text {
  font-family: var(--head);
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  color: var(--smoke);
  line-height: 1.75;
  margin-bottom: 28px;
}
.testi__author { display: flex; align-items: center; gap: 12px; }
.testi__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--head);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi__name { font-size: 13px; font-weight: 700; color: var(--black); letter-spacing: 0.04em; }
.testi__loc  { font-size: 11px; color: var(--silver); font-weight: 300; margin-top: 2px; }
.testi__badge {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--pale);
  padding: 4px 10px;
}

/* ══════════════════════════════════════
   BUNDLE
══════════════════════════════════════ */
.bundle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  border-top: 1px solid var(--pale);
}
.bundle__img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 680px;
}
.bundle__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 0.7s ease;
}
.bundle:hover .bundle__img { transform: scale(1.03); }
.bundle__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.1), transparent);
}

.bundle__body {
  background: var(--black);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bundle__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.bundle__title {
  font-family: var(--head);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.bundle__title em { font-style: italic; color: rgba(255,255,255,0.45); }
.bundle__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 400px;
}

.bundle__items {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}
.bundle__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: var(--black);
  transition: background 0.18s;
}
.bundle__item:hover { background: rgba(255,255,255,0.03); }
.bundle__item-name {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  flex: 1;
  letter-spacing: 0.04em;
}
.bundle__item-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Price row */
.bundle__price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.bundle__was {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  text-decoration: line-through;
  font-weight: 300;
}
.bundle__price {
  font-family: var(--head);
  font-size: 56px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.bundle__price sup {
  font-size: 22px;
  font-weight: 300;
  vertical-align: baseline;
  line-height: 1;
  margin: 0;
}
.bundle__save {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px;
}

.bundle__btn {
  display: block;
  padding: 17px 40px;
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  max-width: 320px;
  margin-bottom: 14px;
}
.bundle__btn:hover { background: var(--light); }
.bundle__note {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   FOOTER CTA
══════════════════════════════════════ */
.fcta {
  background: var(--white);
  padding: 120px 24px;
  text-align: center;
  border-top: 1px solid var(--pale);
}
.fcta__rule {
  width: 1px;
  height: 60px;
  background: var(--pale);
  margin: 0 auto 40px;
}
.fcta__title {
  font-family: var(--head);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.fcta__title em { font-style: italic; color: var(--mid); font-weight: 300; }
.fcta__sub {
  font-size: 12px;
  color: var(--silver);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 52px;
}
.fcta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-fill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 52px;
  background: var(--black); color: var(--white);
  font-family: var(--body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; text-decoration: none;
  transition: background 0.2s;
}
.btn-fill:hover { background: var(--dark); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 980px) {
  .hero         { grid-template-columns: 1fr; min-height: auto; }
  .hero__right  { min-height: 70vw; height: 70vw; max-height: 560px; }
  .hero__left   { padding: 80px 36px 100px; }
  .hero__num    { font-size: 110px; }
  .step         { grid-template-columns: 1fr; min-height: auto; }
  .step--flip .step__img, .step--flip .step__body { order: unset; }
  .step__img    { min-height: 60vw; height: 60vw; max-height: 480px; }
  .step__body   { padding: 44px 32px; }
  .join         { grid-template-columns: 1fr; }
  .join__img-wrap { min-height: 60vw; height: 60vw; max-height: 420px; }
  .join__body   { padding: 60px 36px; }
  .bundle       { grid-template-columns: 1fr; }
  .bundle__img-wrap { min-height: 60vw; height: 60vw; max-height: 480px; }
  .bundle__body { padding: 60px 36px; }
  .ba__grid     { grid-template-columns: 1fr 1fr; }
  .testi__grid  { grid-template-columns: 1fr; gap: 0; }
  .hero__stats  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .hero__left   { padding: 60px 24px 80px; }
  .ba__grid     { grid-template-columns: 1fr; }
  .hero__stats  { display: none; }
}/* End custom CSS */