:root {
  --green-950: #022f1b;
  --green-900: #053d24;
  --green-800: #07522f;
  --green-700: #08703d;
  --lime: #c6e246;
  --lime-bright: #d8f260;
  --cream: #f3f2e9;
  --paper: #fbfcf6;
  --ink: #10251a;
  --muted: #657169;
  --white: #fff;
  --line: rgba(16, 37, 26, 0.14);
  --shadow: 0 24px 70px rgba(2, 47, 27, 0.16);
  --radius: 22px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Karla", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

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

svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--green-950);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar p {
  margin: 0;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime-bright);
  font-weight: 700;
}

.topbar svg {
  width: 15px;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 246, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 34px rgba(2, 47, 27, 0.06);
}

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

.brand img {
  width: 255px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: var(--green-700);
  transition: right 0.25s;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.button {
  min-height: 56px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Karla", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(198, 226, 70, 0.6);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  fill: currentColor;
}

.button--small {
  min-height: 46px;
  padding: 10px 20px;
  font-size: 14px;
}

.button--dark {
  background: var(--green-950);
  color: var(--white);
}

.button--dark:hover {
  box-shadow: 0 12px 28px rgba(2, 47, 27, 0.25);
}

.button--primary {
  background: var(--lime);
  color: var(--green-950);
  box-shadow: 0 14px 32px rgba(198, 226, 70, 0.16);
}

.button--primary:hover {
  background: var(--lime-bright);
  box-shadow: 0 18px 36px rgba(198, 226, 70, 0.24);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button--outline {
  color: var(--green-900);
  border-color: var(--green-900);
  background: transparent;
}

.button--outline:hover {
  background: var(--green-900);
  color: var(--white);
}

.button--ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.06);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--green-950);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 47, 27, 0.98) 0%, rgba(2, 47, 27, 0.88) 36%, rgba(2, 47, 27, 0.36) 64%, rgba(2, 47, 27, 0.08) 100%),
    url("assets/qlu-hero-investor-v2.jpg") center 10% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -140px;
  border-radius: 50%;
  border: 90px solid rgba(198, 226, 70, 0.1);
}

.hero__grid {
  min-height: 680px;
  padding-block: 66px 72px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--lime-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow--dark {
  color: var(--green-700);
}

.hero h1 {
  max-width: 650px;
  margin: 26px 0 24px;
  font-family: "Rubik", sans-serif;
  font-size: clamp(52px, 5.3vw, 77px);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.048em;
}

.hero h1 em,
.closing-cta h2 em {
  color: var(--lime);
  font-style: normal;
}

.hero__lead {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  line-height: 1.58;
}

.hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero__checks {
  margin: 34px 0 0;
  padding: 27px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

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

.hero__checks svg {
  width: 16px;
  fill: var(--lime);
}

.hero__visual {
  position: relative;
  padding: 15px 0 52px 18px;
}

.hero__photo {
  position: relative;
  aspect-ratio: 0.88;
  overflow: hidden;
  border-radius: 150px 22px 22px 22px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
}

.hero__photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 138px 14px 14px 14px;
  pointer-events: none;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 47, 27, 0.74), transparent 52%), linear-gradient(120deg, rgba(2, 47, 27, 0.16), transparent 50%);
}

.hero__badge {
  position: absolute;
  left: 34px;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__badge-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-950);
  background: var(--lime);
}

.hero__badge-icon svg {
  width: 24px;
  fill: currentColor;
}

.hero__badge strong,
.hero__badge span {
  display: block;
}

.hero__badge strong {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

.hero__badge span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.hero__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -12px;
  right: -30px;
  width: 72%;
  height: 65%;
  border: 1px solid rgba(198, 226, 70, 0.52);
  border-radius: 50%;
  transform: rotate(18deg);
}

