.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 1480px;
  z-index: 100;
  transition: all var(--transition-base);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: 10px 12px 10px 28px;
  background: rgba(15, 23, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: all var(--transition-base);
}

.navbar.is-scrolled .navbar__inner {
  background: rgba(15, 23, 32, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.navbar__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-right: var(--space-4);
  text-decoration: none;
  line-height: 1;
  color: #FFFFFF;
}

.navbar__logo-img {
  display: block;
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.navbar__logo:hover .navbar__logo-img {
  transform: scale(1.04);
  opacity: 0.95;
}

.navbar__logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.navbar__logo-main {
  font-size: 18px;
  font-weight: var(--fw-black);
  color: #FFFFFF;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.navbar__logo-sub {
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 2px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.navbar__link {
  padding: 10px 18px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  position: relative;
  white-space: nowrap;
  letter-spacing: -0.005em;
}

.navbar__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.navbar__link.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.navbar__cta {
  flex-shrink: 0;
}

.navbar__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--white);
  cursor: pointer;
}

.navbar__toggle span {
  position: relative;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: all var(--transition-base);
}

.navbar__toggle span::before,
.navbar__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: all var(--transition-base);
}

.navbar__toggle span::before {
  top: -6px;
}

.navbar__toggle span::after {
  top: 6px;
}

.navbar__toggle.is-active span {
  background: transparent;
}

.navbar__toggle.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar__toggle.is-active span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(17, 26, 34, 0.96);
  backdrop-filter: var(--blur-lg);
  -webkit-backdrop-filter: var(--blur-lg);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.mobile-menu__link {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--transition-base);
}

.mobile-menu__link:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  padding: 160px 0 0;
  background: var(--bg-primary);
  overflow: hidden;
  isolation: isolate;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  min-height: 820px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(38, 56, 69, 0.6), transparent 70%),
    linear-gradient(180deg, #0F1A24 0%, #111A22 60%, #0A1218 100%);
  overflow: hidden;
}

.hero__bg-scales {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 900px;
  height: auto;
  opacity: 0.08;
  filter: blur(12px);
  pointer-events: none;
}

.hero__photo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 720px;
  height: calc(100% - 40px);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: lighten;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 26, 34, 0.95) 0%, rgba(17, 26, 34, 0.75) 30%, rgba(17, 26, 34, 0.1) 55%, rgba(17, 26, 34, 0.1) 70%, rgba(17, 26, 34, 0.7) 100%),
    linear-gradient(180deg, transparent 60%, rgba(17, 26, 34, 0.85) 100%);
}

.hero__glow {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 167, 77, 0.18), transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "badge    reviews"
    "title    reviews"
    "desc     start";
  align-items: start;
  gap: var(--space-5) var(--space-6);
  min-height: 660px;
  padding-top: var(--space-8);
  padding-bottom: var(--space-12);
}

.hero__badge {
  grid-area: badge;
  align-self: start;
  justify-self: start;
}

.hero__title {
  grid-area: title;
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: var(--fw-black);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--white);
}

.hero__title-line {
  display: block;
}

.hero__title-line--gold {
  color: var(--gold);
  font-style: italic;
  font-weight: var(--fw-medium);
}

.hero__description {
  grid-area: desc;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary);
  max-width: 460px;
}

.hero__reviews {
  grid-area: reviews;
  width: 100%;
  max-width: 320px;
  justify-self: end;
  align-self: start;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: rgba(20, 30, 40, 0.75);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border: 1px solid var(--border-glass-strong);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero__start-wrap {
  grid-area: start;
  justify-self: end;
  align-self: start;
}

.hero__reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.hero__reviews-platforms {
  display: flex;
  align-items: center;
}

.hero__reviews-platforms .platform {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(17, 26, 34, 0.8);
  overflow: hidden;
}

.hero__reviews-platforms .platform svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__reviews-platforms .platform + .platform {
  margin-left: -10px;
}

.hero__reviews-platforms .platform:first-child {
  z-index: 2;
  background: #fff;
}

.hero__reviews-platforms .platform:last-child {
  background: #1877F2;
}

.hero__reviews-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--white);
  font-weight: var(--fw-semibold);
}

.hero__reviews-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}

.hero__reviews-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero__reviews-count {
  color: var(--text-secondary);
  font-size: var(--fs-xs);
  display: block;
  margin-top: 2px;
}

.hero__reviews-text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

.hero__start-wrap {
  margin-right: var(--space-2);
}

.hero__start {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero__stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  padding: var(--space-10) 0 var(--space-10);
  margin-top: var(--space-6);
}

.hero__stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-glass-strong) 30%, var(--border-glass-strong) 70%, transparent 100%);
}

.about {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: var(--section-py) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: center;
}

.about__title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--text-dark);
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.about__lead {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--text-dark);
  font-weight: var(--fw-medium);
}

.about__text {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary-dark);
}

.about__cta {
  align-self: flex-start;
  margin-top: var(--space-4);
}

