/* =====================================================================
   Recovery Support — desktop-first base (1440 reference)
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;700&display=swap');

:root {
  --c-bg: #eaf0f5;
  --c-bg-card: #c7d3df;
  --c-bg-card-alt: #f3f5f9;
  --c-bg-pill: #bec9d5;
  --c-dark: #212121;
  --c-white: #fff;

  --c-text: #000;
  --c-text-card: #374149;
  --c-text-num: #b3bdce;
  --c-text-muted: #565656;
  --c-text-mute: #838589;
  --c-text-mute2: #8d8d8d;
  --c-text-light: #9c9c9c;
  --c-text-label: #afbdcd;
  --c-text-hint: #9e9e9e;
  --c-fade: #c3cfdb;
  --c-thx-sub: #3c3e40;

  --font-display: 'Helvetica Neue', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;

  --side-pad: 34px;
  --max: 1440px;
}

/* -------------------------- reset / base -------------------------- */

*,*::before,*::after { box-sizing: border-box; }
html,body { margin: 0; padding: 0; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-display);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
p { margin: 0; }
h1,h2,h3,h4,h5 { margin: 0; font-weight: 100; }
input,select,textarea,button { font-family: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  position: relative;
}

.thin { font-weight: 100; }
.roman { font-weight: 400; }
.fade { color: var(--c-fade); }

/* -------------------------- buttons -------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 32px;
  border-radius: 35px;
  background: var(--c-dark);
  color: var(--c-white);
  font-weight: 100;
  font-size: 19px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s ease, opacity .2s ease;
}
.btn:hover { opacity: .9; transform: translateY(-1px); }

.btn--light {
  background: var(--c-bg-pill);
  color: var(--c-dark);
}
.btn--sm { height: 40px; padding: 0 24px; font-size: 16px; }
.btn--lg { height: 70px; padding: 0 32px; border-radius: 41px; }
.btn--block { width: 100%; }

/* =====================================================================
   HEADER (top-bar inside hero)
   ===================================================================== */

.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding-top: 20px;
}
.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 48px;
}
.header__logo { height: 45px; width: auto; }

.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 46px;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 300;
  color: var(--c-text);
}
.nav__link::after {
  content: "";
  width: 9px;
  height: 4px;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="4" viewBox="0 0 9 4" fill="none"><path d="M0.758817 0.107494C0.71588 0.0731568 0.665372 0.0463135 0.610176 0.0284955C0.554981 0.0106776 0.496179 0.0022342 0.437127 0.00364802C0.378076 0.00506161 0.319932 0.0163045 0.266015 0.0367346C0.212098 0.0571644 0.163464 0.0863817 0.12289 0.122718C0.0823155 0.159054 0.0505955 0.201797 0.0295408 0.248508C0.00848622 0.295218 -0.00149074 0.34498 0.000179738 0.394953C0.00185022 0.444927 0.0151353 0.494133 0.0392766 0.539761C0.0634179 0.585389 0.0979425 0.626547 0.140879 0.660883L4.1885 3.89597C4.27201 3.96277 4.38256 4 4.49747 4C4.61239 4 4.72294 3.96277 4.80644 3.89597L8.85452 0.660883C8.89839 0.626773 8.93382 0.585624 8.95875 0.539828C8.98368 0.494032 8.9976 0.444501 8.99972 0.394112C9.00183 0.343723 8.9921 0.29348 8.97107 0.246303C8.95005 0.199125 8.91816 0.155953 8.87725 0.119293C8.83635 0.0826336 8.78724 0.053218 8.73279 0.0327545C8.67834 0.0122913 8.61962 0.00118838 8.56006 9.04633e-05C8.50049 -0.00100745 8.44126 0.0079218 8.38581 0.0263594C8.33035 0.0447973 8.27978 0.0723759 8.23703 0.107494L4.49747 3.09595L0.758817 0.107494Z" fill="black"/></svg>') no-repeat center/contain;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="4" viewBox="0 0 9 4" fill="none"><path d="M0.758817 0.107494C0.71588 0.0731568 0.665372 0.0463135 0.610176 0.0284955C0.554981 0.0106776 0.496179 0.0022342 0.437127 0.00364802C0.378076 0.00506161 0.319932 0.0163045 0.266015 0.0367346C0.212098 0.0571644 0.163464 0.0863817 0.12289 0.122718C0.0823155 0.159054 0.0505955 0.201797 0.0295408 0.248508C0.00848622 0.295218 -0.00149074 0.34498 0.000179738 0.394953C0.00185022 0.444927 0.0151353 0.494133 0.0392766 0.539761C0.0634179 0.585389 0.0979425 0.626547 0.140879 0.660883L4.1885 3.89597C4.27201 3.96277 4.38256 4 4.49747 4C4.61239 4 4.72294 3.96277 4.80644 3.89597L8.85452 0.660883C8.89839 0.626773 8.93382 0.585624 8.95875 0.539828C8.98368 0.494032 8.9976 0.444501 8.99972 0.394112C9.00183 0.343723 8.9921 0.29348 8.97107 0.246303C8.95005 0.199125 8.91816 0.155953 8.87725 0.119293C8.83635 0.0826336 8.78724 0.053218 8.73279 0.0327545C8.67834 0.0122913 8.61962 0.00118838 8.56006 9.04633e-05C8.50049 -0.00100745 8.44126 0.0079218 8.38581 0.0263594C8.33035 0.0447973 8.27978 0.0723759 8.23703 0.107494L4.49747 3.09595L0.758817 0.107494Z" fill="black"/></svg>') no-repeat center/contain;
}

