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

:root {
  --color-black: #141414;
  --color-black-soft: #242424;
  --color-orange: #cda515;
  --color-orange-bright: #e4bc2a;
  --color-orange-hover: #b89212;
  --color-orange-light: rgba(205, 165, 21, 0.12);
  --color-orange-glow: rgba(205, 165, 21, 0.35);
  --color-grey-dark: #444444;
  --color-grey: #888888;
  --color-grey-light: #efefef;
  --color-grey-bg: #f7f7f7;
  --color-white: #ffffff;
  --color-border: #e2e2e2;
  --color-header-bg: rgba(20, 20, 20, 0.88);

  --color-text: var(--color-black);
  --color-text-muted: var(--color-grey-dark);
  --color-text-on-dark: var(--color-white);
  --color-text-muted-on-dark: #b8b8b8;
  --color-bg: var(--color-grey-bg);
  --color-accent: var(--color-orange);
  --color-accent-hover: var(--color-orange-hover);

  --gradient-gold: linear-gradient(135deg, #e4bc2a 0%, #cda515 50%, #a8840f 100%);
  --gradient-dark: linear-gradient(160deg, #1a1a1a 0%, #2a2a2a 100%);
  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);

  --font: 'Onest', system-ui, sans-serif;
  --display: 'Syne', 'Onest', sans-serif;
  --serif: var(--display);
  --color-cream: #f4f6f8;
  --color-paper: #ffffff;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 8px 28px rgba(205, 165, 21, 0.28);

  --header-height: 72px;
  --container: 1200px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(ellipse 70% 40% at 80% -10%, rgba(205, 165, 21, 0.08), transparent 50%),
    #f4f6f8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(205, 165, 21, 0.25);
  color: var(--color-black);
}

body { min-height: 100svh; }

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
  background: var(--gradient-gold);
  border-radius: 10px;
  box-shadow: var(--shadow-gold);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(205, 165, 21, 0.38);
  filter: brightness(1.03);
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container {
    padding: 0 16px;
  }
}

.section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height) + 8px);
}

/* White */
.section--light {
  background: #ffffff;
}

/* Soft grey */
.section--muted {
  background:
    radial-gradient(circle at 20% 0%, rgba(205, 165, 21, 0.04), transparent 40%),
    linear-gradient(180deg, #f3f3f3 0%, #ececec 100%);
}

.section--muted::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Warm cream */
.section--warm {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(205, 165, 21, 0.07), transparent 55%),
    linear-gradient(180deg, #faf8f4 0%, #f3efe6 100%);
}

/* Charcoal band вЂ” breaks up the page rhythm */
.section--charcoal {
  background: linear-gradient(165deg, #1c1c1c 0%, #2a2a2a 55%, #222222 100%);
  color: var(--color-text-on-dark);
}

.section--charcoal::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 40% at 85% 15%, rgba(205, 165, 21, 0.14), transparent 58%),
    radial-gradient(ellipse 35% 30% at 10% 90%, rgba(255, 255, 255, 0.03), transparent 50%);
  pointer-events: none;
}

/* Contacts / footer zone */
.section--dark {
  background: var(--gradient-dark);
  color: var(--color-text-on-dark);
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(205, 165, 21, 0.1), transparent 60%),
    radial-gradient(ellipse 40% 35% at 90% 80%, rgba(255, 255, 255, 0.04), transparent 55%);
  pointer-events: none;
}

.section__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.section__glow--gold {
  width: 420px;
  height: 420px;
  background: rgba(205, 165, 21, 0.12);
}

.section__glow--top-right {
  top: -180px;
  right: -120px;
}

.section__glow--bottom-left {
  bottom: -160px;
  left: -100px;
}

