/* =====================================================
   VELMORRA LEGAL — base styles (desktop-first, 1440 grid)
   ===================================================== */

/* ---------- Design tokens ---------- */
:root {
  --white:          #ffffff;
  --black:          #000000;
  --bg-dark:        #131313;

  --text-dark:      #3d3d3d;
  --text-heading:   #494949;
  --text-muted:     #888888;
  --text-soft:      #a6a6a6;
  --text-body:      #9c9c9c;
  --text-gray:      #aeaeae;
  --text-dim:       #767676;

  --gold:           #c8a552;
  --gold-dark:      #926514;
  --gold-btn-a:     #b38025;
  --gold-btn-b:     #996b18;
  --amber:          #b58227;
  --amber-inner:    #403119;

  --card-dark:      #3d3d3d;
  --input-bg:       #3b3b3b;
  --input-border:   #737373;
  --input-border-focus: #c8a552;
  --card-bg:        #fcfcfc;
  --card-border:    #f4f4f3;
  --card-border-2:  #e0e0e0;
  --card-border-3: #f0f0f0;
  --card-gray:      #ededed;

  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display:   'Neumann', 'Inter', 'Segoe UI', Arial, sans-serif;

  --page-w:         1440px;
  --page-pad:       132px;
  --content-w:      calc(var(--page-w) - var(--page-pad) * 2); /* 1176 */

  --shadow-card:    0 4px 50px rgba(0, 0, 0, .05);
  --shadow-chip:    0 4px 4px rgba(0, 0, 0, .25);
}

/* ---------- Neumann fallback fonts ----------
   Since Neumann is a paid font, fall back gracefully to a
   sturdy serif-ish / grotesque via system; keeps Figma mood. */
@font-face {
  font-family: 'Neumann';
  src: local('Neumann'), local('Neumann Regular');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
p   { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; }
button { font: inherit; background: none; border: 0; padding: 0; cursor: pointer; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.divider {
  height: 1px;
  background: rgba(0, 0, 0, .08);
  margin: 0;
}

/* ---------- Section titles ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  color: var(--text-dark);
  line-height: 1;
}
.section-title--center { text-align: center; }
.section-title--light  { color: var(--white); }

/* =====================================================
   HEADER
   ===================================================== */
.header {
  background: var(--bg-dark);
  height: 134px;
  position: relative;
  z-index: 20;
}
.header__inner {
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.header__logo        { display: block; width: 134px; flex-shrink: 0; }
.header__logo img    { width: 134px; height: 74px; display: block; }

.header__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-size: 20px;
  white-space: nowrap;
}
.header__tagline__flag { width: 30px; height: 30px; flex-shrink: 0; border-radius: 100px; }

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 49px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-family: var(--font-sans);
  transition: background-color .2s, color .2s;
}
.header__cta:hover { background: var(--gold); color: #fff; }

.burger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  z-index: 30;
}
.burger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform .25s, opacity .2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.burger-menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: var(--bg-dark);
  padding: 110px 46px 46px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform .3s ease;
  pointer-events: none;
}
.burger-menu.is-open { transform: translateX(0); pointer-events: auto; }
.burger-menu a {
  color: #fff;
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.burger-menu__cta {
  margin-top: 16px;
  border: 1px solid var(--gold) !important;
  border-radius: 8px;
  text-align: center;
  padding: 14px 0 !important;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
  padding: 53px 0 85px;   /* top to put copy near 187px from top-of-hero (134 header + 53) */
}
.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero__overlay {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(19,19,19,0) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 124px;
  align-items: flex-start;
}
.hero__copy      { max-width: 540px; }
.hero__title     {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 95px;
  font-weight: 400;
}
.hero__lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 500px;
}

/* =====================================================
   FORM CARD (used in hero + registration)
   ===================================================== */