.burger {
  display: none;
  width: 32px;
  height: 18px;
  position: relative;
  cursor: pointer;
  z-index: 30;
}
.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 2.5px;
  background: var(--c-dark);
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.burger::before { top: 0; }
.burger span    { top: 7px; }
.burger::after  { top: 14px; }
body.menu-open .burger::before { top: 7px; transform: rotate(45deg); }
body.menu-open .burger span    { opacity: 0; }
body.menu-open .burger::after  { top: 7px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu a { font-size: 28px; font-weight: 300; }
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }

/* =====================================================================
   HERO (block_1)
   ===================================================================== */

.hero {
  position: relative;
  height: 810px;
  overflow: hidden;
  background: var(--c-bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.png') center/cover no-repeat;
}
.hero__fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(234,240,245,0) 60.74%, var(--c-bg) 100%);
  pointer-events: none;
  z-index: 4;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  padding: 0;
}

.hero__statue {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 102px;
  width: 1062px;
  height: 708px;
  background: url('../img/hero-statue.png') center/contain no-repeat;
  pointer-events: none;
  z-index: 1;
}

.hero__title {
  position: absolute;
  left: 150px;
  top: 145px;
  font-size: 64px;
  font-weight: 100;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--c-text);
  width: 700px;
  z-index: 3;
}
.hero__title .indent { display: inline-block; padding-left: 1.7em; }
.hero__cta {
  position: absolute;
  left: 150px;
  top: 399px;
  z-index: 3;
}
.hero__subtitle {
  position: absolute;
  left: 946px;
  top: 311px;
  font-size: 64px;
  font-weight: 100;
  line-height: 1.05;
  width: 420px;
  text-shadow: 0 -2px 14.3px #fff;
  z-index: 3;
}

.hero__star {
  position: absolute;
  width: 24px; height: 24px;
  background: url('../img/star.png') center/contain no-repeat;
  pointer-events: none;
  z-index: 3;
}
.hero__star--tr { left: 1285px; top: 178px; }
.hero__star--bl { left: 39px; top: 507px; }

/* =====================================================================
   BLOCK 2 — What We Offer
   ===================================================================== */

.offer {
  padding: 60px 0 64px;
}
.offer__title {
  font-size: 128px;
  font-weight: 100;
  line-height: 1;
  padding-left: 10px;
  margin-bottom: 99px;
}
.offer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: end;
}
.card {
  position: relative;
  background: var(--c-bg-card);
  border-radius: 50px;
  height: 389px;
  padding: 40px 28px 30px;
  overflow: hidden;
}
.card--tall {
  background: var(--c-bg-card-alt);
  height: 441px;
}
.card__title {
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--c-text-card);
}
.card__title--sm { font-size: 54px; }
.card__desc {
  margin-top: 28px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--c-text-mute);
}
.card__num {
  position: absolute;
  right: 30px;
  bottom: 10px;
  font-size: 96px;
  font-weight: 100;
  line-height: 1;
  color: var(--c-text-card);
}
.card--tall .card__num { color: var(--c-text-num); }

/* =====================================================================
   BLOCK 3 — Why Clients Choose Us
   ===================================================================== */

