:root {
  --forest: #071A14;
  --emerald: #123A2E;
  --gold: #D0B46B;
  --gold-light: #E7D9AD;
  --ivory: #F6F2E9;
  --bg: var(--ivory);
  --surface: #fffdf8;
  --surface-soft: #fbf8ef;
  --ink: #1b2b24;
  --muted: #4f5e57;
  --line: #ddd8ca;
  --line-strong: #b8b09c;
  --blue: var(--emerald);
  --blue-dark: var(--forest);
  --navy: var(--forest);
  --navy-soft: var(--emerald);
  --green: var(--emerald);
  --red: #9f332c;
  --shadow: 0 20px 55px rgba(7, 26, 20, 0.14);
  --shadow-soft: 0 8px 24px rgba(7, 26, 20, 0.08);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(208, 180, 107, 0.35);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
input,
select,
textarea {
  outline: none;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
h4,
p,
ul {
  margin-block: 0;
}

ul {
  padding: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 9px 13px;
  border-radius: 6px;
  background: var(--surface);
  color: var(--blue-dark);
  box-shadow: var(--shadow-soft);
  transform: translateY(-150%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 82px;
}

.moneylane-brand,
.event-brand,
.site-footer__event {
  display: flex;
  align-items: center;
}

.moneylane-brand {
  gap: 0;
  flex: 0 0 auto;
  color: #fff;
  text-decoration: none;
}

.moneylane-brand__copy {
  display: block;
}

.moneylane-brand strong {
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.event-brand {
  gap: 11px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-brand img,
.site-footer__event img {
  width: 154px;
  height: auto;
  object-fit: contain;
}

.event-brand__location {
  color: var(--gold-light);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(231, 217, 173, 0.9);
  outline-offset: 3px;
}

.button--small {
  min-height: 44px;
  padding: 9px 13px;
  font-size: 12px;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(7, 26, 20, 0.28);
  color: #fff;
}

.button--outline:hover {
  border-color: rgba(231, 217, 173, 0.82);
  background: rgba(208, 180, 107, 0.16);
}

.button--gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(208, 180, 107, 0.22);
}

.button--gold:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  box-shadow: 0 13px 28px rgba(208, 180, 107, 0.28);
}

.button--header-telegram {
  min-height: 50px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 850;
}

.button--telegram {
  border-color: var(--gold);
  background: rgba(208, 180, 107, 0.14);
  color: var(--gold-light);
  box-shadow: 0 8px 20px rgba(7, 26, 20, 0.18);
}

.button--telegram:hover {
  border-color: var(--gold-light);
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 11px 24px rgba(208, 180, 107, 0.2);
}

.button--primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.button--primary:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(7, 26, 20, 0.2);
}

.button--submit {
  min-width: 174px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 112px 0 42px;
  background:
    radial-gradient(circle at 78% 35%, rgba(208, 180, 107, 0.22), transparent 24%),
    radial-gradient(circle at 21% 17%, rgba(18, 58, 46, 0.7), transparent 35%),
    linear-gradient(112deg, var(--forest) 0%, var(--emerald) 57%, var(--forest) 100%);
  color: #fff;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  right: -13%;
  bottom: -40%;
  width: 72vw;
  height: 72vw;
  max-width: 920px;
  max-height: 920px;
  border: 1px solid rgba(231, 217, 173, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(231, 217, 173, 0.035), 0 0 0 72px rgba(231, 217, 173, 0.026), 0 0 0 136px rgba(231, 217, 173, 0.018);
}

.hero::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.3;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, transparent);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.96fr);
  align-items: center;
  gap: 48px;
}

.hero__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold-light);
}