.services {
  background: var(--bg-primary);
  color: var(--white);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.services__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px) brightness(0.3);
  transform: scale(1.1);
  opacity: 0.5;
}

.services__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 26, 34, 0.92) 0%, rgba(17, 26, 34, 0.95) 100%);
}

.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: flex-end;
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 2;
}

.services__title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--white);
}

.services__header-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.services__nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.services__carousel-wrap {
  position: relative;
  z-index: 2;
}

.services__carousel {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: var(--space-6);
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
  scroll-behavior: smooth;
  cursor: grab;
}

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

.services__carousel.is-dragging {
  cursor: grabbing;
}

.service-card {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-card--active {
  background: var(--bg-primary);
  color: var(--white);
  border: 1px solid var(--border-glass);
}

.service-card__image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card--active .service-card__image {
  height: 280px;
}

.service-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex: 1;
}

.service-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  line-height: var(--lh-snug);
}

.service-card__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  color: var(--text-secondary-dark);
}

.service-card--active .service-card__text {
  color: var(--text-secondary);
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-4);
}

.service-card__badge {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  z-index: 2;
}

.service-card--active .service-card__badge {
  background: rgba(17, 26, 34, 0.85);
  border-color: var(--border-glass-strong);
  color: var(--white);
  backdrop-filter: var(--blur-sm);
}

.services__drag-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 8px 16px 8px 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  backdrop-filter: var(--blur-md);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 5;
}

.services__drag-hint.is-visible {
  opacity: 1;
}

.services__drag-hint .icon-btn {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
}

.services__drag-hint .icon-btn svg {
  width: 14px;
  height: 14px;
}

.projects {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: var(--section-py) 0;
}

.projects__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: flex-end;
  margin-bottom: var(--space-12);
}

.projects__title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--text-dark);
}

.projects__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: flex-start;
}

.projects__text {
  font-size: var(--fs-md);
  color: var(--text-secondary-dark);
  line-height: var(--lh-relaxed);
  max-width: 480px;
}

.projects__table {
  width: 100%;
}

.projects__table-head,
.projects__table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 80px;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-5) 0;
}

.projects__table-head {
  border-bottom: 1px solid var(--border-light);
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--text-dark);
}

.projects__table-body {
  position: relative;
}

.projects__table-row {
  border-bottom: 1px solid var(--border-light);
  position: relative;
  transition: all var(--transition-base);
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  margin: 0 calc(var(--space-4) * -1);
}

.projects__table-row:hover {
  background: rgba(0, 0, 0, 0.02);
}

.projects__table-row--active {
  background: var(--gold);
  color: var(--text-dark);
  border-radius: var(--radius-md);
  border-bottom-color: transparent;
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
  position: relative;
  z-index: 2;
}

.projects__table-row--active .projects__row-title,
.projects__table-row--active .projects__row-date {
  color: var(--text-dark);
}

.projects__table-row--active .projects__row-category {
  background: rgba(17, 26, 34, 0.15);
  color: var(--text-dark);
  border-color: transparent;
}

.projects__table-row--active .projects__row-action .icon-circle {
  background: var(--bg-primary);
  color: var(--white);
}

.projects__row-title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.projects__row-category {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  width: fit-content;
}

.projects__row-date {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.projects__row-action {
  display: flex;
  justify-content: flex-end;
}

.projects__table-row--active .projects__row-image {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translate(20px, -50%) rotate(-8deg);
  width: 200px;
  height: 130px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: all var(--transition-base);
}

.projects__table-row--active:hover .projects__row-image,
.projects__table-row--active.is-hovered .projects__row-image {
  opacity: 1;
  transform: translate(60px, -50%) rotate(-6deg);
}

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

.process {
  background: var(--bg-primary);
  color: var(--white);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.process__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.process__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(50px) brightness(0.25);
  transform: scale(1.15);
  opacity: 0.6;
}

.process__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 26, 34, 0.9) 0%, rgba(17, 26, 34, 0.95) 100%);
}

.process__header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: flex-end;
  margin-bottom: var(--space-16);
  position: relative;
  z-index: 2;
}

.process__title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.process__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.process__text {
  font-size: var(--fs-md);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 480px;
}

.process__cta {
  align-self: flex-start;
}

.process__timeline {
  position: relative;
  height: 480px;
  z-index: 2;
}

.process__curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.process__curve-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

.process__curve-path-bg {
  fill: none;
  stroke: rgba(201, 167, 77, 0.15);
  stroke-width: 2;
}

.process__steps {
  position: relative;
  width: 100%;
  height: 100%;
}

.process__step {
  position: absolute;
  width: 260px;
  background: var(--bg-white);
  color: var(--text-dark);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: all var(--transition-base);
}

.process__step:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.process__step--1 {
  top: 60%;
  left: 0;
}

.process__step--2 {
  top: 35%;
  left: 24%;
}

.process__step--3 {
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
}

