:root {
  --bg: #121111;
  --bg-2: #1b1a18;
  --panel: #24221f;
  --panel-2: #2c2925;
  --ink: #f5f0e8;
  --muted: #cbc2b3;
  --soft: #9c9283;
  --line: rgba(245, 240, 232, 0.16);
  --line-strong: rgba(207, 170, 96, 0.35);
  --gold: #cfa960;
  --gold-2: #f0d391;
  --green: #72d49b;
  --red: #ff7777;
  --blue: #78b7ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --font-display: "Clash Display", "General Sans", system-ui, sans-serif;
  --font-body: "General Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% -10%, rgba(207, 169, 96, 0.18), transparent 32rem),
    radial-gradient(circle at 85% 15%, rgba(120, 183, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, #151413 0%, #211f1c 46%, #171615 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: var(--gold);
  color: #14110b;
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: 72px 0;
  position: relative;
}

.section__head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__title,
.hero__title,
.finalcta__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

.section__title {
  font-size: clamp(1.7rem, 3.2vw, 3.05rem);
  line-height: 1.05;
}

.section__intro {
  margin: 12px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 0.98rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 16px;
  color: var(--gold-2);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(207, 169, 96, 0.75);
}

.ic {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #171309;
  box-shadow: 0 12px 32px rgba(207, 169, 96, 0.22);
}

.btn--ghost,
.btn--outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.btn--ghost:hover,
.btn--outline:hover {
  border-color: var(--line-strong);
  background: rgba(207, 169, 96, 0.08);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
}

.btn--lg {
  min-height: 48px;
  padding-inline: 1.08rem;
}

[data-reveal] {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 0.7s ease, translate 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.nav.is-scrolled,
.nav.is-open {
  border-bottom: 1px solid var(--line);
  background: rgba(20, 19, 18, 0.82);
  backdrop-filter: blur(18px);
}

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

.nav__brand {
  display: inline-flex;
  align-items: center;
}

.nav__logo--desktop {
    width: 210px;
    height: 56px;
    object-fit: contain;
}
.nav__logo--mobile {
  display: none;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: rgba(245, 240, 232, 0.78);
  font-size: 0.94rem;
}

.nav__links a {
  position: relative;
  padding: 0.5rem 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 0.2s ease;
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__actions,
.langswitch {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.langswitch {
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.langswitch__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.5rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.langswitch__btn.is-active {
  background: rgba(207, 169, 96, 0.14);
  color: var(--ink);
}

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__burger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobilemenu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 92px 24px 24px;
  background: rgba(20, 19, 18, 0.96);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobilemenu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobilemenu__nav {
  display: grid;
  align-content: center;
}

.mobilemenu__nav a {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 8vw, 3rem);
}

.mobilemenu__nav span,
.mobilemenu__foot p {
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 88px 0 34px;
  overflow: hidden;
}

.hero__bg,
.finalcta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(245, 240, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero__glow {
  position: absolute;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.38;
}

.hero__glow--1 {
  right: -14rem;
  top: 7rem;
  background: rgba(207, 169, 96, 0.35);
}

.hero__glow--2 {
  left: -18rem;
  bottom: -8rem;
  background: rgba(120, 183, 255, 0.18);
}

.hero__glow--4 {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: rgba(207, 169, 96, 0.24);
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 20px;
}

.hero__content {
    max-width: 700px;
    margin-left: -35px;
}

.hero__title {
    max-width: 700px;
    font-size: clamp(2rem, 4.6vw, 4.5rem);
    line-height: 1;
}

.hero__title em {
  color: var(--gold-2);
  font-style: normal;
}

.hero__sub {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
}

.hero__cta,
.finalcta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 22px;
}

.hero__hints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.hero__hints li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.82rem;
}

.hero__hints .ic {
  color: var(--green);
}

.hero__stage,
.experience__stage {
  perspective: 1200px;
}

.hero__device {
  position: relative;
  width: min(100%, 390px);
  margin-inline: auto;
  transform-style: preserve-3d;
}

.phone {
  position: relative;
  width: min(100%, 320px);
  margin-inline: auto;
  border-radius: 42px;
  background: linear-gradient(145deg, #35373d, #09090a 45%, #292a2f);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  padding: 11px;
}

.phone--hero {
  width: 276px;
  transform: rotateX(7deg) rotateY(-11deg) rotateZ(3deg);
}

.phone--demo {
  width: 330px;
}

.phone__frame {
  position: relative;
  min-height: 548px;
  overflow: hidden;
  border-radius: 34px;
  background: #0d0e10;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone__island {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 4;
  width: 86px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #070708;
}

.phone__screen {
  min-height: 548px;
  padding: 20px 14px 16px;
  background:
    radial-gradient(circle at 70% 0%, rgba(207, 169, 96, 0.2), transparent 44%),
    linear-gradient(180deg, #141519, #08090b);
}

.heroapp__status,
.app__status {
  display: flex;
  justify-content: space-between;
  color: rgba(245, 240, 232, 0.86);
  font-size: 0.72rem;
  font-weight: 700;
}

.heroapp__status-ic {
  display: flex;
  align-items: end;
  gap: 2px;
}

.heroapp__status-ic i {
  width: 3px;
  border-radius: 2px;
  background: currentColor;
}

.heroapp__status-ic i:nth-child(1) { height: 6px; }
.heroapp__status-ic i:nth-child(2) { height: 8px; }
.heroapp__status-ic i:nth-child(3) { height: 10px; }

.heroapp__head,
.app__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.heroapp__hi,
.app__kicker {
  margin: 0;
  color: var(--soft);
  font-size: 0.78rem;
}

.heroapp__name,
.app__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1;
}

.heroapp__avatar,
.app__avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #775b2b);
  color: #130f07;
  font-weight: 800;
}

.heroapp__card,
.dashcard,
.summ,
.ticket {
  margin-top: 15px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.heroapp__card-label,
.dashcard p {
  margin: 0;
  color: var(--soft);
  font-size: 0.8rem;
}

.heroapp__card-value {
  margin: 4px 0 12px;
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
}

.heroapp__spark {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 8px;
  height: 54px;
}

.heroapp__spark span {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.heroapp__row,
.metricrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.heroapp__mini,
.metric {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.heroapp__mini p,
.metric span {
  margin: 6px 0 0;
  color: var(--soft);
  font-size: 0.72rem;
}

.heroapp__mini b,
.metric b {
  display: block;
  font-size: 1rem;
}

.heroapp__list,
.orderlist,
.progresslist {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.heroapp__list li,
.progresslist li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(245, 240, 232, 0.86);
  font-size: 0.78rem;
}

.heroapp__list b {
  margin-left: auto;
  color: var(--soft);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot--live { background: var(--green); }
.dot--dev { background: var(--blue); }
.dot--plan { background: var(--gold); }

.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.68rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 15, 17, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero__chip--top {
  right: -26px;
  top: 76px;
}

.hero__chip--bottom {
  left: -26px;
  bottom: 95px;
}

.hero__chip-ic,
.fc__ic,
.service__ic,
.product__mark,
.why__ic {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(207, 169, 96, 0.15);
  color: var(--gold-2);
}

.hero__chip-ic--green {
  background: rgba(114, 212, 155, 0.14);
  color: var(--green);
}

.hero__chip b,
.hero__chip small {
  display: block;
}

.hero__chip small {
  color: var(--soft);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 28px;
  height: 44px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 9px auto;
  border-radius: 999px;
  background: var(--gold);
  animation: scrollDot 1.7s ease-in-out infinite;
}

@keyframes scrollDot {
  50% { transform: translateY(14px); opacity: 0.45; }
}

.partners {
  padding: 24px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.partners__title {
  margin: 0 0 18px;
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-align: center;
  text-transform: uppercase;
}

.partners__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.partners__track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: marquee 30s linear infinite;
}

.plogo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 170px;
  justify-content: center;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(245, 240, 232, 0.6);
  font-family: var(--font-display);
  font-size: 1.15rem;
  filter: none;
}

.plogo i {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-style: normal;
  text-transform: uppercase;
}

.plogo__logo {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  object-fit: contain;
  filter: none;
}

@keyframes marquee {
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

.intro {
  padding: 72px 0;
}

.intro__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: start;
}

.intro__lead h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.35rem);
  line-height: 1.05;
}

.intro__body p {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.stat {
  min-height: 96px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.stat__num {
  margin: 0;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
}

.stat__label {
  margin: 9px 0 0;
  color: var(--soft);
  font-size: 0.86rem;
}

.services__grid,
.products__grid,
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing__grid,
.pricegrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.service,
.product,
.price,
.tcard,
.bcard,
.pstep {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.service,
.product,
.price,
.tcard {
  padding: 18px;
}

.service {
  min-height: 198px;
  display: flex;
  flex-direction: column;
}

.service::before,
.product::before,
.price--feature::before,
.bcard::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 20% 0%, rgba(207, 169, 96, 0.18), transparent 42%);
  transition: opacity 0.2s ease;
}

.service:hover::before,
.product:hover::before,
.price--feature::before,
.bcard:hover::before {
  opacity: 1;
}

.service h3,
.product h3,
.price__name,
.bcard h3,
.pstep h3 {
  position: relative;
  margin: 16px 0 7px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.08;
}

.service p,
.product p,
.price__list,
.bcard p,
.pstep p,
.tcard blockquote {
  position: relative;
  color: var(--muted);
}

.service__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  color: var(--gold-2);
  font-weight: 700;
}

.services__extra {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 18px;
}

.services__extra span,
.tag,
.badge,
.bcard__tag,
.price__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.78rem;
}

.product {
  min-height: 300px;
}

.product__top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.product__mark {
  font-weight: 900;
}

.product__features {
  position: relative;
  padding: 0;
  margin: 16px 0;
  list-style: none;
}

.product__features li,
.price__list li {
  padding: 0.45rem 0;
  color: rgba(245, 240, 232, 0.82);
}

.product__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product--soon {
  background: linear-gradient(180deg, rgba(120, 183, 255, 0.08), rgba(255, 255, 255, 0.025));
}

.experience {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(207, 169, 96, 0.035));
}

.experience__layout,
.experience__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.experience__side p {
  color: var(--muted);
}

.appswitch {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.appswitch__btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  text-align: left;
}

.appswitch__mark {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(207, 169, 96, 0.14);
  color: var(--gold-2);
  font-family: var(--font-mono);
  font-weight: 800;
}

.appswitch__txt {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.appswitch__txt b {
  color: var(--ink);
  font-size: 0.98rem;
}

.appswitch__txt small {
  display: block;
  margin-top: 3px;
  color: var(--soft);
  font-size: 0.8rem;
}

.appswitch__arrow {
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: var(--soft);
  transition: transform 0.2s ease, color 0.2s ease;
}

.appswitch__btn.is-active {
  border-color: var(--line-strong);
  background: rgba(207, 169, 96, 0.1);
  box-shadow: inset 3px 0 0 var(--gold);
}

.appswitch__btn:hover .appswitch__arrow,
.appswitch__btn.is-active .appswitch__arrow {
  transform: translateX(3px);
  color: var(--gold-2);
}

.experience__side {
  width: 100%;
  max-width: 460px;
}

.experience__side-label {
  margin: 0;
  color: var(--gold-2) !important;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience__hint {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.experience__hint .ic {
  margin-top: 0.15rem;
  color: var(--green);
}

.experience__hint p {
  margin: 0;
  font-size: 0.88rem;
}

.experience__stage {
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: center;
  width: 100%;
  max-width: 480px;
}

.experience__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 14px;
  padding: 0.42rem 0.68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.experience__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(114, 212, 155, 0.7);
}

.app {
  display: none;
  min-height: 548px;
  color: var(--ink);
}

.app.is-active {
  display: flex;
  flex-direction: column;
}

.app__body {
  position: relative;
  flex: 1;
  margin-top: 16px;
  overflow: hidden;
}

.scr {
  display: none;
  animation: screenIn 0.24s ease;
}

.scr.is-active {
  display: block;
}

@keyframes screenIn {
  from { opacity: 0; transform: translateX(10px); }
}

.scr__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 14px;
  border: 0;
  background: transparent;
  color: var(--gold-2);
  cursor: pointer;
  font-weight: 800;
}

.ordercard,
.pickrow,
.game {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  text-align: left;
}

.ordercard small,
.pickrow span,
.game small {
  color: var(--soft);
}

.app__cta {
  width: 100%;
  margin-top: 14px;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #171309;
  cursor: pointer;
  font-weight: 900;
}

.app__cta:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.app__cta--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.protocar {
  position: relative;
  height: 152px;
  margin: 10px 0 14px;
  border: 1px dashed rgba(245, 240, 232, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at center, rgba(245, 240, 232, 0.09), transparent 58%),
    linear-gradient(90deg, transparent 18%, rgba(207, 169, 96, 0.12) 18% 82%, transparent 82%);
  cursor: crosshair;
}

.damage-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border: 2px solid #210b0b;
  border-radius: 50%;
  background: var(--red);
}

.check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 9px 0;
  color: var(--muted);
}

.check input {
  accent-color: var(--gold);
}

.siglane,
.counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 10px 0;
}

.siglane__btn,
.counter button,
.slots button,
.dayc,
.quizopts button,
.flashnav button {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.siglane__btn {
  padding: 0.45rem 0.6rem;
}

.done {
  display: grid;
  place-items: center;
  min-height: 300px;
  text-align: center;
}

.done__ic {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(114, 212, 155, 0.15);
  color: var(--green);
}

.done h3 {
  margin: 18px 0 4px;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.done__sub {
  margin: 0;
  color: var(--muted);
}

.tabbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.tabbar__i {
  display: grid;
  justify-items: center;
  gap: 3px;
  min-height: 50px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  font-size: 0.65rem;
}

.tabbar__i .ic {
  width: 18px;
  height: 18px;
}

.tabbar__i.is-active {
  background: rgba(207, 169, 96, 0.14);
  color: var(--gold-2);
}

.chips,
.slots,
.quizopts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.dayc,
.slots button,
.quizopts button {
  min-height: 42px;
  padding: 0.55rem;
}

.dayc.is-active,
.slots button.is-active,
.quizopts button.is-picked {
  border-color: var(--line-strong);
  background: rgba(207, 169, 96, 0.13);
}

.summ__row,
.ticket__total {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.summ__row--total,
.ticket__total {
  color: var(--gold-2);
  border-bottom: 0;
}

.flash {
  width: 100%;
  min-height: 210px;
  border: 0;
  background: transparent;
  perspective: 900px;
  cursor: pointer;
}

.flash__inner {
  position: relative;
  min-height: 210px;
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.flash.is-flipped .flash__inner {
  transform: rotateY(180deg);
}

.flash__face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  backface-visibility: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
}

.flash__face p {
  margin: 8px 0;
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.06;
}

.flash__face span,
.flash__face small,
.quizfeed {
  color: var(--soft);
}

.flash__back {
  transform: rotateY(180deg);
}

.flashnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.flashnav button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
}

.quizbar {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.quizbar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transition: width 0.25s ease;
}

.quizq,
.ticket__match {
  margin: 14px 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.12;
}

.progressbar {
  display: block;
  height: 8px;
  margin-top: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progressbar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.counter button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  font-size: 1.3rem;
}

.counter div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 145px;
  gap: 16px;
}

.bcard {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 18px;
  background:
    radial-gradient(circle at 75% 18%, rgba(207, 169, 96, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.035);
}

.bcard--lg {
  grid-column: span 2;
  grid-row: span 2;
}

.bcard--tall {
  grid-row: span 2;
}

.bcard h3 {
  margin-top: 12px;
}

.bcard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pricing__grid,
.pricegrid {
  align-items: stretch;
}

.price {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
}

.price--feature {
  border-color: var(--line-strong);
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(207, 169, 96, 0.1), rgba(255, 255, 255, 0.035));
}

.price__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-2);
}