.section > .container {
  position: relative;
  z-index: 1;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--stagger.reveal--visible > *:nth-child(1) {
  transition-delay: 0ms;
}
.reveal--stagger.reveal--visible > *:nth-child(2) {
  transition-delay: 90ms;
}
.reveal--stagger.reveal--visible > *:nth-child(3) {
  transition-delay: 180ms;
}
.reveal--stagger.reveal--visible > *:nth-child(4) {
  transition-delay: 270ms;
}
.reveal--stagger.reveal--visible > *:nth-child(5) {
  transition-delay: 360ms;
}
.reveal--stagger.reveal--visible > *:nth-child(6) {
  transition-delay: 450ms;
}
.reveal--stagger.reveal--visible > *:nth-child(7) {
  transition-delay: 540ms;
}

.reveal--stagger.reveal--visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-title {
  margin-bottom: 52px;
}

.section-title--center {
  text-align: center;
}

.section-title--left {
  text-align: left;
}

.section-title--left .section-title__line {
  margin-left: 0;
}

.section-title__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.section-title--light .section-title__eyebrow {
  color: var(--color-orange-bright);
}

.section-title__heading,
h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.section-title__heading {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--color-black);
}

.section-title--light .section-title__heading {
  color: var(--color-white);
}

.section-title__line {
  display: block;
  width: 56px;
  height: 4px;
  margin: 18px auto 0;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 12px rgba(205, 165, 21, 0.4);
}

.section-title__subtitle {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.section-title--light .section-title__subtitle {
  color: var(--color-text-muted-on-dark);
}

.section-title--left .section-title__subtitle {
  margin-left: 0;
}

@media (max-width: 768px) {
  .section-title {
    margin-bottom: 36px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  overflow: visible;
  background: var(--color-header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.header--scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header__inner {
  position: relative;
  z-index: 110;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  width: auto;
  height: 28px;
}

.header__nav {
  flex: 1;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav-link {
  position: relative;
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted-on-dark);
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transition: transform var(--transition-spring);
}

.header__nav-link:hover {
  color: var(--color-orange-bright);
  background: rgba(255, 255, 255, 0.05);
}

.header__nav-link:hover::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-on-dark);
  white-space: nowrap;
  transition: color var(--transition);
}

.header__phone:hover {
  color: var(--color-orange);
}

.header__telegram,
.telegram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: #2AABEE;
  border-radius: 10px;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.telegram-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.telegram-icon:hover {
  color: #54c8ff;
  background: rgba(42, 171, 238, 0.12);
  transform: translateY(-1px);
}

.telegram-icon--mobile {
  margin: 0 auto 4px;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: var(--color-black);
  background: var(--gradient-gold);
  border: 0;
  border-radius: 10px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(205, 165, 21, 0.3);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.header__cta:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.header__burger {
  display: none;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  touch-action: manipulation;
  transition: background var(--transition);
}

.header__burger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.header__burger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger--open span:nth-child(2) {
  opacity: 0;
}

.header__burger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__overlay {
  display: none;
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.header__overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.header__mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  z-index: 95;
  width: min(340px, 100%);
  background: var(--color-black);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

.header__mobile--open {
  transform: translateX(0);
}

.header__mobile-list {
  margin: 0;
  padding: 16px;
  list-style: none;
}

.header__mobile-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-on-dark);
  border-radius: var(--radius-md);
  transition:
    color var(--transition),
    background var(--transition);
}

.header__mobile-link:hover {
  color: var(--color-orange);
  background: rgba(255, 255, 255, 0.06);
}

.header__mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.header__mobile-phone {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: var(--color-text-on-dark);
}

.header__mobile-cta {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  color: var(--color-black);
  background: var(--gradient-gold);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(205, 165, 21, 0.3);
  transition: filter var(--transition);
}

.header__mobile-cta:hover {
  filter: brightness(1.04);
}

@media (max-width: 1180px) {
  .header__inner {
    gap: 8px;
  }

  .header__nav {
    display: none;
  }

  .header__phone,
  .header__cta {
    display: none;
  }

  .header__actions {
    margin-left: auto;
    gap: 4px;
  }

  .header__burger {
    display: flex;
  }

  .header__overlay,
  .header__mobile {
    display: block;
  }
}

@media (max-width: 480px) {
  .header__logo-img {
    height: 24px;
  }

  .header__mobile {
    width: 100%;
    border-left: 0;
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 48px) 0 120px;
  overflow: hidden;
  color: var(--color-white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #0e1116;
}

.hero__bg-image {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center 30%;
  animation: hero-kenburns 22s ease-in-out infinite alternate;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(14, 17, 22, 0.94) 0%,
      rgba(14, 17, 22, 0.78) 42%,
      rgba(14, 17, 22, 0.42) 72%,
      rgba(14, 17, 22, 0.28) 100%
    );
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 42% at 82% 18%, rgba(205, 165, 21, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 35% 30% at 15% 85%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, transparent 55%, rgba(20, 20, 20, 0.65) 100%);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.14) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black 0%, transparent 88%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  animation: hero-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__copy {
  max-width: 620px;
  color: var(--color-white);
  background: none;
  backdrop-filter: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-orange-bright);
  background: rgba(205, 165, 21, 0.1);
  border: 1px solid rgba(205, 165, 21, 0.28);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--color-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-orange-glow);
  animation: hero-pulse 2s ease-in-out infinite;
}