.process__step--3:hover {
  transform: translateX(-50%) translateY(-8px);
}

.process__step--4 {
  top: 8%;
  right: 0;
}

.process__step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}

.process__step-num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.process__step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
}

.process__step-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.process__step-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.process__step-text {
  font-size: var(--fs-sm);
  color: var(--text-secondary-dark);
  line-height: var(--lh-normal);
}

.process__dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 4px rgba(201, 167, 77, 0.3);
  z-index: 3;
}

.process__dot--1 {
  top: 64%;
  left: calc(15% - 8px);
}

.process__dot--2 {
  top: 38%;
  left: calc(38% - 8px);
}

.process__dot--3 {
  top: 38%;
  left: calc(64% - 8px);
}

.process__dot--4 {
  top: 10%;
  right: 15%;
}

.process__mobile {
  display: none;
}

.testimonials {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: var(--section-py) 0;
  position: relative;
}

.testimonials__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-12);
  align-items: flex-end;
  margin-bottom: var(--space-12);
}

.testimonials__title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--text-dark);
}

.testimonials__nav {
  display: flex;
  gap: var(--space-3);
}

.testimonials__carousel {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.6s var(--ease-premium);
}

.testimonial-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-12);
  align-items: center;
}

.testimonial__client {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.testimonial__avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-light);
}

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

.testimonial__counter {
  font-size: var(--fs-sm);
  color: var(--text-secondary-dark);
  font-weight: var(--fw-medium);
}

.testimonial__card {
  position: relative;
  padding: var(--space-10);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(15, 24, 32, 0.06);
}

.testimonial__quote-mark {
  position: absolute;
  top: -20px;
  right: var(--space-10);
  font-size: 200px;
  line-height: 1;
  color: var(--bg-light);
  font-family: Georgia, serif;
  font-weight: var(--fw-bold);
  pointer-events: none;
  user-select: none;
}

.testimonial__head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.testimonial__name {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial__text {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--text-dark);
  font-weight: var(--fw-regular);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  margin-top: var(--space-6);
  font-size: var(--fs-sm);
  color: var(--text-secondary-dark);
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.testimonial__author::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--text-secondary-dark);
}

.faq {
  background: var(--bg-primary);
  color: var(--white);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.faq__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.faq__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(50px) brightness(0.2);
  transform: scale(1.15);
  opacity: 0.5;
}

.faq__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 26, 34, 0.9) 0%, rgba(17, 26, 34, 0.95) 100%);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-16);
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.faq__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: sticky;
  top: 140px;
}

.faq__title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.faq__text {
  font-size: var(--fs-md);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 380px;
}

.faq__cta {
  align-self: flex-start;
  margin-top: var(--space-2);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq__item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.faq__item.is-open {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  letter-spacing: -0.01em;
  font-family: inherit;
  transition: color var(--transition-base);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 24, 32, 0.06);
  color: var(--text-dark);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq__icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
  transition: transform var(--transition-base);
}

.faq__item.is-open .faq__icon {
  background: var(--gold);
  color: var(--white);
}

.faq__item.is-open .faq__icon svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-premium);
}

.faq__answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary-dark);
}

.cta-final {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201, 167, 77, 0.08), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(38, 56, 69, 0.06), transparent 60%);
}

.cta-final__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-final__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.cta-final__title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-dark);
}

.cta-final__cta {
  align-self: flex-start;
}

.cta-final__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 30px 60px rgba(15, 24, 32, 0.2);
}

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

.cta-final__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--gold);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 12px rgba(201, 167, 77, 0.25), 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
}

.cta-final__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 18px rgba(201, 167, 77, 0.3), 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cta-final__play::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.4;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.cta-final__play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  fill: currentColor;
}

.footer {
  background: linear-gradient(180deg, #0F1A24 0%, #0A1218 100%);
  color: var(--white);
  padding: var(--space-20) 0 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.footer__inner {
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
}

.footer__col-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-6);
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer__col-title--gold {
  color: var(--gold);
  font-style: italic;
  font-weight: var(--fw-medium);
}

.footer__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.footer__cta {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--white);
  cursor: pointer;
  transition: color var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__cta:hover {
  color: var(--gold);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: var(--gold);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer__contact-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.footer__address {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-top: var(--space-2);
}

.footer__socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition-base);
}

.footer__social:hover {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__hero {
  position: relative;
  margin-top: var(--space-12);
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 320px;
}

.footer__hero-text {
  font-size: clamp(80px, 15vw, 220px);
  font-weight: var(--fw-black);
  letter-spacing: -0.05em;
  line-height: 0.85;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  user-select: none;
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
}

.footer__hero-logo {
  display: block;
  width: clamp(360px, 60vw, 720px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.45));
  user-select: none;
  pointer-events: none;
}

.footer__hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.footer__hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: blur(2px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border-glass);
  position: relative;
  z-index: 2;
}

.footer__copy,
.footer__rights {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #E5C77A);
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--gold-glow);
}