.hero__microcard {
  position: absolute;
  right: -18px;
  bottom: 16px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: rgba(4, 52, 31, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__microcard i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
}

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

.trust-strip__inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.trust-strip__inner > span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-strip__line {
  height: 1px;
  flex: 1 1 auto;
  background: rgba(16, 37, 26, 0.14);
}

.trust-strip__items {
  display: flex;
  align-items: center;
  gap: 28px;
}

.trust-strip__items p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.trust-strip__items strong {
  margin-right: 5px;
  color: var(--green-700);
  font-size: 10px;
}

.intro {
  background: var(--paper);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(320px, 0.7fr);
  gap: 100px;
  align-items: end;
}

.section-heading h2,
.process h2,
.lead-section h2,
.faq h2 {
  margin: 24px 0 0;
  font-family: "Rubik", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.intro__copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--green-700);
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.solutions-grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 420px 350px;
  gap: 22px;
}

.solution-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8ebe2;
}

.solution-card__number {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 26px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.solution-card__content {
  position: absolute;
  z-index: 2;
  left: 38px;
  right: 38px;
  bottom: 35px;
  color: var(--white);
}

.solution-card__tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-card h3 {
  max-width: 440px;
  margin: 0 0 9px;
  font-family: "Rubik", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.solution-card p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.solution-card--large::after,
.solution-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 47, 27, 0.92), rgba(2, 47, 27, 0.06) 72%);
}

.solution-card--large img,
.solution-card--photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.solution-card:hover > img {
  transform: scale(1.035);
}

.solution-card--lime {
  color: var(--green-950);
  background: var(--lime);
}

.solution-card--lime .solution-card__number {
  color: var(--green-950);
  border-color: rgba(2, 47, 27, 0.32);
}

.solution-card--lime .solution-card__content {
  color: var(--green-950);
}

.solution-card--lime p {
  color: rgba(2, 47, 27, 0.72);
}

.solution-card__mark {
  position: absolute;
  top: 68px;
  left: 50%;
  width: 180px;
  color: rgba(2, 47, 27, 0.1);
  transform: translateX(-50%);
}

.solution-card--dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-950), var(--green-700));
}

.solution-card__bars {
  position: absolute;
  top: 40px;
  right: 55px;
  height: 145px;
  display: flex;
  align-items: end;
  gap: 13px;
  opacity: 0.23;
}

.solution-card__bars i {
  width: 18px;
  background: var(--lime);
}

.solution-card__bars i:nth-child(1) { height: 42%; }
.solution-card__bars i:nth-child(2) { height: 64%; }
.solution-card__bars i:nth-child(3) { height: 51%; }
.solution-card__bars i:nth-child(4) { height: 78%; }
.solution-card__bars i:nth-child(5) { height: 100%; }

.solution-card--photo .solution-card__photo-copy {
  position: absolute;
  z-index: 2;
  left: 36px;
  right: 34px;
  bottom: 30px;
  color: var(--white);
}

.solution-card--photo .solution-card__number {
  top: 22px;
  right: 22px;
}

.solution-card--photo h3 {
  max-width: 500px;
}

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.process::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(198, 226, 70, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(198, 226, 70, 0.025), 0 0 0 140px rgba(198, 226, 70, 0.018);
}

.process__heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 100px;
}

.process__heading p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 19px;
}

.steps {
  position: relative;
  z-index: 1;
  margin: 76px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  list-style: none;
  background: rgba(255, 255, 255, 0.14);
}

.step {
  position: relative;
  min-height: 290px;
  padding: 34px;
  background: var(--green-950);
}

.step::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--lime);
  transition: width 0.35s;
}

.step:hover::after {
  width: 100%;
}

.step > span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 800;
}

.step__icon {
  width: 62px;
  height: 62px;
  margin: 42px 0 24px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--green-950);
  background: var(--lime);
}

.step__icon svg {
  width: 28px;
  fill: currentColor;
}

.step h3 {
  margin: 0 0 10px;
  font-family: "Rubik", sans-serif;
  font-size: 23px;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.lead-section {
  background: var(--lime);
}

.lead-section__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 90px;
}

.lead-section__content > p {
  margin: 26px 0;
  color: rgba(2, 47, 27, 0.7);
}

.lead-section__note {
  margin: 34px 0 24px;
  padding: 20px;
  border: 1px solid rgba(2, 47, 27, 0.18);
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: rgba(255, 255, 255, 0.24);
}