.price__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.price__flag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 0.3rem 0.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(18, 17, 17, 0.82);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price__badge {
  color: var(--gold-2);
  border-color: var(--line-strong);
}

.price__name {
  min-height: 2.35em;
  padding-right: 0.2rem;
}

.price--feature .price__name {
  padding-right: 4rem;
}

.price__val {
  min-height: 3.1rem;
  margin: 10px 0 16px;
  color: var(--muted);
}

.price__val b {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2rem);
  white-space: nowrap;
}

.price__val small {
  white-space: nowrap;
}

.price__list {
  flex: 1;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.price__list li {
  position: relative;
  padding: 0.43rem 0 0.43rem 1.05rem;
  font-size: 0.88rem;
}

.price__list li::before {
  content: "";
  position: absolute;
  top: 0.83rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(207, 169, 96, 0.45);
}

.price > .btn {
  position: relative;
  margin-top: auto;
}

.pricing__note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.pricing__note p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.process__scroller {
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
}

.process__scroller::-webkit-scrollbar {
  display: none;
}

.process__track {
  display: grid;
  grid-template-columns: repeat(7, minmax(220px, 1fr));
  gap: 14px;
  min-width: 1600px;
}

.pstep {
  padding: 18px;
  min-height: 198px;
}

.pstep__no {
  color: rgba(207, 169, 96, 0.42);
  font-family: var(--font-display);
  font-size: 3.45rem;
  line-height: 0.82;
}

.why {
  background: rgba(255, 255, 255, 0.025);
}

.why__inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
}

.why__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.why__list li {
  display: flex;
  gap: 0.85rem;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.why__list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}


.tcard__stars {
  color: var(--gold-2);
  letter-spacing: 0;
}

.tcard {
  margin: 0;
}

.tcard blockquote {
  margin: 14px 0 18px;
  font-size: 0.94rem;
}

.tcard__foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tcard__ava {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(207, 169, 96, 0.14);
  color: var(--gold-2);
  font-weight: 900;
}

.tcard__who small {
  display: block;
  color: var(--soft);
}

.testimonials__controls,
.testimonials__dots {
  display: none;
}

.faq__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.faq__search .ic {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.5;
}

.faq__search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.faq__search button {
  border: 0;
  background: transparent;
  color: var(--gold-2);
  cursor: pointer;
}

.faq__empty {
  color: var(--muted);
}

.faq__contactbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq__contact-help,
.faq__contact-phone {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq__contactbar .ic {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.5;
}

.faq__inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
}

.faq__list {
  display: grid;
  gap: 10px;
}

.qa {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 15px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.qa__ic {
  width: 18px;
  height: 18px;
  position: relative;
  flex: none;
}

.qa__ic::before,
.qa__ic::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  background: var(--gold);
}

.qa__ic::after {
  transform: rotate(90deg);
}

.qa[open] .qa__ic::after {
  transform: rotate(0);
}

.qa__a {
  padding: 0 15px 15px;
  color: var(--muted);
}

.qa__a p {
  margin: 0;
}

.finalcta {
  position: relative;
  padding: 86px 0;
  overflow: hidden;
  text-align: center;
}

.finalcta__inner {
  position: relative;
  display: grid;
  justify-items: center;
}

.finalcta__title {
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.05;
}

.finalcta__sub {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1rem;
}

.finalcta__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 22px;
}

.finalcta__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
}

.fc__ic {
  width: 34px;
  height: 34px;
}

.footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--line);
  background: #121111;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 34px;
}

.footer__logo {
  width: 150px;
}

.footer__brand p {
  max-width: 360px;
  color: var(--muted);
}