.hero__title {
  margin: 16px 0 22px;
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--color-white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.hero__title-accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-muted-on-dark);
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 36px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  border-radius: 10px;
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    transform var(--transition-spring),
    border-color var(--transition);
}

.hero__btn--primary {
  color: var(--color-black);
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
}

.hero__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(205, 165, 21, 0.42);
  filter: brightness(1.04);
}

.hero__btn--secondary {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__btn--secondary:hover {
  border-color: rgba(205, 165, 21, 0.55);
  color: var(--color-orange-bright);
  background: rgba(205, 165, 21, 0.1);
  transform: translateY(-2px);
}

.hero__stats {
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 28px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-value {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__stat-label {
  font-size: 13px;
  color: var(--color-grey);
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero__visual::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 165, 21, 0.2) 0%, transparent 68%);
  filter: blur(2px);
  animation: hero-glow 5s ease-in-out infinite alternate;
}

.hero__card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero__card--main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  padding: 44px 36px;
  text-align: center;
}

.hero__card--main::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(205, 165, 21, 0.45), transparent 40%, rgba(255, 255, 255, 0.15));
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.hero__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.hero__card-icon img {
  width: 168px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.hero__card-title {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 600;
  color: var(--color-white);
}

.hero__card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted-on-dark);
}

.hero__card--float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
  background: rgba(36, 36, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: hero-float 4s ease-in-out infinite;
}

.hero__card--top {
  top: 10%;
  left: -6%;
}

.hero__card--bottom {
  bottom: 14%;
  right: -4%;
  color: var(--color-orange-bright);
}

.hero__card--bottom svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(205, 165, 21, 0.5));
}

.hero__card-dot {
  width: 8px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--color-orange-glow);
  animation: hero-pulse 2s ease-in-out infinite;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  opacity: 0.7;
  transition: opacity var(--transition);
  animation: hero-fade-in 1s 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--color-orange), transparent);
  animation: hero-scroll-line 2s ease-in-out infinite;
}

@keyframes hero-kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes hero-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

@keyframes hero-glow {
  from {
    opacity: 0.6;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes hero-scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__brand {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
    align-items: flex-start;
    padding-bottom: 48px;
  }

  .hero__brand {
    display: none;
  }

  .hero__subtitle {
    font-size: 16px;
  }

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

  .hero__notes {
    flex-direction: column;
    gap: 12px;
  }

  .hero__card--float {
    font-size: 12px;
    padding: 10px 14px;
  }

  .hero__card--top {
    top: 4%;
    left: 50%;
    transform: translateX(-50%);
    animation: none;
  }

  .hero__card--bottom {
    bottom: 4%;
    right: 50%;
    transform: translateX(50%);
    animation: none;
  }

  .hero__scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-image,
  .hero__card--float,
  .hero__card-dot,
  .hero__visual::before,
  .hero__scroll-line,
  .hero__inner {
    animation: none;
  }
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-us__card {
  position: relative;
  padding: 36px 28px 32px;
  text-align: center;
  background: var(--color-grey-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform var(--transition-spring),
    box-shadow var(--transition),
    border-color var(--transition);
}

.why-us__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-spring);
}

.why-us__card:hover {
  transform: translateY(-6px);
  border-color: rgba(205, 165, 21, 0.3);
  box-shadow: var(--shadow-md);
}

.why-us__card:hover::before {
  transform: scaleX(1);
}

.why-us__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(205, 165, 21, 0.12);
}