.why {
  padding: 50px 0 60px;
}
.why__title {
  font-size: 128px;
  font-weight: 100;
  line-height: 1;
  text-align: right;
  margin-bottom: 38px;
  padding-right: 30px;
}
.why__row {
  position: relative;
  padding: 56px 130px 56px 0;
  border-bottom: 1px solid #c3cfdb;
}
.why__row:last-child { border-bottom: 0; }
.why__row--alt {
  padding-left: 130px;
  padding-right: 0;
}
.why__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 8px;
  margin-bottom: 24px;
}
.why__big {
  font-size: 128px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.01em;
}
.why__label {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}
.why__desc {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--c-text-mute);
  max-width: 567px;
}
.why__arrow {
  position: absolute;
  width: 90px;
  height: 83px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  background: url('../img/arrow-down.png') center/contain no-repeat;
}
.why__row--alt .why__arrow {
  right: auto;
  left: 30px;
  background-image: url('../img/arrow-up.png');
}
.why__row--alt__wr{
  max-width: 810px;
  margin-left: auto;
}
/* =====================================================================
   BLOCK 4 — Case Practice (dark)
   ===================================================================== */

.case {
  background: var(--c-dark);
  color: var(--c-white);
  padding: 115px 0 120px;
  margin-top: 60px;
}
.case__title {
  font-size: 128px;
  font-weight: 100;
  line-height: 1;
  margin-bottom: 80px;
}
.case__title .fade-dark { color: var(--c-text-muted); }
.case__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 50px;
}
.case__col h3 {
  font-size: 64px;
  font-weight: 100;
  line-height: 1;
  margin-bottom: 28px;
}
.case__col p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--c-text-light);
  max-width: 567px;
  margin-bottom: 36px;
}
.case__col img {
  width: 100%;
  max-width: 560px;
  border-radius: 0;
  height: auto;
}
.case__sub {
  font-size: 128px;
  font-weight: 100;
  line-height: 1;
  color: var(--c-text-muted);
  margin: 30px 0 30px;
}
.case__col--right { padding-top: 0; }
.case__col--right .case__img-top { margin-bottom: 60px; }
.case__col--left  .case__sub { display: none; }
.case__col--right .case__sub { display: block; }

/* Refined two-column layout (text-left/img-right then img-left/text-right) */
.case__top, .case__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.case__top    { margin-bottom: 90px; }
.case__bottom .case__txt { order: 2; }
.case__bottom .case__img { order: 1; }
.case__txt h3 {
  font-size: 64px;
  font-weight: 100;
  line-height: 1;
  margin-bottom: 28px;
}
.case__txt .case__big {
  display: block;
  font-size: 128px;
  font-weight: 100;
  line-height: 1;
  color: var(--c-text-muted);
  margin-bottom: 30px;
}
.case__txt p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--c-text-light);
  max-width: 567px;
}
.case__img img { width: 100%; height: auto; }

/* =====================================================================
   BLOCK 5 — How Problematic Platforms Operate
   ===================================================================== */

.how {
  position: relative;
  padding: 110px 0 80px;
  overflow: hidden;
}
.how__stage {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  min-height: 1280px;
}
.how__title {
  font-size: 128px;
  font-weight: 100;
  line-height: 1;
  margin-bottom: 25px;
}
.how__lead {
  position: absolute;
  left: 846px;
  top: 400px;
  width: 560px;
  font-size: 24px;
  font-weight: 100;
  line-height: 1.25;
}
.how__ellipse {
  position: absolute;
  left: 313px;
  top: 745px;
  width: 797px;
  height: 386px;
  background: url('../img/ellipse.png') center/contain no-repeat;
  z-index: 1;
}
.how__gavel {
  position: absolute;
  left: 362px;
  top: 492px;
  width: 686px;
  height: 667px;
  background: url('../img/how-gavel.png') center/contain no-repeat;
  z-index: 2;
}
.how__step {
  position: absolute;
  width: 404px;
  z-index: 3;
}
.how__step h4 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 18px;
}
.how__step p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--c-text-mute2);
}
.how__step .how__badge {
  position: absolute;
  top: 0;
  width: 46px; height: 46px;
  background: url('../img/badge.png') center/contain no-repeat;
}
.how__step--1 { left: 34px; top: 941px; }
.how__step--1 .how__badge { right: 96px;
  top: -58px; }
.how__step--2 { left: 908px; top: 745px; }
.how__step--2 .how__badge { left: -54px; top: -2px; }
.how__step--3 { left: 639px; top: 1105px; }
.how__step--3 .how__badge { left: -56px; top: -10px; }

/* =====================================================================
   BLOCK 6 — Take the First Step
   ===================================================================== */