.hero__copy h1 {
  max-width: 650px;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero__lead {
  max-width: 580px;
  color: var(--ivory);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 760;
  letter-spacing: -0.025em;
  line-height: 1.17;
  text-transform: uppercase;
}

.hero__supporting {
  max-width: 530px;
  color: rgba(246, 242, 233, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.text-link--light {
  color: rgba(255, 255, 255, 0.78);
}

.text-link--light:hover {
  color: var(--gold-light);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 10px;
  font-weight: 700;
  list-style: none;
}

.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.proof-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(208, 180, 107, 0.18);
}

.hero-visual {
  position: relative;
  min-height: 330px;
  isolation: isolate;
}

.hero-visual__glow {
  position: absolute;
  top: 8%;
  right: 8%;
  width: 73%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 217, 173, 0.34), rgba(208, 180, 107, 0.08) 42%, transparent 69%);
  filter: blur(4px);
}

.hero-visual__gridlines {
  position: absolute;
  top: 6%;
  right: 1%;
  width: 82%;
  aspect-ratio: 1;
  border: 1px solid rgba(231, 217, 173, 0.22);
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 50%, transparent 0 29px, rgba(231, 217, 173, 0.12) 30px 31px), repeating-linear-gradient(25deg, transparent 0 37px, rgba(231, 217, 173, 0.11) 38px 39px);
  mask-image: radial-gradient(circle at center, #000 0 56%, transparent 73%);
  transform: rotate(-18deg);
}

.hero-visual__card {
  position: absolute;
  top: 23px;
  right: 7%;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(320px, 89%);
  min-height: 286px;
  padding: 17px 19px 16px;
  border: 1px solid rgba(231, 217, 173, 0.55);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(18, 58, 46, 0.96), rgba(7, 26, 20, 0.94));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: rotate(2.5deg);
}