.why-us__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  color: var(--color-black);
  background: linear-gradient(145deg, rgba(205, 165, 21, 0.16), rgba(205, 165, 21, 0.06));
  border: 1px solid rgba(205, 165, 21, 0.2);
  border-radius: 50%;
  transition: transform var(--transition-spring);
}

.why-us__card:hover .why-us__icon {
  transform: scale(1.06);
}

.why-us__icon svg {
  width: 30px;
  height: 30px;
}

.why-us__title {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 600;
  color: var(--color-black);
}

.why-us__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .why-us__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.services__accordion {
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.services__item {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.services__item:last-child {
  border-bottom: none;
}

.services__item--open {
  background: linear-gradient(90deg, rgba(205, 165, 21, 0.06) 0%, transparent 100%);
}

.services__trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: var(--color-black);
  background: transparent;
  transition:
    color var(--transition),
    background var(--transition);
}

.services__trigger:hover {
  background: rgba(0, 0, 0, 0.02);
}

.services__item--open .services__trigger {
  color: var(--color-orange-hover);
}

.services__trigger-index {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-orange);
  opacity: 0.7;
}

.services__trigger-title {
  flex: 1;
}

.services__trigger-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-orange);
  background: var(--color-orange-light);
  border-radius: 50%;
  transition:
    transform var(--transition-spring),
    background var(--transition);
}

.services__item--open .services__trigger-icon {
  transform: rotate(180deg);
  background: var(--color-orange);
  color: var(--color-black);
}

.services__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.services__panel--open {
  grid-template-rows: 1fr;
}

.services__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.services__list {
  margin: 0;
  padding: 4px 28px 24px 68px;
  list-style: none;
  color: var(--color-text-muted);
}

.services__list li {
  position: relative;
  padding: 8px 0 8px 18px;
  font-size: 15px;
  line-height: 1.6;
}

.services__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .services__trigger {
    padding: 18px 20px;
    font-size: 15px;
  }

  .services__list {
    padding-left: 52px;
    padding-right: 20px;
  }
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team__card {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition:
    transform var(--transition-spring),
    box-shadow var(--transition);
}

.team__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}

.team__photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-grey-light), #ddd);
}

.team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.team__card:hover .team__photo {
  transform: scale(1.05);
}

.team__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 20, 20, 0.55) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.team__card:hover .team__photo-overlay {
  opacity: 1;
}

.team__info {
  padding: 22px 22px 24px;
  border-top: 3px solid transparent;
  background:
    linear-gradient(var(--color-white), var(--color-white)) padding-box,
    linear-gradient(90deg, transparent, rgba(205, 165, 21, 0.5), transparent) border-box;
}

.team__name {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-black);
}

.team__role {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-orange-hover);
}

@media (max-width: 640px) {
  .team__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reviews__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  background: var(--color-white);
  border: 1px solid rgba(205, 165, 21, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-spring),
    box-shadow var(--transition);
}

.reviews__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.reviews__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--color-orange);
}

.reviews__stars svg {
  width: 16px;
  height: 16px;
}

.reviews__quote {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 26px;
  color: var(--color-orange);
  opacity: 0.15;
}

.reviews__text {
  flex: 1;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.reviews__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.reviews__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  background: var(--gradient-gold);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(205, 165, 21, 0.3);
}

.reviews__author {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
}

@media (max-width: 900px) {
  .reviews__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

.reviews__form-section {
  margin-top: 48px;
}

.reviews__form-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px;
  background: var(--color-white);
  border: 1px solid rgba(205, 165, 21, 0.16);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.reviews__form-title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-black);
  text-align: center;
}

.reviews__form-subtitle {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  text-align: center;
}