.footer__social {
  display: flex;
  gap: 0.5rem;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

.footer__h {
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 900;
}

.footer__col {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer__col a,
.footer__legal a,
.footer__legal button,
.footer__bottom {
  color: var(--soft);
}

.footer__legal button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  width: min(520px, calc(100% - 36px));
}

.cookie__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 12, 14, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie p b {
  color: var(--ink);
}

.cookie__btns {
  display: flex;
  flex: none;
  gap: 0.5rem;
}

@media (min-width: 1051px) {
  body {
    background: #f1eee9;
  }

  .nav {
    color: #171719;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .nav.is-scrolled,
  .nav.is-open {
    border-bottom-color: rgba(20, 20, 20, 0.08);
    background: rgba(238, 234, 228, 0.82);
  }

  .nav__inner {
    width: min(1560px, calc(100% - 120px));
    min-height: 98px;
    position: relative;
  }

  .nav__logo--desktop {
    width: 330px;
    height: 86px;
    margin: -14px 0;
  }

  .nav__actions {
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav__links {
    gap: 2.35rem;
    color: #171719;
    font-size: 0.96rem;
    font-weight: 500;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .langswitch {
    border: 0;
    background: transparent;
  }

  .langswitch__btn {
    padding: 0.2rem 0.12rem;
    color: rgba(23, 23, 25, 0.48);
  }

  .langswitch__btn svg {
    display: none;
  }

  .langswitch__btn + .langswitch__btn::before {
    content: "|";
    margin-right: 0.42rem;
    color: rgba(23, 23, 25, 0.28);
  }

  .langswitch__btn.is-active {
    background: transparent;
    color: #171719;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .nav__cta {
    min-width: 184px;
    min-height: 50px;
    border-radius: 5px;
    background: #151517;
    color: #f8f4ee;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  }

  .nav__cta::after {
    content: "→";
    margin-left: 0.65rem;
    color: #b58d4d;
    font-size: 1.35rem;
    line-height: 1;
  }

  .hero {
    min-height: 900px;
    height: 100vh;
    max-height: 940px;
    padding: 98px 0 0;
    background: #f1eee9 url("../img/hero_background_desktop.png") center top / 100% 100% no-repeat;
    color: #171719;
  }

  .hero__bg,
  .hero__grid,
  .hero__glow {
    display: none;
  }

  .hero__inner {
    width: 100%;
    max-width: none;
    height: calc(100% - 98px);
    display: block;
  }

  .hero__copy {
    position: absolute;
    left: max(8.2vw, 112px);
    top: -2%;
    z-index: 2;
    width: 900px;
  }

  .hero .eyebrow {
    display: block;
    margin: 0 0 27px;
    color: #b38b4d;
    font-family: var(--font-mono);
    font-size: 0.96rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .hero .eyebrow__dot {
    display: none;
  }

  .hero__title {
    color: #19191b;
    font-family: "Orbitron", "Audiowide", "Rajdhani", var(--font-display);
    font-size: clamp(2.65rem, 3.05vw, 5.1rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.34);
  }

  .hero__title::after {
    content: "";
    display: block;
    width: 58px;
    height: 1px;
    margin-top: 31px;
    background: #b38b4d;
  }

  .hero__sub {
    width: 555px;
    margin-top: 31px;
    color: #202022;
    font-size: 1.08rem;
    line-height: 1.58;
    font-weight: 400;
  }

  .hero__cta {
    gap: 24px;
    margin-top: 38px;
  }

  .hero__cta .btn {
    min-width: 184px;
    min-height: 56px;
    border-radius: 5px;
    padding: 0 22px;
    font-size: 0.96rem;
    font-weight: 500;
  }

  .hero__cta .btn--gold {
    background: #151517;
    color: #f8f4ee;
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.16);
  }

  .hero__cta .btn--gold .ic,
  .hero__cta .btn--ghost .ic {
    color: #b38b4d;
    width: 20px;
    height: 20px;
    stroke-width: 1.7;
  }

  .hero__cta .btn--ghost {
    border-color: rgba(23, 23, 25, 0.13);
    background: rgba(242, 239, 234, 0.42);
    color: #171719;
    box-shadow: none;
  }

  .hero__stage {
    position: absolute;
    top: -35px;
    right: 26%;
    z-index: 3;
    width: clamp(300px, 18vw, 365px);
    height: 610px;
    pointer-events: none;
  }

  .hero__stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/hero_handy_mockup.png") 57.7% 0 / 1100px auto no-repeat;
  }

  .hero__device {
    display: none;
  }

  .hero__hints {
    position: absolute;
    left: max(8.2vw, 112px);
    right: auto;
    width: min(60vw, 1000px);
    bottom: 58px;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .hero__hints li {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: start;
    gap: 18px;
    min-height: 80px;
    padding: 0 34px 0 0;
    border: 0;
    border-right: 1px solid rgba(23, 23, 25, 0.13);
    border-radius: 0;
    background: transparent;
    color: #171719;
    font-size: 0.82rem;
  }

  .hero__hints li:last-child {
    border-right: 0;
  }

  .hero__hints .ic {
    width: 24px;
    height: 24px;
    color: #b38b4d;
    stroke-width: 1.6;
  }

  .hero__hints b,
  .hero__hints small {
    display: block;
  }

  .hero__hints b {
    margin-bottom: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .hero__hints small {
    max-width: 230px;
    color: #202022;
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .hero__scroll {
    left: auto;
    right: 8.2vw;
    bottom: 47px;
    display: flex;
    align-items: center;
    gap: 34px;
    width: auto;
    height: 96px;
    transform: none;
    border: 0;
    color: #171719;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .hero__scroll::after {
    content: "";
    width: 1px;
    height: 96px;
    background: rgba(179, 139, 77, 0.52);
  }

  .hero__scroll span {
    position: absolute;
    right: -3px;
    top: 43px;
    width: 7px;
    height: 7px;
    margin: 0;
    border-radius: 50%;
    background: #b38b4d;
    animation: none;
  }
  body {
    --ink: #171719;
    --soft: #4d4842;
    --muted: #625d56;
    --line: rgba(23, 23, 25, 0.12);
    --surface: #f1eee9;
    --surface-2: #ebe7e1;
    background: #f1eee9;
    color: #171719;
  }

  .partners,
  .intro,
  .section,
  .why,
  .testimonials,
  .faq {
    background: #f1eee9;
    color: #171719;
  }

  .partners__title,
  .section__intro,
  .intro__body p,
  .stat__label,
  .why__list small,
  .tcard__who small,
  .finalcta__sub,
  .finalcta__contact a {
    color: #625d56;
  }

  .partners,
  .plogo,
  .stats,
  .stat,
  .service,
  .product,
  .pricing__card,
  .why__list li,
  .tcard,
  .qa {
    border-color: rgba(23, 23, 25, 0.12);
    background: rgba(255, 255, 255, 0.34);
    color: #171719;
  }

  .plogo {
    color: rgba(23, 23, 25, 0.58);
  }

  .section__title,
  .intro__lead h2,
  .service h3,
  .product h3,
  .pricing__card h3,
  .why__list b,
  .tcard blockquote,
  .qa summary {
    color: #171719;
  }

  .footer {
    background: #171719;
  }

  .intro {
    min-height: 67.5vh;
    height: 67.5vh;
    padding: 72px 0 48px;
    background: #f1eee9 url("../img/about_us.png") left center / contain no-repeat;
  }

  .intro__inner {
    width: min(1320px, calc(100% - 220px));
    grid-template-columns: 0.95fr 1.05fr;
    gap: 88px;
    align-items: start;
  }

  .intro > .container:not(.intro__inner) {
    width: min(1320px, calc(100% - 220px));
  }

  .intro__lead .eyebrow {
    margin-bottom: 58px;
    font-size: clamp(0.62rem, 0.7vw, 0.78rem);
  }

  .intro__lead h2 {
    width: 470px;
    max-width: 100%;
    color: #171719;
    font-family: "Orbitron", "Audiowide", "Rajdhani", var(--font-display);
    font-size: clamp(1.7rem, 2vw, 2.4rem);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: 0.04em;
    white-space: normal;
    text-transform: uppercase;
  }

  .intro__lead h2::after {
    content: "";
    display: block;
    width: 68px;
    height: 1px;
    margin-top: 48px;
    background: #b38b4d;
  }

  .intro__body {
    padding-top: 42px;
  }

  .intro__body p {
    max-width: 500px;
    margin: 0 0 34px;
    color: #393631;
    font-family: "Manrope", "General Sans", Arial, sans-serif !important;
    font-size: clamp(0.92rem, 1vw, 1.08rem);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0;
  }

  .intro__body strong {
    color: #171719;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin-top: 30px;
    border: 1px solid rgba(120, 108, 95, 0.26);
    border-radius: 9px;
    background: rgba(250, 248, 244, 0.52);
    box-shadow: 0 8px 30px rgba(106, 94, 80, 0.05);
  }

  .stat {
    min-height: 104px;
    padding: 24px 28px;
    background: rgba(255, 253, 249, 0.42);
    border-right: 1px solid rgba(120, 108, 95, 0.2);
  }

  .stat:last-child {
    border-right: 0;
  }

  .stat__num {
    font-size: clamp(1.35rem, 1.8vw, 2.15rem);
    font-weight: 400;
    letter-spacing: 0.01em;
  }

  .stat__label {
    margin-top: 14px;
    color: #393631;
    font-family: "Clash Display", "General Sans", sans-serif;
    font-size: clamp(0.72rem, 0.8vw, 0.92rem);
    font-weight: 400;
    line-height: 1.3;
  }

  .services {
    padding: 48px 0 38px;
    background: #f1eee9;
  }

  .services > .container {
    width: min(1165px, calc(100% - 160px));
  }

  .services .section__head {
    max-width: 900px;
    margin-bottom: 18px;
  }

  .services .section__head .eyebrow {
    margin-bottom: 16px;
  }

  .services .section__title {
    max-width: 850px;
    color: #171719;
    font-family: "Manrope", "General Sans", sans-serif;
    font-size: clamp(2rem, 2.7vw, 3.1rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.12;
  }

  .services .section__intro {
    max-width: 590px;
    margin-top: 11px;
    color: #625d56;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .services .service {
    min-height: 150px;
    padding: 15px;
    border: 1px solid rgba(120, 108, 95, 0.2);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.48);
    color: #171719;
    box-shadow: 0 8px 28px rgba(106, 94, 80, 0.035);
  }

  .services .service__ic {
    position: absolute;
    top: 15px;
    left: 15px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: #f4ecdd;
    color: #c18d37;
  }

  .services .service__ic .ic {
    width: 24px;
    height: 24px;
  }

  .services .service h3 {
    margin: 1px 0 8px 50px;
    color: #171719;
    font-family: "Manrope", "General Sans", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
  }

  .services .service p {
    margin: 0;
    color: #625d56;
    font-family: "Manrope", "General Sans", sans-serif;
    font-size: 0.7rem;
    line-height: 1.7;
  }

  .services .service__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
    color: #bd8731;
    font-size: 0.72rem;
    font-weight: 700;
  }

  .services .service__link .ic {
    width: 19px;
    height: 19px;
  }

  .services__extra {
    display: grid;
    grid-template-columns: 125px 1fr;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
    padding: 14px 20px;
    border: 1px solid rgba(120, 108, 95, 0.2);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.48);
  }

  .services__extra > span {
    color: #bd8731;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .services__extra ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #393631;
    font-size: 0.7rem;
  }

  .products {
    position: relative;
    padding: 48px 0 30px;
    background: #f1eee9 url("../img/self_software.png") center 62% / cover no-repeat;
  }

  .products > .container {
    width: min(1070px, calc(100% - 160px));
  }

  .products .section__head {
    max-width: 670px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
    transform: translate(-15px, -30px);
  }

  .products .section__head .eyebrow {
    margin-bottom: 14px;
    color: #b18342;
    font-size: 0.72rem;
    font-weight: 500;
  }

  .products .section__title {
    color: #171719;
    font-family: "Orbitron", "Audiowide", "Rajdhani", var(--font-display);
    font-size: clamp(1.6rem, 2.2vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-transform: uppercase;
  }

  .products .section__intro {
    max-width: 480px;
    margin-top: 13px;
    color: #393631;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.65;
    text-shadow: 0 1px 12px rgba(255, 252, 245, 0.8);
  }

  .products .product h3,
  .products .product p,
  .products .product li,
  .products .product a,
  .products .product span {
    font-family: "Manrope", "General Sans", Arial, sans-serif;
  }

  .products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
  }

  .products .product {
    min-height: 282px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 10px;
    background: none !important;
    box-shadow: none;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
  }

  .products .product::before {
    display: none;
  }

  .products .product__media {
    position: relative;
    min-height: 60px;
    padding: 13px 18px 0;
    background: transparent;
  }

  .products .product__media .tag,
  .products .product__soon .tag {
    border-color: rgba(183, 139, 72, 0.58);
    background: rgba(255, 252, 245, 0.28);
    color: #b18342;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.63rem;
    font-weight: 500;
  }

  .products .product__badge {
    position: absolute;
    top: 44px;
    left: 18px;
    color: #6d665d;
    font-size: 0.7rem;
  }

  .products .product__logo {
    position: absolute;
    top: 24px;
    right: 18px;
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .products .product__body {
    padding: 9px 18px 14px;
  }

  .products .product h3,
  .products .product--soon h3 {
    margin: 0 0 9px;
    color: #171719;
    font-family: "Manrope", "General Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .products .product__desc,
  .products .product--soon p {
    color: #393631;
    font-family: "Manrope", "General Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    line-height: 1.65;
  }

  .products .product__feats {
    margin: 11px 0 14px;
    padding-left: 15px;
    color: #393631;
    font-size: 0.7rem;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.65;
  }

  .products .product__feats li::marker {
    color: #b18342;
  }

  .products .product .btn--outline {
    border-color: rgba(183, 139, 72, 0.68);
    color: #171719;
    background: rgba(255, 252, 245, 0.26);
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    min-height: 38px;
    font-size: 0.68rem;
    font-weight: 600;
  }

  .products .product--soon {
    display: flex;
    align-items: stretch;
  }

  .products .product:nth-child(1) {
    transform: translateX(-34px);
  }

  .products .product:nth-child(2) {
    transform: translateX(15px);
  }

  .products .product:nth-child(3) {
    transform: translateX(55px);
  }

  .products .product__soon {
    width: 100%;
    padding: 21px 25px;
  }

  .products__cta {
    display: flex;
    justify-content: center;
    margin-top: 18px;
  }

  .products__cta .btn {
    min-width: 250px;
    min-height: 42px;
    font-size: 0.76rem;
  }


  .products .product,
  .products .product * {
    font-family: "General Sans", Arial, sans-serif !important;
  }

  .products .product h3 {
    font-size: 1rem;
    font-weight: 700;
  }

  .products .product p,
  .products .product li {
    font-size: 0.72rem;
    font-weight: 400;
    line-height: 1.65;
  }

  .projects {
    padding: 34px 0 24px;
    background: #f1eee9;
  }

  .projects > .container {
    width: min(1370px, calc(100% - 160px));
  }

  .projects .section__head {
    margin-bottom: 14px;
  }

  .projects .section__title {
    color: #171719;
    font-family: "Manrope", "General Sans", sans-serif;
    font-size: clamp(1.7rem, 2.45vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.1;
  }

  .projects .section__intro {
    margin-top: 9px;
    color: #625d56;
    font-family: "Manrope", "General Sans", sans-serif;
    font-size: 0.92rem;
  }

  .projects .bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .projects .bcard {
    display: flex;
    min-height: 205px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(120, 108, 95, 0.2);
    border-radius: 9px;
    background: rgba(255, 253, 249, 0.48);
    color: #171719;
    box-shadow: 0 8px 24px rgba(106, 94, 80, 0.045);
  }

  .projects .bcard--lg {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 225px;
  }

  .projects .bcard:not(.bcard--lg) {
    grid-row: auto;
  }

  .projects .bcard__mock {
    min-height: 140px;
    background: #e6e0d7;
  }

  .projects .bcard--lg .bcard__mock {
    min-height: 225px;
  }


  .projects .bcard__body {
    display: flex;
    flex-direction: column;
    padding: 18px 20px 14px;
  }

  .projects .bcard__meta {
    color: #625d56;
    font-family: "Manrope", "General Sans", sans-serif;
    font-size: 0.72rem;
  }

  .projects .bcard h3 {
    margin: 11px 0 8px;
    color: #171719;
    font-family: "Manrope", "General Sans", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
  }

  .projects .bcard p {
    margin: 0;
    color: #625d56;
    font-family: "Manrope", "General Sans", sans-serif;
    font-size: 0.7rem;
    line-height: 1.6;
  }

  .projects .bcard__tech {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
    padding-top: 12px;
  }

  .projects .bcard__tech span {
    padding: 5px 9px;
    border: 1px solid rgba(120, 108, 95, 0.2);
    border-radius: 6px;
    color: #625d56;
    font-size: 0.65rem;
  }

  .projects .bcard__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 11px;
    color: #171719;
    font-family: "Manrope", "General Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
  }

  .projects .bcard__link .ic {
    width: 18px;
    height: 18px;
    color: #bd8731;
  }

  .projects__cta {
    display: flex;
    justify-content: center;
    margin-top: 22px;
  }

  .projects__cta .btn {
    min-width: 220px;
  }

  .testimonials {
    position: relative;
    height: 600px;
    min-height: 600px;
    padding: 42px 0 0;
    overflow: hidden;
    background: #f2eee8 url("../img/bewertung_background.png") center calc(100% + 75px) / cover no-repeat;
    color: #171719;
  }

  .testimonials > .container {
    position: relative;
    width: min(1300px, calc(100% - 120px));
    height: 100%;
  }

  .testimonials .section__head {
    max-width: 620px;
    margin: 0;
  }

  .testimonials .eyebrow {
    margin-bottom: 17px;
    color: #b18342;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.11em;
  }

  .testimonials .section__title {
    color: #171719;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: clamp(2rem, 2.5vw, 2.6rem);
    font-weight: 750;
    letter-spacing: -0.045em;
    line-height: 1.04;
  }

  .testimonials .section__intro {
    margin-top: 14px;
    color: #625d56;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .testimonials__controls {
    position: absolute;
    top: 309px;
    right: -70px;
    left: -70px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }

  .testimonials__controls button {
    display: grid;
    width: 54px;
    height: 54px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(194, 141, 56, 0.34);
    border-radius: 50%;
    background: rgba(250, 247, 241, 0.7);
    color: #bd8731;
    font-family: Arial, sans-serif;
    font-size: 1.55rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
  }

  .testimonials .tgrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 30px;
  }

  .testimonials .tcard {
    display: flex;
    height: 250px;
    margin: 0;
    padding: 30px 28px 26px;
    flex-direction: column;
    border: 1px solid rgba(110, 99, 86, 0.18);
    border-radius: 9px;
    background: rgba(255, 253, 249, 0.78);
    box-shadow: 0 12px 30px rgba(61, 49, 36, 0.06);
    color: #171719;
    backdrop-filter: blur(2px);
  }

  .testimonials .tcard__stars {
    color: #bd8731;
    font-family: Georgia, serif;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    line-height: 1;
  }

  .testimonials .tcard blockquote {
    margin: 22px 0 16px;
    color: #292725;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.86rem;
    font-weight: 450;
    line-height: 1.55;
  }

  .testimonials .tcard__foot {
    gap: 14px;
    margin-top: auto;
  }

  .testimonials .tcard__ava {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    background: rgba(194, 141, 56, 0.1);
    color: #b9822d;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
  }

  .testimonials .tcard__who b {
    color: #171719;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.84rem;
    font-weight: 750;
  }

  .testimonials .tcard__who small {
    margin-top: 3px;
    color: #625d56;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.72rem;
  }

  .testimonials__dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
  }

  .testimonials__dots span {
    width: 22px;
    height: 4px;
    border-radius: 999px;
    background: rgba(179, 139, 77, 0.22);
  }

  .testimonials__dots .is-active {
    width: 38px;
    background: #c18d37;
  }

  .faq {
    padding: 44px 0 34px;
    background: #f4f1ec;
    color: #171719;
  }

  .faq .faq__inner {
    display: block;
    width: min(1420px, calc(100% - 120px));
  }

  .faq .section__head {
    max-width: 620px;
    margin: 0;
  }

  .faq .eyebrow {
    margin-bottom: 17px;
    color: #b18342;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.11em;
  }

  .faq .section__title {
    color: #171719;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: clamp(2.3rem, 3vw, 3.25rem);
    font-weight: 750;
    letter-spacing: -0.05em;
    line-height: 1.02;
  }

  .faq .section__title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    margin-top: 24px;
    background: #c18d37;
  }

  .faq .section__intro {
    max-width: 500px;
    margin-top: 22px;
    color: #46423e;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .faq__search {
    width: 100%;
    height: 48px;
    margin: 26px 0 16px;
    padding: 0 18px;
    border-color: rgba(110, 99, 86, 0.17);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 22px rgba(61, 49, 36, 0.025);
  }

  .faq__search input {
    color: #171719;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.84rem;
  }

  .faq__search input::placeholder {
    color: #8a837a;
  }

  .faq__search button {
    width: 30px;
    height: 30px;
    font-size: 1.25rem;
  }

  .faq .faq__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    gap: 10px 50px;
  }

  .faq .qa {
    min-width: 0;
    border: 1px solid rgba(110, 99, 86, 0.17);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.27);
    box-shadow: none;
    color: #171719;
  }

  .faq .qa summary {
    display: grid;
    min-height: 66px;
    grid-template-columns: 72px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 24px;
    padding: 0 24px 0 18px;
    color: #171719;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .faq .qa summary::before {
    display: flex;
    height: 32px;
    align-items: center;
    border-right: 1px solid rgba(194, 141, 56, 0.28);
    color: #bd8731;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 1.12rem;
    font-weight: 450;
  }

  .faq .qa:nth-child(1) summary::before { content: "01"; }
  .faq .qa:nth-child(2) summary::before { content: "02"; }
  .faq .qa:nth-child(3) summary::before { content: "03"; }
  .faq .qa:nth-child(4) summary::before { content: "04"; }
  .faq .qa:nth-child(5) summary::before { content: "05"; }
  .faq .qa:nth-child(6) summary::before { content: "06"; }
  .faq .qa:nth-child(7) summary::before { content: "07"; }
  .faq .qa:nth-child(8) summary::before { content: "08"; }

  .faq .qa__ic {
    width: 20px;
    height: 20px;
  }

  .faq .qa__ic::before,
  .faq .qa__ic::after {
    height: 1.5px;
    background: #bd8731;
  }

  .faq .qa__a {
    padding: 0 28px 20px 114px;
    color: #625d56;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .faq__empty {
    margin: 18px 0 0;
    color: #746e66;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.84rem;
    text-align: center;
  }

  .faq__contactbar {
    min-height: 72px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(194, 141, 56, 0.25);
    color: #34312e;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.82rem;
  }

  .faq__contact-help {
    flex: 1;
  }

  .faq__contact-help a {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    margin-left: 20px;
    color: #b57f2d;
    font-weight: 650;
  }

  .faq__contact-help a b {
    font-size: 1.25rem;
    font-weight: 400;
  }

  .faq__contact-phone {
    min-width: 520px;
    padding-left: 58px;
    border-left: 1px solid rgba(194, 141, 56, 0.25);
  }

  .faq__contact-phone span {
    color: #514c46;
    line-height: 1.55;
  }

  .faq__contact-phone b {
    color: #34312e;
    font-weight: 500;
  }

  .faq__contact-phone i {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 10px 2px;
    border-radius: 50%;
    background: #c18d37;
  }

  .pricing {
    padding: 38px 0 28px;
    background: #f4f1ec;
  }

  .pricing > .container {
    width: min(1410px, calc(100% - 120px));
  }

  .pricing .section__head {
    max-width: 620px;
    margin: 0 0 24px;
  }

  .pricing .eyebrow {
    margin-bottom: 18px;
    color: #b18342;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  .pricing .section__title {
    max-width: 520px;
    color: #171719;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: clamp(2rem, 2.55vw, 2.6rem);
    font-weight: 750;
    letter-spacing: -0.045em;
    line-height: 1.04;
  }

  .pricing .section__intro {
    margin-top: 14px;
    color: #6f6962;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.94rem;
  }

  .pricing__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
  }

  .pricing .price {
    height: 430px;
    min-height: 430px;
    padding: 22px 20px 18px;
    border: 1px solid rgba(110, 99, 86, 0.16);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 24px rgba(61, 49, 36, 0.035);
    color: #171719;
  }

  .pricing .price::before {
    display: none;
  }

  .pricing .price--feature {
    transform: none;
    border-color: rgba(193, 141, 55, 0.48);
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.58), rgba(255, 255, 255, 0.28));
    box-shadow: 0 12px 30px rgba(163, 115, 38, 0.07);
  }

  .price__icon {
    position: relative;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(110, 99, 86, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    box-shadow: 0 8px 18px rgba(61, 49, 36, 0.045);
  }

  .price__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #c28d38;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
  }

  .pricing .price__flag {
    top: 20px;
    right: 16px;
    padding: 0.48rem 0.9rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #cfa052, #b9822d);
    box-shadow: 0 8px 18px rgba(154, 103, 27, 0.16);
    color: #fffaf0;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .pricing .price__name {
    min-height: 0;
    margin: 16px 0 0;
    padding: 0 !important;
    color: #171719;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.2;
  }

  .pricing .price__name::after {
    content: "";
    display: block;
    width: 26px;
    height: 1px;
    margin-top: 17px;
    background: #c28d38;
  }

  .pricing .price__val {
    display: flex;
    min-height: 65px;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: baseline;
    gap: 0 8px;
    margin: 14px 0 6px;
    color: #504a44;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .pricing .price__val span {
    flex-basis: 100%;
    margin-bottom: 5px;
  }

  .pricing .price__val b {
    color: #171719;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: clamp(1.9rem, 2vw, 2.25rem);
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .pricing .price__val small {
    color: #504a44;
    font-size: 0.72rem;
  }

  .pricing .price__list {
    margin: 0 0 16px;
    color: #625d56;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
  }

  .pricing .price__list li {
    min-height: 24px;
    padding: 0.25rem 0 0.25rem 1.55rem;
    color: #625d56;
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .pricing .price__list li::before {
    content: "✓";
    top: 0.33rem;
    width: 13px;
    height: 13px;
    border: 1px solid #c28d38;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    color: #c28d38;
    font-family: Arial, sans-serif;
    font-size: 0.56rem;
    font-weight: 700;
    line-height: 11px;
    text-align: center;
  }

  .pricing .price > .btn {
    min-height: 42px;
    justify-content: center;
    padding: 0 16px;
    border-color: rgba(194, 141, 56, 0.72);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.18);
    color: #b57f2d;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
  }

  .pricing .price > .btn::after {
    content: "→";
    margin-left: auto;
    color: #b57f2d;
    font-size: 1.2rem;
    font-weight: 400;
  }

  .pricing__note {
    min-height: 58px;
    margin-top: 20px;
    padding: 10px 18px 10px 24px;
    border-color: rgba(110, 99, 86, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.24);
  }

  .pricing__note::before {
    content: "i";
    display: grid;
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    place-items: center;
    border: 1px solid #c28d38;
    border-radius: 50%;
    color: #c28d38;
    font-family: Georgia, serif;
    font-size: 0.76rem;
    font-weight: 700;
  }

  .pricing__note p {
    max-width: none;
    flex: 1;
    color: #746e66;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.74rem;
  }

  .pricing__note .btn {
    min-width: 290px;
    min-height: 44px;
    justify-content: center;
    border-color: rgba(194, 141, 56, 0.72);
    border-radius: 7px;
    color: #b57f2d;
    font-size: 0.78rem;
  }

  .experience {
    position: relative;
    min-height: 720px;
    padding: 18px 0 0;
    overflow: hidden;
    background: #f2eee8 url("../img/live_demo_background.png") center calc(100% + 45px) / cover no-repeat;
    color: #171719;
  }

  .experience__bg {
    display: none;
  }

  .experience > .container {
    width: min(1080px, calc(100% - 120px));
  }

  .experience .section__head {
    max-width: 620px;
    margin: 0 auto 8px;
    text-align: center;
  }

  .experience .section__head .eyebrow {
    justify-content: center;
    margin-bottom: 10px;
    color: #b18342;
    font-size: 0.68rem;
    font-weight: 600;
  }

  .experience .section__title {
    max-width: 400px;
    margin-inline: auto;
    color: #171719;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: clamp(1.65rem, 2.1vw, 2.3rem);
    font-weight: 750;
    letter-spacing: -0.045em;
    line-height: 1.03;
  }

  .experience .section__intro {
    max-width: 580px;
    margin: 8px auto 0;
    color: #625d56;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .experience__layout {
    position: relative;
    display: grid;
    grid-template-columns: 360px 390px;
    justify-content: center;
    gap: 28px;
    min-height: 560px;
    margin-top: 0;
    align-items: start;
    transform: translate(-55px, -8px);
    transform-origin: top center;
  }

  .experience__side {
    width: 320px;
    margin-top: 82px;
    transform: translateX(clamp(-305px, calc(250px - 28.90625vw), -120px));
    color: #171719;
  }

  .experience__side-label {
    margin-bottom: 14px;
    color: #b18342 !important;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .appswitch {
    gap: 8px;
    margin: 0;
  }

  .appswitch__btn {
    min-height: 56px;
    padding: 9px 14px;
    border: 1px solid rgba(120, 108, 95, 0.2);
    border-radius: 7px;
    background: rgba(255, 253, 249, 0.35);
    color: #171719;
    box-shadow: none;
  }

  .appswitch__btn.is-active {
    border-color: rgba(190, 139, 55, 0.72);
    background: rgba(251, 244, 230, 0.58);
    box-shadow: inset 3px 0 0 #c18d37;
  }

  .appswitch__mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    background: rgba(202, 158, 86, 0.12);
    color: #b18342;
    font-size: 0.86rem;
  }

  .appswitch__txt b {
    color: #171719;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .appswitch__txt small {
    color: #756e65;
    font-family: "Manrope", "General Sans", Arial, sans-serif;
    font-size: 0.69rem;
  }

  .appswitch__arrow {
    color: #b18342;
  }

  .experience__hint {
    margin-top: 17px;
    padding: 14px 16px;
    border: 1px solid rgba(120, 108, 95, 0.2);
    border-radius: 7px;
    background: rgba(255, 253, 249, 0.32);
  }

  .experience__hint .ic {
    color: #55bc91;
  }

  .experience__hint p {
    color: #625d56;
    font-size: 0.68rem;
    line-height: 1.55;
  }

  .experience__side > .btn {
    margin-top: 14px;
    border-color: rgba(120, 108, 95, 0.24);
    background: rgba(255, 253, 249, 0.38);
    color: #171719;
    font-size: 0.74rem;
  }

  .experience__stage {
    position: relative;
    width: 390px;
    height: 560px;
    margin: 0;
    perspective: none;
  }

  .experience__stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: url("../img/live_demo_mockup.png") center -54px / 680px auto no-repeat;
  }

  .experience__live {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 6;
    width: max-content;
    height: 30px;
    transform: translateX(-50%);
    border-color: rgba(120, 108, 95, 0.22);
    background: rgba(250, 247, 241, 0.72);
    color: #625d56;
    font-size: 0.66rem;
  }

  .experience .phone--demo {
    position: absolute;
    top: 6px;
    left: 67px;
    z-index: 3;
    width: 255px;
    min-height: 0;
    transform: none !important;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }

  .experience .phone--demo .phone__frame {
    min-height: 551px;
    border: 0;
    border-radius: 31px;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .experience .phone--demo .phone__island,
  .experience .phone--demo .phone__reflection {
    display: none;
  }

  .experience .phone--demo .phone__screen {
    --ink: #f5f0e8;
    --muted: #cbc2b3;
    --soft: #9c9283;
    --line: rgba(245, 240, 232, 0.14);
    --panel: #24221f;
    --panel-2: #2c2925;
    min-height: 551px;
    height: 551px;
    padding: 13px 8px 7px;
    overflow: hidden;
    border: 0;
    border-radius: 31px;
    background: #111315;
    color: #f5f0e8;
  }

  .experience .phone--demo .app {
    width: 100%;
    min-height: 531px;
    height: 531px;
    font-size: 0.72rem;
  }
}