.cta {
  padding: 90px 0 30px;
  text-align: center;
}
.cta__title {
  font-size: 128px;
  font-weight: 100;
  line-height: 1;
  margin-bottom: 24px;
}
.cta__lead {
  margin: 0 auto 36px;
  max-width: 786px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--c-text-mute2);
}
.cta__btns {
  display: inline-flex;
  gap: 20px;
}
.cta__btns .btn { width: 212px; height: 70px; border-radius: 41px; padding: 0; }

/* =====================================================================
   BLOCK 7 — Let's stay connected (form + footer)
   ===================================================================== */

.connect {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  background: var(--c-bg);
}
.connect__bg {
  position: absolute;
  inset: 0;
  background: url('../img/contact-bg.png') center/cover no-repeat;
  z-index: 0;
}
.connect__fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(234,240,245,1) 0%, rgba(234,240,245,.9) 50%, rgba(234,240,245,0) 100%);
  display: none;
  z-index: 1;
}
.connect__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
.connect__head {
  display: grid;
  grid-template-columns: 690px 320px;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}
.hero__cta.mob-visible{
  display: none !important;
}
.connect__title {
  font-size: 128px;
  font-weight: 100;
  line-height: 1;
}
.connect__lead {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--c-text-mute2);
}
.connect__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 60px;
  max-width: 720px;
}
.connect__field { position: relative; }
.connect__field input,
.connect__field select,
.connect__field .iti {
  width: 100%;
  font-family: inherit;
  font-size: 24px;
  font-weight: 300;
  color: var(--c-text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-text-label);
  padding: 0 0 8px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.connect__field input::placeholder,
.connect__field select { color: var(--c-text-label); }
.connect__field select option { color: #000; background: #fff; }
.connect__field .iti {
  border: 0;
  padding: 0;
}
.connect__field .iti input {
  border: 0;
  border-bottom: 1px solid var(--c-text-label);
  padding-bottom: 8px;
  font-size: 24px;
}
.connect__submit {
  grid-column: 1 / -1;
  height: 70px;
  border-radius: 41px;
  background: var(--c-dark);
  color: var(--c-white);
  font-size: 16px;
  font-weight: 100;
}
.connect__hint {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 16px;
  font-weight: 100;
  color: var(--c-text-hint);
  margin-top: -16px;
}
.connect__hint a { text-decoration: underline; }

.copyright {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 60px auto 0;
  padding: 0 var(--side-pad);
  font-size: 16px;
  font-weight: 100;
}

/* =====================================================================
   Form helpers / overrides (intlTelInput)
   ===================================================================== */

.iti { width: 100%; color: #000; }
.iti--separate-dial-code .iti__selected-dial-code { color: var(--c-text); }
input.error { border-color: #c00 !important; }
.error-msg, .valid-msg { font-size: 12px; }

/* =====================================================================
   THX page
   ===================================================================== */

.thx {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--c-bg);
}
.thx__bg {
  position: absolute;
  inset: 0;
  background: url('../img/thx-bg.png') center/cover no-repeat;
}
.thx__statue {
  position: absolute;
  left: 50%;
  top: 0;
  width: 729px;
  height: 100%;
  transform: translateX(calc(-50% + 365px));
  background: url('../img/thx-statue.png') center/cover no-repeat;
  pointer-events: none;
}
.thx__fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(234,240,245,.9) 0%, rgba(234,240,245,.55) 45%, rgba(234,240,245,0) 75%);
  pointer-events: none;
}
.thx__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 178px var(--side-pad) 80px;
  min-height: 100vh;
}
.thx__title {
  font-size: 128px;
  font-weight: 100;
  line-height: 1;
  margin: 0 0 30px 5px;
}
.thx__sub {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  width: 420px;
  color: var(--c-thx-sub);
  margin: 0 0 50px 5px;
}
.thx__hours {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 30px;
  border-radius: 35px;
  background: var(--c-dark);
  color: var(--c-white);
  font-size: 16px;
  font-weight: 400;
  margin-left: 5px;
}
.thx__star {
  position: absolute;
  width: 24px; height: 24px;
  background: url('../img/star.png') center/contain no-repeat;
  z-index: 3;
}
.thx__star--tr { right: 50px; top: 90px; }
.thx__star--bl { left: 570px; top: 600px; }
.iti{
  font-size: 16px !important;
}
.iti--separate-dial-code .iti__selected-flag{
  background: transparent !important;
}