@font-face {
  font-family: Grift;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/grift-light.otf") format("opentype");
}
@font-face {
  font-family: Grift;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/grift-regular.otf") format("opentype");
}
@font-face {
  font-family: Grift;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/grift-medium.otf") format("opentype");
}
@font-face {
  font-family: Grift;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/grift-semibold.otf") format("opentype");
}
@font-face {
  font-family: Grift;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/grift-bold.otf") format("opentype");
}
@font-face {
  font-family: Grift;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/grift-extrabold.otf") format("opentype");
}
@font-face {
  font-family: Grift;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("fonts/grift-black.otf") format("opentype");
}

:root {
  --smoke: #1e1f24;
  --white: #fff;
  --forest: #1f3a1f;
  --forest-deep: #143b1c;
  --lime: #8fe860;
  --lime-hover: #7fd450;
  --lime-muted: #579140;
  --input-placeholder: #9aa39a;
  --secondary-50: #9b44e3;
  --lavender: #b16cea;
  --bg-light: #f7f9f7;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: Grift, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--smoke);
  background: #000;
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 24px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-light {
  background: rgba(247, 249, 247, 0.92);
  backdrop-filter: blur(10px);
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav__brand {
  color: var(--lime);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.nav__brand img {
  height: 27px;
  width: auto;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  color: var(--lime-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav__links a.active,
.nav__links a:hover {
  color: var(--lime);
}

.site-header.is-light .nav__links a {
  color: var(--forest);
}

.site-header.is-light .nav__links a.active,
.site-header.is-light .nav__links a:hover {
  color: var(--lime-muted);
}

.nav__locale {
  background: transparent;
  border: none;
  border-radius: 15px;
  color: var(--input-placeholder);
  cursor: pointer;
  font-family: Beiruti, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  height: 30px;
  line-height: 30px;
  padding: 0;
  position: relative;
  text-align: center;
  width: 85px;
  transition: color 0.2s ease;
}

.nav__locale::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 0.5px;
  background: linear-gradient(90deg, #8fe860, #9b44e3);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.nav__locale:hover {
  background: #8fe8600f;
  color: var(--lime);
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 18px;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 10001;
}

.nav__hamburger span {
  display: none;
  background: var(--lime);
  height: 2px;
  width: 100%;
  transition: all 0.3s ease;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #000, #1f3a1f);
  z-index: 9999;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}

.nav-mobile.is-open {
  transform: translateX(0);
  visibility: visible;
}

.nav-mobile__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 5rem 2rem 2rem;
}

.nav-mobile__links {
  display: flex;
  flex-direction: column;
  padding-inline-start: 2rem;
}

.nav-mobile__links a {
  color: var(--lime-muted);
  font-size: 27px;
  font-weight: 300;
  line-height: 50px;
  position: relative;
}

.nav-mobile__links a.active {
  color: var(--lime);
}

.nav-mobile__links a.active::before {
  content: "";
  position: absolute;
  inset-inline-start: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 19px;
  background: var(--lime);
  border-radius: 1.5px;
}

/* —— CTAs —— */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: Grift, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
  white-space: nowrap;
}

.cta--primary {
  background: var(--lime);
  color: var(--forest);
  border-radius: 24px;
  height: 48px;
  padding: 0 32px;
  font-size: 17px;
}

.cta--primary:hover {
  background: var(--lime-hover);
  transform: translateY(-2px);
}

.cta--ghost {
  background: transparent;
  color: var(--input-placeholder) !important;
  border-radius: 24px;
  height: 48px;
  padding: 0 32px;
  font-size: 17px;
  position: relative;
}

.cta--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 0.5px;
  background: linear-gradient(270deg, #8fe860, #9b44e3);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta--ghost:hover {
  background: #8fe86014;
  color: var(--lime) !important;
}

.display-title {
  font-family: Boldonse, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.display-title--lime {
  color: var(--lime);
}

/* —— Hero —— */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #000 0%, #1f3a1f);
  overflow: hidden;
  position: relative;
  padding-top: 88px;
}

.hero__shell {
  width: 100%;
  padding: 9rem 4rem 5rem;
  position: relative;
  z-index: 1;
}

.hero__container {
  margin: 0 auto;
  max-width: 112rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__section-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.hero__title {
  color: var(--lime);
  font-family: Boldonse, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 40px;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__subtitle {
  color: var(--lime);
  font-size: 60px;
  font-weight: 300;
  line-height: 20px;
  margin: 0;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__description {
  color: var(--lime-muted);
  font-size: 40px;
  font-weight: 300;
  line-height: 40px;
  margin: 0 auto 1rem;
  max-width: 60rem;
}

.hero__media {
  position: relative;
  width: min(100%, 900px);
  height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  padding: 0.5px;
  background: linear-gradient(270deg, #8fe860, #9b44e3);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero__typed {
  color: var(--lime);
  font-size: clamp(1.5rem, 4vw, 2.9rem);
  font-weight: 100;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero__pay {
  color: var(--lime-muted);
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0 0 1.75rem;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  width: 100%;
}

/* —— Trusted —— */
.trusted {
  background: linear-gradient(180deg, #1f3a1f 0%, #000);
  padding: 2rem 0 3rem;
  overflow: hidden;
}

.trusted__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trusted__title {
  color: var(--bg-light);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 3rem;
}

.trusted__title span {
  color: var(--lime);
}

.trusted__scroll {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trusted__rail {
  display: flex;
  width: max-content;
  animation: trusted-scroll 28s linear infinite;
}

.trusted__group {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
}

.trusted__group img {
  height: 28px;
  width: auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

@keyframes trusted-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* —— Problem / Shift —— */
.problem-shift {
  background: #000;
  color: var(--bg-light);
}

.problem {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 2rem 40px;
  align-items: start;
}

.problem__copy {
  padding-top: 24px;
}

.problem .display-title {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 28px;
}

.problem__lead {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px;
  max-width: 28ch;
  line-height: 1.3;
}

.problem__body {
  color: var(--input-placeholder);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  max-width: 36ch;
}

.problem__stack {
  position: relative;
  min-height: 520px;
}

.problem__card {
  border-radius: 24px;
  overflow: hidden;
  position: absolute;
}

.problem__card--hero {
  width: 58%;
  right: 0;
  top: 0;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.problem__card--hero > img:first-child {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.problem__float {
  position: absolute;
  width: 42%;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.problem__float--cr {
  left: -18%;
  top: 12%;
}

.problem__float--gr {
  left: -10%;
  bottom: 18%;
}

.problem__card--charts {
  left: 0;
  bottom: 8%;
  width: 38%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.problem__card--charts img {
  border-radius: 16px;
  width: 100%;
}

.problem__card--ba {
  width: 48%;
  right: 4%;
  bottom: -4%;
  z-index: 4;
}

.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: #111;
  padding: 6px;
  border-radius: 18px;
}

.ba__half {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.ba__half img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.ba__half span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 600;
}

.shift {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 2rem 80px;
}

.shift .display-title {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 28px;
}

.shift__lead {
  color: #fff;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 300;
  line-height: 1.35;
  margin: 0;
  max-width: 28ch;
}

/* —— System —— */
.system {
  position: relative;
  background: var(--bg-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0 60px;
  overflow: hidden;
}

.system__gear {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
  width: 400px;
  height: 400px;
}

.system__gear--large {
  left: 40%;
  top: 50%;
  margin-left: -280px;
  margin-top: -360px;
  animation: gear-spin 40s linear infinite;
}

.system__gear--small {
  left: 42%;
  top: 39%;
  margin-left: 10px;
  animation: gear-spin-rev 28s linear infinite;
}

@keyframes gear-spin {
  to { transform: rotate(360deg); }
}
@keyframes gear-spin-rev {
  to { transform: rotate(-360deg); }
}

.system__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 55px;
  margin-bottom: 40px;
  padding: 0 20px;
  position: relative;
}

.system__subtitle {
  color: var(--forest);
  font-size: 12px;
  font-weight: 300;
  margin: 0;
}

.system__title {
  color: var(--forest);
  font-family: Boldonse, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

.system__carousel {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  margin-bottom: 40px;
}

.system__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: system-scroll 30s linear infinite;
  padding: 0 20px;
}

.system__card {
  background: var(--forest);
  color: var(--lime);
  border-radius: 24px;
  width: 220px;
  min-height: 280px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  flex-shrink: 0;
}

.system__card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.system__card p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

@keyframes system-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.system__cta {
  position: relative;
  z-index: 1;
}

/* —— Why Vireli —— */
.why {
  background: var(--bg-light);
  padding: 80px 2rem 100px;
}

.why__intro {
  text-align: center;
  margin-bottom: 64px;
}

.why__heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 12px;
}

.why__heading span {
  color: var(--lime);
}

.why__tagline {
  color: var(--forest);
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}

.why__stack {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.why__row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.why__media {
  background: linear-gradient(90deg, #8fe860, #b16cea);
  border-radius: 30px;
  padding: 5px;
}

.why__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 25px;
}

.why__copy h3 {
  font-family: Boldonse, sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  color: var(--forest);
  text-transform: uppercase;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.why__copy p {
  color: var(--forest);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 36ch;
}

/* —— Results —— */
.results {
  background: linear-gradient(180deg, #000 0%, #1f3a1f 55%, #000);
  padding: 100px 0 80px;
  overflow: hidden;
}

.results__intro {
  text-align: center;
  padding: 0 2rem 48px;
}

.results .display-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
}

.results__sub {
  color: var(--lime);
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}

.results__rail-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.results__rail {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: results-scroll 45s linear infinite;
  padding: 0 24px;
}

.result-card {
  width: 340px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 55%, rgba(0, 0, 0, 0.92) 100%),
    var(--bg) center/cover no-repeat;
}

.result-card__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  color: #fff;
}

.result-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
}

.result-card__quote {
  font-size: 15px;
  line-height: 1.45;
  margin: 0 0 16px;
  opacity: 0.95;
}

.result-card__who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
  font-size: 13px;
}

.result-card__who span {
  opacity: 0.7;
}

.result-card__stats {
  display: flex;
  gap: 28px;
}

.result-card__stats div {
  display: flex;
  flex-direction: column;
}

.result-card__stats b {
  font-size: 22px;
  color: var(--lime);
}

.result-card__stats span {
  font-size: 12px;
  opacity: 0.7;
}

@keyframes results-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.results__cta {
  display: flex;
  margin: 48px auto 0;
}

/* —— Plans —— */
.plans {
  background: linear-gradient(180deg, #c8d6c8 0%, #8fe860 100%);
  color: var(--forest);
  padding: 100px 2rem 80px;
  text-align: center;
}

.plans__title {
  font-family: Boldonse, sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 28px;
  line-height: 1.1;
}

.plans__intro p {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 300;
}

.plans__commission {
  font-weight: 500 !important;
  margin-top: 16px !important;
  margin-bottom: 40px !important;
}

.plans__card {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(247, 249, 247, 0.55);
  border-radius: 28px;
  padding: 40px 36px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.plans__card h3 {
  font-family: Boldonse, sans-serif;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.plans__card-lead {
  font-size: 15px;
  font-weight: 300;
  margin: 0 0 24px;
  line-height: 1.5;
}

.plans__card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.plans__card li {
  position: relative;
  padding-left: 18px;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 300;
}

.plans__card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--forest);
}

/* —— Contact —— */
.contact {
  background: linear-gradient(135deg, #6ccf4d 0%, #8fe860 45%, #a3e860 100%);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 2rem;
  text-align: center;
  position: relative;
}

.contact__glitch {
  font-family: Boldonse, sans-serif;
  font-size: clamp(36px, 8vw, 96px);
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(247, 249, 247, 0.92);
  margin: 0 0 48px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.contact__glitch-line {
  display: block;
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(247, 249, 247, 0.95) 0%,
    rgba(247, 249, 247, 0.95) 35%,
    transparent 35%,
    transparent 38%,
    rgba(247, 249, 247, 0.95) 38%,
    rgba(247, 249, 247, 0.95) 52%,
    transparent 52%,
    transparent 56%,
    rgba(247, 249, 247, 0.95) 56%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 0 transparent);
}

.contact__glitch-line::after {
  content: "";
  position: absolute;
  inset: 10% 32% 10% 34%;
  background:
    linear-gradient(180deg, rgba(31, 58, 31, 0.25), transparent),
    url("assets/why-vireli3.webp") center/cover;
  mix-blend-mode: soft-light;
  opacity: 0.55;
  clip-path: polygon(0 0, 8% 0, 8% 100%, 0 100%, 0 0, 18% 0, 22% 0, 22% 100%, 18% 100%, 18% 0, 40% 0, 48% 0, 48% 100%, 40% 100%);
  pointer-events: none;
}

.contact__cta {
  position: relative;
  z-index: 1;
}

/* —— Footer —— */
.footer {
  background: linear-gradient(180deg, #24492a, #214124 34%, #19351d 68%, #112315);
  color: var(--bg-light);
  padding: 60px 2rem 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer__logo {
  color: #fff;
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.footer__logo img {
  height: 56px;
  width: auto;
}

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

.footer__social img {
  width: 32px;
  height: 32px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
}

.footer__divider {
  opacity: 0.6;
}

.footer__copy {
  margin: 0;
  font-size: 12px;
  text-align: center;
}

/* —— Modal —— */
.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: #00000080;
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 480px;
  z-index: 1;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--forest);
  cursor: pointer;
}

.modal__title {
  background: linear-gradient(to right, var(--forest), var(--secondary-50));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.form-row {
  display: flex;
  gap: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  flex: 1;
}

.form-group label {
  font-size: 12px;
  font-weight: 300;
  color: var(--forest);
}

.form-group input,
.form-group select {
  height: 40px;
  border-radius: 16px;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--forest) 0%, var(--secondary-50) 100%) border-box;
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--forest);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--lime) 0%, var(--secondary-50) 100%) border-box;
}

.modal__submit {
  width: 100%;
  margin-top: 8px;
  height: 36px;
  border-radius: 18px;
  font-size: 15px;
}

.modal__success {
  text-align: center;
  padding-top: 24px;
}

.modal__check {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}

.modal__success-main {
  color: var(--forest-deep);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px;
}

.modal__success-sub {
  color: var(--smoke);
  margin: 0 0 24px;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  .problem {
    grid-template-columns: 1fr;
  }

  .problem__stack {
    min-height: 420px;
    margin-top: 24px;
  }

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

  .hero__title {
    font-size: clamp(22px, 5vw, 40px);
    white-space: normal;
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: clamp(20px, 4vw, 36px);
    line-height: 1.2;
    min-height: auto;
  }

  .hero__description {
    font-size: clamp(14px, 2.5vw, 22px);
    line-height: 1.35;
  }

  .hero__cta-group {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero__shell {
    padding: 6rem 1.5rem 3rem;
  }

  .hero__media {
    height: 5rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px;
  }

  .nav {
    padding: 0 1rem;
  }

  .nav__links,
  .nav__locale {
    display: none;
  }

  .nav__hamburger {
    display: flex !important;
  }

  .nav-mobile {
    display: block;
  }

  .nav__hamburger.is-active .nav__hamburger-icon {
    display: none;
  }

  .nav__hamburger.is-active span {
    display: block;
  }

  .nav__hamburger.is-active span:nth-child(2) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__hamburger.is-active span:nth-child(3) {
    opacity: 0;
  }

  .nav__hamburger.is-active span:nth-child(4) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero {
    padding-top: 64px;
  }

  .cta--primary,
  .cta--ghost {
    height: 36px;
    font-size: 12px;
    min-width: 9.8rem;
    padding: 0 1.25rem;
    border-radius: 18px;
  }

  .problem__card--charts {
    display: none;
  }

  .problem__card--hero {
    width: 78%;
    position: relative;
    right: auto;
    margin-left: auto;
  }

  .problem__card--ba {
    width: 70%;
    position: relative;
    right: auto;
    bottom: auto;
    margin: 16px auto 0;
  }

  .problem__stack {
    min-height: 0;
  }

  .problem__float--cr {
    left: -12%;
    width: 48%;
  }

  .problem__float--gr {
    display: none;
  }

  .system__card {
    width: 180px;
    min-height: 240px;
  }

  .footer__logo {
    font-size: 1.35rem !important;
  }

  .footer__logo img {
    height: 22px !important;
  }

  .footer__social img {
    width: 16px;
    height: 16px;
  }

  .form-row {
    flex-direction: column;
  }
}