.reviews__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reviews__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black);
}

.reviews__field input,
.reviews__field textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  color: var(--color-black);
  background: var(--color-grey-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.reviews__field input:focus,
.reviews__field textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(205, 165, 21, 0.12);
}

.reviews__field textarea {
  resize: vertical;
  min-height: 120px;
}

.reviews__rating {
  display: flex;
  gap: 6px;
}

.reviews__rating-star {
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1;
  color: #ddd;
  background: var(--color-grey-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    transform var(--transition),
    border-color var(--transition);
}

.reviews__rating-star.is-active {
  color: var(--color-orange);
  border-color: rgba(205, 165, 21, 0.35);
}

.reviews__rating-star:hover {
  transform: scale(1.05);
}

.reviews__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.reviews__submit {
  width: 100%;
  border: none;
}

.reviews__form-success,
.reviews__form-error {
  margin: 0 0 16px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: var(--radius-md);
}

.reviews__form-success {
  color: #245c2a;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.25);
}

.reviews__form-error {
  color: #8b1e1e;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.2);
}

@media (max-width: 640px) {
  .reviews__form-wrap {
    padding: 28px 22px;
  }
}

.certificates__scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.certificates__scroll::-webkit-scrollbar {
  height: 5px;
}

.certificates__scroll::-webkit-scrollbar-track {
  background: var(--color-border);
  border-radius: var(--radius-full);
}

.certificates__scroll::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
}

.certificates__item {
  flex: 0 0 min(300px, 78vw);
  margin: 0;
  scroll-snap-align: start;
}

.certificates__frame {
  padding: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-spring),
    box-shadow var(--transition);
}

.certificates__frame:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.certificates__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--color-grey-light);
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clients__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 92px;
  padding: 22px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
  background: var(--color-grey-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    transform var(--transition-spring);
}

.clients__card:hover {
  color: var(--color-orange-hover);
  border-color: rgba(205, 165, 21, 0.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.clients__arrow {
  flex-shrink: 0;
  font-size: 18px;
  opacity: 0.35;
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.clients__card:hover .clients__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.clients__name {
  line-height: 1.35;
}

.contacts__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contacts__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contacts__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contacts__item + .contacts__item {
  margin-top: 24px;
}

.contacts__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--color-orange-bright);
  background: rgba(205, 165, 21, 0.1);
  border: 1px solid rgba(205, 165, 21, 0.2);
  border-radius: var(--radius-md);
}

.contacts__icon svg {
  width: 22px;
  height: 22px;
}

.contacts__label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-grey);
}

.contacts__value {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  transition: color var(--transition);
}

a.contacts__value:hover {
  color: var(--color-orange-bright);
}

.contacts__map-link {
  display: inline-flex;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange-bright);
  transition: color var(--transition);
}

.contacts__map-link:hover {
  color: var(--color-white);
}

.contacts__form-wrap {
  padding: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.contacts__form-title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-white);
}

.contacts__form-subtitle {
  margin: 0 0 28px;
  font-size: 14px;
  color: var(--color-text-muted-on-dark);
}

.contacts__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contacts__field input,
.contacts__field textarea {
  width: 100%;
  padding: 15px 18px;
  font: inherit;
  color: var(--color-black);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.contacts__field input:focus,
.contacts__field textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(205, 165, 21, 0.15);
}

.contacts__field textarea {
  resize: vertical;
  min-height: 110px;
}

.contacts__submit {
  margin-top: 8px;
  width: 100%;
  border: none;
}

.contacts__success {
  margin: 0;
  padding: 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-white);
  background: rgba(205, 165, 21, 0.12);
  border: 1px solid rgba(205, 165, 21, 0.35);
  border-radius: var(--radius-md);
}

.contacts__error {
  margin: 0 0 16px;
  padding: 14px 16px;
  font-size: 14px;
  color: #ffb4b4;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.3);
  border-radius: var(--radius-md);
}

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

@media (max-width: 900px) {
  .contacts__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .contacts__form-wrap {
    padding: 28px 22px;
  }
}