.hero-visual__card-top,
.hero-visual__tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-visual__kicker {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-visual__number {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(231, 217, 173, 0.45);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 850;
}

.hero-visual__orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  margin: -4px auto -1px;
  border-radius: 50%;
  background: radial-gradient(circle at 39% 32%, rgba(255, 255, 255, 0.93) 0 1.5%, transparent 2%), radial-gradient(circle at 57% 42%, rgba(231, 217, 173, 0.86) 0 1.5%, transparent 2%), radial-gradient(circle at 50% 50%, var(--gold) 0%, #8d7746 42%, var(--emerald) 66%, var(--forest) 67%);
  box-shadow: 0 0 0 1px rgba(231, 217, 173, 0.4), 0 0 40px rgba(208, 180, 107, 0.24), inset -22px -19px 34px rgba(0, 0, 0, 0.32);
}

.hero-visual__orb::before,
.hero-visual__orb::after {
  position: absolute;
  width: 155%;
  height: 35%;
  border: 1px solid rgba(231, 217, 173, 0.38);
  border-radius: 50%;
  content: "";
  transform: rotate(-21deg);
}

.hero-visual__orb::after {
  width: 38%;
  height: 155%;
  transform: rotate(-21deg);
}

.orb-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.orb-ring--one {
  width: 80%;
  height: 80%;
}

.orb-ring--two {
  width: 63%;
  height: 63%;
  border-color: rgba(231, 217, 173, 0.3);
}

.orb-core {
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(231, 217, 173, 0.8);
}

.hero-visual__caption {
  max-width: 245px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.hero-visual__tags {
  justify-content: flex-start;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: auto;
}

.hero-visual__tags span {
  padding: 5px 8px;
  border: 1px solid rgba(231, 217, 173, 0.3);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
}

.hero-visual__stamp {
  position: absolute;
  right: -1%;
  bottom: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(231, 217, 173, 0.75);
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-align: center;
  transform: rotate(10deg);
}

.hero-visual__stamp span {
  font-size: 9px;
  letter-spacing: 0.2em;
}

.intro-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.intro-strip__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.intro-strip p {
  font-size: 13px;
  font-weight: 800;
}

.intro-strip__line {
  width: 54px;
  height: 1px;
  background: var(--gold);
}

.intro-strip__meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enquiry-section {
  padding: 112px 0 118px;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.67fr) minmax(0, 1.33fr);
  align-items: start;
  gap: 74px;
}

.enquiry-intro {
  position: sticky;
  top: 30px;
}

.enquiry-intro h2,
.section-heading h2,
.closing-card h2 {
  max-width: 520px;
  font-size: clamp(34px, 4vw, 51px);
  letter-spacing: -0.065em;
  line-height: 1.03;
}

.enquiry-intro > p:not(.eyebrow) {
  max-width: 395px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
}

.enquiry-note {
  display: flex;
  gap: 12px;
  max-width: 365px;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.enquiry-note__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 850;
}

.enquiry-note p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.enquiry-note a {
  color: var(--blue);
  font-weight: 800;
  text-underline-offset: 3px;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-card form {
  overflow: hidden;
  border-radius: inherit;
}

.form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 30px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.form-header__kicker,
.conditional-fields__kicker {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-header h3 {
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.form-header__step {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.form-status,
.form-error-summary {
  margin: 22px 30px 0;
  padding: 13px 15px;
  border-radius: 7px;
  font-size: 13px;
}

.form-status {
  border: 1px solid #bfe3cf;
  background: #f0faf5;
  color: #0c5c3d;
}

.form-status.is-error,
.form-error-summary {
  border: 1px solid #e8bbb7;
  background: #fff4f3;
  color: #8f261f;
}

.form-status a {
  color: inherit;
  font-weight: 850;
  text-underline-offset: 3px;
}

.status-reset {
  min-height: 44px;
  margin-top: 10px;
  padding: 9px 12px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.form-section,
.conditional-fields {
  margin: 0;
  min-inline-size: 0;
  padding: 30px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.form-section legend {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 0;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.legend-number {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #edf3ee;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.fieldset-hint {
  margin: 8px 0 21px;
  color: var(--muted);
  font-size: 12px;
}

.field-grid {
  display: grid;
  gap: 17px 14px;
}

.field-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.field > legend {
  display: flex;
  align-items: baseline;
  gap: 6px;
  width: 100%;
  padding: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.field > span:first-child {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.field em {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
}

.field b {
  color: var(--blue);
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 43px;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.field input,
.field select {
  padding: 9px 11px;
}

.field textarea {
  min-height: 99px;
  padding: 10px 11px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #66746c;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--gold);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18, 58, 46, 0.16);
}

.field--full {
  grid-column: 1 / -1;
}

.field[aria-invalid="true"] input,
.field[aria-invalid="true"] select,
.field[aria-invalid="true"] textarea {
  border-color: var(--red);
}

#services-fields[aria-invalid="true"],
.conditional-subgroup[aria-invalid="true"] {
  outline: 2px solid rgba(159, 51, 44, 0.45);
  outline-offset: 3px;
}

.app-choice-group {
  min-width: 0;
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field-hint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

.field-hint.is-error {
  color: var(--red);
  font-weight: 800;
}

.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-choice {
  position: relative;
  display: block;
  cursor: pointer;
}

.service-choice input,
.radio-option input,
.check-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.service-choice__body {
  position: relative;
  display: grid;
  min-height: 180px;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.service-choice:hover .service-choice__body {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.service-choice input:focus-visible + .service-choice__body {
  outline: 3px solid rgba(208, 180, 107, 0.42);
  outline-offset: 3px;
}

.service-choice input:checked + .service-choice__body {
  border-color: var(--blue);
  background: #edf3ee;
  box-shadow: inset 0 0 0 1px var(--blue), 0 8px 20px rgba(7, 26, 20, 0.1);
}

.service-choice__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-choice__icon,
.service-choice__selected {
  display: grid;
  place-items: center;
}

.service-choice__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 17px;
  font-weight: 850;
}

.service-choice__selected {
  min-height: 22px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #e5f7ef;
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 0.18s ease;
}

.service-choice input:checked + .service-choice__body .service-choice__selected {
  opacity: 1;
}

.service-choice strong {
  font-size: 16px;
  letter-spacing: -0.025em;
}

.service-choice__body > span:not(.service-choice__topline):not(.service-choice__arrow) {
  max-width: 250px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.service-choice__arrow {
  align-self: end;
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
}

.conditional-fields {
  background: var(--surface-soft);
}

.conditional-fields__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 21px;
}

.conditional-fields h4 {
  max-width: 430px;
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.conditional-fields__mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #d9c88f;
  border-radius: 50%;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.conditional-subgroup {
  min-inline-size: 0;
  padding: 14px;
  border: 1px solid #e4dcc5;
  border-left: 3px solid var(--blue);
  border-radius: 7px;
  background: #fdfbf5;
}

.conditional-subgroup > legend {
  color: var(--ink);
}

.radio-grid,
.check-grid {
  display: grid;
  gap: 8px;
  margin-top: 9px;
}

.radio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.radio-option,
.check-option {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 39px;
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.radio-option:hover,
.check-option:hover {
  border-color: var(--gold);
}

.radio-option:has(input:checked),
.check-option:has(input:checked) {
  border-color: var(--emerald);
  background: #edf3ee;
  color: var(--forest);
}

.radio-option input:focus-visible + span,
.check-option input:focus-visible + span {
  outline: 2px solid rgba(208, 180, 107, 0.55);
  outline-offset: 3px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 30px 28px;
}

.form-footer__note {
  color: var(--muted);
  font-size: 11px;
}

.form-privacy {
  margin: -4px 30px 0;
  padding-bottom: 27px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-footer__note span {
  margin-right: 5px;
  color: var(--green);
  font-size: 8px;
  vertical-align: 1px;
}

.credibility-section {
  padding: 111px 0 120px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 43px;
}

.section-heading h2 {
  max-width: 700px;
  text-transform: uppercase;
}

.section-heading--split > p {
  max-width: 300px;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 13px;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.credibility-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 282px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.credibility-card--featured {
  border-color: #b7cdbd;
  box-shadow: inset 0 3px 0 var(--blue), var(--shadow-soft);
}

.credibility-card__number {
  position: absolute;
  top: 19px;
  right: 18px;
  color: #68776f;
  font-size: 11px;
  font-weight: 850;
}

.credibility-card__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 27px;
  border-radius: 10px;
  background: #edf3ee;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.credibility-card__icon--gold {
  background: #fbf4df;
  color: #735c1e;
}

.credibility-card__icon--dark {
  background: #e8eee9;
  color: var(--navy);
}

.credibility-card__icon--blue {
  background: #edf3ee;
  color: var(--blue-dark);
}

.credibility-card h3 {
  max-width: 205px;
  font-size: 17px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.credibility-card p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.52;
}

.credibility-card__label,
.credibility-card__action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 20px;
  font-size: 11px;
  font-weight: 850;
}

.credibility-card__label {
  color: var(--emerald);
}

.credibility-card__action {
  color: var(--emerald);
  min-height: 44px;
  text-decoration: none;
}

.credibility-card__action:hover {
  color: var(--blue-dark);
}

.closing-section {
  padding: 0 0 112px;
  background: var(--surface);
}

.closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 260px;
  padding: 47px 58px;
  overflow: hidden;
  border: 1px solid rgba(231, 217, 173, 0.43);
  border-radius: 13px;
  background:
    radial-gradient(circle at 80% 50%, rgba(208, 180, 107, 0.21), transparent 23%),
    linear-gradient(110deg, var(--forest), var(--emerald));
  color: #fff;
}

.closing-card h2 {
  max-width: 580px;
  font-size: clamp(31px, 4vw, 52px);
}

.closing-card__actions {
  display: grid;
  justify-items: start;
  gap: 16px;
  flex: 0 0 auto;
}

.site-footer {
  padding: 29px 0;
  background: var(--navy);
  color: #fff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}

.site-footer strong {
  font-size: 14px;
}

.site-footer p,
.site-footer__event span,
.site-footer a {
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
}

.site-footer p {
  margin-top: 4px;
}

.site-footer__event {
  gap: 13px;
  justify-content: center;
}

.site-footer__event span {
  color: var(--gold-light);
  white-space: nowrap;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  justify-self: end;
  color: var(--gold-light);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.noscript-message {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 60;
  max-width: 650px;
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid #e7c57e;
  border-radius: 7px;
  background: #fffdf7;
  color: #705329;
  box-shadow: var(--shadow);
}

.noscript-message a {
  font-weight: 850;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.75fr);
    gap: 35px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-visual__card {
    right: 1%;
  }

  .enquiry-grid {
    gap: 36px;
  }

  .credibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 32px, 600px);
  }

  .site-header__inner {
    gap: 8px;
    min-height: 72px;
  }

  .moneylane-brand strong {
    font-size: 15px;
  }

  .site-header .button--header-telegram {
    display: none;
  }

  .event-brand {
    gap: 6px;
    font-size: 10px;
  }

  .event-brand img {
    width: 104px;
  }

  .event-brand__label {
    display: none;
  }

  .event-brand__location {
    letter-spacing: 0.04em;
  }

  .hero {
    min-height: 0;
    padding: 104px 0 46px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__copy {
    gap: 12px;
  }

  .hero__copy h1 {
    max-width: 470px;
    font-size: clamp(48px, 13vw, 68px);
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__supporting {
    font-size: 13px;
  }

  .hero__proof {
    font-size: 12px;
  }

  .hero-visual {
    width: min(100%, 450px);
    min-height: 300px;
    margin: 0 auto;
  }

  .hero-visual__card {
    top: 12px;
    right: 6%;
    width: min(300px, 86%);
    min-height: 258px;
    padding: 15px 17px 14px;
  }

  .hero-visual__orb {
    width: 145px;
    height: 145px;
  }

  .hero-visual__caption {
    font-size: 13px;
  }

  .hero-visual__stamp {
    width: 66px;
    height: 66px;
    font-size: 10px;
  }

  .intro-strip__inner {
    flex-wrap: wrap;
    gap: 8px 15px;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .intro-strip__line {
    width: 30px;
  }

  .intro-strip__meta {
    width: 100%;
    font-size: 12px;
  }

  .enquiry-section,
  .credibility-section {
    padding: 76px 0 80px;
  }

  .enquiry-grid {
    grid-template-columns: 1fr;
    gap: 39px;
  }

  .enquiry-intro {
    position: static;
  }

  .enquiry-intro h2,
  .section-heading h2,
  .closing-card h2 {
    font-size: 38px;
  }

  .enquiry-note {
    margin-top: 24px;
  }

  .section-heading--split {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading--split > p {
    margin-top: 16px;
  }

  .closing-section {
    padding-bottom: 80px;
  }

  .closing-card {
    display: grid;
    min-height: 0;
    padding: 34px 27px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 19px;
  }

  .site-footer__event {
    justify-content: flex-start;
  }

  .site-footer a {
    justify-self: start;
  }

  .site-footer p,
  .site-footer__event span,
  .site-footer a {
    font-size: 12px;
  }
}

@media (max-width: 560px) {
  .form-header,
  .form-section,
  .conditional-fields,
  .form-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .form-footer__note,
  .form-privacy,
  .field-hint {
    font-size: 12px;
  }

  .credibility-card p {
    font-size: 13px;
  }

  .credibility-card__label,
  .credibility-card__action {
    font-size: 12px;
  }

  .form-status,
  .form-error-summary {
    margin-right: 20px;
    margin-left: 20px;
  }

  .field-grid--two,
  .service-choice-grid,
  .radio-grid,
  .check-grid--three {
    grid-template-columns: 1fr;
  }

  .check-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button--submit {
    width: 100%;
  }

  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .credibility-card {
    min-height: 240px;
  }
}

@media (max-width: 390px) {
  .page-shell {
    width: calc(100% - 24px);
  }

  .site-header__inner {
    gap: 6px;
  }

  .moneylane-brand strong {
    font-size: 14px;
  }

  .event-brand {
    gap: 5px;
    font-size: 9px;
  }

  .event-brand img {
    width: 94px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