.lead-section__note svg {
  width: 22px;
  flex: 0 0 auto;
  fill: var(--green-800);
}

.lead-section__note p {
  margin: 0;
  color: rgba(2, 47, 27, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.lead-form {
  padding: 38px;
  border-radius: 24px;
  color: var(--white);
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.lead-form__top {
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.lead-form__top span {
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.lead-form__top small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.field-grid {
  margin: 25px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-grid label {
  display: block;
}

.field-grid label > span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

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

.field-grid input,
.field-grid select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

.field-grid select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--lime) 50%), linear-gradient(135deg, var(--lime) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.field-grid input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.field-grid input:focus,
.field-grid select:focus {
  border-color: var(--lime);
  outline: none;
  background-color: rgba(255, 255, 255, 0.1);
}

.field-grid option {
  color: var(--ink);
}

.form-disclaimer {
  max-width: 520px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.faq {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 110px;
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 120px;
}

.faq__intro > p {
  margin: 24px 0 30px;
  color: var(--muted);
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 82px;
  padding: 20px 64px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  position: absolute;
  right: 4px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--green-800);
  transform: translate(-50%, -50%);
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s;
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion details p {
  max-width: 690px;
  margin: -8px 60px 26px 0;
  color: var(--muted);
  font-size: 16px;
}

.closing-cta {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.closing-cta__image,
.closing-cta__overlay {
  position: absolute;
  inset: 0;
}

.closing-cta__image {
  background: url("assets/qlu-property-investors-v2.jpg") center 48% / cover no-repeat;
  transform: scale(1.015);
}

.closing-cta__overlay {
  background: linear-gradient(90deg, rgba(2, 47, 27, 0.96) 0%, rgba(2, 47, 27, 0.82) 48%, rgba(2, 47, 27, 0.35) 100%);
}

.closing-cta__content {
  position: relative;
  z-index: 2;
}

.closing-cta__label {
  display: inline-block;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-cta h2 {
  margin: 22px 0 24px;
  font-family: "Rubik", sans-serif;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.closing-cta p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.closing-cta__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.site-footer {
  padding: 70px 0 28px;
  color: rgba(255, 255, 255, 0.66);
  background: #031f13;
}

.site-footer__top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 70px;
}

.brand--footer {
  width: fit-content;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
}

.brand--footer img {
  width: 230px;
}

.site-footer__contact span,
.site-footer__contact a {
  display: block;
}

.site-footer__contact span {
  font-size: 12px;
}

.site-footer__contact a {
  margin-top: 3px;
  color: var(--white);
  font-family: "Rubik", sans-serif;
  font-size: 21px;
  font-weight: 600;
}

.site-footer__social-wrap > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__social a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.site-footer__social a:hover {
  color: var(--green-950);
  border-color: var(--lime);
  background: var(--lime);
}

.site-footer__social svg {
  width: 20px;
  fill: currentColor;
}

.site-footer__bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom p:last-child {
  max-width: 590px;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  height: 54px;
  padding: 0 18px 0 13px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: #20b85a;
  box-shadow: 0 12px 32px rgba(4, 49, 25, 0.28);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(4, 49, 25, 0.34);
}

.floating-whatsapp svg {
  width: 29px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--delay {
  transition-delay: 0.14s;
}

.reveal--delay-2 {
  transition-delay: 0.28s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    margin-left: auto;
  }

  .mobile-nav {
    position: fixed;
    inset: 84px 0 auto;
    padding: 28px 24px 34px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 30px rgba(2, 47, 27, 0.12);
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

  .hero__microcard {
    right: 0;
  }

  .trust-strip__inner {
    flex-wrap: wrap;
    padding-block: 28px;
  }

  .trust-strip__line {
    display: none;
  }

  .trust-strip__items {
    width: 100%;
    justify-content: space-between;
  }

  .intro__grid,
  .process__heading,
  .lead-section__grid,
  .faq__grid {
    gap: 60px;
  }

  .solutions-grid {
    grid-template-rows: 390px 340px;
  }

  .faq__intro {
    position: static;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 72px 0;
  }

  .hero__grid {
    padding-block: 66px 82px;
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero__content {
    max-width: 680px;
  }

  .hero__visual {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .hero__photo {
    aspect-ratio: 1.05;
    border-radius: 110px 22px 22px;
  }

  .hero__photo::before {
    border-radius: 99px 14px 14px;
  }

  .intro__grid,
  .process__heading,
  .lead-section__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .intro__grid {
    gap: 32px;
  }

  .intro__copy {
    max-width: 680px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 350px);
  }

  .process__heading {
    gap: 26px;
  }

  .process__heading p {
    max-width: 620px;
  }

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

  .step {
    min-height: auto;
    padding: 30px;
  }

  .step__icon {
    margin-top: 30px;
  }

  .lead-section__grid {
    gap: 44px;
  }

  .faq__grid {
    gap: 42px;
  }

  .site-footer__top {
    grid-template-columns: 1fr auto;
  }

  .site-footer__contact {
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .topbar__inner {
    min-height: 34px;
    justify-content: center;
  }

  .topbar p {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .brand img {
    width: 190px;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav {
    inset: 70px 0 auto;
  }

  .hero__grid {
    min-height: 650px;
    padding-block: 52px 58px;
    gap: 0;
  }

  .hero {
    min-height: 650px;
    background:
      linear-gradient(90deg, rgba(2, 47, 27, 0.96), rgba(2, 47, 27, 0.82)),
      url("assets/qlu-hero-investor-v2.jpg") 66% center / cover no-repeat;
  }

  .hero h1 {
    margin-top: 21px;
    font-size: clamp(43px, 13vw, 58px);
    line-height: 1;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__checks {
    display: grid;
  }

  .hero__visual {
    padding: 8px 0 42px;
  }

  .hero__visual::before {
    right: -60px;
  }

  .hero__photo {
    aspect-ratio: 0.9;
    border-radius: 90px 18px 18px;
  }

  .hero__photo::before {
    border-radius: 80px 10px 10px;
  }

  .hero__badge {
    left: 25px;
    right: 22px;
    bottom: 24px;
  }

  .hero__badge-icon {
    width: 46px;
    height: 46px;
  }

  .hero__badge strong {
    font-size: 14px;
  }

  .hero__microcard {
    right: 10px;
    bottom: 4px;
    max-width: calc(100% - 20px);
    padding: 13px;
    gap: 6px;
    font-size: 9px;
  }

  .trust-strip__inner > span {
    width: 100%;
  }

  .trust-strip__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .section-heading h2,
  .process h2,
  .lead-section h2,
  .faq h2 {
    font-size: 38px;
  }

  .solutions-grid {
    margin-top: 50px;
    grid-template-rows: repeat(4, 340px);
  }

  .solution-card__content,
  .solution-card--photo .solution-card__photo-copy {
    left: 26px;
    right: 24px;
    bottom: 26px;
  }

  .solution-card h3 {
    font-size: 29px;
  }

  .solution-card__mark {
    width: 150px;
  }

  .lead-form {
    margin-inline: -5px;
    padding: 27px 20px;
  }

  .lead-form__top {
    display: block;
  }

  .lead-form__top small {
    display: block;
    margin-top: 4px;
  }

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

  .field-grid__full {
    grid-column: auto;
  }

  .accordion summary {
    min-height: 82px;
    padding-right: 48px;
    font-size: 17px;
  }

  .accordion details p {
    margin-right: 20px;
  }

  .closing-cta {
    min-height: 600px;
  }

  .closing-cta__overlay {
    background: linear-gradient(90deg, rgba(2, 47, 27, 0.95), rgba(2, 47, 27, 0.7));
  }

  .closing-cta h2 {
    font-size: 54px;
  }

  .closing-cta p {
    font-size: 17px;
  }

  .closing-cta__actions {
    display: grid;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .brand--footer img {
    width: 210px;
  }

  .site-footer__contact {
    grid-row: auto;
  }

  .site-footer__bottom {
    display: grid;
    gap: 12px;
  }

  .site-footer__bottom p:last-child {
    text-align: left;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }
}