@media (max-width: 1050px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: block;
  }

  .hero__inner,
  .intro__inner,
  .why__inner,
  .faq__inner {
    grid-template-columns: 1fr;
  }

  .hero__stage {
    order: -1;
    max-width: 380px;
    margin-inline: auto;
  }

  .phone--hero {
    transform: rotateX(4deg) rotateY(-5deg) rotateZ(2deg);
  }

  .services__grid,
  .products__grid,
  .tgrid {
    grid-template-columns: 1fr 1fr;
  }

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

  .price__name {
    min-height: 0;
  }

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


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

@media (max-width: 820px) {
  .experience__layout,
  .experience__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .experience__side {
    max-width: 560px;
    margin-inline: auto;
  }

  .experience__stage {
    max-width: 420px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section,
  .intro {
    padding: 46px 0;
  }

  .nav__inner {
    min-height: 58px;
  }

  .nav__logo--desktop {
    display: none;
  }

  .nav__logo--mobile {
    display: block;
  }

  .langswitch span {
    display: none;
  }

  .hero {
    min-height: 100svh;
    align-items: start;
    padding: 64px 0 12px;
  }

  .hero__inner {
    gap: 12px;
  }

  .hero__copy {
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  .hero__title {
    font-size: clamp(1.92rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .hero__sub {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .hero__cta {
    gap: 0.5rem;
    margin-top: 12px;
  }

  .hero__cta .btn {
    min-height: 38px;
    padding: 0.52rem 0.72rem;
    font-size: 0.84rem;
  }

  .hero__hints {
    display: none;
  }

  .phone,
  .phone--hero,
  .phone--demo {
    width: min(100%, 218px);
  }

  .phone--hero {
    transform: rotateX(0deg) rotateY(-4deg) rotateZ(1deg);
  }

  .phone__island {
    top: 10px;
    width: 64px;
    height: 18px;
  }

  .phone__frame,
  .phone__screen {
    min-height: 374px;
  }

  .phone__screen {
    padding: 15px 10px 10px;
  }

  .phone--demo,
  .phone--demo .phone__frame,
  .phone--demo .phone__screen,
  .app {
    min-height: 548px;
    width: min(100%, 300px);
  }

  .hero__chip {
    display: none;
  }

  .hero__scroll {
    display: none;
  }

  .heroapp__head {
    margin-top: 18px;
  }

  .heroapp__avatar {
    width: 32px;
    height: 32px;
  }

  .heroapp__name {
    font-size: 1rem;
  }

  .heroapp__card {
    margin-top: 10px;
    padding: 10px;
  }

  .heroapp__card-value {
    font-size: 2rem;
  }

  .heroapp__spark {
    height: 34px;
  }

  .heroapp__mini,
  .heroapp__list {
    display: none;
  }

  .stats,
  .services__grid,
  .products__grid,
  .tgrid,
  .why__list,
  .projects__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid,
  .pricegrid {
    grid-template-columns: 1fr;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }

  .price--feature {
    transform: none;
  }

  .price__name,
  .price__val {
    min-height: 0;
  }

  .bcard,
  .bcard--lg,
  .bcard--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 176px;
  }

  .pricing__note,
  .faq__contactbar,
  .cookie__inner,
  .footer__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .faq__contact-help,
  .faq__contact-phone {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .finalcta {
    padding: 54px 0;
  }
}

.finalcta {
  min-height: 0;
  height: clamp(420px, 46vw, 470px);
  padding: 0;
  background: #f1eee9;
  text-align: left;
}

.finalcta__bg {
  background-image: url("../img/cta_background.png");
  background-repeat: no-repeat;
  background-position: center 58%;
  background-size: cover;
}

.finalcta__inner {
  align-content: center;
  justify-items: start;
  width: min(1420px, calc(100% - 120px));
  height: 100%;
  padding-bottom: 2px;
}

.finalcta .eyebrow {
  margin: 0 0 22px;
  color: #bd8b37;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.finalcta__title {
  max-width: 690px;
  color: #171719;
  font-family: var(--font-body);
  font-size: clamp(2.35rem, 3.35vw, 3.65rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.finalcta__sub {
  max-width: 610px;
  margin: 22px 0 0;
  color: #6d6862;
  font-family: var(--font-body);
  font-size: clamp(0.96rem, 1.1vw, 1.18rem);
  line-height: 1.55;
}

.finalcta__btns {
  gap: 18px;
  margin-top: 26px;
}

.finalcta__btns .btn {
  min-width: 238px;
  min-height: 54px;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 700;
}

.finalcta__btns .btn--gold {
  color: #241e15;
  background: linear-gradient(135deg, #efca75, #d5a84e);
  box-shadow: 0 12px 26px rgba(164, 119, 42, 0.14);
}

.finalcta__btns .btn--ghost {
  border-color: rgba(38, 35, 31, 0.24);
  color: #252220;
  background: rgba(250, 248, 244, 0.5);
}

.finalcta__contact {
  justify-content: flex-start;
  gap: 0;
  margin-top: 24px;
}

.finalcta__contact a {
  gap: 12px;
  color: #77716b;
  font-family: var(--font-body);
  font-size: 0.96rem;
}

.finalcta__contact a + a {
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid rgba(38, 35, 31, 0.15);
}

.finalcta__contact .fc__ic {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
  color: #c4933c;
  background: rgba(218, 189, 133, 0.16);
}

.finalcta__contact .ic {
  width: 20px;
  height: 20px;
}

@media (max-width: 1050px) {
  .finalcta {
    height: auto;
    min-height: 430px;
  }

  .finalcta__bg {
    background-position: 63% center;
  }

  .finalcta__inner {
    width: min(100% - 48px, 760px);
    padding: 54px 0;
  }

  .finalcta__title,
  .finalcta__sub {
    max-width: 58%;
  }
}

@media (max-width: 680px) {
  .finalcta {
    min-height: 520px;
  }

  .finalcta__bg {
    background-position: 70% center;
  }

  .finalcta__bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(246, 243, 238, 0.98) 0%, rgba(246, 243, 238, 0.92) 58%, rgba(246, 243, 238, 0.28) 100%);
  }

  .finalcta__inner {
    width: calc(100% - 36px);
    padding: 44px 0;
  }

  .finalcta__title,
  .finalcta__sub {
    max-width: 100%;
  }

  .finalcta__title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .finalcta__btns {
    width: 100%;
  }

  .finalcta__btns .btn {
    width: 100%;
  }

  .finalcta__contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .finalcta__contact a + a {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
}

.footer {
  position: relative;
  padding: 58px 0 22px;
  overflow: hidden;
  border-top: 0;
  color: #171719;
  background:
    radial-gradient(circle at 12% 0%, rgba(194, 146, 65, 0.08), transparent 30%),
    linear-gradient(145deg, #f5f2ee 0%, #e9e4dd 100%);
}

.footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image: linear-gradient(90deg, rgba(53, 47, 40, 0.045) 1px, transparent 1px);
  background-size: 12.5% 100%;
}

.footer .container {
  position: relative;
  width: min(1420px, calc(100% - 120px));
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(320px, 1.5fr) repeat(3, minmax(140px, 0.68fr));
  gap: clamp(38px, 5vw, 88px);
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer__brandlink {
  display: inline-flex;
}

.footer__logo {
  width: 190px;
  height: auto;
  margin: -13px 0 7px;
  object-fit: contain;
}

.footer__brand p {
  max-width: 430px;
  margin: 0;
  color: #69645e;
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.7;
}

.footer__availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(38, 34, 29, 0.13);
  border-radius: 999px;
  color: #5f5a54;
  background: rgba(255, 255, 255, 0.34);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.footer__availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #65bd81;
  box-shadow: 0 0 0 4px rgba(101, 189, 129, 0.11);
}

.footer__social {
  gap: 9px;
  margin-top: 22px;
}

.footer__social a {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(38, 34, 29, 0.14);
  border-radius: 50%;
  color: #393633;
  background: rgba(255, 255, 255, 0.34);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer__social a:hover {
  border-color: rgba(205, 161, 84, 0.65);
  color: #a87525;
  background: rgba(205, 161, 84, 0.08);
  transform: translateY(-2px);
}

.footer__social .ic {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
}

.footer__h {
  margin: 3px 0 18px;
  color: #1d1c1b;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__col {
  gap: 11px;
}

.footer__col a {
  width: max-content;
  color: #6f6a64;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 180ms ease, transform 180ms ease;
}

.footer__col a:hover {
  color: #111112;
  transform: translateX(3px);
}

.footer__contactrow {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr auto;
  align-items: stretch;
  margin-top: 48px;
  border-top: 1px solid rgba(38, 34, 29, 0.13);
  border-bottom: 1px solid rgba(38, 34, 29, 0.13);
}

.footer__mail,
.footer__location,
.footer__totop {
  display: grid;
  align-content: center;
  min-height: 92px;
}

.footer__mail {
  position: relative;
  grid-template-columns: 1fr auto;
  padding-right: 34px;
}

.footer__mail span,
.footer__location span,
.footer__totop span {
  color: #8a837b;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__mail strong {
  margin-top: 4px;
  color: #171719;
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 1.7vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.footer__mail b {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: #c99a48;
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.footer__mail:hover b {
  transform: translate(3px, -3px);
}

.footer__location {
  padding: 0 34px;
  border-left: 1px solid rgba(38, 34, 29, 0.13);
}

.footer__location strong {
  margin-top: 5px;
  color: #55514c;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer__totop {
  grid-template-columns: auto auto;
  align-items: center;
  gap: 16px;
  padding-left: 34px;
  border-left: 1px solid rgba(38, 34, 29, 0.13);
}

.footer__totop b {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(38, 34, 29, 0.16);
  border-radius: 50%;
  color: #d0a357;
  font-size: 1.05rem;
  font-weight: 400;
  transition: transform 180ms ease, border-color 180ms ease;
}

.footer__totop:hover b {
  border-color: rgba(208, 163, 87, 0.6);
  transform: translateY(-3px);
}

.footer__bottom {
  align-items: center;
  margin-top: 0;
  padding-top: 20px;
  border-top: 0;
  color: #7d7770;
  font-family: var(--font-body);
  font-size: 0.74rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__legal {
  gap: 22px;
}

.footer__legal a,
.footer__legal button {
  padding: 0;
  color: #77716b;
  font-family: inherit;
  font-size: inherit;
  transition: color 180ms ease;
}

.footer__legal a:hover,
.footer__legal button:hover {
  color: #171719;
}

@media (max-width: 1050px) {
  .footer .container {
    width: min(100% - 48px, 900px);
  }

  .footer__top {
    grid-template-columns: 1.3fr repeat(3, 0.75fr);
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .footer__top {
    grid-template-columns: 1.45fr 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
    margin-bottom: 16px;
  }

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

  .footer__mail {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(38, 34, 29, 0.13);
  }

  .footer__location {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .footer {
    padding: 46px 0 18px;
  }

  .footer .container {
    width: calc(100% - 36px);
  }

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

  .footer__brand,
  .footer__col:last-child {
    grid-column: 1 / -1;
  }

  .footer__brand p {
    max-width: 340px;
  }

  .footer__contactrow {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer__mail,
  .footer__location,
  .footer__totop {
    min-height: 78px;
    padding-right: 0;
    padding-left: 0;
  }

  .footer__location,
  .footer__totop {
    border-top: 1px solid rgba(38, 34, 29, 0.13);
    border-left: 0;
  }

  .footer__totop {
    justify-content: space-between;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

/* Clean section flow after the studio/about section */
.services,
.projects,
.pricing,
.process,
.why,
.faq {
  background-color: #f2efea;
}

.intro,
.services,
.products,
.experience,
.projects,
.pricing,
.process,
.why,
.testimonials,
.faq,
.finalcta {
  position: relative;
  isolation: isolate;
}

.intro::after,
.products::before,
.products::after,
.experience::before,
.experience::after,
.testimonials::before,
.testimonials::after,
.finalcta::before,
.finalcta::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: 30px;
  pointer-events: none;
  content: "";
}

.intro::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    #f2efea 0%,
    rgba(242, 239, 234, 0.82) 24%,
    rgba(242, 239, 234, 0.32) 68%,
    rgba(242, 239, 234, 0) 100%
  );
}

.products::before,
.experience::before,
.testimonials::before,
.finalcta::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    #f2efea 0%,
    rgba(242, 239, 234, 0.82) 24%,
    rgba(242, 239, 234, 0.32) 68%,
    rgba(242, 239, 234, 0) 100%
  );
}

.products::after,
.experience::after,
.testimonials::after,
.finalcta::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    #f2efea 0%,
    rgba(242, 239, 234, 0.82) 24%,
    rgba(242, 239, 234, 0.32) 68%,
    rgba(242, 239, 234, 0) 100%
  );
}

.intro > *,
.services > *,
.products > *,
.projects > *,
.pricing > *,
.process > *,
.why > *,
.testimonials > *,
.faq > * {
  position: relative;
  z-index: 3;
}

.experience > *:not(.experience__bg),
.finalcta > *:not(.finalcta__bg) {
  position: relative;
  z-index: 3;
}

.experience > .experience__bg,
.finalcta > .finalcta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.products > .container,
.experience > .container,
.testimonials > .container,
.finalcta > .container {
  z-index: 4;
}

@media (max-width: 680px) {
  .intro::after,
  .products::before,
  .products::after,
  .experience::before,
  .experience::after,
  .testimonials::before,
  .testimonials::after,
  .finalcta::before,
  .finalcta::after {
    height: 20px;
  }
}

@media (min-width: 1051px) {
  .why {
    height: 440px;
    min-height: 0;
    padding: 32px 0;
    overflow: hidden;
    background:
      radial-gradient(circle at 74% 35%, rgba(255, 255, 255, 0.72), transparent 34%),
      #f2efea;
    color: #171719;
  }

  .why .why__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.32fr);
    align-items: center;
    width: min(1430px, calc(100% - 120px));
    height: 100%;
    gap: clamp(50px, 6vw, 106px);
  }

  .why__head {
    align-self: center;
    max-width: 490px;
  }

  .why__head .eyebrow {
    margin: 0 0 22px;
    color: #bd8a34;
    font-family: var(--font-mono);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.19em;
    text-transform: uppercase;
  }

  .why__head .section__title {
    max-width: 480px;
    color: #171719;
    font-family: var(--font-body);
    font-size: clamp(2.85rem, 4.1vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 1.03;
  }

  .why__head .section__intro {
    max-width: 465px;
    margin: 18px 0 0;
    color: #67625d;
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .why__head .btn {
    min-width: 238px;
    min-height: 52px;
    justify-content: space-between;
    margin-top: 22px;
    padding-inline: 26px;
    border-radius: 7px;
    color: #211d17;
    background: linear-gradient(135deg, #edc66d, #d3a449);
    box-shadow: 0 12px 28px rgba(172, 125, 44, 0.14);
    font-size: 0.94rem;
    font-weight: 700;
  }

  .why__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 1fr);
    height: 360px;
    gap: 10px 14px;
  }

  .why__list li {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 0;
    padding: 15px 18px;
    border: 1px solid rgba(82, 73, 63, 0.16);
    border-radius: 9px;
    background: rgba(255, 253, 249, 0.52);
    box-shadow: 0 10px 26px rgba(85, 73, 61, 0.045);
  }

  .why__ic {
    width: 46px;
    height: 46px;
    border-radius: 9px;
    color: #d19b3b;
    background: rgba(218, 180, 108, 0.11);
  }

  .why__ic .ic {
    width: 24px;
    height: 24px;
    stroke-width: 1.55;
  }

  .why__list b {
    display: block;
    color: #171719;
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 750;
    letter-spacing: -0.02em;
    line-height: 1.13;
  }

  .why__list small {
    margin-top: 7px;
    color: #69645e;
    font-family: var(--font-body);
    font-size: 0.76rem;
    line-height: 1.45;
  }
}

@media (max-width: 1050px) {
  .why {
    padding: 54px 0;
    background: #f2efea;
  }

  .why .why__inner {
    width: min(100% - 48px, 900px);
    gap: 34px;
  }

  .why__head {
    max-width: 650px;
  }

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

@media (max-width: 680px) {
  .why {
    padding: 44px 0;
  }

  .why .why__inner {
    width: calc(100% - 36px);
  }

  .why__head .section__title {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

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

  .why__list li {
    padding: 18px;
  }
}

/* Premium scroll motion */
[data-reveal],
.scroll-reveal-item {
  opacity: 0;
  scale: 0.985;
  translate: 0 10px;
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    scale 720ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate, scale;
}

[data-reveal].is-visible,
.scroll-reveal-item.is-visible {
  opacity: 1;
  scale: 1;
  translate: 0 0;
}

.section__head[data-reveal],
.intro__lead[data-reveal],
.why__head[data-reveal] {
  scale: 1;
  translate: 0 15px;
}

.section__head[data-reveal].is-visible,
.intro__lead[data-reveal].is-visible,
.why__head[data-reveal].is-visible {
  translate: 0 0;
}

.scroll-reveal-item {
  transition-delay: var(--reveal-delay, 0ms);
}

.chatbot-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 110;
  display: grid;
  width: 62px;
  height: 62px;
  padding: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(128, 111, 88, 0.28);
  border-radius: 50%;
  color: #4c4740;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(226, 217, 205, 0.78)),
    rgba(239, 234, 226, 0.88);
  box-shadow:
    0 20px 46px rgba(50, 43, 34, 0.17),
    0 4px 12px rgba(50, 43, 34, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(118, 99, 75, 0.12);
  backdrop-filter: blur(18px) saturate(125%);
  cursor: pointer;
  transition: translate 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, border-color 220ms ease;
}

.chatbot-fab:hover {
  translate: 0 -4px;
  border-color: rgba(176, 135, 70, 0.55);
  box-shadow:
    0 24px 54px rgba(50, 43, 34, 0.2),
    0 5px 14px rgba(50, 43, 34, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(118, 99, 75, 0.1);
}

.chatbot-fab::before {
  position: absolute;
  top: -20px;
  left: -12px;
  width: 58px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  filter: blur(8px);
  content: "";
  pointer-events: none;
  rotate: -24deg;
}

.chatbot-fab::after {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.chatbot-fab:focus-visible {
  outline: 2px solid #c99a48;
  outline-offset: 4px;
}

.chatbot-fab svg {
  position: relative;
  z-index: 2;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.chatbot-fab__pulse {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 3;
  width: 7px;
  height: 7px;
  border: 1.5px solid rgba(250, 248, 244, 0.95);
  border-radius: 50%;
  background: #69bd81;
  box-shadow: 0 1px 4px rgba(55, 91, 65, 0.24);
  animation: none;
}

@media (max-width: 680px) {
  [data-reveal],
  .scroll-reveal-item {
    scale: 0.99;
    translate: 0 8px;
  }

  .chatbot-fab {
    right: 16px;
    bottom: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }

  .chatbot-fab svg {
    width: 23px;
    height: 23px;
  }
}

.hero__scroll {
  right: auto;
  bottom: 24px;
  left: 50%;
  display: flex;
  width: auto;
  height: auto;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  border: 0;
  border-radius: 0;
  color: #2b2926;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
  animation: heroScrollText 2.5s ease-in-out infinite;
}

.hero__scroll span {
  position: relative;
  display: block;
  width: 18px;
  height: 20px;
  margin: 0;
  overflow: visible;
  background: transparent;
  animation: none;
}

.hero__scroll span::before,
.hero__scroll span::after {
  position: absolute;
  top: 1px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #b9893c;
  border-bottom: 1.5px solid #b9893c;
  content: "";
  rotate: 45deg;
  animation: heroScrollChevron 1.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero__scroll span::after {
  top: 8px;
  animation-delay: 0.16s;
}

@keyframes heroScrollText {
  50% {
    opacity: 0.62;
    translate: 0 3px;
  }
}

@keyframes heroScrollChevron {
  0% {
    opacity: 0;
    translate: 0 -3px;
  }
  35% {
    opacity: 1;
  }
  75% {
    opacity: 0;
    translate: 0 5px;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 680px) {
  .hero__scroll {
    bottom: 5px;
    font-size: 0.58rem;
  }

  .hero__scroll span {
    height: 18px;
  }
}

.langswitch {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.langswitch__trigger {
  display: grid;
  grid-template-columns: 20px auto 11px;
  align-items: center;
  width: auto;
  min-width: 82px;
  height: 44px;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(113, 95, 72, 0.2);
  border-radius: 999px;
  color: #242220;
  background:
    radial-gradient(circle at 28% 16%, rgba(255, 255, 255, 0.92), transparent 38%),
    linear-gradient(145deg, rgba(250, 248, 244, 0.88), rgba(225, 217, 206, 0.72));
  box-shadow:
    0 9px 24px rgba(70, 59, 45, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(119, 98, 72, 0.1);
  backdrop-filter: blur(18px) saturate(125%);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.langswitch__trigger:hover,
.langswitch.is-open .langswitch__trigger {
  border-color: rgba(183, 137, 61, 0.42);
  background:
    radial-gradient(circle at 28% 16%, rgba(255, 255, 255, 0.98), transparent 40%),
    linear-gradient(145deg, rgba(253, 251, 247, 0.96), rgba(230, 220, 205, 0.84));
  box-shadow:
    0 8px 22px rgba(70, 59, 45, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.langswitch__current {
  display: block !important;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.langswitch__chevron {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #8f7041;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: rotate 180ms ease;
}

.langswitch.is-open .langswitch__chevron {
  rotate: 180deg;
}

.langswitch__flag {
  position: relative;
  display: block !important;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  overflow: hidden;
  border: 1px solid rgba(31, 28, 25, 0.14);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(35, 29, 23, 0.09);
}

.langswitch__flag--de {
  background: linear-gradient(to bottom, #171717 0 33.33%, #d61f2c 33.33% 66.66%, #e2b13d 66.66%);
}

.langswitch__flag--en {
  background:
    linear-gradient(90deg, transparent 43%, #fff 43% 57%, transparent 57%),
    linear-gradient(transparent 36%, #fff 36% 64%, transparent 64%),
    linear-gradient(90deg, transparent 47%, #c8102e 47% 53%, transparent 53%),
    linear-gradient(transparent 44%, #c8102e 44% 56%, transparent 56%),
    #183b78;
}

.langswitch__flag--fr {
  background: linear-gradient(90deg, #1d3f91 0 33.33%, #fff 33.33% 66.66%, #e02b3b 66.66%);
}

.langswitch__flag--es {
  background: linear-gradient(to bottom, #c8192b 0 25%, #f1c440 25% 75%, #c8192b 75%);
}

.langswitch__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 220;
  width: 232px;
  padding: 9px;
  border: 1px solid rgba(56, 49, 41, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(252, 250, 247, 0.97), rgba(232, 225, 215, 0.94));
  box-shadow:
    0 22px 54px rgba(51, 43, 34, 0.18),
    0 4px 12px rgba(51, 43, 34, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(120%);
  transform-origin: top right;
  animation: languageMenuIn 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.langswitch__menu[hidden] {
  display: none;
}

.langswitch__option {
  display: grid;
  grid-template-columns: 22px 1fr 18px;
  align-items: center;
  width: 100%;
  min-height: 50px;
  gap: 11px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  color: #302d29;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 160ms ease;
}

.langswitch__option:hover {
  background: rgba(255, 255, 255, 0.5);
}

.langswitch__option.is-active {
  background:
    linear-gradient(90deg, rgba(205, 163, 90, 0.16), rgba(255, 255, 255, 0.38));
  box-shadow: inset 0 0 0 1px rgba(183, 137, 61, 0.12);
}

.langswitch__option > span:nth-child(2) {
  display: grid !important;
  gap: 2px;
}

.langswitch__option b {
  color: #242220;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 650;
}

.langswitch__option small {
  color: #8b857d;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.langswitch__option i {
  color: #b68435;
  font-size: 0.78rem;
  font-style: normal;
  opacity: 0;
}

.langswitch__option.is-active i {
  opacity: 1;
}

@keyframes languageMenuIn {
  from {
    opacity: 0;
    scale: 0.97;
    translate: 0 -5px;
  }
}

@media (max-width: 680px) {
  .langswitch__trigger {
    grid-template-columns: 20px auto 10px;
    width: auto;
    min-width: 78px;
    height: 42px;
    gap: 6px;
    padding: 0 10px;
  }

  .langswitch__current {
    display: block !important;
  }

  .langswitch__menu {
    right: -8px;
    width: 218px;
  }
}

.intro .eyebrow,
.services .eyebrow,
.products .eyebrow,
.projects .eyebrow,
.pricing .eyebrow,
.process .eyebrow,
.testimonials .eyebrow,
.faq .eyebrow {
  font-size: 0.86rem;
  font-weight: 600;
}

@media (max-width: 680px) {
  .intro .eyebrow,
  .services .eyebrow,
  .products .eyebrow,
  .projects .eyebrow,
  .pricing .eyebrow,
  .process .eyebrow,
  .testimonials .eyebrow,
  .faq .eyebrow {
    font-size: 0.76rem;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    scale: none;
    translate: none;
  }

  .scroll-reveal-item {
    opacity: 1;
    scale: none;
    translate: none;
  }

  .chatbot-fab__pulse {
    animation: none;
  }

  .hero__scroll,
  .hero__scroll span::before,
  .hero__scroll span::after {
    animation: none;
  }

  .langswitch__menu {
    animation: none;
  }
}