.form-card {
  width: 476px;
  background: rgba(48, 48, 48, .5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 3px solid #3b3b3b;
  border-radius: 30px;
  padding: 29px 26px;
  color: #fff;
}
.form-card__label {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 12px;
}

/* ---------- form elements ---------- */
.v-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.v-form__input {
  width: 100%;
  height: 46px;
  padding: 0 19px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 10px;
  color: #fff;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color .2s;
}
.v-form__input::placeholder { color: var(--text-dim); }
.v-form__input:focus        { border-color: var(--gold); }
.v-form__input.access       { border-color: #7ec14b; }
.v-form__input.error        { border-color: #ff6d6d; }

select.v-form__input {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
    linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
select.v-form__input option { color: #000; }

.v-form__btn {
  width: 100%;
  height: 46px;
  background: var(--gold);
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  transition: filter .2s, transform .05s;
}
.v-form__btn:hover   { filter: brightness(1.1); }
.v-form__btn:active  { transform: scale(.99); }

.v-form__policy {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  margin-top: 4px;
}
.v-form__policy a { color: var(--gold); }

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  padding: 90px 0 0;
}
.about__subtitle {
  text-align: center;
  font-size: 24px;
  color: var(--text-dark);
  line-height: 1.25;
  margin-top: 40px;
}

.about__grid {
  display: grid;
  grid-template-columns: 576px 1fr;
  gap: 24px;
  margin-top: 90px;
  align-items: start;
}
.about__img {
  height: 384px;
  border-radius: 9px;
  overflow: hidden;
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__list__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 50px;
}
.about__list ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  color: var(--text-dark);
}
.about__list li img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  transform: rotate(180deg) scaleY(-1);
}

.about__core {
  text-align: center;
  font-size: 24px;
  color: var(--text-dark);
  line-height: 1.3;
  margin-top: 60px;
}
.about__searched {
  text-align: center;
  font-size: 24px;
  color: var(--text-gray);
  margin-top: 35px;
}

.about__chips {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin: 22px 0 24px;
  min-height: 130px;
}
.chip {
  background: var(--gold);
  color: #fff;
  border-radius: 19px;
  width: 252px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  line-height: 1.15;
  box-shadow: var(--shadow-chip);
  padding: 0 14px;
}
.chip--tilt-left          { transform: rotate(-8.06deg); }
.chip--tilt-right         { transform: rotate(10.96deg); }
.chip--tilt-left-strong   { transform: rotate(-13.9deg); font-size: 16px; }
.chip--tilt-left-strong span { display: block; line-height: 1.2; }

.about__right-place {
  text-align: center;
  font-size: 24px;
  color: var(--text-dark);
  margin: 30px 0 90px;
}

/* =====================================================
   AREAS WE HANDLE
   ===================================================== */
.areas {
  padding: 50px 0 0;
}
.areas__grid {
  display: grid;
  grid-template-columns: 276px 476px 376px;
  grid-template-rows: 236px 256px 256px 256px;
  gap: 20px;
  margin: 90px 0 60px;
}
.areas__img {
  border-radius: 14px;
  overflow: hidden;
}
.areas__img--small {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.areas__img--tall {
  grid-column: 3 / 4;
  grid-row: 2 / 5;
  height: 744px;
}
.areas__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.areas__card {
  background: #fdfdfd;
  border: 2px solid var(--card-border-3);
  border-radius: 14px;
  box-shadow: 0 4px 45px rgba(0, 0, 0, .05);
  padding: 40px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.areas__card__num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}
.areas__card h3 {
  font-family: var(--font-display);
  color: var(--text-heading);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}
.areas__card--a { grid-column: 2 / 3; grid-row: 1 / 2; }
.areas__card--b { grid-column: 3 / 4; grid-row: 1 / 2; }
.areas__card--c { grid-column: 1 / 3; grid-row: 2 / 3; }
.areas__card--d { grid-column: 1 / 3; grid-row: 3 / 4; }
.areas__card--e { grid-column: 1 / 3; grid-row: 4 / 5; }

.areas__footer {
  text-align: center;
  font-size: 24px;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 80px 0 50px;
}

/* =====================================================
   WHY CLIENTS CHOOSE
   ===================================================== */
.why {
  padding: 80px 0 0;
}
.why__wrap {
  position: relative;
  margin-top: 80px;
  min-height: 1230px;
}
.why .divider{
  margin-top: 50px;
}
.why__img {
  position: absolute;
  left: -104px;
  top: 80px;
  width: 680px;
  height: 757px;
  pointer-events: none;
}
.why__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why__list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.why__row {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 476px;
  margin-bottom: 0;
  position: relative;
}
.why__row--right       { margin-left: auto; margin-right: 0; }
.why__row--right-shift { margin-left: auto; margin-right: -66px;
    margin-top: -100px; }
.why__row--left        { margin-left: 0;    margin-right: auto; }

.why__circle {
  width: 77px;
  height: 77px;
  flex-shrink: 0;
  position: relative;
}
.why__circle img {
  width: 100%; height: 100%;
}
.why__circle span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: #000;
  line-height: 1;
}
.why__card {
  background: #fff;
  border: 1px solid var(--card-border-2);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  width: 476px;
  min-height: 162px;
  padding: 35px 37px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why__card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.1;
}
.why__card p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* vertical + curved connectors between rows */
.why__connector {
  align-self: flex-end;
  margin-right: 0;
  pointer-events: none;
}
.why__connector--down img,
.why__connector--up   img { width: 62px; height: auto; }
.why__connector--down { margin: 8px 194px 8px 0; }
.why__connector--up   { margin: 8px 187px 8px 0; }

.why__connector--curve-left {
  align-self: center;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.why__connector--curve-left img {
  width: 464px;
  height: auto;
}
.why__connector--curve-right {
  align-self: center;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.why__connector--curve-right img {
  width: 464px;
  height: auto;
}

/* rows 5 & 6 come AFTER image ends, so make image not overlap them */

/* =====================================================
   OUR RESULTS
   ===================================================== */
.results {
  padding: 80px 0 0;
}
.results__sub {
  text-align: center;
  font-size: 20px;
  color: var(--text-dark);
  margin: 24px 0 58px;
}
.results__strip {
  background: var(--card-dark);
  padding: 56px 0 60px;
}
.results__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: nowrap;
}
.results__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  color: #fff;
  text-align: left;
  flex: 0 0 auto;
  min-width: 0;
}
.results__num {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--gold);
  font-size: 96px;
  line-height: 1;
  white-space: nowrap;
}
.results__lbl {
  font-size: 20px;
  line-height: 1.25;
  color: #fff;
}

/* =====================================================
   COMMON CASES
   ===================================================== */
.cases {
  padding: 100px 0 0;
}
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 95px 0 70px;
}
.case-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 451px;
}
.case-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #000;
  font-weight: 400;
  line-height: 1.15;
}
.case-card__img {
  height: 227px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: auto;
}
.case-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.case-card__btn {
  height: 59px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--gold-btn-a), var(--gold-btn-b));
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter .2s;
}
.case-card__btn:hover { filter: brightness(1.1); }