.footer {
  position: relative;
  padding: 52px 0 120px;
  background: var(--color-black-soft);
  color: var(--color-text-muted-on-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0.8;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}

.footer__logo {
  width: auto;
  height: 28px;
  margin-bottom: 22px;
  opacity: 0.95;
}

.footer__company {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
}

.footer__text {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.85;
}

.footer__contact {
  text-align: right;
}

.footer__contact-item {
  margin: 0 0 12px;
  font-size: 14px;
}

.footer__contact a {
  color: var(--color-white);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--color-orange-bright);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__contact {
    text-align: left;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 6px 12px;
  color: var(--color-orange-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(205, 165, 21, 0.12);
  border: 1px solid rgba(205, 165, 21, 0.28);
  border-radius: 6px;
}

.section--charcoal .eyebrow,
.section--dark .eyebrow,
.hero .eyebrow {
  background: rgba(205, 165, 21, 0.14);
  border-color: rgba(205, 165, 21, 0.35);
  color: var(--color-orange-bright);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}

.section-head h2,
.section h2:not(.section-title__heading) {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 18ch;
}

.section-head--light h2,
.section--charcoal h2,
.section--dark h2 {
  color: var(--color-white);
}

.lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 46ch;
}

.lead--light,
.lead--on-dark {
  color: rgba(255, 255, 255, 0.68);
}

.hero__notes {
  display: flex;
  gap: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.hero__notes p {
  margin: 0;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__notes p:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.hero__notes strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
}

.hero__brand {
  position: relative;
  justify-self: end;
  width: min(100%, 420px);
}

.hero__brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 48px 36px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(205, 165, 21, 0.16), transparent 55%),
    rgba(20, 20, 20, 0.72);
  border: 1px solid rgba(205, 165, 21, 0.35);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}

.hero__brand-card img {
  width: min(100%, 220px);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.hero__brand-title {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-white);
}

.hero__brand-text {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.hero__chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(14, 17, 22, 0.88);
  border: 1px solid rgba(205, 165, 21, 0.4);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.hero__chip span {
  color: var(--color-orange-bright);
  font-weight: 800;
}

.trust-wrap {
  padding: 0 0 12px;
  margin-top: -56px;
  position: relative;
  z-index: 2;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #0e1116;
  border: 1px solid rgba(205, 165, 21, 0.28);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(14, 17, 22, 0.28);
}

.trust article {
  background: transparent;
  padding: 26px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust article:last-child {
  border-right: 0;
}

.trust strong {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--color-orange-bright);
}

.trust span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offer {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-orange);
  border-radius: 12px;
  box-shadow: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.offer:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(205, 165, 21, 0.45);
  border-left-color: var(--color-orange);
}

.offer--wide {
  background: #fff;
  color: var(--color-black);
  border-color: var(--color-border);
  border-left-color: var(--color-orange);
}

.offer--wide h3,
.offer--wide p,
.offer--wide li {
  color: inherit;
}

.offer--wide p,
.offer--wide li {
  color: var(--color-text-muted);
}

.offer__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-black);
  background: var(--gradient-gold);
  border-radius: 8px;
}

.offer h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.offer p {
  margin: 0 0 16px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.offer ul {
  margin: 0 0 auto;
  padding: 0 0 20px 18px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.offer .btn-ghost {
  margin-top: 8px;
  align-self: flex-start;
}

.offer--wide .btn-ghost {
  color: var(--color-black);
  border-color: rgba(20, 20, 20, 0.14);
}

.offer--wide .btn-ghost:hover {
  border-color: var(--color-orange);
  background: rgba(205, 165, 21, 0.1);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  background: transparent;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: var(--color-orange);
  background: rgba(205, 165, 21, 0.1);
}

.process .steps {
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  padding: 0 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.step span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  font-family: var(--display);
  color: var(--color-black);
  font-size: 16px;
  font-weight: 800;
  background: var(--gradient-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px #ececec;
}

.step h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 800;
  max-width: none;
  color: var(--color-black);
}

.step p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about__photo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--color-paper);
  min-height: 520px;
  border: 1px solid var(--color-border);
}