/* =====================================================
   HOW WE WORK
   ===================================================== */
.how {
  padding: 45px 0 0;
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 113px;
}
.how__card {
  background: var(--card-dark);
  border-radius: 14px;
  padding: 30px 34px;
  min-height: 232px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.how__num {
  width: 47px;
  height: 47px;
  position: relative;
  margin-bottom: 20px;
}
.how__num img { width: 100%; height: 100%; }
.how__num span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
}
.how__card h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
}
.how__card p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.5;
}

/* =====================================================
   CTA STRIP
   ===================================================== */
.cta-strip {
  background: var(--amber);
  margin-top: 84px;
  padding: 63px 0;
}
.cta-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-strip__text {
  font-size: 40px;
  color: #fff;
  line-height: 1.2;
  font-weight: 400;
}
.cta-strip__text b { font-weight: 700; }
.cta-strip__btn {
  width: 476px;
  height: 101px;
  background: var(--amber-inner);
  color: #fff;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-transform: uppercase;
  transition: filter .2s;
}
.cta-strip__btn:hover { filter: brightness(1.15); }

/* =====================================================
   REGISTRATION & TRUST
   ===================================================== */
.reg {
  position: relative;
  overflow: hidden;
  padding: 74px 0 80px;
  background: var(--bg-dark);
}
.reg__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.reg__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.reg__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(19,19,19,.4), rgba(19,19,19,.85));
}
.reg__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 124px;
  align-items: flex-start;
}
.reg__copy { max-width: 540px; }
.reg__copy .section-title { margin-bottom: 30px; }
.reg__text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  padding-top: 0;
}
.footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 598px;
  z-index: 0;
  pointer-events: none;
}
.footer__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.footer__contact-card {
  position: relative;
  z-index: 2;
  background: var(--card-gray);
  width: 474px;
  margin: 205px 132px 0 auto;
  padding: 267px 26px 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer__contact-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 267px;
}
.footer__contact-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.footer__contact-info {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--text-dark);
  font-size: 20px;
  line-height: 1.4;
}
.footer__contact-btn {
  width: 421px;
  max-width: 100%;
  height: 70px;
  border-radius: 21px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 12px auto 0;
  transition: filter .2s;
}
.footer__contact-btn:hover { filter: brightness(1.1); }

.footer__bar {
  position: relative;
  z-index: 2;
  background: var(--bg-dark);
  padding: 0 0 40px;
}
.footer__bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer__logo img { width: 134px; height: 74px; display: block; margin-top: -100px; margin-bottom: 100px;}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  text-align: left;
}
.footer__year {
  color: #fff;
  font-size: 20px;
}

/* =====================================================
   THANK-YOU PAGE
   ===================================================== */
.thanks {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  overflow: hidden;
  color: #fff;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 30px var(--page-pad) 60px;
}
.thanks__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.thanks__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.thanks__bg--mobile { display: none; }

/* Dark left-side fade for desktop layout legibility */
.thanks::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(19, 19, 19, .9) 0%, rgba(19, 19, 19, .55) 35%, rgba(19, 19, 19, 0) 60%);
  pointer-events: none;
}

.thanks__logo {
  position: relative;
  z-index: 2;
  display: block;
  width: 134px;
}
.thanks__logo img { width: 134px; height: 74px; display: block; }

.thanks__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 540px;
}
.thanks__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 96px;
  line-height: 1;
  margin: 0 0 90px;
}
.thanks__text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 30px;
}
.thanks__hours {
  position: relative;
  z-index: 2;
  font-size: 16px;
  line-height: 1.55;
  color: #fff;
  align-self: end;
  max-width: 540px;
}
.thanks__hours b { font-weight: 700; }