.about__photo::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: var(--gradient-gold);
}

.about__photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 20%;
}

.about__copy h2 {
  max-width: 16ch;
}

.quote {
  margin: 28px 0 16px;
  padding: 22px 22px 22px 24px;
  background: transparent;
  border-left: 3px solid var(--color-orange);
  border-radius: 0;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 700;
  color: var(--color-black);
}

.about__sign {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 820px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  background: none;
  border: 0;
  cursor: pointer;
}

.faq__question span {
  color: var(--color-orange-hover);
  flex-shrink: 0;
}

.faq__answer {
  display: none;
  margin: 0;
  padding: 0 20px 18px;
  color: var(--color-text-muted);
  max-width: none;
  line-height: 1.65;
}

.faq__item.is-open {
  border-color: rgba(205, 165, 21, 0.4);
}

.faq__item.is-open .faq__answer {
  display: block;
}

.cta {
  padding-top: 72px;
}

.cta-band {
  display: block;
  max-width: 680px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 100% 0%, rgba(205, 165, 21, 0.16), transparent 42%),
    #161616;
  color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(205, 165, 21, 0.28);
}

.cta-band img {
  display: none;
}

.cta-form {
  padding: 48px 44px;
}

.cta-form h2 {
  color: var(--color-white);
  max-width: 16ch;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border-radius: 10px;
  padding: 16px;
  outline: none;
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.lead-form textarea {
  min-height: 90px;
  resize: vertical;
}

.lead-form select option {
  color: var(--color-black);
}

.check {
  display: flex;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.lead-form--light input,
.lead-form--light textarea,
.lead-form--light select {
  background: #fff;
  color: var(--color-black);
  border-color: var(--color-border);
}

.lead-form--light input::placeholder,
.lead-form--light textarea::placeholder {
  color: var(--color-grey);
}

.lead-form--light .check {
  color: var(--color-text-muted);
}

.contacts__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}

.contacts__info h2 {
  color: var(--color-white);
  margin: 12px 0 28px;
}

.bottom-bar {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) 16px max(16px, env(safe-area-inset-bottom, 0px));
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 17, 22, 0.7);
}

.modal-card {
  position: relative;
  width: min(480px, 100%);
  max-height: min(90dvh, calc(100dvh - 32px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  color: var(--color-black);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  z-index: 1;
  border: 1px solid var(--color-border);
}

.modal-card h2 {
  margin: 8px 0;
  font-size: 28px;
  max-width: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: var(--color-grey-light);
  color: var(--color-black);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 16px);
  background: var(--color-black);
  color: var(--color-white);
  padding: 14px 18px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 220;
  width: max-content;
  max-width: calc(100% - 32px);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.modal-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 980px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

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

  .trust article:nth-child(2) {
    border-right: 0;
  }

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

  .about__photo,
  .about__photo img {
    min-height: 420px;
  }

  .bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8px;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 40;
    padding: 8px;
    background: rgba(14, 17, 22, 0.94);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  body.menu-open .bottom-bar,
  body.modal-open .bottom-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .footer {
    padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
  }

  .bottom-bar .btn-ghost {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .bottom-bar .btn-ghost,
  .bottom-bar .btn-gold {
    width: 100%;
    min-height: 48px;
    border-radius: 10px;
  }
}

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

  .trust-wrap {
    margin-top: 0;
  }

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

  .trust article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero__title {
    font-size: clamp(32px, 9vw, 38px);
  }

  .hero__notes {
    flex-direction: column;
    gap: 12px;
  }

  .hero__notes p {
    border-right: 0;
    margin: 0;
    padding: 0;
  }

  .cta-form {
    padding: 32px 22px;
  }

  .cta-form h2 {
    max-width: none;
  }

  .modal-card {
    padding: 22px 18px 18px;
  }

  .modal-card h2 {
    font-size: 24px;
    padding-right: 36px;
  }

  .toast {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
}

@media (hover: none) {
  .telegram-icon:hover,
  .header__cta:hover,
  .header__mobile-cta:hover {
    transform: none;
  }
}






