@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
}

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  font: inherit;
}

html {
  height: 100%;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  line-height: 1.5;
}

a:where([class]) {
  display: inline-flex;
}

button,
label {
  cursor: pointer;
}

button {
  -webkit-tap-highlight-color: transparent;
}

:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-white: #ffffff;
  --color-white-90: #f8f9fa;
  --color-white-80: #e9ecef;
  --color-white-70: #dee2e6;
  --color-gray-10: #1a1a1a;
  --color-gray-20: #2d2d2d;
  --color-gray-30: #404040;
  --color-gray-40: #525252;
  --color-gray-50: #666666;
  --color-gray-60: #7a7a7a;
  --color-gray-70: #8f8f8f;
  --color-gray-80: #a3a3a3;
  --color-gray-90: #b8b8b8;
  --color-black: #000000;
  --color-black-90: #111111;
  --color-black-80: #222222;
  --color-black-70: #333333;
  --color-black-60: #444444;
  --color-steel: #2a3439;
  --color-steel-light: #3d4a52;
  --color-steel-dark: #1a1f22;
  --color-chrome: #e8e8e8;
  --color-chrome-light: #f5f5f5;
  --color-chrome-dark: #d1d1d1;
  --color-silver: #c0c0c0;
  --color-graphite: #383838;
  --color-concrete: #7d7d7d;
  --button-dark-hover-color: var(--color-chrome);
  --text-on-dark: var(--color-white);
  --text-on-light: var(--color-black-80);
}
:root .btn--dark {
  background: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-black);
}
@media (any-hover: hover) {
  :root .btn--dark:hover {
    background: var(--color-black-80);
    border-color: var(--color-chrome);
    color: var(--color-chrome);
  }
}
@media (any-hover: none) {
  :root .btn--dark:active {
    background: var(--color-black-80);
    border-color: var(--color-chrome);
    color: var(--color-chrome);
  }
}
:root {
  --color-accent: var(--color-steel);
  --color-accent-light: var(--color-steel-light);
  --color-accent-dark: var(--color-steel-dark);
  --color-primary: var(--color-black-80);
  --color-primary-light: var(--color-gray-40);
  --color-primary-dark: var(--color-black-90);
  --bg-primary: var(--color-white);
  --bg-secondary: var(--color-white-90);
  --bg-tertiary: var(--color-white-80);
  --bg-card: var(--color-white);
  --bg-dark: var(--color-black-90);
  --border-default: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.15);
  --border-focus: rgba(42, 52, 57, 0.3);
  --border-divider: 0.125rem solid var(--color-white-80);
  --border: 0.0625rem solid var(--color-white-80);
  --text-primary: var(--color-black-80);
  --text-secondary: var(--color-gray-50);
  --text-tertiary: var(--color-gray-70);
  --text-light: var(--color-white);
  --font-family-base: "Roboto", sans-serif;
  --font-family-accent: "Raleway", sans-serif;
  --container-width: 100rem;
  --container-padding-x: 1rem;
  --transition-duration: 0.3s;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
  --shadow-2xl: 0 20px 40px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  --radius-xs: 0.125rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  --gradient-dark: linear-gradient(
    135deg,
    var(--color-black-90) 0%,
    var(--color-steel-dark) 100%
  );
  --gradient-steel: linear-gradient(
    135deg,
    var(--color-steel) 0%,
    var(--color-steel-dark) 100%
  );
  --gradient-chrome: linear-gradient(
    135deg,
    var(--color-chrome) 0%,
    var(--color-chrome-dark) 100%
  );
  --gradient-concrete: linear-gradient(
    135deg,
    var(--color-gray-30) 0%,
    var(--color-concrete) 100%
  );
  --gradient-fade: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  --card-overlay: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
  --card-overlay-hover: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.1) 30%,
      rgba(0, 0, 0, 0.8) 100%
    );
    --hero-bg-overlay: linear-gradient(
      rgba(0, 0, 0, 0.9),
      rgba(42, 52, 57, 0.95)
    );
  --hero-grain-overlay: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.1'/%3E%3C/svg%3E");
  --hero-light-effect: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  --hero-metal-texture: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 50%,
    transparent 100%
  );
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: blur(12px);
  --backdrop-blur: blur(10px);
  --text-stroke:
    -1px -1px 0 var(--color-black), 1px -1px 0 var(--color-black),
    -1px 1px 0 var(--color-black), 1px 1px 0 var(--color-black);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: var(--color-black-90);
    --bg-secondary: var(--color-black-80);
    --bg-tertiary: var(--color-black-70);
    --bg-card: var(--color-black-80);
    --text-primary: var(--color-white-90);
    --text-secondary: var(--color-gray-80);
    --text-tertiary: var(--color-gray-60);
    --border-default: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --border-focus: rgba(200, 200, 200, 0.3);
    --glass-bg: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
  }
}
@media (width <= 90.06125rem) {
  :root {
    --container-width: 80rem;
  }
}
html.is-lock {
  overflow: hidden;
}

body {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-base);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex-grow: 1;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--font-family-accent);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

h1, .h1 {
  font-size: clamp(2rem, 1.6rem + 2vw, 3.5rem);
}

h2, .h2 {
  font-size: clamp(1.75rem, 1.5rem + 1.25vw, 2.75rem);
}

h3, .h3 {
  font-size: clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
}

h4, .h4 {
  font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
}

p {
  margin-block: 0;
  color: var(--text-secondary);
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom, 1.5rem);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-duration) ease;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-gray-70);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-gray-70);
  }
}

:focus-visible {
  outline: 0.125rem solid var(--color-accent);
  outline-offset: 0.25rem;
  border-radius: var(--radius-sm);
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.loading-spinner {
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--color-white);
  animation: spin 1s linear infinite;
  margin-left: 0.625rem;
  vertical-align: middle;
}
.form-section--dark .loading-spinner {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: var(--color-chrome);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: all var(--transition-duration) ease;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.btn:hover::before {
  left: 100%;
}
.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
@media (any-hover: hover) {
  .btn--primary:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
}
@media (any-hover: none) {
  .btn--primary:active {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
}
.btn--outline {
  background-color: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
}
@media (any-hover: hover) {
  .btn--outline:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
}
@media (any-hover: none) {
  .btn--outline:active {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
}
.btn--black {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}
@media (any-hover: hover) {
  .btn--black:hover {
    background-color: var(--color-black-80);
    border-color: var(--color-black-80);
  }
}
@media (any-hover: none) {
  .btn--black:active {
    background-color: var(--color-black-80);
    border-color: var(--color-black-80);
  }
}
.btn--white {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}
@media (any-hover: hover) {
  .btn--white:hover {
    background-color: var(--color-white-90);
    border-color: var(--color-white-90);
  }
}
@media (any-hover: none) {
  .btn--white:active {
    background-color: var(--color-white-90);
    border-color: var(--color-white-90);
  }
}
.btn--large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}
.btn--small {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}
.text-gradient {
  background: var(--gradient-steel);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.border-gradient {
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box, var(--gradient-steel) border-box;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.grain-texture {
  position: relative;
}
.grain-texture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-grain-overlay);
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(0.3ms, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--text-light);
  background: var(--color-black-90);
}
@media (width > 63.99875rem) {
  .hero {
    padding-top: 8.75rem;
    padding-bottom: 3.75rem;
  }
}
@media (width <= 47.99875rem) {
  .hero {
    padding-top: 5rem;
    padding-bottom: 1.875rem;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-metal-texture), var(--gradient-dark);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: repeat, no-repeat;
  background-blend-mode: overlay, normal;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-light-effect), var(--hero-grain-overlay);
  background-size: cover, auto;
  background-position: center, center;
  background-repeat: no-repeat, repeat;
  background-blend-mode: screen, overlay;
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}
.hero__container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: 100%;
}
@media (width > 90.06125rem) {
  .hero__container {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 3.75rem;
  }
}
@media (width <= 47.99875rem) {
  .hero__container {
    gap: 1.875rem;
  }
}
.hero__content {
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}
@media (width > 90.06125rem) {
  .hero__content {
    text-align: left;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  max-width: 100%;
  white-space: nowrap;
}
@media (width <= 47.99875rem) {
  .hero__badge {
    padding: 0.375rem 0.75rem;
    gap: 0.375rem;
  }
}
.hero__badge i {
  color: var(--color-chrome);
  font-size: 0.75rem;
}
@media (width <= 47.99875rem) {
  .hero__badge i {
    font-size: 0.625rem;
  }
}
.hero__badge span {
  font-size: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem);
  font-weight: 500;
  color: var(--color-gray-80);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (width <= 47.99875rem) {
  .hero__badge span {
    font-size: clamp(0.5625rem, 0.525rem + 0.1875vw, 0.75rem);
  }
}
.hero__title {
  font-size: clamp(2rem, 1.75rem + 1.25vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  word-break: break-word;
  hyphens: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (width <= 47.99875rem) {
  .hero__title {
    font-size: clamp(1.625rem, 1.5rem + 0.625vw, 2.25rem);
    margin-bottom: 1.25rem;
  }
}
.hero__title span {
  display: block;
  overflow-wrap: break-word;
}
.hero__title span:nth-child(1) {
  color: var(--color-white);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero__title span:nth-child(2) {
  color: var(--color-chrome);
  position: relative;
  display: inline-block;
  font-weight: 700;
  margin: 0.25rem 0;
}
.hero__title span:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-chrome) 50%, transparent 100%);
}
@media (width <= 47.99875rem) {
  .hero__title span:nth-child(2)::after {
    bottom: -0.125rem;
  }
}
.hero__title span:nth-child(3) {
  color: var(--color-gray-80);
  font-weight: 400;
  opacity: 0.9;
}
.hero__subtitle {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  color: var(--color-gray-70);
  margin-bottom: 2.5rem;
  max-width: 37.5rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  word-break: break-word;
}
@media (width > 90.06125rem) {
  .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (width <= 47.99875rem) {
  .hero__subtitle {
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    margin-bottom: 2rem;
    line-height: 1.5;
  }
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  width: 100%;
}
@media (width > 90.06125rem) {
  .hero__actions {
    justify-content: flex-start;
  }
}
@media (width <= 47.99875rem) {
  .hero__actions {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.hero__actions .btn {
  flex: 1;
  min-width: 10rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (any-hover: hover) {
  .hero__actions .btn:hover {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-xl);
  }
}
@media (any-hover: none) {
  .hero__actions .btn:active {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-xl);
  }
}
@media (width <= 47.99875rem) {
  .hero__actions .btn {
    min-width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  }
}
.hero__actions .btn--primary {
  background: var(--gradient-steel);
  border: none;
  color: var(--color-white);
}
@media (any-hover: hover) {
  .hero__actions .btn--primary:hover {
    background: var(--gradient-steel);
    filter: brightness(1.1);
  }
}
@media (any-hover: none) {
  .hero__actions .btn--primary:active {
    background: var(--gradient-steel);
    filter: brightness(1.1);
  }
}
.hero__actions .btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .hero__actions .btn--outline:hover {
    border-color: var(--color-chrome);
    background: rgba(255, 255, 255, 0.05);
  }
}
@media (any-hover: none) {
  .hero__actions .btn--outline:active {
    border-color: var(--color-chrome);
    background: rgba(255, 255, 255, 0.05);
  }
}
.hero__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1rem;
  max-width: 31.25rem;
  margin: 0 auto 2rem;
}
@media (width > 90.06125rem) {
  .hero__features {
    margin: 0 0 2rem;
    max-width: none;
  }
}
@media (width <= 47.99875rem) {
  .hero__features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 18.75rem;
  }
}
@media (width <= 30.06125rem) {
  .hero__features {
    max-width: 100%;
  }
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-width: 0;
  transition: all var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .hero__feature:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-0.125rem);
    background: rgba(255, 255, 255, 0.05);
  }
}
@media (any-hover: none) {
  .hero__feature:active {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-0.125rem);
    background: rgba(255, 255, 255, 0.05);
  }
}
@media (width <= 47.99875rem) {
  .hero__feature {
    padding: 0.75rem;
    gap: 0.625rem;
  }
}
.hero__feature i {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  color: var(--color-chrome);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (width <= 47.99875rem) {
  .hero__feature i {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }
}
.hero__feature span {
  font-size: clamp(0.75rem, 0.7125rem + 0.1875vw, 0.9375rem);
  font-weight: 500;
  color: var(--color-gray-80);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
@media (width <= 47.99875rem) {
  .hero__feature span {
    font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem);
  }
}
.hero__visual {
  position: relative;
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media (width > 90.06125rem) {
  .hero__visual {
    max-width: none;
    margin: 0;
  }
}
.hero__visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  filter: blur(2.5rem);
  z-index: -1;
  opacity: 0.3;
}
@media (width <= 47.99875rem) {
  .hero__visual::before {
    filter: blur(1.25rem);
  }
}
.hero__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2xl), 0 0 0 0.0625rem rgba(255, 255, 255, 0.05);
  background: var(--gradient-concrete);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-image: url(/images/Главная/hero-image.jpeg);
  background-size: cover;
}
@media (width <= 47.99875rem) {
  .hero__image-wrapper {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
  }
}
.hero__image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(0, 0, 0, 0.8) 100%);
}
.hero__image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}
@media (width <= 47.99875rem) {
  .hero__image-content {
    padding: 1rem;
  }
}
.hero__image-content-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  color: var(--color-black);
  font-weight: 700;
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem);
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (width <= 47.99875rem) {
  .hero__image-content-badge {
    padding: 0.375rem 0.75rem;
    font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
  }
}
.hero__image-content-title {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  word-break: break-word;
  text-shadow: var(--text-stroke);
}
@media (width <= 47.99875rem) {
  .hero__image-content-title {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  }
}
.hero__image-content-desc {
  font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
  color: var(--color-gray-70);
  opacity: 0.9;
  word-break: break-word;
}
@media (width <= 47.99875rem) {
  .hero__image-content-desc {
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  }
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}
@media (width > 63.99875rem) {
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
@media (width <= 30.06125rem) {
  .hero__stats {
    grid-template-columns: 1fr;
    max-width: 13.75rem;
    margin: 0 auto;
  }
}
.hero__stat {
  text-align: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-width: 0;
  transition: all var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .hero__stat:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-0.125rem);
  }
}
@media (any-hover: none) {
  .hero__stat:active {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-0.125rem);
  }
}
@media (width <= 47.99875rem) {
  .hero__stat {
    padding: 1rem;
  }
}
.hero__stat-number {
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
  font-weight: 700;
  color: var(--color-chrome);
  margin-bottom: 0.5rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (width <= 47.99875rem) {
  .hero__stat-number {
    font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
  }
}
.hero__stat-label {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem);
  color: var(--color-gray-70);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (width <= 47.99875rem) {
  .hero__stat-label {
    font-size: clamp(0.625rem, 0.5875rem + 0.1875vw, 0.8125rem);
  }
}
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media (width <= 90.06125rem) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll-button {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-gray-80);
  font-size: 1.25rem;
  transition: all var(--transition-duration);
  animation: scrollPulse 2s ease-in-out infinite;
}
@media (any-hover: hover) {
  .hero__scroll-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-chrome);
    color: var(--color-white);
    transform: translateX(-50%) scale(1.1);
  }
}
@media (any-hover: none) {
  .hero__scroll-button:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-chrome);
    color: var(--color-white);
    transform: translateX(-50%) scale(1.1);
  }
}

@keyframes scrollPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.7;
  }
}
.hero--light {
  background: var(--bg-primary);
  color: var(--text-primary);
}
.hero--light::before {
  background-image: var(--hero-metal-texture), var(--gradient-chrome);
}
.hero--light::after {
  opacity: 0.2;
}
.hero--light .hero__badge {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}
.hero--light .hero__badge i {
  color: var(--color-gray-60);
}
.hero--light .hero__badge span {
  color: var(--color-gray-60);
}
.hero--light .hero__title {
  text-shadow: none;
}
.hero--light .hero__title span:nth-child(2) {
  color: var(--color-steel);
}
.hero--light .hero__title span:nth-child(2)::after {
  background: linear-gradient(90deg, transparent 0%, var(--color-steel) 50%, transparent 100%);
}
.hero--light .hero__subtitle {
  color: var(--text-secondary);
}
.hero--light .hero__feature {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.05);
}
@media (any-hover: hover) {
  .hero--light .hero__feature:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
  }
}
@media (any-hover: none) {
  .hero--light .hero__feature:active {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
  }
}
.hero--light .hero__feature i {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--color-gray-60);
}
.hero--light .hero__feature span {
  color: var(--text-secondary);
}
.hero--light .hero__stat {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.05);
}
@media (any-hover: hover) {
  .hero--light .hero__stat:hover {
    border-color: rgba(0, 0, 0, 0.1);
  }
}
@media (any-hover: none) {
  .hero--light .hero__stat:active {
    border-color: rgba(0, 0, 0, 0.1);
  }
}
.hero--light .hero__stat-number {
  color: var(--color-steel);
}
.hero--light .hero__stat-label {
  color: var(--text-tertiary);
}

.services {
  position: relative;
  padding: 5rem 0;
  background-color: var(--bg-primary);
  overflow: hidden;
}
@media (width > 63.99875rem) {
  .services {
    padding: 7.5rem 0;
  }
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.98)), var(--hero-grain-overlay);
  background-size: cover, auto;
  background-position: center, center;
  background-repeat: no-repeat, repeat;
  opacity: 0.9;
  z-index: 1;
}
.services::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 25rem;
  height: 25rem;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
  filter: blur(2.5rem);
  z-index: 1;
  pointer-events: none;
}
@media (width <= 47.99875rem) {
  .services::after {
    display: none;
  }
}
.services__container {
  position: relative;
  z-index: 2;
}
.services__header {
  text-align: center;
  margin-bottom: 3.75rem;
}
@media (width > 63.99875rem) {
  .services__header {
    margin-bottom: 5rem;
  }
}
.services__supertitle {
  display: inline-block;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 600;
  color: var(--color-gray-60);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}
.services__supertitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 1px;
  background: var(--color-gray-70);
}
.services__title {
  font-size: clamp(2rem, 1.875rem + 0.625vw, 2.625rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--color-black-80);
}
.services__title span {
  color: var(--color-steel);
  position: relative;
}
.services__title span::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-steel) 0%, transparent 100%);
}
@media (width <= 47.99875rem) {
  .services__title span::after {
    bottom: -0.125rem;
  }
}
.services__subtitle {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-gray-60);
  max-width: 37.5rem;
  margin: 0 auto;
  line-height: 1.6;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.875rem;
  margin-bottom: 3.75rem;
}
@media (width > 63.99875rem) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (width > 90.06125rem) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 25rem;
  transition: all var(--transition-duration) ease;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-white-80);
  background-color: var(--color-white);
}
@media (any-hover: hover) {
  .services__card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-gray-80);
  }
  .services__card:hover .services__card-image {
    transform: scale(1.05);
  }
  .services__card:hover .services__card-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.8) 100%);
  }
  .services__card:hover .services__card-link {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
  }
}
@media (any-hover: none) {
  .services__card:active {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-gray-80);
  }
  .services__card:active .services__card-image {
    transform: scale(1.05);
  }
  .services__card:active .services__card-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.8) 100%);
  }
  .services__card:active .services__card-link {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
  }
}
.services__card--highlight {
  border: 2px solid var(--color-steel);
  box-shadow: 0 0 0 1px rgba(42, 52, 57, 0.1), var(--shadow-lg);
}
.services__card--highlight .services__card-link {
  background: var(--gradient-steel);
  border: none;
  color: var(--color-white);
}
@media (any-hover: hover) {
  .services__card--highlight .services__card-link:hover {
    filter: brightness(1.1);
  }
}
@media (any-hover: none) {
  .services__card--highlight .services__card-link:active {
    filter: brightness(1.1);
  }
}
.services__card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s ease;
  z-index: 1;
}
.services__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
  transition: background var(--transition-duration) ease;
}
.services__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.875rem;
  z-index: 3;
  color: var(--color-white);
}
@media (width <= 47.99875rem) {
  .services__card-content {
    padding: 1.25rem;
  }
}
.services__card-title {
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--color-white);
}
.services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--color-white);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  text-decoration: none;
  transition: all var(--transition-duration) ease;
  position: relative;
  overflow: hidden;
}
.services__card-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
@media (any-hover: hover) {
  .services__card-link:hover::before {
    left: 100%;
  }
}
@media (any-hover: none) {
  .services__card-link:active::before {
    left: 100%;
  }
}
.services__card-link i {
  font-size: 0.875rem;
  transition: transform var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .services__card-link:hover i {
    transform: translateX(0.25rem);
  }
}
@media (any-hover: none) {
  .services__card-link:active i {
    transform: translateX(0.25rem);
  }
}
.services__cta {
  text-align: center;
  margin-top: 3.75rem;
  padding-top: 3.75rem;
  border-top: 1px solid var(--color-white-80);
  position: relative;
}
.services__cta::before {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6.25rem;
  height: 2px;
  background: var(--gradient-steel);
}
.services__cta-title {
  font-size: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
  font-weight: 700;
  color: var(--color-black-80);
  margin-bottom: 1.25rem;
}
.services__cta-subtitle {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-gray-60);
  max-width: 37.5rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.services__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--gradient-steel);
  border: none;
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  text-decoration: none;
  transition: all var(--transition-duration) ease;
  box-shadow: var(--shadow-lg);
}
@media (any-hover: hover) {
  .services__cta-button:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.1);
    color: var(--color-gray-90);
  }
}
@media (any-hover: none) {
  .services__cta-button:active {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.1);
    color: var(--color-gray-90);
  }
}
.services__cta-button i {
  font-size: 1.125rem;
  transition: transform var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .services__cta-button:hover i {
    transform: translateX(0.25rem);
  }
}
@media (any-hover: none) {
  .services__cta-button:active i {
    transform: translateX(0.25rem);
  }
}
.services--dark {
  background-color: var(--color-black-90);
}
.services--dark::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.97)), var(--hero-grain-overlay);
  opacity: 0.8;
}
.services--dark .services__title {
  color: var(--color-white);
}
.services--dark .services__subtitle {
  color: var(--color-gray-70);
}
.services--dark .services__card {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: var(--color-black-80);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
@media (any-hover: hover) {
  .services--dark .services__card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  }
}
@media (any-hover: none) {
  .services--dark .services__card:active {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  }
}
.services--dark .services__cta {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.services--dark .services__cta-title {
  color: var(--color-white);
}
.services--dark .services__cta-subtitle {
  color: var(--color-gray-70);
}

.about {
  position: relative;
  padding: 5rem 0;
  background-color: var(--bg-secondary);
  overflow: hidden;
}
@media (width > 63.99875rem) {
  .about {
    padding: 7.5rem 0;
  }
}
.about::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 18.75rem;
  height: 18.75rem;
  background: linear-gradient(135deg, transparent 30%, rgba(42, 52, 57, 0.03) 100%);
  border-radius: 0 0 0 6.25rem;
  z-index: 1;
  pointer-events: none;
}
@media (width <= 47.99875rem) {
  .about::before {
    display: none;
  }
}
.about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-grain-overlay);
  background-size: auto;
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}
.about__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (width > 63.99875rem) {
  .about__container {
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
  }
}
.about__content {
  order: 2;
}
@media (width > 63.99875rem) {
  .about__content {
    order: 1;
  }
}
.about__supertitle {
  display: inline-block;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 600;
  color: var(--color-gray-60);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}
.about__supertitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 1px;
  background: var(--color-gray-70);
}
.about__title {
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.about__title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 5rem;
  height: 2px;
  background: var(--gradient-steel);
}
@media (width <= 47.99875rem) {
  .about__title::after {
    bottom: -0.25rem;
  }
}
.about__text {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.about__text:last-of-type {
  margin-bottom: 2.5rem;
}
.about__text strong {
  color: var(--color-silver);
  font-weight: 600;
}
.about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (width <= 47.99875rem) {
  .about__features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about__feature i {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gradient-steel);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.about__feature-text {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.5;
}
.about__feature-text strong {
  color: var(--color-white);
  font-weight: 600;
}
.about__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: var(--gradient-steel);
  border: none;
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  text-decoration: none;
  transition: all var(--transition-duration) ease;
  box-shadow: var(--shadow-md);
}
@media (any-hover: hover) {
  .about__button:hover {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
  }
  .about__button:hover i {
    transform: translateX(0.25rem);
  }
}
@media (any-hover: none) {
  .about__button:active {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
  }
  .about__button:active i {
    transform: translateX(0.25rem);
  }
}
.about__button i {
  font-size: 0.875rem;
  transition: transform var(--transition-duration) ease;
}
.about__image {
  order: 1;
  position: relative;
}
@media (width > 63.99875rem) {
  .about__image {
    order: 2;
  }
}
.about__image::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-gray-80);
  border-radius: var(--radius-lg);
  z-index: -1;
}
@media (width <= 47.99875rem) {
  .about__image::before {
    top: -0.625rem;
    left: -0.625rem;
  }
}
.about__image::after {
  content: "";
  position: absolute;
  top: -0.625rem;
  left: -0.625rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-gray-90);
  border-radius: var(--radius-lg);
  z-index: -1;
}
@media (width <= 47.99875rem) {
  .about__image::after {
    top: -0.3125rem;
    left: -0.3125rem;
  }
}
.about__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--gradient-concrete);
}
.about__image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.about__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
@media (any-hover: hover) {
  .about__image-wrapper:hover img {
    transform: scale(1.05);
  }
}
@media (any-hover: none) {
  .about__image-wrapper:active img {
    transform: scale(1.05);
  }
}
.about__image-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  color: var(--color-black);
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 700;
  border-radius: var(--radius-full);
  z-index: 3;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-80);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (width <= 47.99875rem) {
  .about__image-badge {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}
.about--dark {
  background-color: var(--color-black-90);
}
.about--dark::before {
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.03) 100%);
}
.about--dark .about__title {
  color: var(--color-white);
}
.about--dark .about__feature-text {
  color: var(--color-gray-70);
}
.about--dark .about__feature-text strong {
  color: var(--color-white);
}
.about--dark .about__image::before {
  border-color: rgba(255, 255, 255, 0.1);
}
.about--dark .about__image::after {
  border-color: rgba(255, 255, 255, 0.05);
}
.about--dark .about__image-badge {
  background: var(--color-black-80);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.1);
}
.about .about__image-badge {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-duration) ease, visibility var(--transition-duration) ease;
}
.modal.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(0.25rem);
  z-index: 1;
}
.modal__content {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 3.125rem 2.5rem;
  max-width: 31.25rem;
  width: 100%;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--color-white-80);
  transform: translateY(1.875rem);
  transition: transform var(--transition-duration) ease;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .modal__content {
    padding: 2.5rem 1.25rem;
  }
}
.modal.active .modal__content {
  transform: translateY(0);
}
.modal__icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.875rem;
  border-radius: 50%;
}
.modal__icon--success {
  background: rgba(42, 157, 143, 0.1);
  color: #2a9d8f;
}
.modal__icon--error {
  background: rgba(231, 111, 81, 0.1);
  color: #e76f51;
}
.modal__icon i {
  font-size: 2.25rem;
}
.modal__title {
  font-size: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
  font-weight: 700;
  color: var(--color-black-80);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.modal__text {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--color-gray-60);
  line-height: 1.5;
  margin-bottom: 1.875rem;
}
.modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  background: var(--gradient-steel);
  border: none;
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  cursor: pointer;
  transition: all var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .modal__button:hover {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-md);
    filter: brightness(1.1);
  }
}
@media (any-hover: none) {
  .modal__button:active {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-md);
    filter: brightness(1.1);
  }
}
.modal__button i {
  font-size: 0.875rem;
}
.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--color-gray-60);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .modal__close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-black-80);
  }
}
@media (any-hover: none) {
  .modal__close:active {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-black-80);
  }
}
.modal__close:active {
  transform: scale(0.95);
}
.modal--dark .modal__content {
  background: var(--color-black-80);
  border-color: rgba(255, 255, 255, 0.1);
}
.modal--dark .modal__title {
  color: var(--color-white);
}
.modal--dark .modal__text {
  color: var(--color-gray-70);
}
.modal--dark .modal__close {
  color: var(--color-gray-70);
}
@media (any-hover: hover) {
  .modal--dark .modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
  }
}
@media (any-hover: none) {
  .modal--dark .modal__close:active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
  }
}
.modal .modal__content--dark {
  background: var(--color-black-80);
  border-color: rgba(255, 255, 255, 0.1);
}
.modal .modal__content--dark .modal__title {
  color: var(--color-white);
}
.modal .modal__content--dark .modal__text {
  color: var(--color-gray-70);
}
.modal .modal__header {
  text-align: center;
  margin-bottom: 1.875rem;
}
.modal .modal__icon--info {
  background: rgba(42, 52, 57, 0.1);
  color: var(--color-steel);
}
.modal .modal__content--dark {
  background: var(--color-black-80);
  border-color: rgba(255, 255, 255, 0.1);
}
.modal .modal__content--dark .modal__title {
  color: var(--color-white);
}
.modal .modal__content--dark .modal__text {
  color: var(--color-gray-70);
}
.modal .modal__header {
  text-align: center;
  margin-bottom: 1.875rem;
}
.modal .modal__icon--info {
  background: rgba(42, 52, 57, 0.1);
  color: var(--color-steel);
}

.form-section {
  position: relative;
  padding: 5rem 0;
  background-color: var(--color-white-90);
  overflow: hidden;
}
@media (width > 63.99875rem) {
  .form-section {
    padding: 7.5rem 0;
  }
}
.form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-grain-overlay);
  background-size: auto;
  background-repeat: repeat;
  opacity: 0.02;
  z-index: 1;
  pointer-events: none;
}
.form-section__container {
  position: relative;
  z-index: 2;
  max-width: 56.25rem;
  margin: 0 auto;
}
.form-section__header {
  text-align: center;
  margin-bottom: 1.875rem;
}
@media (width > 63.99875rem) {
  .form-section__header {
    margin-bottom: 2.5rem;
  }
}
.form-section__supertitle {
  display: inline-block;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 600;
  color: var(--color-gray-60);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}
.form-section__supertitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 1px;
  background: var(--color-gray-70);
}
.form-section__title {
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--color-black-80);
}
.form-section__subtitle {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-gray-60);
  max-width: 37.5rem;
  margin: 0 auto;
  line-height: 1.6;
  padding-bottom: 1.25rem;
}
.form-section__form-wrapper {
  background: var(--color-black-80);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--color-black-70);
  position: relative;
  overflow: hidden;
}
@media (width <= 47.99875rem) {
  .form-section__form-wrapper {
    padding: 1.875rem 1.25rem;
  }
}
.form-section__form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: var(--gradient-steel);
}

.form__group {
  margin-block: 10px;
  position: relative;
}
.form__group:last-of-type {
  margin-bottom: 0;
}
.form__group--error .form__input,
.form__group--error .form__select,
.form__group--error .form__checkbox-custom {
  border-color: #e76f51;
}
.form__group--error .form__error {
  opacity: 1;
  transform: translateY(0);
}
.form__label {
  display: block;
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.form__label-required {
  color: #e76f51;
  margin-left: 0.25rem;
}
.form__input, .form__select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-family-base);
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-duration) ease;
  appearance: none;
  outline: none;
  resize: none;
}
.form__input:focus, .form__select:focus {
  border-color: var(--color-steel-light);
  box-shadow: 0 0 0 3px rgba(42, 52, 57, 0.2);
  background: rgba(255, 255, 255, 0.08);
}
.form__input::placeholder, .form__select::placeholder {
  color: var(--color-gray-70);
}
.form__input:disabled, .form__select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form__input::-webkit-inner-spin-button, .form__input::-webkit-outer-spin-button, .form__select::-webkit-inner-spin-button, .form__select::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1rem;
  padding-right: 3.125rem;
  cursor: pointer;
}
.form__select option {
  background: var(--color-black-80);
  color: var(--color-white);
  padding: 0.75rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}
.form__select option:checked, .form__select option:hover {
  background: var(--color-steel);
  color: var(--color-white);
}
.form__select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--color-white);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0rem;
}
@media (width > 63.99875rem) {
  .form__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  cursor: pointer;
}
.form__checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.form__checkbox input[type=checkbox]:checked + .form__checkbox-custom {
  background: var(--color-steel);
  border-color: var(--color-steel);
}
.form__checkbox input[type=checkbox]:checked + .form__checkbox-custom::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg) scale(1);
}
.form__checkbox input[type=checkbox]:focus + .form__checkbox-custom {
  box-shadow: 0 0 0 3px rgba(42, 52, 57, 0.3);
}
.form__checkbox input[type=checkbox]:disabled + .form__checkbox-custom {
  opacity: 0.5;
  cursor: not-allowed;
}
.form__checkbox:hover .form__checkbox-custom {
  border-color: var(--color-steel-light);
}
.form__checkbox-custom {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  border: 1px solid var(--color-gray-70);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  cursor: pointer;
  transition: all var(--transition-duration) ease;
  margin-top: 0.125rem;
}
.form__checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg) scale(0);
  width: 0.625rem;
  height: 0.375rem;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  opacity: 0;
  transition: all var(--transition-duration) ease;
}
.form__checkbox-text {
  font-size: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
  color: var(--color-gray-70);
  line-height: 1.4;
  flex: 1;
}
.form__checkbox-text a {
  color: var(--color-chrome-dark);
  text-decoration: underline;
  transition: color var(--transition-duration) ease;
}
.form__checkbox-text a:hover, .form__checkbox-text a:focus {
  color: var(--color-steel);
  text-decoration: none;
}
.form__submit {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-steel);
  border: none;
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.9375rem, 0.925rem + 0.0625vw, 1rem);
  cursor: pointer;
  transition: all var(--transition-duration) ease;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form__submit:not(:disabled):hover {
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.1);
}
.form__submit:not(:disabled):active {
  transform: translateY(0);
}
.form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form__submit-spinner {
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.form__submit.loading .form__submit-spinner {
  display: block;
}
.form__submit.loading .form__submit-text {
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form .form--dark .form__checkbox-custom {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gray-70);
}
.form .form--dark .form__checkbox-custom--light {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--color-gray-60);
}
.form .form--dark .form__checkbox-text {
  color: var(--color-gray-80);
}
.form__error {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: clamp(0.6875rem, 0.6625rem + 0.125vw, 0.8125rem);
  color: #e76f51;
  margin-top: 0rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: all var(--transition-duration) ease;
  pointer-events: none;
}

.toast {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10001;
  max-width: 25rem;
  width: calc(100% - 2.5rem);
}
@media (width <= 47.99875rem) {
  .toast {
    max-width: none;
    left: 1.25rem;
  }
}
.toast__item {
  background: var(--color-black-80);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-black-70);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  animation: toastSlideIn 0.3s ease forwards;
  transform: translateX(100%);
  opacity: 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (width <= 47.99875rem) {
  .toast__item {
    padding: 1rem;
  }
}
.toast__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25rem;
  height: 100%;
  z-index: 1;
}
.toast__item--success::before {
  background: #2a9d8f;
}
.toast__item--success .toast__icon {
  background: rgba(42, 157, 143, 0.1);
  color: #2a9d8f;
}
.toast__item--error::before {
  background: #e76f51;
}
.toast__item--error .toast__icon {
  background: rgba(231, 111, 81, 0.1);
  color: #e76f51;
}
.toast__item--info::before {
  background: var(--color-steel);
}
.toast__item--info .toast__icon {
  background: rgba(42, 52, 57, 0.1);
  color: var(--color-steel);
}
.toast__item.exiting {
  animation: toastSlideOut 0.3s ease forwards;
}
.toast__icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}
.toast__content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.toast__title {
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--color-white);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.toast__message {
  font-size: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
  color: var(--color-gray-70);
  line-height: 1.4;
}
.toast__close {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--color-gray-70);
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--transition-duration) ease;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 2;
}
.toast__close:hover, .toast__close:focus {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
}
.toast__close i {
  font-size: 0.875rem;
}

@keyframes toastSlideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes toastSlideOut {
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@media (max-width: 480px) {
  .toast {
    top: auto;
    bottom: 1.25rem;
    right: 1.25rem;
    left: 1.25rem;
    z-index: 10001;
  }
  .toast__item {
    animation: toastSlideInMobile 0.3s ease forwards;
    transform: translateY(100%);
  }
  .toast__item.exiting {
    animation: toastSlideOutMobile 0.3s ease forwards;
  }
}
@keyframes toastSlideInMobile {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes toastSlideOutMobile {
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
.works {
  position: relative;
  padding: 5rem 0;
  background-color: var(--bg-primary);
  overflow: hidden;
}
@media (width > 63.99875rem) {
  .works {
    padding: 6.25rem 0;
  }
}
.works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-grain-overlay);
  background-size: auto;
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}
.works::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 18.75rem;
  height: 18.75rem;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
  filter: blur(2.5rem);
  z-index: 1;
  pointer-events: none;
}
@media (width <= 47.99875rem) {
  .works::after {
    display: none;
  }
}
.works__container {
  position: relative;
  z-index: 2;
}
.works__header {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media (width > 63.99875rem) {
  .works__header {
    margin-bottom: 3.75rem;
  }
}
.works__supertitle {
  display: inline-block;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 600;
  color: var(--color-gray-60);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}
.works__supertitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 1px;
  background: var(--color-gray-70);
}
.works__title {
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--color-chrome);
}
.works__subtitle {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-gray-60);
  max-width: 37.5rem;
  margin: 0 auto;
  line-height: 1.6;
}
.works__grid {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  margin-bottom: 3.125rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (width > 63.99875rem) {
  .works__grid {
    gap: 1.5rem;
    margin-bottom: 3.75rem;
  }
}
@media (width <= 30.06125rem) {
  .works__grid {
    max-width: 18.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.works__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--color-black-80);
  transition: all var(--transition-duration) ease;
  text-decoration: none;
  display: block;
  width: 12.5rem;
  height: 12.5rem;
}
.works__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  z-index: 2;
  transition: border-color var(--transition-duration) ease;
  pointer-events: none;
}
.works__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0.7;
  transition: opacity var(--transition-duration) ease;
  z-index: 1;
  pointer-events: none;
}
@media (any-hover: hover) {
  .works__item:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl);
  }
  .works__item:hover::before {
    border-color: var(--color-steel-light);
  }
  .works__item:hover::after {
    opacity: 0.5;
  }
  .works__item:hover .works__image {
    transform: scale(1.05);
  }
  .works__item:hover .works__item-hover {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (any-hover: none) {
  .works__item:active {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl);
  }
  .works__item:active::before {
    border-color: var(--color-steel-light);
  }
  .works__item:active::after {
    opacity: 0.5;
  }
  .works__item:active .works__image {
    transform: scale(1.05);
  }
  .works__item:active .works__item-hover {
    opacity: 1;
    transform: translateY(0);
  }
}
.works__item:focus-visible {
  outline: 2px solid var(--color-steel);
  outline-offset: 0.125rem;
}
.works__item:focus-visible::before {
  border-color: var(--color-steel);
}
.works__image-wrapper {
  position: relative;
  width: 12.5rem;
  height: 12.5rem;
  overflow: hidden;
}
.works__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
  background: var(--gradient-concrete);
  object-position: center;
}
@media (width > 90.06125rem) {
  .works__image {
    width: 12.5rem;
    height: 12.5rem;
  }
}
.works__item-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  color: var(--color-white);
  z-index: 3;
  opacity: 0;
  transform: translateY(0.625rem);
  transition: all var(--transition-duration) ease;
  text-align: center;
  pointer-events: none;
  width: 12.5rem;
  height: 12.5rem;
}
.works__item-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-steel);
  border-radius: 50%;
  margin-bottom: 0.75rem;
  color: var(--color-white);
  font-size: 1rem;
}
.works__item-icon i {
  transition: transform var(--transition-duration) ease;
}
.works__item:hover .works__item-icon i {
  transform: scale(1.1);
}
.works__item-text {
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.works__footer {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-white-80);
  position: relative;
}
.works__footer::before {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6.25rem;
  height: 2px;
  background: var(--gradient-steel);
}
.works__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: var(--gradient-steel);
  border: none;
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  text-decoration: none;
  transition: all var(--transition-duration) ease;
  box-shadow: var(--shadow-md);
}
@media (any-hover: hover) {
  .works__button:hover {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
  }
  .works__button:hover i {
    transform: translateX(0.25rem);
  }
}
@media (any-hover: none) {
  .works__button:active {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
  }
  .works__button:active i {
    transform: translateX(0.25rem);
  }
}
.works__button i {
  font-size: 0.875rem;
  transition: transform var(--transition-duration) ease;
}
.works--dark {
  background-color: var(--color-black-90);
}
.works--dark .works__title {
  color: var(--color-white);
}
.works--dark .works__subtitle {
  color: var(--color-gray-70);
}
.works--dark .works__item {
  background: var(--color-black-70);
}
.works--dark .works__item::before {
  border-color: rgba(255, 255, 255, 0.05);
}
.works--dark .works__footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

@media (width > 90.06125rem) {
  img[width="200"][height="200"] {
    width: 12.5rem !important;
    height: 12.5rem !important;
  }
}

.pricing {
  position: relative;
  padding: 5rem 0;
  background-color: var(--color-white-90);
  overflow: hidden;
}
@media (width > 63.99875rem) {
  .pricing {
    padding: 6.25rem 0;
  }
}
.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-grain-overlay);
  background-size: auto;
  background-repeat: repeat;
  opacity: 0.02;
  z-index: 1;
  pointer-events: none;
}
.pricing::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 18.75rem;
  height: 18.75rem;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
  filter: blur(2.5rem);
  z-index: 1;
  pointer-events: none;
}
@media (width <= 47.99875rem) {
  .pricing::after {
    display: none;
  }
}
.pricing__container {
  position: relative;
  z-index: 2;
}
.pricing__header {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media (width > 63.99875rem) {
  .pricing__header {
    margin-bottom: 3.75rem;
  }
}
.pricing__supertitle {
  display: inline-block;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 600;
  color: var(--color-gray-60);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}
.pricing__supertitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 1px;
  background: var(--color-gray-70);
}
.pricing__title {
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--color-black-80);
}
.pricing__subtitle {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-gray-60);
  max-width: 43.75rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.pricing__note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  color: var(--color-gray-60);
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: rgba(42, 52, 57, 0.05);
  border-radius: var(--radius-full);
  border: 1px solid rgba(42, 52, 57, 0.1);
}
.pricing__note i {
  font-size: 0.875rem;
}
.pricing__tables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.125rem;
}
@media (width > 63.99875rem) {
  .pricing__tables {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
    margin-bottom: 3.75rem;
  }
}
.pricing__table-wrapper {
  background: var(--color-black-80);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-black-70);
  overflow: hidden;
}
@media (width <= 47.99875rem) {
  .pricing__table-wrapper {
    padding: 1.5rem 1.25rem;
  }
}
.pricing__table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing__table-title {
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  color: var(--color-white);
  line-height: 1.2;
}
.pricing__table-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-steel);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: 0.875rem;
}
.pricing__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pricing__table-scroll::-webkit-scrollbar {
  height: 0.375rem;
}
.pricing__table-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.1875rem;
}
.pricing__table-scroll::-webkit-scrollbar-thumb {
  background: var(--color-steel);
  border-radius: 0.1875rem;
}
.pricing__table {
  width: 100%;
  min-width: 31.25rem;
  border-collapse: collapse;
  color: var(--color-white);
}
@media (width <= 47.99875rem) {
  .pricing__table {
    min-width: 25rem;
  }
}
.pricing__table th,
.pricing__table td {
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}
@media (width <= 47.99875rem) {
  .pricing__table th,
  .pricing__table td {
    padding: 0.75rem 1rem;
  }
}
.pricing__table thead th {
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  color: var(--color-gray-70);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 2px solid var(--color-steel);
  position: sticky;
  top: 0;
  z-index: 1;
}
.pricing__table tbody tr:last-child td {
  border-bottom: none;
}
.pricing__table tbody td {
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  color: var(--color-white);
}
.pricing__table tbody td:first-child {
  font-weight: 500;
  color: var(--color-gray-80);
}
.pricing__table tbody td:not(:first-child) {
  font-weight: 600;
  text-align: center;
}
.pricing__table--highlight td:nth-child(2) {
  background: rgba(42, 52, 57, 0.2);
  position: relative;
}
.pricing__table--highlight td:nth-child(2)::after {
  content: "★";
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  font-size: 0.625rem;
  color: var(--color-steel);
}
.pricing__table-footer p {
  padding-top: 0.625rem;
  font-size: 0.875rem;
}
.pricing__footer {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-white-80);
  position: relative;
}
.pricing__footer::before {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6.25rem;
  height: 2px;
  background: var(--gradient-steel);
}
.pricing__disclaimer {
  font-size: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
  color: var(--color-gray-60);
  max-width: 43.75rem;
  margin: 0 auto 1.875rem;
  line-height: 1.5;
  text-align: center;
}
.pricing__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: var(--gradient-steel);
  border: none;
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  text-decoration: none;
  transition: all var(--transition-duration) ease;
  box-shadow: var(--shadow-md);
}
@media (any-hover: hover) {
  .pricing__button:hover {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
  }
  .pricing__button:hover i {
    transform: translateX(0.25rem);
  }
}
@media (any-hover: none) {
  .pricing__button:active {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
  }
  .pricing__button:active i {
    transform: translateX(0.25rem);
  }
}
.pricing__button i {
  font-size: 0.875rem;
  transition: transform var(--transition-duration) ease;
}
.pricing--dark {
  background-color: var(--color-black-90);
}
.pricing--dark .pricing__title {
  color: var(--color-white);
}
.pricing--dark .pricing__subtitle {
  color: var(--color-gray-70);
}
.pricing--dark .pricing__note {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-gray-70);
}
.pricing--dark .pricing__footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.pricing--dark .pricing__disclaimer {
  color: var(--color-gray-70);
}
.pricing .pricing__table-scroll {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pricing .pricing__table-scroll::-webkit-scrollbar {
  height: 0.375rem;
}
.pricing .pricing__table-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.1875rem;
}
.pricing .pricing__table-scroll::-webkit-scrollbar-thumb {
  background: var(--color-gray-70);
  border-radius: 0.1875rem;
}
.pricing .pricing__scroll-indicator {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  color: var(--color-chrome);
  font-size: 1.125rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 5;
  transform: translateY(-50%);
  animation: bounceRight 1.5s ease-in-out infinite;
}
.pricing .pricing__scroll-indicator i {
  display: block;
}
@keyframes bounceRight {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(0.5rem);
  }
}
.pricing .pricing__tables--single {
  justify-items: center;
}
.pricing .pricing__tables--single .pricing__table-wrapper {
  width: 100%;
  max-width: 100%;
}
@media (width > 63.99875rem) {
  .pricing .pricing__tables--single {
    grid-template-columns: 1fr;
    max-width: 56.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.pricing .pricing--page .pricing__tables--single {
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.pricing .pricing--page .pricing__table-wrapper {
  margin-bottom: 2rem;
}
.pricing .pricing--page .pricing__note--inline {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  justify-content: flex-start;
  padding-left: 0;
  background: transparent;
  border: none;
  color: var(--color-gray-60);
}
.pricing .pricing--page .pricing__table-footer {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-gray-70);
}
.pricing .pricing--page .pricing__table-footer p {
  margin: 0;
}
.pricing .pricing--page .pricing__footer {
  margin-top: 2rem;
}

.footer {
  position: relative;
  background-color: var(--color-white-90);
  color: var(--text-primary);
  border-top: 1px solid var(--color-white-80);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-grain-overlay);
  background-size: auto;
  background-repeat: repeat;
  opacity: 0.02;
  z-index: 1;
  pointer-events: none;
}
.footer__top {
  padding: 3.75rem 0 2.5rem;
  border-bottom: 1px solid var(--color-white-80);
  position: relative;
  z-index: 2;
}
@media (width > 63.99875rem) {
  .footer__top {
    padding: 5rem 0 3.75rem;
  }
}
.footer__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (width > 63.99875rem) {
  .footer__container {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3.75rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__container {
    gap: 1.875rem;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
  max-width: max-content;
}
.footer__logo:focus-visible {
  outline: 2px solid var(--color-steel);
  outline-offset: 0.25rem;
  border-radius: var(--radius-sm);
}
.footer__logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.footer__logo-text {
  font-family: var(--font-family-accent);
  font-weight: 700;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  color: var(--color-black-80);
  line-height: 1;
}
.footer__logo-accent {
  color: var(--color-steel);
}
.footer__description {
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  color: var(--color-gray-60);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 18.75rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--color-white-80);
  border-radius: var(--radius-md);
  color: var(--color-gray-60);
  font-size: 1rem;
  transition: all var(--transition-duration) ease;
  text-decoration: none;
}
@media (any-hover: hover) {
  .footer__social-link:hover {
    background: var(--color-steel);
    border-color: var(--color-steel);
    color: var(--color-white);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-sm);
  }
}
@media (any-hover: none) {
  .footer__social-link:active {
    background: var(--color-steel);
    border-color: var(--color-steel);
    color: var(--color-white);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-sm);
  }
}
.footer__social-link:focus-visible {
  outline: 2px solid var(--color-steel);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .footer__social-link--whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
  }
}
@media (any-hover: none) {
  .footer__social-link--whatsapp:active {
    background: #25D366;
    border-color: #25D366;
  }
}
@media (any-hover: hover) {
  .footer__social-link--telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
  }
}
@media (any-hover: none) {
  .footer__social-link--telegram:active {
    background: #0088cc;
    border-color: #0088cc;
  }
}
@media (any-hover: hover) {
  .footer__social-link--vkontakte:hover {
    background: #0077FF;
    border-color: #0077FF;
  }
}
@media (any-hover: none) {
  .footer__social-link--vkontakte:active {
    background: #0077FF;
    border-color: #0077FF;
  }
}
.footer__nav {
  display: flex;
  flex-direction: column;
}
.footer__nav-title {
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.9375rem, 0.925rem + 0.0625vw, 1rem);
  color: var(--color-black-80);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer__nav-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--gradient-steel);
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__nav-item {
  display: block;
}
.footer__nav-link {
  display: inline-block;
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  color: var(--color-gray-60);
  text-decoration: none;
  transition: all var(--transition-duration) ease;
  padding: 0.25rem 0;
  position: relative;
  max-width: max-content;
}
.footer__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-steel);
  transition: width var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .footer__nav-link:hover {
    color: var(--color-black-80);
    padding-left: 0.5rem;
  }
  .footer__nav-link:hover::after {
    width: 100%;
  }
}
@media (any-hover: none) {
  .footer__nav-link:active {
    color: var(--color-black-80);
    padding-left: 0.5rem;
  }
  .footer__nav-link:active::after {
    width: 100%;
  }
}
.footer__nav-link:focus-visible {
  outline: 2px solid var(--color-steel);
  outline-offset: 0.25rem;
  border-radius: var(--radius-xs);
}
.footer__contacts {
  display: flex;
  flex-direction: column;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer__contact-item:last-child {
  margin-bottom: 0;
}
.footer__contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-steel);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 0.625rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.footer__contact-content {
  flex: 1;
}
.footer__contact-title {
  font-size: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
  color: var(--color-gray-70);
  margin-bottom: 0.125rem;
}
.footer__contact-value {
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  color: var(--color-black-80);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .footer__contact-value--link:hover {
    color: var(--color-steel);
  }
}
@media (any-hover: none) {
  .footer__contact-value--link:active {
    color: var(--color-steel);
  }
}
.footer__contact-value--link:focus-visible {
  outline: 2px solid var(--color-steel);
  outline-offset: 0.125rem;
  border-radius: var(--radius-xs);
}
.footer__hours {
  font-size: clamp(0.75rem, 0.7375rem + 0.0625vw, 0.8125rem);
  color: var(--color-gray-70);
  margin-top: 0.25rem;
}
.footer__bottom {
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
}
@media (width > 63.99875rem) {
  .footer__bottom {
    padding: 1.875rem 0;
  }
}
.footer__bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media (width > 63.99875rem) {
  .footer__bottom-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.875rem;
  }
}
.footer__copyright {
  font-size: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
  color: var(--color-gray-60);
  text-align: center;
  order: 2;
}
@media (width > 63.99875rem) {
  .footer__copyright {
    order: 1;
    text-align: left;
  }
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  order: 1;
}
@media (width > 63.99875rem) {
  .footer__legal {
    order: 2;
    justify-content: flex-end;
  }
}
@media (width <= 47.99875rem) {
  .footer__legal {
    gap: 1rem;
  }
}
.footer__legal-link {
  font-size: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
  color: var(--color-gray-60);
  text-decoration: none;
  transition: color var(--transition-duration) ease;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .footer__legal-link:hover {
    color: var(--color-black-80);
  }
}
@media (any-hover: none) {
  .footer__legal-link:active {
    color: var(--color-black-80);
  }
}
.footer__legal-link:focus-visible {
  outline: 2px solid var(--color-steel);
  outline-offset: 0.125rem;
  border-radius: var(--radius-xs);
}
.footer__back-to-top {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--color-steel);
  border: 1px solid var(--color-steel);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-duration) ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.625rem);
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.footer__back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (any-hover: hover) {
  .footer__back-to-top:hover {
    background: var(--color-steel-dark);
    border-color: var(--color-steel-dark);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-lg);
  }
}
@media (any-hover: none) {
  .footer__back-to-top:active {
    background: var(--color-steel-dark);
    border-color: var(--color-steel-dark);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-lg);
  }
}
.footer__back-to-top:focus-visible {
  outline: 2px solid var(--color-steel);
  outline-offset: 0.125rem;
}
@media (width <= 47.99875rem) {
  .footer__back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
  }
}
.footer--dark {
  background-color: var(--color-black-90);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer--dark::before {
  opacity: 0.05;
}
.footer--dark .footer__top {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.footer--dark .footer__logo-text {
  color: var(--color-white);
}
.footer--dark .footer__description {
  color: var(--color-gray-70);
}
.footer--dark .footer__social-link {
  background: var(--color-black-80);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-gray-70);
}
.footer--dark .footer__nav-title {
  color: var(--color-white);
}
.footer--dark .footer__nav-link {
  color: var(--color-gray-70);
}
@media (any-hover: hover) {
  .footer--dark .footer__nav-link:hover {
    color: var(--color-white);
  }
}
@media (any-hover: none) {
  .footer--dark .footer__nav-link:active {
    color: var(--color-white);
  }
}
.footer--dark .footer__contact-title {
  color: var(--color-gray-70);
}
.footer--dark .footer__contact-value {
  color: var(--color-white);
}
@media (any-hover: hover) {
  .footer--dark .footer__contact-value--link:hover {
    color: var(--color-steel-light);
  }
}
@media (any-hover: none) {
  .footer--dark .footer__contact-value--link:active {
    color: var(--color-steel-light);
  }
}
.footer--dark .footer__hours {
  color: var(--color-gray-70);
}
.footer--dark .footer__copyright {
  color: var(--color-gray-70);
}
.footer--dark .footer__legal-link {
  color: var(--color-gray-70);
}
@media (any-hover: hover) {
  .footer--dark .footer__legal-link:hover {
    color: var(--color-white);
  }
}
@media (any-hover: none) {
  .footer--dark .footer__legal-link:active {
    color: var(--color-white);
  }
}

.drilling-hero {
  position: relative;
  min-height: 60vh;
  padding-top: 6.25rem;
  padding-bottom: 3.75rem;
  background-color: var(--color-black-90);
  color: var(--color-white);
  overflow: hidden;
}
@media (width > 63.99875rem) {
  .drilling-hero {
    min-height: 70vh;
    padding-top: 8.75rem;
    padding-bottom: 5rem;
  }
}
.drilling-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)), var(--hero-grain-overlay);
  background-size: cover, auto;
  background-position: center, center;
  background-repeat: no-repeat, repeat;
  z-index: 1;
}
.drilling-hero__container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 56.25rem;
}
.drilling-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.25rem;
}
.drilling-hero__badge i {
  color: var(--color-steel-light);
  font-size: 0.75rem;
}
.drilling-hero__badge span {
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.drilling-hero__title {
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}
.drilling-hero__title span {
  color: var(--color-steel-light);
  display: block;
}
.drilling-hero__subtitle {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  color: var(--color-gray-70);
  margin-bottom: 1.875rem;
  line-height: 1.6;
}
.drilling-hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-family-accent);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
  color: var(--color-white);
  margin-bottom: 1.875rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.drilling-hero__price span {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--color-gray-70);
  font-weight: 400;
}
.drilling-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.drilling-hero__actions .btn {
  color: var(--color-chrome);
}
@media (any-hover: hover) {
  .drilling-hero__actions .btn:hover {
    color: var(--color-gray-90);
  }
}
@media (any-hover: none) {
  .drilling-hero__actions .btn:active {
    color: var(--color-gray-90);
  }
}

.drilling-advantages {
  padding: 5rem 0;
  background-color: var(--bg-primary);
}
@media (width > 63.99875rem) {
  .drilling-advantages {
    padding: 6.25rem 0;
  }
}
.drilling-advantages__container {
  max-width: 75rem;
}
.drilling-advantages__header {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media (width > 63.99875rem) {
  .drilling-advantages__header {
    margin-bottom: 3.75rem;
  }
}
.drilling-advantages__title {
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--color-chrome);
}
.drilling-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 1.875rem;
}
@media (width > 63.99875rem) {
  .drilling-advantages__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.drilling-advantages__card {
  text-align: center;
  padding: 1.875rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-white-80);
  transition: all var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .drilling-advantages__card:hover {
    transform: translateY(-0.5rem);
    border-color: var(--color-steel);
    box-shadow: var(--shadow-lg);
  }
}
@media (any-hover: none) {
  .drilling-advantages__card:active {
    transform: translateY(-0.5rem);
    border-color: var(--color-steel);
    box-shadow: var(--shadow-lg);
  }
}
.drilling-advantages__card-icon {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.25rem;
  background: var(--gradient-steel);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 1.5rem;
}
.drilling-advantages__card-title {
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-chrome);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.drilling-advantages__card-text {
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  color: var(--color-gray-60);
  line-height: 1.5;
}

.drilling-materials {
  padding: 5rem 0;
  background-color: var(--color-white-90);
}
@media (width > 63.99875rem) {
  .drilling-materials {
    padding: 6.25rem 0;
  }
}
.drilling-materials__header {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media (width > 63.99875rem) {
  .drilling-materials__header {
    margin-bottom: 3.75rem;
  }
}
.drilling-materials__title {
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--color-black-80);
}
.drilling-materials__subtitle {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-gray-60);
  max-width: 43.75rem;
  margin: 0 auto;
  line-height: 1.6;
}
.drilling-materials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 1.875rem;
}
@media (width > 63.99875rem) {
  .drilling-materials__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .drilling-materials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.drilling-materials__item {
  text-align: center;
  padding: 1.875rem 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-white-80);
  transition: all var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .drilling-materials__item:hover {
    border-color: var(--color-steel);
    transform: translateY(-0.25rem);
  }
}
@media (any-hover: none) {
  .drilling-materials__item:active {
    border-color: var(--color-steel);
    transform: translateY(-0.25rem);
  }
}
.drilling-materials__item-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.25rem;
  background: var(--color-black-80);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 2rem;
  border: 2px solid var(--color-steel);
}
.drilling-materials__item-name {
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-chrome);
  line-height: 1.2;
}

.drilling-applications {
  padding: 5rem 0;
  background-color: var(--bg-primary);
}
@media (width > 63.99875rem) {
  .drilling-applications {
    padding: 6.25rem 0;
  }
}
.drilling-applications__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (width > 63.99875rem) {
  .drilling-applications__container {
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
  }
}
.drilling-applications__content {
  order: 2;
}
@media (width > 63.99875rem) {
  .drilling-applications__content {
    order: 1;
  }
}
.drilling-applications__title {
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-chrome);
}
.drilling-applications__text {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--color-gray-60);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.drilling-applications__text:last-of-type {
  margin-bottom: 2.5rem;
}
.drilling-applications__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.drilling-applications__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  color: var(--color-gray-60);
  line-height: 1.5;
}
.drilling-applications__list-item i {
  color: var(--color-steel);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.drilling-applications__image {
  order: 1;
  position: relative;
}
@media (width > 63.99875rem) {
  .drilling-applications__image {
    order: 2;
  }
}
.drilling-applications__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-white-80);
}
.drilling-applications__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
@media (any-hover: hover) {
  .drilling-applications__image-wrapper:hover img {
    transform: scale(1.05);
  }
}
@media (any-hover: none) {
  .drilling-applications__image-wrapper:active img {
    transform: scale(1.05);
  }
}

.drilling-faq {
  padding: 5rem 0;
  background-color: var(--color-white-90);
}
@media (width > 63.99875rem) {
  .drilling-faq {
    padding: 6.25rem 0;
  }
}
.drilling-faq__header {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media (width > 63.99875rem) {
  .drilling-faq__header {
    margin-bottom: 3.75rem;
  }
}
.drilling-faq__title {
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--color-black-80);
}
.drilling-faq__container {
  max-width: 50rem;
  margin: 0 auto;
}
.drilling-faq__item {
  margin-bottom: 1rem;
  border: 1px solid var(--color-white-80);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
  transition: all var(--transition-duration) ease;
}
.drilling-faq__item.active {
  border-color: var(--color-steel);
  box-shadow: var(--shadow-md);
}
.drilling-faq__item.active .drilling-faq__question {
  color: var(--color-white);
}
.drilling-faq__item.active .drilling-faq__question i {
  transform: rotate(180deg);
}
.drilling-faq__item.active .drilling-faq__answer {
  max-height: 500px;
  padding: 1.25rem 1.5rem 1.5rem;
  opacity: 1;
}
.drilling-faq__question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-gray-90);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  transition: color var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .drilling-faq__question:hover {
    color: var(--color-white);
  }
}
@media (any-hover: none) {
  .drilling-faq__question:active {
    color: var(--color-white);
  }
}
.drilling-faq__question i {
  font-size: 0.875rem;
  transition: transform var(--transition-duration) ease;
  flex-shrink: 0;
}
.drilling-faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all var(--transition-duration) ease;
  padding: 0 1.5rem;
}
.drilling-faq__answer-content {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--color-chrome);
  line-height: 1.6;
  padding-top: 0.25rem;
  border-top: 1px solid var(--color-white-80);
}

.drilling-examples {
  padding: 5rem 0;
  background-color: var(--bg-primary);
}
@media (width > 63.99875rem) {
  .drilling-examples {
    padding: 6.25rem 0;
  }
}
.drilling-examples__header {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media (width > 63.99875rem) {
  .drilling-examples__header {
    margin-bottom: 3.75rem;
  }
}
.drilling-examples__title {
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--color-black-80);
}
.drilling-examples__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.875rem;
  margin-bottom: 3.125rem;
}
@media (width > 63.99875rem) {
  .drilling-examples__grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 3.75rem;
  }
}
.drilling-examples__item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-white-80);
  transition: all var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .drilling-examples__item:hover {
    transform: translateY(-0.5rem);
    border-color: var(--color-steel);
    box-shadow: var(--shadow-lg);
  }
}
@media (any-hover: none) {
  .drilling-examples__item:active {
    transform: translateY(-0.5rem);
    border-color: var(--color-steel);
    box-shadow: var(--shadow-lg);
  }
}
.drilling-examples__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.drilling-examples__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
@media (any-hover: hover) {
  .drilling-examples__image-wrapper:hover img {
    transform: scale(1.05);
  }
}
@media (any-hover: none) {
  .drilling-examples__image-wrapper:active img {
    transform: scale(1.05);
  }
}
.drilling-examples__content {
  padding: 1.5rem;
}
.drilling-examples__item-title {
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-black-80);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.drilling-examples__item-desc {
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  color: var(--color-gray-60);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.drilling-examples__item-price {
  font-weight: 700;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-steel);
}
.drilling-examples__footer {
  text-align: center;
}
.drilling-examples__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: var(--gradient-steel);
  border: none;
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  text-decoration: none;
  transition: all var(--transition-duration) ease;
  box-shadow: var(--shadow-md);
}
@media (any-hover: hover) {
  .drilling-examples__button:hover {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
  }
  .drilling-examples__button:hover i {
    transform: translateX(0.25rem);
  }
}
@media (any-hover: none) {
  .drilling-examples__button:active {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
  }
  .drilling-examples__button:active i {
    transform: translateX(0.25rem);
  }
}
.drilling-examples__button i {
  font-size: 0.875rem;
  transition: transform var(--transition-duration) ease;
}

.pricing--drilling-page .pricing__table-wrapper:first-child {
  grid-column: 1/-1;
}
@media (width > 63.99875rem) {
  .pricing--drilling-page .pricing__table-wrapper:first-child {
    grid-column: span 2;
  }
}

.about--drilling-page {
  background-color: var(--color-primary);
}

.form-section--drilling-page .form__row {
  grid-template-columns: 1fr;
}
@media (width > 63.99875rem) {
  .form-section--drilling-page .form__row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.modal-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-form.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.modal-form__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(0.5rem);
  z-index: 1;
}
.modal-form__content {
  position: relative;
  z-index: 2;
  background: var(--color-black-80);
  border-radius: var(--radius-xl);
  padding: 3.125rem 2.5rem;
  max-width: 31.25rem;
  width: 100%;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(1.875rem);
  transition: transform 0.3s ease;
  color: var(--color-white);
  animation: modalSlideIn 0.3s ease forwards;
}
@media (width <= 47.99875rem) {
  .modal-form__content {
    padding: 2.5rem 1.5rem;
    max-width: calc(100vw - 2.5rem);
  }
}
.modal-form__header {
  text-align: center;
  margin-bottom: 2rem;
}
.modal-form__title {
  font-family: var(--font-family-accent);
  font-size: clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.modal-form__subtitle {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--color-gray-70);
  line-height: 1.5;
}
.modal-form__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-gray-70);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .modal-form__close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-chrome);
    color: var(--color-white);
  }
}
@media (any-hover: none) {
  .modal-form__close:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-chrome);
    color: var(--color-white);
  }
}
.modal-form__close:active {
  transform: scale(0.95);
}
.modal-form__close i {
  font-size: 0.875rem;
}
.modal-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.modal-form__group {
  position: relative;
}
.modal-form__group--error .modal-form__input,
.modal-form__group--error .modal-form__select {
  border-color: #e76f51;
  background: rgba(231, 111, 81, 0.05);
}
.modal-form__group--error .modal-form__error {
  opacity: 1;
  transform: translateY(0);
}
.modal-form__label {
  display: block;
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.modal-form__label-required {
  color: #e76f51;
  margin-left: 0.125rem;
}
.modal-form__input, .modal-form__select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-family-base);
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  appearance: none;
  outline: none;
}
.modal-form__input:focus, .modal-form__select:focus {
  border-color: var(--color-steel-light);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(42, 52, 57, 0.2);
}
.modal-form__input::placeholder, .modal-form__select::placeholder {
  color: var(--color-gray-70);
}
.modal-form__input:disabled, .modal-form__select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.modal-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1rem;
  padding-right: 3.125rem;
  cursor: pointer;
}
.modal-form__select option {
  background: var(--color-black-80);
  color: var(--color-white);
  padding: 0.75rem;
}
.modal-form__select option:checked {
  background: var(--color-steel);
}
.modal-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.modal-form__checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.modal-form__checkbox input[type=checkbox]:checked + .modal-form__checkbox-custom {
  background: var(--color-steel);
  border-color: var(--color-steel);
}
.modal-form__checkbox input[type=checkbox]:checked + .modal-form__checkbox-custom::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg) scale(1);
}
.modal-form__checkbox input[type=checkbox]:focus + .modal-form__checkbox-custom {
  box-shadow: 0 0 0 3px rgba(42, 52, 57, 0.3);
}
.modal-form__checkbox-custom {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.125rem;
}
.modal-form__checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg) scale(0);
  width: 0.625rem;
  height: 0.375rem;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  opacity: 0;
  transition: all 0.3s ease;
}
.modal-form__checkbox-text {
  font-size: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
  color: var(--color-gray-70);
  line-height: 1.4;
  flex: 1;
}
.modal-form__checkbox-text a {
  color: var(--color-chrome);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.modal-form__checkbox-text a:hover, .modal-form__checkbox-text a:focus {
  color: var(--color-white);
  text-decoration: none;
}
.modal-form__submit {
  width: 100%;
  padding: 1rem;
  background: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.9375rem, 0.925rem + 0.0625vw, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (any-hover: hover) {
  .modal-form__submit:hover {
    background: var(--color-black-80);
    border-color: var(--color-chrome);
    color: var(--color-chrome);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-lg);
  }
}
@media (any-hover: none) {
  .modal-form__submit:active {
    background: var(--color-black-80);
    border-color: var(--color-chrome);
    color: var(--color-chrome);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-lg);
  }
}
.modal-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.modal-form__submit-spinner {
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.modal-form__submit.loading .modal-form__submit-spinner {
  display: block;
}
.modal-form__submit.loading .modal-form__submit-text {
  display: none;
}
.modal-form__error {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: clamp(0.6875rem, 0.6625rem + 0.125vw, 0.8125rem);
  color: #e76f51;
  margin-top: 0.25rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.modal-form__success {
  text-align: center;
  padding: 2.5rem 1.25rem;
  display: none;
}
.modal-form__success-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  background: rgba(42, 157, 143, 0.1);
  color: #2a9d8f;
  border-radius: 50%;
  font-size: 2rem;
}
.modal-form__success-title {
  font-family: var(--font-family-accent);
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.modal-form__success-text {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--color-gray-70);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.modal-form__success-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  background: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .modal-form__success-button:hover {
    background: var(--color-black-80);
    border-color: var(--color-chrome);
    color: var(--color-chrome);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-md);
  }
}
@media (any-hover: none) {
  .modal-form__success-button:active {
    background: var(--color-black-80);
    border-color: var(--color-chrome);
    color: var(--color-chrome);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-md);
  }
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
body.modal-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
  overscroll-behavior: none;
}

@supports (-webkit-touch-callout: none) {
  .modal-form {
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  }
  .modal-form__content {
    margin-top: env(safe-area-inset-top);
    margin-bottom: env(safe-area-inset-bottom);
  }
}
@media (max-width: 640px) {
  .modal-form__content {
    width: 95%;
    margin: 10px;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
  }
}
.diamond-cutting__hero {
  position: relative;
  padding: 6.25rem 0 5rem;
  background: var(--color-black-90);
  color: var(--color-white);
  overflow: hidden;
}
@media (width > 63.99875rem) {
  .diamond-cutting__hero {
    padding: 8.75rem 0 6.25rem;
  }
}
.diamond-cutting__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(42, 52, 57, 0.95)), var(--hero-grain-overlay);
  background-size: cover, auto;
  background-position: center, center;
  background-repeat: no-repeat, repeat;
  z-index: 1;
}
.diamond-cutting__hero-container {
  position: relative;
  z-index: 2;
  max-width: 56.25rem;
  margin: 0 auto;
  text-align: center;
}
.diamond-cutting__hero-supertitle {
  display: inline-block;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 600;
  color: var(--color-gray-70);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.diamond-cutting__hero-title {
  font-size: clamp(1.875rem, 1.65rem + 1.125vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}
.diamond-cutting__hero-subtitle {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  color: var(--color-gray-70);
  max-width: 43.75rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.diamond-cutting__hero-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  text-decoration: none;
  transition: all var(--transition-duration) ease;
  box-shadow: var(--shadow-lg);
}
@media (any-hover: hover) {
  .diamond-cutting__hero-button:hover {
    background: var(--color-black-80);
    border-color: var(--color-chrome);
    color: var(--color-chrome);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-xl);
  }
}
@media (any-hover: none) {
  .diamond-cutting__hero-button:active {
    background: var(--color-black-80);
    border-color: var(--color-chrome);
    color: var(--color-chrome);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-xl);
  }
}
.diamond-cutting__hero-button i {
  font-size: 1rem;
  transition: transform var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .diamond-cutting__hero-button:hover i {
    transform: translateX(0.25rem);
  }
}
@media (any-hover: none) {
  .diamond-cutting__hero-button:active i {
    transform: translateX(0.25rem);
  }
}
.diamond-cutting__section {
  padding: 5rem 0;
  background: var(--bg-primary);
}
@media (width > 63.99875rem) {
  .diamond-cutting__section {
    padding: 6.25rem 0;
  }
}
.diamond-cutting__section--dark {
  background: var(--color-black-90);
  color: var(--color-white);
}
.diamond-cutting__section--gray {
  background: var(--color-white-90);
}
.diamond-cutting__container {
  max-width: 56.25rem;
  margin: 0 auto;
}
.diamond-cutting__header {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media (width > 63.99875rem) {
  .diamond-cutting__header {
    margin-bottom: 3.75rem;
  }
}
.diamond-cutting__title {
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--color-chrome);
}
.diamond-cutting__title-dark {
  color: var(--color-black);
}
.diamond-cutting__subtitle {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-gray-60);
  max-width: 43.75rem;
  margin: 0 auto;
  line-height: 1.6;
}
.diamond-cutting__section--dark .diamond-cutting__subtitle {
  color: var(--color-gray-70);
}
.diamond-cutting__content {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-gray-50);
}
.diamond-cutting__section--dark .diamond-cutting__content {
  color: var(--color-gray-70);
}
.diamond-cutting__content p {
  margin-bottom: 1.5rem;
  color: var(--color-gray-50);
}
.diamond-cutting__content p:last-child {
  margin-bottom: 0;
}
.diamond-cutting__content strong {
  font-weight: 600;
}
.diamond-cutting__section--dark .diamond-cutting__content strong {
  color: var(--color-white);
}
.diamond-cutting__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: 1.875rem;
  margin-top: 2.5rem;
}
.diamond-cutting__feature {
  text-align: center;
  padding: 1.875rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-white-80);
  transition: all var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .diamond-cutting__feature:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gray-80);
  }
}
@media (any-hover: none) {
  .diamond-cutting__feature:active {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gray-80);
  }
}
.diamond-cutting__section--dark .diamond-cutting__feature {
  background: var(--color-black-80);
  border-color: rgba(255, 255, 255, 0.1);
}
@media (any-hover: hover) {
  .diamond-cutting__section--dark .diamond-cutting__feature:hover {
    border-color: rgba(255, 255, 255, 0.2);
  }
}
@media (any-hover: none) {
  .diamond-cutting__section--dark .diamond-cutting__feature:active {
    border-color: rgba(255, 255, 255, 0.2);
  }
}
.diamond-cutting__feature-icon {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.25rem;
  background: var(--color-steel);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 1.5rem;
}
.diamond-cutting__feature-title {
  font-family: var(--font-family-accent);
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 600;
  color: var(--color-chrome);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.diamond-cutting__section--dark .diamond-cutting__feature-title {
  color: var(--color-white);
}
.diamond-cutting__feature-text {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--color-gray-60);
  line-height: 1.5;
}
.diamond-cutting__section--dark .diamond-cutting__feature-text {
  color: var(--color-gray-70);
}
.diamond-cutting__list {
  list-style: none;
  margin: 1.875rem 0;
  padding: 0;
}
.diamond-cutting__list-item {
  position: relative;
  padding-left: 1.875rem;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-gray-50);
}
.diamond-cutting__section--dark .diamond-cutting__list-item {
  color: var(--color-gray-70);
}
.diamond-cutting__list-item:last-child {
  margin-bottom: 0;
}
.diamond-cutting__list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-steel);
  font-weight: bold;
}
.diamond-cutting__equipment {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 1.875rem;
  margin-top: 2.5rem;
}
.diamond-cutting__equipment-item {
  padding: 1.875rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-white-80);
  transition: all var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .diamond-cutting__equipment-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gray-80);
  }
}
@media (any-hover: none) {
  .diamond-cutting__equipment-item:active {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gray-80);
  }
}
.diamond-cutting__section--dark .diamond-cutting__equipment-item {
  background: var(--color-black-80);
  border-color: rgba(255, 255, 255, 0.1);
}
@media (any-hover: hover) {
  .diamond-cutting__section--dark .diamond-cutting__equipment-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
  }
}
@media (any-hover: none) {
  .diamond-cutting__section--dark .diamond-cutting__equipment-item:active {
    border-color: rgba(255, 255, 255, 0.2);
  }
}
.diamond-cutting__equipment-item-title {
  font-family: var(--font-family-accent);
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.diamond-cutting__section--dark .diamond-cutting__equipment-item-title {
  color: var(--color-white);
}
.diamond-cutting__equipment-item-text {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--color-gray-60);
  line-height: 1.5;
}
.diamond-cutting__section--dark .diamond-cutting__equipment-item-text {
  color: var(--color-gray-70);
}
.diamond-cutting__cta {
  text-align: center;
  padding: 3.125rem;
  background: var(--gradient-steel);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  margin-top: 3.75rem;
}
@media (width <= 47.99875rem) {
  .diamond-cutting__cta {
    padding: 2.5rem 1.5rem;
  }
}
.diamond-cutting__cta-title {
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.diamond-cutting__cta-subtitle {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  opacity: 0.9;
  max-width: 37.5rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.diamond-cutting__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  cursor: pointer;
  transition: all var(--transition-duration) ease;
  box-shadow: var(--shadow-lg);
}
@media (any-hover: hover) {
  .diamond-cutting__cta-button:hover {
    background: var(--color-black-80);
    border-color: var(--color-chrome);
    color: var(--color-chrome);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-xl);
  }
}
@media (any-hover: none) {
  .diamond-cutting__cta-button:active {
    background: var(--color-black-80);
    border-color: var(--color-chrome);
    color: var(--color-chrome);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-xl);
  }
}
.diamond-cutting__cta-button i {
  font-size: 1rem;
  transition: transform var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .diamond-cutting__cta-button:hover i {
    transform: translateX(0.25rem);
  }
}
@media (any-hover: none) {
  .diamond-cutting__cta-button:active i {
    transform: translateX(0.25rem);
  }
}

body.page-outlet-drilling {
  --page-accent: var(--color-chrome);
  --page-glow: 0 0 20px rgba(200, 200, 200, 0.3);
  --page-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.page-outlet-drilling .page-hero {
  position: relative;
  min-height: 70vh;
  padding: clamp(11.25rem, 11.75rem + -2.5vw, 8.75rem) 0 clamp(6.25rem, 6.5rem + -1.25vw, 5rem);
  background: var(--color-black-90);
  color: var(--text-light);
  display: flex;
  align-items: center;
  overflow: hidden;
}
body.page-outlet-drilling .page-hero .reveal,
body.page-outlet-drilling .page-hero .container.reveal,
body.page-outlet-drilling .page-hero .page-hero__content.reveal {
  opacity: 1 !important;
  transform: none !important;
}
body.page-outlet-drilling .page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 8px), radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), var(--gradient-dark);
  animation: pageHeroShift 20s linear infinite;
  z-index: 1;
}
body.page-outlet-drilling .page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: 2;
}
body.page-outlet-drilling .page-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 56.25rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (width <= 47.99875rem) {
  body.page-outlet-drilling .page-hero__content {
    padding: 0;
  }
}
body.page-outlet-drilling .page-hero__title {
  font-family: var(--font-family-accent);
  font-size: clamp(4rem, 4.275rem + -1.375vw, 2.625rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
body.page-outlet-drilling .page-hero__title span {
  display: block;
}
body.page-outlet-drilling .page-hero__title span:first-child {
  color: var(--color-gray-80);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
body.page-outlet-drilling .page-hero__title span:last-child {
  color: var(--color-chrome);
  position: relative;
  display: inline-block;
  padding-bottom: 0.625rem;
}
body.page-outlet-drilling .page-hero__title span:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-chrome), transparent);
}
body.page-outlet-drilling .page-hero__subtitle {
  font-size: clamp(1.375rem, 1.425rem + -0.25vw, 1.125rem);
  color: var(--color-gray-70);
  line-height: 1.7;
  max-width: 40.625rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
body.page-outlet-drilling .page-hero__btn {
  position: relative;
  overflow: hidden;
  transition: var(--page-transition);
}
body.page-outlet-drilling .page-hero__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
@media (any-hover: hover) {
  body.page-outlet-drilling .page-hero__btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--page-glow);
  }
  body.page-outlet-drilling .page-hero__btn:hover::before {
    left: 100%;
  }
}
@media (any-hover: none) {
  body.page-outlet-drilling .page-hero__btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--page-glow);
  }
  body.page-outlet-drilling .page-hero__btn:active::before {
    left: 100%;
  }
}
body.page-outlet-drilling .page-hero__stats {
  display: flex;
  gap: 3.75rem;
  margin-top: clamp(4.375rem, 4.625rem + -1.25vw, 3.125rem);
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 3;
}
body.page-outlet-drilling .page-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 1.25rem 1.875rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  transition: var(--page-transition);
}
@media (any-hover: hover) {
  body.page-outlet-drilling .page-hero__stat:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.6), var(--page-glow);
  }
}
@media (any-hover: none) {
  body.page-outlet-drilling .page-hero__stat:active {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.6), var(--page-glow);
  }
}
body.page-outlet-drilling .page-hero__stat-number {
  font-family: var(--font-family-accent);
  font-size: clamp(3rem, 3.15rem + -0.75vw, 2.25rem);
  font-weight: 800;
  color: var(--color-chrome);
  margin-bottom: 0.5rem;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(200, 200, 200, 0.3);
}
body.page-outlet-drilling .page-hero__stat-label {
  font-size: 0.875rem;
  color: var(--color-gray-70);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@keyframes pageHeroShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(10%, 10%);
  }
}
body.page-outlet-drilling .page-about {
  padding: clamp(6.25rem, 6.5rem + -1.25vw, 5rem) 0;
  background: var(--bg-secondary);
  position: relative;
}
body.page-outlet-drilling .page-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gray-70), transparent);
}
body.page-outlet-drilling .page-about .page-text-content {
  max-width: 56.25rem;
  margin: 0 auto;
  text-align: center;
}
body.page-outlet-drilling .page-about .page-text-content__paragraph {
  font-size: clamp(1.25rem, 1.275rem + -0.125vw, 1.125rem);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.875rem;
  font-weight: 300;
}
body.page-outlet-drilling .discount-cta {
  padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  background: var(--gradient-concrete);
  color: var(--text-light);
  text-align: center;
  position: relative;
  isolation: isolate;
}
body.page-outlet-drilling .discount-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-metal-texture);
  opacity: 0.1;
  z-index: -1;
}
body.page-outlet-drilling .discount-cta__content {
  max-width: 43.75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
body.page-outlet-drilling .discount-cta__title {
  font-family: var(--font-family-accent);
  font-size: clamp(3rem, 3.2rem + -1vw, 2rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
body.page-outlet-drilling .discount-cta__subtitle {
  font-size: clamp(1.375rem, 1.425rem + -0.25vw, 1.125rem);
  color: var(--color-white-80);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
body.page-outlet-drilling .discount-cta__btn {
  position: relative;
  overflow: hidden;
  transition: var(--page-transition);
  background: var(--color-black);
  border: 1px solid var(--color-chrome);
  color: var(--color-chrome);
}
@media (any-hover: hover) {
  body.page-outlet-drilling .discount-cta__btn:hover {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--color-chrome);
  }
}
@media (any-hover: none) {
  body.page-outlet-drilling .discount-cta__btn:active {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--color-chrome);
  }
}
body.page-outlet-drilling .page-info-block {
  padding: clamp(6.25rem, 6.5rem + -1.25vw, 5rem) 0;
  position: relative;
}
body.page-outlet-drilling .page-info-block--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}
body.page-outlet-drilling .page-info-block--dark .page-info-block__title,
body.page-outlet-drilling .page-info-block--dark .page-info-block__subtitle,
body.page-outlet-drilling .page-info-block--dark .page-info-block__text p {
  color: var(--text-light);
}
@media (width > 63.99875rem) {
  body.page-outlet-drilling .page-info-block--reverse .page-info-block__grid {
    direction: rtl;
  }
}
body.page-outlet-drilling .page-info-block__grid {
  display: grid;
  gap: 3.75rem;
  align-items: center;
}
@media (width > 63.99875rem) {
  body.page-outlet-drilling .page-info-block__grid {
    grid-template-columns: 1fr 1fr;
  }
}
body.page-outlet-drilling .page-info-block__content {
  direction: ltr;
}
body.page-outlet-drilling .page-info-block__title {
  font-family: var(--font-family-accent);
  font-size: clamp(2.75rem, 2.9rem + -0.75vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}
body.page-outlet-drilling .page-info-block__title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 5rem;
  height: 3px;
  background: var(--gradient-steel);
  border-radius: var(--radius-full);
}
body.page-outlet-drilling .page-info-block__subtitle {
  font-size: clamp(1.625rem, 1.7rem + -0.375vw, 1.25rem);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1.875rem;
}
body.page-outlet-drilling .page-info-block__text {
  font-size: clamp(1.125rem, 1.15rem + -0.125vw, 1rem);
  line-height: 1.8;
  color: var(--text-secondary);
}
body.page-outlet-drilling .page-info-block__text p {
  margin-bottom: 1.5625rem;
}
body.page-outlet-drilling .page-info-block__list {
  list-style: none;
  padding: 0;
  margin: 1.875rem 0;
}
body.page-outlet-drilling .page-info-block__list li {
  position: relative;
  padding-left: 2.1875rem;
  margin-bottom: 0.9375rem;
  font-weight: 400;
}
body.page-outlet-drilling .page-info-block__list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--color-chrome);
  font-size: 1.5em;
  line-height: 1;
}
body.page-outlet-drilling .page-info-block__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
}
body.page-outlet-drilling .page-info-block__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s ease;
}
body.page-outlet-drilling .page-info-block__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
@media (any-hover: hover) {
  body.page-outlet-drilling .page-info-block__image:hover img {
    transform: scale(1.05);
  }
}
@media (any-hover: none) {
  body.page-outlet-drilling .page-info-block__image:active img {
    transform: scale(1.05);
  }
}
body.page-outlet-drilling .features-page {
  padding: clamp(6.25rem, 6.5rem + -1.25vw, 5rem) 0;
  background: var(--bg-secondary);
}
body.page-outlet-drilling .features-page__header {
  text-align: center;
  margin-bottom: clamp(4.375rem, 4.625rem + -1.25vw, 3.125rem);
}
body.page-outlet-drilling .features-page__title {
  font-family: var(--font-family-accent);
  font-size: clamp(3rem, 3.15rem + -0.75vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
body.page-outlet-drilling .features-page__subtitle {
  font-size: clamp(1.375rem, 1.425rem + -0.25vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 37.5rem;
  margin: 0 auto;
}
body.page-outlet-drilling .features-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 2.5rem;
}
body.page-outlet-drilling .feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.875rem;
  transition: var(--page-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
body.page-outlet-drilling .feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}
body.page-outlet-drilling .feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-chrome), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
@media (any-hover: hover) {
  body.page-outlet-drilling .feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--page-glow);
    border-color: rgba(200, 200, 200, 0.3);
  }
  body.page-outlet-drilling .feature-card:hover::before {
    opacity: 1;
  }
  body.page-outlet-drilling .feature-card:hover::after {
    transform: scaleX(1);
  }
  body.page-outlet-drilling .feature-card:hover .feature-card__icon {
    background: var(--gradient-steel);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
  }
  body.page-outlet-drilling .feature-card:hover .feature-card__link,
  body.page-outlet-drilling .feature-card:hover .feature-card__phone {
    color: var(--color-chrome);
    background: var(--color-black);
  }
}
@media (any-hover: none) {
  body.page-outlet-drilling .feature-card:active {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--page-glow);
    border-color: rgba(200, 200, 200, 0.3);
  }
  body.page-outlet-drilling .feature-card:active::before {
    opacity: 1;
  }
  body.page-outlet-drilling .feature-card:active::after {
    transform: scaleX(1);
  }
  body.page-outlet-drilling .feature-card:active .feature-card__icon {
    background: var(--gradient-steel);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
  }
  body.page-outlet-drilling .feature-card:active .feature-card__link,
  body.page-outlet-drilling .feature-card:active .feature-card__phone {
    color: var(--color-chrome);
    background: var(--color-black);
  }
}
body.page-outlet-drilling .feature-card__icon {
  width: 5rem;
  height: 5rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.875rem;
  transition: var(--page-transition);
  box-shadow: var(--shadow-md);
}
body.page-outlet-drilling .feature-card__icon i {
  font-size: 2.25rem;
  color: var(--text-primary);
}
body.page-outlet-drilling .feature-card__title {
  font-family: var(--font-family-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
body.page-outlet-drilling .feature-card__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5625rem;
}
body.page-outlet-drilling .feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-family-accent);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--page-transition);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--color-chrome), var(--color-steel));
  color: var(--color-black);
}
body.page-outlet-drilling .feature-card__link::after {
  content: "→";
  transition: transform var(--transition-duration) ease;
}
@media (any-hover: hover) {
  body.page-outlet-drilling .feature-card__link:hover {
    color: var(--color-chrome);
    background: var(--color-black);
  }
  body.page-outlet-drilling .feature-card__link:hover::after {
    transform: translateX(8px);
  }
}
@media (any-hover: none) {
  body.page-outlet-drilling .feature-card__link:active {
    color: var(--color-chrome);
    background: var(--color-black);
  }
  body.page-outlet-drilling .feature-card__link:active::after {
    transform: translateX(8px);
  }
}
body.page-outlet-drilling .feature-card__highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-chrome), var(--color-steel));
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-top: 1.25rem;
  box-shadow: var(--shadow-sm);
}
body.page-outlet-drilling .feature-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-family-accent);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--page-transition);
  margin-top: 0.9375rem;
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--color-chrome), var(--color-steel));
  color: var(--color-black);
}
body.page-outlet-drilling .feature-card__phone::before {
  content: "📞";
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}
@media (any-hover: hover) {
  body.page-outlet-drilling .feature-card__phone:hover {
    color: var(--color-chrome);
    background: var(--color-black);
  }
}
@media (any-hover: none) {
  body.page-outlet-drilling .feature-card__phone:active {
    color: var(--color-chrome);
    background: var(--color-black);
  }
}
body.page-outlet-drilling .cta-page {
  padding: clamp(7.5rem, 7.75rem + -1.25vw, 6.25rem) 0;
  background: var(--gradient-concrete);
  color: var(--text-light);
  text-align: center;
  position: relative;
  isolation: isolate;
}
body.page-outlet-drilling .cta-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0px, rgba(0, 0, 0, 0.1) 2px, transparent 2px, transparent 6px), var(--hero-metal-texture);
  opacity: 0.15;
  z-index: -1;
}
body.page-outlet-drilling .cta-page__content {
  max-width: 56.25rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (width <= 47.99875rem) {
  body.page-outlet-drilling .cta-page__content {
    padding: 0;
  }
}
body.page-outlet-drilling .cta-page__title {
  font-family: var(--font-family-accent);
  font-size: clamp(3.5rem, 3.7rem + -1vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.875rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
body.page-outlet-drilling .cta-page__text {
  font-size: clamp(1.375rem, 1.425rem + -0.25vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-white-80);
  margin-bottom: 3.125rem;
  max-width: 43.75rem;
  margin-left: auto;
  margin-right: auto;
}
body.page-outlet-drilling .cta-page__buttons {
  display: flex;
  gap: 1.875rem;
  justify-content: center;
  flex-wrap: wrap;
}
body.page-outlet-drilling .cta-page__btn {
  min-width: 15.625rem;
  padding: 1.125rem 1.875rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--page-transition);
  position: relative;
  overflow: hidden;
}
body.page-outlet-drilling .cta-page__btn.btn--dark {
  background: var(--color-black);
  border: 1px solid var(--color-chrome);
  color: var(--color-chrome);
}
@media (any-hover: hover) {
  body.page-outlet-drilling .cta-page__btn.btn--dark:hover {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--color-chrome);
  }
}
@media (any-hover: none) {
  body.page-outlet-drilling .cta-page__btn.btn--dark:active {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--color-chrome);
  }
}
body.page-outlet-drilling .cta-page__btn.btn--light {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}
@media (any-hover: hover) {
  body.page-outlet-drilling .cta-page__btn.btn--light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  }
}
@media (any-hover: none) {
  body.page-outlet-drilling .cta-page__btn.btn--light:active {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  }
}
body.page-outlet-drilling .cta-page__btn i {
  margin-left: 0.625rem;
}
body.page-outlet-drilling .btn {
  transition: var(--page-transition);
}
@media (width <= 47.99875rem) {
  body.page-outlet-drilling .page-hero {
    padding: clamp(7.5rem, 7.75rem + -1.25vw, 6.25rem) 0 clamp(5rem, 5.25rem + -1.25vw, 3.75rem);
  }
  body.page-outlet-drilling .page-hero__title {
    font-size: clamp(2.625rem, 2.75rem + -0.625vw, 2rem);
  }
  body.page-outlet-drilling .page-hero__stats {
    gap: 0.9375rem;
    flex-direction: column;
    align-items: center;
  }
  body.page-outlet-drilling .page-hero__stat {
    width: 100%;
    max-width: 17.5rem;
    padding: 0.9375rem 1.25rem;
  }
  body.page-outlet-drilling .page-about {
    padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  }
  body.page-outlet-drilling .page-about .page-text-content__paragraph {
    font-size: clamp(1.125rem, 1.15rem + -0.125vw, 1rem);
  }
  body.page-outlet-drilling .discount-cta {
    padding: clamp(3.75rem, 4rem + -1.25vw, 2.5rem) 0;
  }
  body.page-outlet-drilling .discount-cta__title {
    font-size: clamp(2rem, 2.075rem + -0.375vw, 1.625rem);
  }
  body.page-outlet-drilling .page-info-block {
    padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  }
  body.page-outlet-drilling .page-info-block__grid {
    gap: 2.5rem;
  }
}
@media (width <= 47.99875rem) and (width > 63.99875rem) {
  body.page-outlet-drilling .page-info-block__grid {
    grid-template-columns: 1fr;
  }
}
@media (width <= 47.99875rem) {
  body.page-outlet-drilling .page-info-block__title {
    font-size: clamp(2.25rem, 2.35rem + -0.5vw, 1.75rem);
  }
  body.page-outlet-drilling .page-info-block__subtitle {
    font-size: clamp(1.375rem, 1.425rem + -0.25vw, 1.125rem);
  }
  body.page-outlet-drilling .page-info-block__image {
    margin-top: 1.25rem;
  }
  body.page-outlet-drilling .features-page {
    padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  }
  body.page-outlet-drilling .features-page__title {
    font-size: clamp(2.25rem, 2.35rem + -0.5vw, 1.75rem);
  }
  body.page-outlet-drilling .features-page__grid {
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }
  body.page-outlet-drilling .feature-card {
    padding: 1.875rem 1.25rem;
  }
  body.page-outlet-drilling .feature-card__title {
    font-size: 1.375rem;
  }
  body.page-outlet-drilling .feature-card__phone {
    font-size: 1.125rem;
  }
  body.page-outlet-drilling .cta-page {
    padding: clamp(6.25rem, 6.5rem + -1.25vw, 5rem) 0;
  }
  body.page-outlet-drilling .cta-page__title {
    font-size: 1.875rem;
  }
  body.page-outlet-drilling .cta-page__buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.9375rem;
  }
  body.page-outlet-drilling .cta-page__btn {
    width: 100%;
    max-width: 18.75rem;
  }
}
@media (max-width: 400px) {
  body.page-outlet-drilling .page-hero__title {
    font-size: 1.625rem;
    word-break: break-word;
    hyphens: auto;
  }
  body.page-outlet-drilling .page-hero__title span:last-child {
    font-size: inherit;
  }
  body.page-outlet-drilling .page-hero__subtitle {
    font-size: 1rem;
    word-break: break-word;
    hyphens: auto;
  }
  body.page-outlet-drilling .page-hero__stat {
    max-width: 100%;
    padding: 0.75rem 0.9375rem;
  }
  body.page-outlet-drilling .page-hero__stat-number {
    font-size: 2rem;
  }
  body.page-outlet-drilling .page-hero__stat-label {
    font-size: 0.75rem;
  }
  body.page-outlet-drilling .cta-page__title {
    font-size: 1.5rem;
    word-break: break-word;
    hyphens: auto;
  }
  body.page-outlet-drilling .cta-page__text {
    font-size: 1rem;
  }
  body.page-outlet-drilling .cta-page__btn {
    min-width: auto;
    width: 100%;
    max-width: 100%;
    padding: 0.875rem 1.25rem;
  }
  body.page-outlet-drilling .feature-card {
    padding: 1.5625rem 0.9375rem;
  }
  body.page-outlet-drilling .feature-card__title {
    font-size: 1.25rem;
  }
  body.page-outlet-drilling .feature-card__text {
    font-size: 0.875rem;
  }
  body.page-outlet-drilling .feature-card__phone {
    font-size: 1rem;
    padding: 0.375rem 0.75rem;
  }
  body.page-outlet-drilling .feature-card__link {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
  }
  body.page-outlet-drilling .page-info-block__title {
    font-size: 1.625rem;
  }
  body.page-outlet-drilling .page-info-block__subtitle {
    font-size: 1.125rem;
  }
  body.page-outlet-drilling .page-info-block__text {
    font-size: 0.9375rem;
  }
  body.page-outlet-drilling .discount-cta__title {
    font-size: 1.5rem;
  }
  body.page-outlet-drilling .discount-cta__subtitle {
    font-size: 1rem;
  }
  body.page-outlet-drilling .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

body.page-dismantling {
  --page-accent: var(--color-chrome);
  --page-glow: 0 0 20px rgba(200, 200, 200, 0.3);
  --page-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.page-dismantling .dismantling-hero {
  position: relative;
  min-height: 70vh;
  padding: clamp(11.25rem, 11.75rem + -2.5vw, 8.75rem) 0 clamp(6.25rem, 6.5rem + -1.25vw, 5rem);
  background: var(--color-black-90);
  color: var(--text-light);
  display: flex;
  align-items: center;
  overflow: hidden;
}
body.page-dismantling .dismantling-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 8px), radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), var(--gradient-dark);
  animation: dismantlingHeroShift 20s linear infinite;
  z-index: 1;
}
body.page-dismantling .dismantling-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: 2;
}
body.page-dismantling .dismantling-hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding-x);
  width: 100%;
}
@media (width <= 47.99875rem) {
  body.page-dismantling .dismantling-hero__inner {
    padding: 0;
  }
}
body.page-dismantling .dismantling-hero__content {
  text-align: center;
  max-width: 56.25rem;
  margin: 0 auto;
}
body.page-dismantling .dismantling-hero__title {
  font-family: var(--font-family-accent);
  font-size: clamp(4rem, 4.275rem + -1.375vw, 2.625rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
body.page-dismantling .dismantling-hero__subtitle {
  font-size: clamp(1.625rem, 1.7rem + -0.375vw, 1.25rem);
  color: var(--color-chrome);
  margin-bottom: 1rem;
  font-weight: 500;
}
body.page-dismantling .dismantling-hero__text {
  font-size: clamp(1.375rem, 1.425rem + -0.25vw, 1.125rem);
  color: var(--color-gray-70);
  line-height: 1.7;
  max-width: 40.625rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
body.page-dismantling .dismantling-hero__cta {
  position: relative;
  overflow: hidden;
  transition: var(--page-transition);
}
body.page-dismantling .dismantling-hero__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
@media (any-hover: hover) {
  body.page-dismantling .dismantling-hero__cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--page-glow);
  }
  body.page-dismantling .dismantling-hero__cta:hover::before {
    left: 100%;
  }
}
@media (any-hover: none) {
  body.page-dismantling .dismantling-hero__cta:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--page-glow);
  }
  body.page-dismantling .dismantling-hero__cta:active::before {
    left: 100%;
  }
}
body.page-dismantling .dismantling-hero__stats {
  display: flex;
  gap: 1.875rem;
  margin-top: clamp(4.375rem, 4.625rem + -1.25vw, 3.125rem);
  flex-wrap: wrap;
  justify-content: center;
}
body.page-dismantling .dismantling-hero .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1.875rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  transition: var(--page-transition);
  min-width: 10rem;
}
@media (any-hover: hover) {
  body.page-dismantling .dismantling-hero .stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.6), var(--page-glow);
  }
}
@media (any-hover: none) {
  body.page-dismantling .dismantling-hero .stat-item:active {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.6), var(--page-glow);
  }
}
body.page-dismantling .dismantling-hero .stat-item__number {
  font-family: var(--font-family-accent);
  font-size: clamp(3rem, 3.15rem + -0.75vw, 2.25rem);
  font-weight: 800;
  color: var(--color-chrome);
  margin-bottom: 0.5rem;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(200, 200, 200, 0.3);
}
body.page-dismantling .dismantling-hero .stat-item__label {
  font-size: 0.875rem;
  color: var(--color-gray-70);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}
body.page-dismantling .dismantling-hero .stat-item__desc {
  font-size: 0.75rem;
  color: var(--color-gray-80);
  margin-top: 0.5rem;
  text-align: center;
}
@keyframes dismantlingHeroShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(10%, 10%);
  }
}
body.page-dismantling .dismantling-advantages {
  padding: clamp(6.25rem, 6.5rem + -1.25vw, 5rem) 0;
  background: var(--bg-secondary);
  position: relative;
}
body.page-dismantling .dismantling-advantages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gray-70), transparent);
}
body.page-dismantling .dismantling-advantages__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: clamp(4.375rem, 4.625rem + -1.25vw, 3.125rem);
}
body.page-dismantling .dismantling-advantages .advantage-card {
  flex: 0 1 18.75rem;
  max-width: 18.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.875rem;
  transition: var(--page-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
body.page-dismantling .dismantling-advantages .advantage-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}
body.page-dismantling .dismantling-advantages .advantage-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-chrome), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
@media (any-hover: hover) {
  body.page-dismantling .dismantling-advantages .advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--page-glow);
    border-color: rgba(200, 200, 200, 0.3);
  }
  body.page-dismantling .dismantling-advantages .advantage-card:hover::before {
    opacity: 1;
  }
  body.page-dismantling .dismantling-advantages .advantage-card:hover::after {
    transform: scaleX(1);
  }
  body.page-dismantling .dismantling-advantages .advantage-card:hover .advantage-card__icon {
    background: var(--gradient-steel);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
  }
}
@media (any-hover: none) {
  body.page-dismantling .dismantling-advantages .advantage-card:active {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--page-glow);
    border-color: rgba(200, 200, 200, 0.3);
  }
  body.page-dismantling .dismantling-advantages .advantage-card:active::before {
    opacity: 1;
  }
  body.page-dismantling .dismantling-advantages .advantage-card:active::after {
    transform: scaleX(1);
  }
  body.page-dismantling .dismantling-advantages .advantage-card:active .advantage-card__icon {
    background: var(--gradient-steel);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
  }
}
body.page-dismantling .dismantling-advantages .advantage-card__icon {
  width: 5rem;
  height: 5rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.875rem;
  transition: var(--page-transition);
  box-shadow: var(--shadow-md);
}
body.page-dismantling .dismantling-advantages .advantage-card__icon i {
  font-size: 2.25rem;
  color: var(--text-primary);
}
body.page-dismantling .dismantling-advantages .advantage-card__title {
  font-family: var(--font-family-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
body.page-dismantling .dismantling-advantages .advantage-card__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
body.page-dismantling .dismantling-about {
  padding: clamp(6.25rem, 6.5rem + -1.25vw, 5rem) 0;
  background: var(--bg-primary);
  position: relative;
}
body.page-dismantling .dismantling-about__grid {
  display: grid;
  gap: 3.75rem;
  align-items: center;
}
@media (width > 63.99875rem) {
  body.page-dismantling .dismantling-about__grid {
    grid-template-columns: 1fr 1fr;
  }
}
body.page-dismantling .dismantling-about__content {
  max-width: 37.5rem;
}
body.page-dismantling .dismantling-about__title {
  font-family: var(--font-family-accent);
  font-size: clamp(2.75rem, 2.9rem + -0.75vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}
body.page-dismantling .dismantling-about__title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 5rem;
  height: 3px;
  background: var(--gradient-steel);
  border-radius: var(--radius-full);
}
body.page-dismantling .dismantling-about__text {
  font-size: clamp(1.125rem, 1.15rem + -0.125vw, 1rem);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.875rem;
}
body.page-dismantling .dismantling-about__text p {
  margin-bottom: 1.5625rem;
}
body.page-dismantling .dismantling-about__list {
  list-style: none;
  padding: 0;
  margin: 1.875rem 0;
}
body.page-dismantling .dismantling-about__list li {
  position: relative;
  padding-left: 2.1875rem;
  margin-bottom: 0.9375rem;
  font-weight: 400;
  color: var(--text-secondary);
}
body.page-dismantling .dismantling-about__list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--color-chrome);
  font-size: 1.5em;
  line-height: 1;
}
body.page-dismantling .dismantling-about__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
}
body.page-dismantling .dismantling-about__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s ease;
}
body.page-dismantling .dismantling-about__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
@media (any-hover: hover) {
  body.page-dismantling .dismantling-about__image:hover img {
    transform: scale(1.05);
  }
}
@media (any-hover: none) {
  body.page-dismantling .dismantling-about__image:active img {
    transform: scale(1.05);
  }
}
body.page-dismantling .dismantling-steps {
  padding: clamp(6.25rem, 6.5rem + -1.25vw, 5rem) 0;
  background: var(--gradient-steel);
  color: var(--text-light);
  position: relative;
}
body.page-dismantling .dismantling-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--hero-metal-texture);
  opacity: 0.1;
  pointer-events: none;
}
body.page-dismantling .dismantling-steps .section-header__title,
body.page-dismantling .dismantling-steps .section-header__subtitle {
  color: var(--text-light);
}
body.page-dismantling .dismantling-steps__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.875rem;
  margin-top: clamp(4.375rem, 4.625rem + -1.25vw, 3.125rem);
}
body.page-dismantling .dismantling-steps .step-card {
  flex: 0 1 15rem;
  max-width: 15rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.875rem 1.25rem;
  text-align: center;
  transition: var(--page-transition);
  position: relative;
  overflow: hidden;
}
body.page-dismantling .dismantling-steps .step-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
@media (any-hover: hover) {
  body.page-dismantling .dismantling-steps .step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--page-glow);
  }
  body.page-dismantling .dismantling-steps .step-card:hover::before {
    opacity: 1;
  }
  body.page-dismantling .dismantling-steps .step-card:hover .step-card__number {
    color: var(--color-white);
    text-shadow: 0 0 20px var(--color-chrome);
  }
}
@media (any-hover: none) {
  body.page-dismantling .dismantling-steps .step-card:active {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--page-glow);
  }
  body.page-dismantling .dismantling-steps .step-card:active::before {
    opacity: 1;
  }
  body.page-dismantling .dismantling-steps .step-card:active .step-card__number {
    color: var(--color-white);
    text-shadow: 0 0 20px var(--color-chrome);
  }
}
body.page-dismantling .dismantling-steps .step-card__number {
  font-family: var(--font-family-accent);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-chrome);
  line-height: 1;
  margin-bottom: 1rem;
  transition: var(--page-transition);
}
body.page-dismantling .dismantling-steps .step-card__title {
  font-family: var(--font-family-accent);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
body.page-dismantling .dismantling-steps .step-card__text {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.9;
}
body.page-dismantling .dismantling-cta {
  padding: clamp(6.25rem, 6.5rem + -1.25vw, 5rem) 0;
  background: var(--gradient-concrete);
  color: var(--text-light);
  text-align: center;
  position: relative;
  isolation: isolate;
}
body.page-dismantling .dismantling-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-metal-texture);
  opacity: 0.1;
  z-index: -1;
}
body.page-dismantling .dismantling-cta__inner {
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
body.page-dismantling .dismantling-cta__title {
  font-family: var(--font-family-accent);
  font-size: clamp(3rem, 3.15rem + -0.75vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
body.page-dismantling .dismantling-cta__text {
  font-size: clamp(1.375rem, 1.425rem + -0.25vw, 1.125rem);
  color: var(--color-white-80);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
body.page-dismantling .dismantling-cta__btn {
  position: relative;
  overflow: hidden;
  transition: var(--page-transition);
  background: var(--color-black);
  border: 1px solid var(--color-chrome);
  color: var(--color-chrome);
  min-width: 15.625rem;
  margin-bottom: 1.25rem;
}
body.page-dismantling .dismantling-cta__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
@media (any-hover: hover) {
  body.page-dismantling .dismantling-cta__btn:hover {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--color-chrome);
  }
  body.page-dismantling .dismantling-cta__btn:hover::before {
    left: 100%;
  }
}
@media (any-hover: none) {
  body.page-dismantling .dismantling-cta__btn:active {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--color-chrome);
  }
  body.page-dismantling .dismantling-cta__btn:active::before {
    left: 100%;
  }
}
body.page-dismantling .dismantling-cta__phone {
  font-size: clamp(1.125rem, 1.15rem + -0.125vw, 1rem);
}
body.page-dismantling .dismantling-cta__phone a {
  color: var(--color-chrome);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-duration);
}
@media (any-hover: hover) {
  body.page-dismantling .dismantling-cta__phone a:hover {
    border-bottom-color: var(--color-chrome);
  }
}
@media (any-hover: none) {
  body.page-dismantling .dismantling-cta__phone a:active {
    border-bottom-color: var(--color-chrome);
  }
}
body.page-dismantling .btn--dark {
  background: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-black);
}
@media (any-hover: hover) {
  body.page-dismantling .btn--dark:hover {
    background: var(--color-black-80);
    border-color: var(--color-chrome);
    color: var(--color-chrome);
  }
}
@media (any-hover: none) {
  body.page-dismantling .btn--dark:active {
    background: var(--color-black-80);
    border-color: var(--color-chrome);
    color: var(--color-chrome);
  }
}
body.page-dismantling .btn--light {
  background: var(--color-white);
  color: var(--color-black-80);
  border: 1px solid var(--color-white);
}
@media (any-hover: hover) {
  body.page-dismantling .btn--light:hover {
    background: var(--color-white-90);
    border-color: var(--color-gray-70);
    color: var(--color-gray-10);
  }
}
@media (any-hover: none) {
  body.page-dismantling .btn--light:active {
    background: var(--color-white-90);
    border-color: var(--color-gray-70);
    color: var(--color-gray-10);
  }
}
@media (width <= 47.99875rem) {
  body.page-dismantling .dismantling-hero {
    padding: clamp(7.5rem, 7.75rem + -1.25vw, 6.25rem) 0 clamp(5rem, 5.25rem + -1.25vw, 3.75rem);
  }
  body.page-dismantling .dismantling-hero__title {
    font-size: clamp(2.625rem, 2.75rem + -0.625vw, 2rem);
  }
  body.page-dismantling .dismantling-hero__stats {
    flex-direction: column;
    align-items: center;
    gap: 0.9375rem;
  }
  body.page-dismantling .dismantling-hero .stat-item {
    width: 100%;
    max-width: 17.5rem;
  }
  body.page-dismantling .dismantling-advantages {
    padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  }
  body.page-dismantling .dismantling-advantages__grid {
    gap: 1.25rem;
  }
  body.page-dismantling .dismantling-advantages .advantage-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
  body.page-dismantling .dismantling-advantages .advantage-card__title {
    font-size: 1.375rem;
  }
  body.page-dismantling .dismantling-about {
    padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  }
  body.page-dismantling .dismantling-about__grid {
    gap: 2.5rem;
  }
  body.page-dismantling .dismantling-about__title {
    font-size: clamp(2.25rem, 2.35rem + -0.5vw, 1.75rem);
  }
  body.page-dismantling .dismantling-about__text {
    font-size: clamp(1.125rem, 1.15rem + -0.125vw, 1rem);
  }
  body.page-dismantling .dismantling-steps {
    padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  }
  body.page-dismantling .dismantling-steps__grid {
    gap: 1.25rem;
  }
  body.page-dismantling .dismantling-steps .step-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
  body.page-dismantling .dismantling-cta {
    padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  }
  body.page-dismantling .dismantling-cta__title {
    font-size: 1.875rem;
  }
  body.page-dismantling .dismantling-cta__btn {
    width: 100%;
    max-width: 17.5rem;
  }
}

body.page-usilenie {
  --usil-accent: var(--color-chrome);
  --usil-glow: 0 0 20px rgba(200, 200, 200, 0.3);
  --usil-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.page-usilenie .usil-hero {
  position: relative;
  min-height: 70vh;
  padding: clamp(11.25rem, 11.75rem + -2.5vw, 8.75rem) 0 clamp(6.25rem, 6.5rem + -1.25vw, 5rem);
  background: var(--color-black-90);
  color: var(--text-light);
  display: flex;
  align-items: center;
  overflow: hidden;
}
body.page-usilenie .usil-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 8px), radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), var(--gradient-dark);
  animation: usilHeroShift 20s linear infinite;
  z-index: 1;
}
body.page-usilenie .usil-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: 2;
}
body.page-usilenie .usil-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
}
body.page-usilenie .usil-hero__content {
  max-width: 56.25rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
body.page-usilenie .usil-hero__title {
  font-family: var(--font-family-accent);
  font-size: clamp(4rem, 4.275rem + -1.375vw, 2.625rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
body.page-usilenie .usil-hero__title span {
  display: block;
}
body.page-usilenie .usil-hero__title span:first-child {
  color: var(--color-gray-80);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
body.page-usilenie .usil-hero__title span:last-child {
  color: var(--color-chrome);
  position: relative;
  display: inline-block;
  padding-bottom: 0.625rem;
}
body.page-usilenie .usil-hero__title span:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-chrome), transparent);
}
body.page-usilenie .usil-hero__text {
  font-size: clamp(1.375rem, 1.425rem + -0.25vw, 1.125rem);
  color: var(--color-gray-70);
  line-height: 1.7;
  max-width: 40.625rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
@keyframes usilHeroShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(10%, 10%);
  }
}
body.page-usilenie .usil-section {
  padding: clamp(6.25rem, 6.5rem + -1.25vw, 5rem) 0;
  background: var(--bg-primary);
}
body.page-usilenie .usil-section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}
body.page-usilenie .usil-title {
  font-family: var(--font-family-accent);
  font-size: clamp(2.75rem, 2.9rem + -0.75vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1.875rem 0;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}
body.page-usilenie .usil-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 5rem;
  height: 3px;
  background: var(--gradient-steel);
  border-radius: var(--radius-full);
}
body.page-usilenie .usil-title--centered {
  display: block;
  text-align: center;
}
body.page-usilenie .usil-title--centered::after {
  left: 50%;
  transform: translateX(-50%);
}
body.page-usilenie .usil-text {
  font-size: clamp(1.125rem, 1.15rem + -0.125vw, 1rem);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
body.page-usilenie .usil-text:last-child {
  margin-bottom: 0;
}
body.page-usilenie .usil-text--note {
  color: var(--color-gray-60);
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}
body.page-usilenie .usil-text--small {
  font-size: 0.875rem;
  color: var(--color-gray-60);
  margin-top: 0.625rem;
}
body.page-usilenie .usil-grid {
  display: grid;
  gap: 3.75rem;
  align-items: center;
}
@media (width > 63.99875rem) {
  body.page-usilenie .usil-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width > 63.99875rem) {
  body.page-usilenie .usil-grid--reverse {
    direction: rtl;
  }
  body.page-usilenie .usil-grid--reverse > * {
    direction: ltr;
  }
}
body.page-usilenie .usil-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
  transition: transform 1.2s ease;
}
body.page-usilenie .usil-image:hover {
  transform: scale(1.02);
}
body.page-usilenie .usil-best {
  text-align: center;
}
body.page-usilenie .usil-best__title {
  font-family: var(--font-family-accent);
  font-size: clamp(3rem, 3.15rem + -0.75vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3.125rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
body.page-usilenie .usil-best__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media (width <= 63.99875rem) {
  body.page-usilenie .usil-best__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  body.page-usilenie .usil-best__grid {
    grid-template-columns: 1fr;
  }
}
body.page-usilenie .usil-best-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.875rem;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  transition: var(--usil-transition);
  text-align: left;
}
@media (any-hover: hover) {
  body.page-usilenie .usil-best-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-chrome);
    box-shadow: var(--shadow-lg), var(--usil-glow);
  }
}
@media (any-hover: none) {
  body.page-usilenie .usil-best-item:active {
    transform: translateY(-5px);
    border-color: var(--color-chrome);
    box-shadow: var(--shadow-lg), var(--usil-glow);
  }
}
body.page-usilenie .usil-best-item__icon {
  font-size: 2.5rem;
  color: var(--color-steel);
  min-width: 3.125rem;
}
body.page-usilenie .usil-best-item__content {
  display: flex;
  flex-direction: column;
}
body.page-usilenie .usil-best-item__label {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
body.page-usilenie .usil-best-item__value, body.page-usilenie .usil-best-item__link, body.page-usilenie .usil-best-item__phone {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--usil-transition);
}
@media (any-hover: hover) {
  body.page-usilenie .usil-best-item__value:hover, body.page-usilenie .usil-best-item__link:hover, body.page-usilenie .usil-best-item__phone:hover {
    color: var(--color-chrome);
  }
}
@media (any-hover: none) {
  body.page-usilenie .usil-best-item__value:active, body.page-usilenie .usil-best-item__link:active, body.page-usilenie .usil-best-item__phone:active {
    color: var(--color-chrome);
  }
}
body.page-usilenie .usil-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  margin-top: 3.125rem;
}
@media (width <= 63.99875rem) {
  body.page-usilenie .usil-types {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  body.page-usilenie .usil-types {
    grid-template-columns: 1fr;
  }
}
body.page-usilenie .usil-type {
  padding: 1.875rem;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  transition: var(--usil-transition);
}
@media (any-hover: hover) {
  body.page-usilenie .usil-type:hover {
    border-color: var(--color-chrome);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
  }
}
@media (any-hover: none) {
  body.page-usilenie .usil-type:active {
    border-color: var(--color-chrome);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
  }
}
body.page-usilenie .usil-type__title {
  font-family: var(--font-family-accent);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.9375rem 0;
  padding-bottom: 0.9375rem;
  border-bottom: 2px solid var(--color-steel);
}
body.page-usilenie .usil-type__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
body.page-usilenie .usil-table-wrapper {
  overflow-x: auto;
  margin: 1.875rem 0 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  background: var(--bg-card);
}
body.page-usilenie .usil-table {
  width: 100%;
  min-width: 37.5rem;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
body.page-usilenie .usil-table th, body.page-usilenie .usil-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-divider);
}
body.page-usilenie .usil-table th {
  background: var(--color-black-80);
  color: var(--text-light);
  font-weight: 600;
  font-family: var(--font-family-accent);
}
body.page-usilenie .usil-table td {
  color: var(--text-secondary);
}
body.page-usilenie .usil-table tr:last-child td {
  border-bottom: none;
}
body.page-usilenie .usil-table tbody tr:hover td {
  background: rgba(0, 0, 0, 0.02);
}
body.page-usilenie .usil-cta {
  padding: clamp(6.25rem, 6.5rem + -1.25vw, 5rem) 0;
  background: var(--gradient-concrete);
  color: var(--text-light);
  text-align: center;
  position: relative;
  isolation: isolate;
}
body.page-usilenie .usil-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-metal-texture);
  opacity: 0.1;
  z-index: -1;
}
body.page-usilenie .usil-cta__content {
  max-width: 43.75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
body.page-usilenie .usil-cta__title {
  font-family: var(--font-family-accent);
  font-size: clamp(3rem, 3.2rem + -1vw, 2rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
body.page-usilenie .usil-cta__title-accent {
  color: var(--color-chrome);
  display: block;
}
body.page-usilenie .usil-cta__text {
  font-size: clamp(1.375rem, 1.425rem + -0.25vw, 1.125rem);
  color: var(--color-white-80);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
body.page-usilenie .usil-cta__btn {
  position: relative;
  overflow: hidden;
  transition: var(--usil-transition);
  background: var(--color-black);
  border: 1px solid var(--color-chrome);
  color: var(--color-chrome);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  font-family: var(--font-family-accent);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin: 0 0 1.5625rem 0;
}
body.page-usilenie .usil-cta__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
@media (any-hover: hover) {
  body.page-usilenie .usil-cta__btn:hover {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--color-chrome);
  }
  body.page-usilenie .usil-cta__btn:hover::before {
    left: 100%;
  }
}
@media (any-hover: none) {
  body.page-usilenie .usil-cta__btn:active {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--color-chrome);
  }
  body.page-usilenie .usil-cta__btn:active::before {
    left: 100%;
  }
}
body.page-usilenie .usil-cta__btn i {
  font-size: 1.125rem;
}
body.page-usilenie .usil-pricing-cta {
  padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  position: relative;
  isolation: isolate;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-usilenie .usil-pricing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-metal-texture);
  opacity: 0.05;
  z-index: -1;
}
body.page-usilenie .usil-pricing-cta__inner {
  max-width: 43.75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
body.page-usilenie .usil-pricing-cta__title {
  font-family: var(--font-family-accent);
  font-size: clamp(2.75rem, 2.9rem + -0.75vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--color-chrome);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
body.page-usilenie .usil-pricing-cta__text {
  font-size: clamp(1.375rem, 1.425rem + -0.25vw, 1.125rem);
  color: var(--color-white-80);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}
body.page-usilenie .usil-pricing-cta__btn {
  position: relative;
  overflow: hidden;
  transition: var(--usil-transition);
  background: var(--color-black);
  border: 1px solid var(--color-chrome);
  color: var(--color-chrome);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-family-accent);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-bottom: 1.25rem;
}
body.page-usilenie .usil-pricing-cta__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
@media (any-hover: hover) {
  body.page-usilenie .usil-pricing-cta__btn:hover {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--color-chrome);
  }
  body.page-usilenie .usil-pricing-cta__btn:hover::before {
    left: 100%;
  }
  body.page-usilenie .usil-pricing-cta__btn:hover i {
    transform: translateX(5px);
  }
}
@media (any-hover: none) {
  body.page-usilenie .usil-pricing-cta__btn:active {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--color-chrome);
  }
  body.page-usilenie .usil-pricing-cta__btn:active::before {
    left: 100%;
  }
  body.page-usilenie .usil-pricing-cta__btn:active i {
    transform: translateX(5px);
  }
}
body.page-usilenie .usil-pricing-cta__btn i {
  font-size: 1rem;
  transition: transform var(--usil-transition);
}
body.page-usilenie .usil-pricing-cta__phone {
  font-size: 1rem;
  color: var(--color-gray-70);
}
body.page-usilenie .usil-pricing-cta__phone a {
  color: var(--color-chrome);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--usil-transition);
}
@media (any-hover: hover) {
  body.page-usilenie .usil-pricing-cta__phone a:hover {
    color: var(--color-white);
    text-decoration: underline;
  }
}
@media (any-hover: none) {
  body.page-usilenie .usil-pricing-cta__phone a:active {
    color: var(--color-white);
    text-decoration: underline;
  }
}
@media (width <= 47.99875rem) {
  body.page-usilenie .usil-hero {
    padding: clamp(7.5rem, 7.75rem + -1.25vw, 6.25rem) 0 clamp(5rem, 5.25rem + -1.25vw, 3.75rem);
  }
  body.page-usilenie .usil-hero__title {
    font-size: clamp(2.125rem, 2.15rem + -0.125vw, 2rem);
  }
  body.page-usilenie .usil-section {
    padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  }
  body.page-usilenie .usil-title {
    font-size: clamp(2.25rem, 2.35rem + -0.5vw, 1.75rem);
  }
  body.page-usilenie .usil-grid {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }
  body.page-usilenie .usil-best__title {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
  body.page-usilenie .usil-best-item {
    padding: 1.25rem;
  }
  body.page-usilenie .usil-cta {
    padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  }
  body.page-usilenie .usil-cta__btn {
    width: 100%;
    max-width: 18.75rem;
  }
  body.page-usilenie .usil-pricing-cta {
    padding: clamp(3.75rem, 3.875rem + -0.625vw, 3.125rem) 0;
  }
  body.page-usilenie .usil-pricing-cta__title {
    font-size: clamp(1.875rem, 1.925rem + -0.25vw, 1.625rem);
  }
  body.page-usilenie .usil-pricing-cta__text {
    font-size: 1rem;
    margin-bottom: 1.875rem;
  }
  body.page-usilenie .usil-pricing-cta__btn {
    max-width: 18.75rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }
  body.page-usilenie .usil-pricing-cta__phone {
    font-size: 0.875rem;
  }
}

.calc-hero {
  position: relative;
  padding: clamp(7.5rem, 8rem + -2.5vw, 5rem) 0 clamp(4.375rem, 4.625rem + -1.25vw, 3.125rem);
  background: linear-gradient(135deg, var(--color-black-90) 0%, var(--color-steel-dark) 100%);
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
}
.calc-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 8px);
  animation: calcHeroShift 20s linear infinite;
  z-index: 1;
}
.calc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 56.25rem;
  margin: 0 auto;
}
.calc-hero__supertitle {
  display: inline-block;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 600;
  color: var(--color-gray-70);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}
.calc-hero__supertitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 1px;
  background: var(--color-gray-70);
}
.calc-hero__title {
  font-family: var(--font-family-accent);
  font-size: clamp(2rem, 1.875rem + 0.625vw, 2.625rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.calc-hero__title-accent {
  font-weight: 700;
  color: var(--color-chrome);
  display: block;
  position: relative;
  padding-bottom: 0.625rem;
}
.calc-hero__title-accent::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-chrome), transparent);
}
.calc-hero__description {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-gray-70);
  max-width: 40.625rem;
  margin: 0 auto;
  line-height: 1.6;
}

@keyframes calcHeroShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(10%, 10%);
  }
}
.calc-main {
  padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  background: var(--bg-secondary);
}

.calc-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (width > 90.06125rem) {
  .calc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-duration);
}
.calc-card:hover {
  box-shadow: var(--shadow-xl);
}
.calc-card--image {
  padding: 0;
  overflow: hidden;
}

.calc-field {
  margin-bottom: 1.5rem;
}
.calc-field:last-of-type {
  margin-bottom: 1.875rem;
}

.calc-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.calc-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-black-80);
  border: 1px solid var(--color-black-70);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-size: 1rem;
  transition: all var(--transition-duration);
}
.calc-input:focus {
  outline: none;
  border-color: var(--color-chrome);
  box-shadow: 0 0 0 3px rgba(200, 200, 200, 0.2);
}
.calc-input::placeholder {
  color: var(--color-gray-70);
  opacity: 0.6;
}

.calc-select-wrapper {
  position: relative;
}

.calc-select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-black-80);
  border: 1px solid var(--color-black-70);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-size: 1rem;
  appearance: none;
  cursor: pointer;
}
.calc-select:focus {
  outline: none;
  border-color: var(--color-chrome);
}

.calc-select-icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: var(--color-gray-70);
  pointer-events: none;
}

.calc-hint {
  font-size: 0.8125rem;
  color: var(--color-gray-70);
  margin-top: 0.375rem;
  padding-left: 0.25rem;
}

.calc-results {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}

.calc-result-item {
  flex: 1;
  min-width: 7.5rem;
}

.calc-result-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-bottom: 0.25rem;
}

.calc-result-value {
  font-family: var(--font-family-accent);
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  font-weight: 700;
  color: var(--color-chrome);
}

.calc-actions {
  display: flex;
  gap: 1rem;
}
@media (width <= 47.99875rem) {
  .calc-actions {
    flex-direction: column;
  }
}

.calc-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-family-accent);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-duration);
}
.calc-btn i {
  font-size: 1rem;
}
.calc-btn--primary {
  background: var(--gradient-steel);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .calc-btn--primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
}
@media (any-hover: none) {
  .calc-btn--primary:active {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
}
.calc-btn--secondary {
  background: var(--color-black-80);
  border: 1px solid var(--color-black-70);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .calc-btn--secondary:hover {
    border-color: var(--color-chrome);
    background: var(--color-black-90);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
}
@media (any-hover: none) {
  .calc-btn--secondary:active {
    border-color: var(--color-chrome);
    background: var(--color-black-90);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
}

.calc-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 6/4;
  object-fit: cover;
}

.calc-image-caption {
  padding: 1.25rem 1.875rem 1.875rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
  border-top: 1px solid var(--border-default);
}

.calc-note {
  margin-top: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
}
.calc-note i {
  color: var(--color-steel);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.calc-note p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.5;
  margin: 0;
}

.calc-footer {
  margin-top: 3.125rem;
  text-align: center;
}

.calc-cta {
  min-width: 17.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  background: var(--color-black);
  border: 1px solid var(--color-chrome);
  color: var(--color-chrome);
  transition: all var(--transition-duration);
  border-radius: var(--radius-md);
}
@media (any-hover: hover) {
  .calc-cta:hover {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.02);
    box-shadow: 0 0 30px var(--color-chrome);
  }
}
@media (any-hover: none) {
  .calc-cta:active {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.02);
    box-shadow: 0 0 30px var(--color-chrome);
  }
}

@media (width <= 47.99875rem) {
  .calc-card {
    padding: 1.25rem;
  }
  .calc-results {
    flex-direction: column;
    gap: 0.75rem;
  }
  .calc-result-item {
    min-width: auto;
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.gallery-hero {
  position: relative;
  padding: clamp(7.5rem, 8rem + -2.5vw, 5rem) 0 clamp(4.375rem, 4.625rem + -1.25vw, 3.125rem);
  background: linear-gradient(135deg, var(--color-black-90) 0%, var(--color-steel-dark) 100%);
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
}
.gallery-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 8px);
  animation: galleryHeroShift 20s linear infinite;
  z-index: 1;
}
.gallery-hero__content {
  position: relative;
  z-index: 2;
  max-width: 56.25rem;
  margin: 0 auto;
}
.gallery-hero__supertitle {
  display: inline-block;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 600;
  color: var(--color-gray-70);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}
.gallery-hero__supertitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 1px;
  background: var(--color-gray-70);
}
.gallery-hero__title {
  font-family: var(--font-family-accent);
  font-size: clamp(2rem, 1.875rem + 0.625vw, 2.625rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.gallery-hero__title-accent {
  font-weight: 700;
  color: var(--color-chrome);
  display: block;
  position: relative;
  padding-bottom: 0.625rem;
}
.gallery-hero__title-accent::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-chrome), transparent);
}
.gallery-hero__description {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--color-gray-70);
  max-width: 40.625rem;
  margin: 0 auto;
  line-height: 1.6;
}

@keyframes galleryHeroShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(10%, 10%);
  }
}
.gallery-section {
  padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  background: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
}
@media (width <= 47.99875rem) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 1rem;
  }
}

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-black-80);
  border: 1px solid var(--color-black-70);
  transition: all var(--transition-duration);
  aspect-ratio: 4/3;
  text-decoration: none;
}
@media (any-hover: hover) {
  .gallery-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-chrome);
  }
  .gallery-item:hover .gallery-item__thumb {
    transform: scale(1.1);
  }
  .gallery-item:hover::after {
    opacity: 1;
  }
}
@media (any-hover: none) {
  .gallery-item:active {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-chrome);
  }
  .gallery-item:active .gallery-item__thumb {
    transform: scale(1.1);
  }
  .gallery-item:active::after {
    opacity: 1;
  }
}
.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-duration);
  pointer-events: none;
  z-index: 2;
}
.gallery-item__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  will-change: transform;
}

.gallery-footer {
  padding: 0 0 clamp(5rem, 5.25rem + -1.25vw, 3.75rem);
  text-align: center;
  background: var(--bg-secondary);
}

.gallery-cta {
  min-width: 17.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  background: var(--color-black);
  border: 1px solid var(--color-chrome);
  color: var(--color-chrome);
  transition: all var(--transition-duration);
  border-radius: var(--radius-md);
}
@media (any-hover: hover) {
  .gallery-cta:hover {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.02);
    box-shadow: 0 0 30px var(--color-chrome);
  }
}
@media (any-hover: none) {
  .gallery-cta:active {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.02);
    box-shadow: 0 0 30px var(--color-chrome);
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

body.page-services {
  --srv-accent: var(--color-chrome);
  --srv-glow: 0 0 30px rgba(200, 200, 200, 0.25);
  --srv-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.page-services .srv-main {
  background: var(--bg-primary);
}
body.page-services .container {
  margin: 0 auto;
  padding: 0 1.25rem;
}
body.page-services .srv-hero {
  padding: clamp(7.5rem, 8rem + -2.5vw, 5rem) 0 clamp(4.375rem, 4.625rem + -1.25vw, 3.125rem);
  background: linear-gradient(135deg, var(--color-black-90) 0%, var(--color-steel-dark) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
body.page-services .srv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-metal-texture);
  opacity: 0.1;
  pointer-events: none;
}
body.page-services .srv-hero__container {
  position: relative;
  z-index: 2;
  text-align: center;
}
body.page-services .srv-hero__title {
  font-family: var(--font-family-accent);
  font-size: clamp(2rem, 1.7rem + 1.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}
body.page-services .srv-hero__title-accent {
  display: block;
  font-weight: 700;
  color: var(--color-chrome);
  margin-top: 0.625rem;
  position: relative;
}
body.page-services .srv-hero__title-accent::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6.25rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-chrome), transparent);
}
body.page-services .srv-hero__subtitle {
  font-size: clamp(1.25rem, 1.3rem + -0.25vw, 1rem);
  color: var(--color-gray-80);
  max-width: 50rem;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
body.page-services .srv-section-title {
  font-family: var(--font-family-accent);
  font-size: clamp(2.625rem, 2.775rem + -0.75vw, 1.875rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin: 0 0 3.125rem;
  position: relative;
  padding-bottom: 0.9375rem;
}
body.page-services .srv-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 3px;
  background: var(--gradient-steel);
  border-radius: var(--radius-full);
}
body.page-services .srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.875rem;
  margin-bottom: 3.75rem;
}
@media (width <= 47.99875rem) {
  body.page-services .srv-grid {
    gap: 1.25rem;
  }
}
body.page-services .srv-cards {
  padding: 2.5rem 0;
}
@media (width > 90.06125rem) {
  body.page-services .srv-cards {
    padding-inline: 18.75rem;
  }
}
body.page-services .srv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.875rem 2.1875rem;
  transition: var(--srv-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
body.page-services .srv-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}
body.page-services .srv-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-chrome), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
@media (any-hover: hover) {
  body.page-services .srv-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--srv-glow);
    border-color: rgba(200, 200, 200, 0.3);
  }
  body.page-services .srv-card:hover::before {
    opacity: 1;
  }
  body.page-services .srv-card:hover::after {
    transform: scaleX(1);
  }
  body.page-services .srv-card:hover .srv-card__icon {
    background: var(--gradient-steel);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
  }
  body.page-services .srv-card:hover .srv-card__link {
    color: var(--color-chrome);
    gap: 0.9375rem;
  }
}
@media (any-hover: none) {
  body.page-services .srv-card:active {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--srv-glow);
    border-color: rgba(200, 200, 200, 0.3);
  }
  body.page-services .srv-card:active::before {
    opacity: 1;
  }
  body.page-services .srv-card:active::after {
    transform: scaleX(1);
  }
  body.page-services .srv-card:active .srv-card__icon {
    background: var(--gradient-steel);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
  }
  body.page-services .srv-card:active .srv-card__link {
    color: var(--color-chrome);
    gap: 0.9375rem;
  }
}
body.page-services .srv-card__icon {
  width: 4.375rem;
  height: 4.375rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5625rem;
  transition: var(--srv-transition);
  box-shadow: var(--shadow-md);
}
body.page-services .srv-card__icon i {
  font-size: 2rem;
  color: var(--text-primary);
}
body.page-services .srv-card__title {
  font-family: var(--font-family-accent);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.9375rem;
  line-height: 1.3;
}
body.page-services .srv-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5625rem;
}
body.page-services .srv-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-family-accent);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-white-70);
  transition: var(--srv-transition);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
body.page-services .srv-card__link i {
  font-size: 0.875rem;
  transition: transform var(--srv-transition);
}
@media (any-hover: hover) {
  body.page-services .srv-card__link:hover {
    color: var(--color-chrome);
  }
  body.page-services .srv-card__link:hover i {
    transform: translateX(5px);
  }
}
@media (any-hover: none) {
  body.page-services .srv-card__link:active {
    color: var(--color-chrome);
  }
  body.page-services .srv-card__link:active i {
    transform: translateX(5px);
  }
}
body.page-services .srv-card__link--button {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  color: var(--color-white-70);
}
body.page-services .srv-cta {
  padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-services .srv-cta__inner {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.25rem;
}
body.page-services .srv-cta__title {
  font-family: var(--font-family-accent);
  font-size: clamp(2.375rem, 2.5rem + -0.625vw, 1.75rem);
  font-weight: 700;
  color: var(--color-chrome);
  margin-bottom: 0.9375rem;
}
body.page-services .srv-cta__text {
  font-size: clamp(1.25rem, 1.3rem + -0.25vw, 1rem);
  color: var(--color-white-80);
  margin-bottom: 1.875rem;
  font-weight: 300;
}
body.page-services .srv-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  flex-wrap: wrap;
}
body.page-services .srv-cta__btn {
  background: var(--color-black);
  border: 1px solid var(--color-chrome);
  color: var(--color-chrome);
  padding: 0.875rem 1.875rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--srv-transition);
  cursor: pointer;
}
@media (any-hover: hover) {
  body.page-services .srv-cta__btn:hover {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--color-chrome);
  }
}
@media (any-hover: none) {
  body.page-services .srv-cta__btn:active {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--color-chrome);
  }
}
body.page-services .srv-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--srv-transition);
}
body.page-services .srv-cta__phone i {
  color: var(--color-chrome);
}
@media (any-hover: hover) {
  body.page-services .srv-cta__phone:hover {
    color: var(--color-chrome);
  }
}
@media (any-hover: none) {
  body.page-services .srv-cta__phone:active {
    color: var(--color-chrome);
  }
}
@media (width <= 47.99875rem) {
  body.page-services .srv-hero {
    padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0 clamp(3.125rem, 3.25rem + -0.625vw, 2.5rem);
  }
  body.page-services .srv-section-title {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
  body.page-services .srv-card {
    padding: 1.875rem 1.25rem;
  }
  body.page-services .srv-card__icon {
    width: 3.75rem;
    height: 3.75rem;
  }
  body.page-services .srv-card__icon i {
    font-size: 1.75rem;
  }
  body.page-services .srv-card__title {
    font-size: 1.25rem;
  }
  body.page-services .srv-card__text {
    font-size: 0.875rem;
  }
  body.page-services .srv-cta__actions {
    flex-direction: column;
    gap: 0.9375rem;
  }
}

body.page-prices {
  --pr-accent: var(--color-chrome);
  --pr-glow: 0 0 30px rgba(200, 200, 200, 0.2);
  --pr-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --pr-link-color: var(--color-white-70);
  --pr-link-hover: var(--color-chrome);
}
body.page-prices .pr-main {
  background: var(--bg-primary);
}
body.page-prices .container {
  margin: 0 auto;
  padding: 0 1.25rem;
}
body.page-prices .pr-hero {
  padding: clamp(7.5rem, 8rem + -2.5vw, 5rem) 0 clamp(4.375rem, 4.625rem + -1.25vw, 3.125rem);
  background: linear-gradient(135deg, var(--color-black-90) 0%, var(--color-steel-dark) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
body.page-prices .pr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-metal-texture);
  opacity: 0.1;
  pointer-events: none;
}
body.page-prices .pr-hero__container {
  position: relative;
  z-index: 2;
  text-align: center;
}
body.page-prices .pr-hero__title {
  font-family: var(--font-family-accent);
  font-size: clamp(3.5rem, 3.75rem + -1.25vw, 2.25rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}
body.page-prices .pr-hero__title-accent {
  display: block;
  font-weight: 700;
  color: var(--color-chrome);
  margin-top: 0.625rem;
  position: relative;
}
body.page-prices .pr-hero__title-accent::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6.25rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-chrome), transparent);
}
body.page-prices .pr-hero__subtitle {
  font-size: clamp(1.25rem, 1.3rem + -0.25vw, 1rem);
  color: var(--color-gray-80);
  max-width: 50rem;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
body.page-prices .pr-section-title {
  font-family: var(--font-family-accent);
  font-size: clamp(2.625rem, 2.775rem + -0.75vw, 1.875rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin: 0 0 3.125rem;
  position: relative;
  padding-bottom: 0.9375rem;
}
body.page-prices .pr-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 3px;
  background: var(--gradient-steel);
  border-radius: var(--radius-full);
}
body.page-prices .pr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.875rem;
  margin-bottom: 3.75rem;
}
@media (width <= 47.99875rem) {
  body.page-prices .pr-grid {
    gap: 1.25rem;
  }
}
body.page-prices .pr-cards {
  padding: 2.5rem 0;
}
@media (width > 90.06125rem) {
  body.page-prices .pr-cards {
    padding-inline: 18.75rem;
  }
}
body.page-prices .pr-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.875rem 2.1875rem;
  transition: var(--pr-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
body.page-prices .pr-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}
body.page-prices .pr-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-chrome), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
@media (any-hover: hover) {
  body.page-prices .pr-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--pr-glow);
    border-color: rgba(200, 200, 200, 0.3);
  }
  body.page-prices .pr-card:hover::before {
    opacity: 1;
  }
  body.page-prices .pr-card:hover::after {
    transform: scaleX(1);
  }
  body.page-prices .pr-card:hover .pr-card__icon {
    background: var(--gradient-steel);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
  }
  body.page-prices .pr-card:hover .pr-card__link {
    color: var(--pr-link-hover);
    gap: 0.9375rem;
  }
}
@media (any-hover: none) {
  body.page-prices .pr-card:active {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--pr-glow);
    border-color: rgba(200, 200, 200, 0.3);
  }
  body.page-prices .pr-card:active::before {
    opacity: 1;
  }
  body.page-prices .pr-card:active::after {
    transform: scaleX(1);
  }
  body.page-prices .pr-card:active .pr-card__icon {
    background: var(--gradient-steel);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
  }
  body.page-prices .pr-card:active .pr-card__link {
    color: var(--pr-link-hover);
    gap: 0.9375rem;
  }
}
body.page-prices .pr-card__icon {
  width: 4.375rem;
  height: 4.375rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5625rem;
  transition: var(--pr-transition);
  box-shadow: var(--shadow-md);
}
body.page-prices .pr-card__icon i {
  font-size: 2rem;
  color: var(--text-primary);
}
body.page-prices .pr-card__title {
  font-family: var(--font-family-accent);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.9375rem;
  line-height: 1.3;
}
body.page-prices .pr-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5625rem;
}
body.page-prices .pr-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-family-accent);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--pr-link-color);
  transition: var(--pr-transition);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
body.page-prices .pr-card__link i {
  font-size: 0.875rem;
  transition: transform var(--pr-transition);
}
@media (any-hover: hover) {
  body.page-prices .pr-card__link:hover {
    color: var(--pr-link-hover);
  }
  body.page-prices .pr-card__link:hover i {
    transform: translateX(5px);
  }
}
@media (any-hover: none) {
  body.page-prices .pr-card__link:active {
    color: var(--pr-link-hover);
  }
  body.page-prices .pr-card__link:active i {
    transform: translateX(5px);
  }
}
body.page-prices .pr-cta {
  padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-prices .pr-cta__inner {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.25rem;
}
body.page-prices .pr-cta__title {
  font-family: var(--font-family-accent);
  font-size: clamp(2.375rem, 2.5rem + -0.625vw, 1.75rem);
  font-weight: 700;
  color: var(--color-chrome);
  margin-bottom: 0.9375rem;
}
body.page-prices .pr-cta__text {
  font-size: clamp(1.25rem, 1.3rem + -0.25vw, 1rem);
  color: var(--color-white-80);
  margin-bottom: 1.875rem;
  font-weight: 300;
}
body.page-prices .pr-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  flex-wrap: wrap;
}
body.page-prices .pr-cta__btn {
  background: var(--color-black);
  border: 1px solid var(--color-chrome);
  color: var(--color-chrome);
  padding: 0.875rem 1.875rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--pr-transition);
  cursor: pointer;
}
@media (any-hover: hover) {
  body.page-prices .pr-cta__btn:hover {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--color-chrome);
  }
}
@media (any-hover: none) {
  body.page-prices .pr-cta__btn:active {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--color-chrome);
  }
}
body.page-prices .pr-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--pr-transition);
}
body.page-prices .pr-cta__phone i {
  color: var(--color-chrome);
}
@media (any-hover: hover) {
  body.page-prices .pr-cta__phone:hover {
    color: var(--color-chrome);
  }
}
@media (any-hover: none) {
  body.page-prices .pr-cta__phone:active {
    color: var(--color-chrome);
  }
}
@media (width <= 47.99875rem) {
  body.page-prices .pr-hero {
    padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0 clamp(3.125rem, 3.25rem + -0.625vw, 2.5rem);
  }
  body.page-prices .pr-section-title {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
  body.page-prices .pr-card {
    padding: 1.875rem 1.25rem;
  }
  body.page-prices .pr-card__icon {
    width: 3.75rem;
    height: 3.75rem;
  }
  body.page-prices .pr-card__icon i {
    font-size: 1.75rem;
  }
  body.page-prices .pr-card__title {
    font-size: 1.25rem;
  }
  body.page-prices .pr-card__text {
    font-size: 0.875rem;
  }
  body.page-prices .pr-cta__actions {
    flex-direction: column;
    gap: 0.9375rem;
  }
}

body.page-useful {
  --usf-accent: var(--color-chrome);
  --usf-glow: 0 0 30px rgba(200, 200, 200, 0.2);
  --usf-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --usf-link-color: var(--color-white-70);
  --usf-link-hover: var(--color-chrome);
}
body.page-useful .usf-main {
  background: var(--bg-primary);
}
body.page-useful .container {
  margin: 0 auto;
  padding: 0 1.25rem;
}
body.page-useful .usf-hero {
  padding: clamp(7.5rem, 8rem + -2.5vw, 5rem) 0 clamp(4.375rem, 4.625rem + -1.25vw, 3.125rem);
  background: linear-gradient(135deg, var(--color-black-90) 0%, var(--color-steel-dark) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
body.page-useful .usf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-metal-texture);
  opacity: 0.1;
  pointer-events: none;
}
body.page-useful .usf-hero__container {
  position: relative;
  z-index: 2;
  text-align: center;
}
body.page-useful .usf-hero__title {
  font-family: var(--font-family-accent);
  font-size: clamp(3.5rem, 3.75rem + -1.25vw, 2.25rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}
body.page-useful .usf-hero__title-accent {
  display: block;
  font-weight: 700;
  color: var(--color-chrome);
  margin-top: 0.625rem;
  position: relative;
}
body.page-useful .usf-hero__title-accent::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6.25rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-chrome), transparent);
}
body.page-useful .usf-hero__subtitle {
  font-size: clamp(1.25rem, 1.3rem + -0.25vw, 1rem);
  color: var(--color-gray-80);
  max-width: 50rem;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
body.page-useful .usf-section-title {
  font-family: var(--font-family-accent);
  font-size: clamp(2.625rem, 2.775rem + -0.75vw, 1.875rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin: 0 0 3.125rem;
  position: relative;
  padding-bottom: 0.9375rem;
}
body.page-useful .usf-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 3px;
  background: var(--gradient-steel);
  border-radius: var(--radius-full);
}
body.page-useful .usf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.875rem;
  margin-bottom: 3.75rem;
}
@media (width <= 47.99875rem) {
  body.page-useful .usf-grid {
    gap: 1.25rem;
  }
}
body.page-useful .usf-cards {
  padding: 2.5rem 0;
}
@media (width > 90.06125rem) {
  body.page-useful .usf-cards {
    padding-inline: 18.75rem;
  }
}
body.page-useful .usf-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.875rem 2.1875rem;
  transition: var(--usf-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
body.page-useful .usf-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}
body.page-useful .usf-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-chrome), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
@media (any-hover: hover) {
  body.page-useful .usf-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--usf-glow);
    border-color: rgba(200, 200, 200, 0.3);
  }
  body.page-useful .usf-card:hover::before {
    opacity: 1;
  }
  body.page-useful .usf-card:hover::after {
    transform: scaleX(1);
  }
  body.page-useful .usf-card:hover .usf-card__icon {
    background: var(--gradient-steel);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
  }
  body.page-useful .usf-card:hover .usf-card__link {
    color: var(--usf-link-hover);
    gap: 0.9375rem;
  }
}
@media (any-hover: none) {
  body.page-useful .usf-card:active {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--usf-glow);
    border-color: rgba(200, 200, 200, 0.3);
  }
  body.page-useful .usf-card:active::before {
    opacity: 1;
  }
  body.page-useful .usf-card:active::after {
    transform: scaleX(1);
  }
  body.page-useful .usf-card:active .usf-card__icon {
    background: var(--gradient-steel);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
  }
  body.page-useful .usf-card:active .usf-card__link {
    color: var(--usf-link-hover);
    gap: 0.9375rem;
  }
}
body.page-useful .usf-card__icon {
  width: 4.375rem;
  height: 4.375rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5625rem;
  transition: var(--usf-transition);
  box-shadow: var(--shadow-md);
}
body.page-useful .usf-card__icon i {
  font-size: 2rem;
  color: var(--text-primary);
}
body.page-useful .usf-card__title {
  font-family: var(--font-family-accent);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.9375rem;
  line-height: 1.3;
}
body.page-useful .usf-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5625rem;
}
body.page-useful .usf-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-family-accent);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--usf-link-color);
  transition: var(--usf-transition);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
body.page-useful .usf-card__link i {
  font-size: 0.875rem;
  transition: transform var(--usf-transition);
}
@media (any-hover: hover) {
  body.page-useful .usf-card__link:hover {
    color: var(--usf-link-hover);
  }
  body.page-useful .usf-card__link:hover i {
    transform: translateX(5px);
  }
}
@media (any-hover: none) {
  body.page-useful .usf-card__link:active {
    color: var(--usf-link-hover);
  }
  body.page-useful .usf-card__link:active i {
    transform: translateX(5px);
  }
}
body.page-useful .usf-cta {
  padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-useful .usf-cta__inner {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.25rem;
}
body.page-useful .usf-cta__title {
  font-family: var(--font-family-accent);
  font-size: clamp(2.375rem, 2.5rem + -0.625vw, 1.75rem);
  font-weight: 700;
  color: var(--color-chrome);
  margin-bottom: 0.9375rem;
}
body.page-useful .usf-cta__text {
  font-size: clamp(1.25rem, 1.3rem + -0.25vw, 1rem);
  color: var(--color-white-80);
  margin-bottom: 1.875rem;
  font-weight: 300;
}
body.page-useful .usf-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  flex-wrap: wrap;
}
body.page-useful .usf-cta__btn {
  background: var(--color-black);
  border: 1px solid var(--color-chrome);
  color: var(--color-chrome);
  padding: 0.875rem 1.875rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--usf-transition);
  cursor: pointer;
}
@media (any-hover: hover) {
  body.page-useful .usf-cta__btn:hover {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--color-chrome);
  }
}
@media (any-hover: none) {
  body.page-useful .usf-cta__btn:active {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--color-chrome);
  }
}
body.page-useful .usf-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--usf-transition);
}
body.page-useful .usf-cta__phone i {
  color: var(--color-chrome);
}
@media (any-hover: hover) {
  body.page-useful .usf-cta__phone:hover {
    color: var(--color-chrome);
  }
}
@media (any-hover: none) {
  body.page-useful .usf-cta__phone:active {
    color: var(--color-chrome);
  }
}
@media (width <= 47.99875rem) {
  body.page-useful .usf-hero {
    padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0 clamp(3.125rem, 3.25rem + -0.625vw, 2.5rem);
  }
  body.page-useful .usf-section-title {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
  body.page-useful .usf-card {
    padding: 1.875rem 1.25rem;
  }
  body.page-useful .usf-card__icon {
    width: 3.75rem;
    height: 3.75rem;
  }
  body.page-useful .usf-card__icon i {
    font-size: 1.75rem;
  }
  body.page-useful .usf-card__title {
    font-size: 1.25rem;
  }
  body.page-useful .usf-card__text {
    font-size: 0.875rem;
  }
  body.page-useful .usf-cta__actions {
    flex-direction: column;
    gap: 0.9375rem;
  }
}

.sitemap {
  margin: 8rem auto;
  padding: 0 1.5rem;
}

.sitemap__title {
  display: flex;
  font-family: var(--font-family-accent);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  justify-content: center;
}

.sitemap__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.sitemap__section {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  width: 300px;
}

.sitemap__section-title {
  font-family: var(--font-family-accent);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-steel);
}

.sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap__item {
  margin-bottom: 0.5rem;
}

.sitemap__link {
  display: inline-block;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sitemap__link:hover {
  color: var(--color-chrome);
  text-decoration: underline;
}

.sitemap__sublist {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.25rem;
  border-left: 2px solid var(--border-divider);
}

.sitemap__subitem {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .sitemap__grid {
    grid-template-columns: 1fr;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #222;
  transition: transform 0.3s ease;
  z-index: 1002;
}

.header__logo:hover {
  transform: scale(1.02);
}

.header__logo-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-accent {
  color: #1a1a1a;
}

.header__nav {
  display: flex;
  align-items: center;
  position: relative;
}

.header__nav-list {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header__nav-link:hover {
  color: #1a1a1a;
  background: rgba(65, 65, 65, 0.199);
}

.header__nav-link:focus {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

.header__nav-icon {
  font-size: 0.8rem;
  color: #666;
  transition: transform 0.3s ease;
}

.header__nav-item--has-dropdown:hover .header__nav-icon {
  transform: rotate(180deg);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.header__nav-item--has-dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__dropdown-item {
  margin: 0;
}

.header__dropdown-link {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.2s ease;
}

.header__dropdown-link:hover {
  background: rgba(54, 54, 54, 0.164);
  color: #1a1a1a;
  padding-left: 25px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 25px;
  z-index: 1002;
}

.header__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header__phone:hover {
  color: #1a1a1a;
}

.header__phone-icon {
  color: #1a1a1a;
  font-size: 1.1rem;
}

.header__callback {
  white-space: nowrap;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.header__burger-line {
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.header__burger[aria-expanded=true] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header__burger[aria-expanded=true] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded=true] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1245px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    padding: 80px 30px 30px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    z-index: 1001;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .header__nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .header__nav-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  .header__nav-item:last-child {
    border-bottom: none;
  }
  .header__nav-link {
    padding: 16px 20px;
    font-size: 1.1rem;
    justify-content: space-between;
    border-radius: 0;
  }
  .header__nav-icon {
    transform: rotate(0deg);
  }
  .header__nav-item--has-dropdown.active .header__nav-icon {
    transform: rotate(180deg);
  }
  .header__dropdown {
    position: static;
    min-width: 100%;
    box-shadow: none;
    background: #f8fafc;
    border-radius: 0;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease;
  }
  .header__nav-item--has-dropdown.active .header__dropdown {
    max-height: 500px;
    padding: 10px 0;
  }
  .header__dropdown-link {
    padding: 14px 30px;
    font-size: 1rem;
  }
  .header__contacts {
    display: none;
  }
  .header__nav::after {
    content: "";
    display: block;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  .mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  .mobile-contacts .header__phone {
    font-size: 1.2rem;
    justify-content: center;
    color: #1a1a1a;
  }
  .mobile-contacts .header__callback {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 8px;
  }
}
@media (max-width: 1245px) and (min-width: 768px) {
  .header__nav {
    width: 400px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  }
  .mobile-contacts {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .mobile-contacts .header__phone {
    flex: 1;
    justify-content: flex-start;
  }
  .mobile-contacts .header__callback {
    flex: 1;
    min-width: 200px;
  }
}
@media (max-width: 767px) {
  .header__container {
    padding: 0 15px;
  }
  .header__logo {
    font-size: 1.3rem;
  }
  .header__logo-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .header__burger {
    width: 28px;
    height: 20px;
  }
  .header__burger-line {
    height: 2.5px;
  }
}
@media (max-width: 360px) {
  .header__logo-text {
    font-size: 1.2rem;
  }
  .header__burger {
    width: 26px;
    height: 18px;
  }
  .header__nav {
    padding: 70px 20px 20px;
  }
  .header__nav-link {
    padding: 14px 15px;
    font-size: 1rem;
  }
  .header__burger {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }
  .header__nav-link,
  .header__dropdown-link,
  .btn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
  }
  @supports (-webkit-touch-callout: none) {
    .header {
      padding: max(15px, env(safe-area-inset-top)) 0 max(15px, env(safe-area-inset-bottom));
    }
    .header__nav {
      padding: calc(80px + env(safe-area-inset-top)) 30px calc(30px + env(safe-area-inset-bottom));
    }
  }
}
.header__logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

body.page-contacts {
  --contacts-accent: var(--color-chrome);
  --contacts-glow: 0 0 20px rgba(200, 200, 200, 0.3);
  --contacts-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.page-contacts .contacts-hero {
  position: relative;
  min-height: 50vh;
  padding: clamp(10rem, 10.5rem + -2.5vw, 7.5rem) 0 clamp(5rem, 5.25rem + -1.25vw, 3.75rem);
  background: var(--color-black-90);
  color: var(--text-light);
  display: flex;
  align-items: center;
  overflow: hidden;
}
body.page-contacts .contacts-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 8px), radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), var(--gradient-dark);
  animation: contactsHeroShift 20s linear infinite;
  z-index: 1;
}
body.page-contacts .contacts-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: 2;
}
body.page-contacts .contacts-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
}
body.page-contacts .contacts-hero__content {
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
body.page-contacts .contacts-hero__title {
  font-family: var(--font-family-accent);
  font-size: clamp(4rem, 4.275rem + -1.375vw, 2.625rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
body.page-contacts .contacts-hero__title span {
  display: block;
}
body.page-contacts .contacts-hero__title span:first-child {
  color: var(--color-gray-80);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
body.page-contacts .contacts-hero__title span:last-child {
  color: var(--color-chrome);
  position: relative;
  display: inline-block;
  padding-bottom: 0.625rem;
}
body.page-contacts .contacts-hero__title span:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-chrome), transparent);
}
body.page-contacts .contacts-hero__text {
  font-size: clamp(1.375rem, 1.425rem + -0.25vw, 1.125rem);
  color: var(--color-gray-70);
  line-height: 1.7;
  max-width: 40.625rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
@keyframes contactsHeroShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(10%, 10%);
  }
}
body.page-contacts .contacts-section {
  padding: clamp(6.25rem, 6.5rem + -1.25vw, 5rem) 0;
  background: var(--bg-primary);
}
body.page-contacts .contacts-section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}
body.page-contacts .contacts-title {
  font-family: var(--font-family-accent);
  font-size: clamp(2.25rem, 2.35rem + -0.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1.875rem 0;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}
body.page-contacts .contacts-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 5rem;
  height: 3px;
  background: var(--gradient-steel);
  border-radius: var(--radius-full);
}
body.page-contacts .contacts-title--centered {
  display: block;
  text-align: center;
}
body.page-contacts .contacts-title--centered::after {
  left: 50%;
  transform: translateX(-50%);
}
body.page-contacts .contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 50rem;
  margin: 0 auto;
}
@media (width > 63.99875rem) {
  body.page-contacts .contacts-grid {
    grid-template-columns: 1fr;
    max-width: 37.5rem;
  }
}
body.page-contacts .contacts-grid__item--info {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.875rem;
  box-shadow: var(--shadow-md);
  transition: var(--contacts-transition);
}
@media (any-hover: hover) {
  body.page-contacts .contacts-grid__item--info:hover {
    border-color: var(--color-chrome);
    box-shadow: var(--shadow-xl), var(--contacts-glow);
  }
}
@media (any-hover: none) {
  body.page-contacts .contacts-grid__item--info:active {
    border-color: var(--color-chrome);
    box-shadow: var(--shadow-xl), var(--contacts-glow);
  }
}
body.page-contacts .contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.page-contacts .contacts-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-divider);
}
body.page-contacts .contacts-list__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media (any-hover: hover) {
  body.page-contacts .contacts-list__item:hover {
    color: var(--color-chrome-dark);
  }
}
@media (any-hover: none) {
  body.page-contacts .contacts-list__item:active {
    color: var(--color-chrome-dark);
  }
}
body.page-contacts .contacts-list__icon {
  width: 3.125rem;
  height: 3.125rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-chrome-dark);
  font-size: 1.375rem;
  flex-shrink: 0;
  transition: var(--contacts-transition);
  box-shadow: var(--shadow-sm);
}
.contacts-list__item:hover body.page-contacts .contacts-list__icon {
  background: var(--gradient-steel);
  color: var(--color-gray);
  transform: scale(1.05) rotate(2deg);
}
body.page-contacts .contacts-list__content {
  flex: 1;
}
body.page-contacts .contacts-list__label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
body.page-contacts .contacts-list__value {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}
body.page-contacts .contacts-list__value--link {
  text-decoration: none;
  transition: color var(--contacts-transition);
}
@media (any-hover: hover) {
  body.page-contacts .contacts-list__value--link:hover {
    color: var(--color-gray);
  }
}
@media (any-hover: none) {
  body.page-contacts .contacts-list__value--link:active {
    color: var(--color-gray);
  }
}
body.page-contacts .contacts-cta {
  padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
  background: var(--gradient-concrete);
  color: var(--text-light);
  text-align: center;
  position: relative;
  isolation: isolate;
}
body.page-contacts .contacts-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-metal-texture);
  opacity: 0.1;
  z-index: -1;
}
body.page-contacts .contacts-cta__inner {
  max-width: 43.75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
body.page-contacts .contacts-cta__title {
  font-family: var(--font-family-accent);
  font-size: clamp(2.75rem, 2.9rem + -0.75vw, 2rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
body.page-contacts .contacts-cta__text {
  font-size: clamp(1.375rem, 1.425rem + -0.25vw, 1.125rem);
  color: var(--color-white-80);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
body.page-contacts .contacts-cta__btn {
  position: relative;
  overflow: hidden;
  transition: var(--contacts-transition);
  background: var(--color-black);
  border: 1px solid var(--color-chrome);
  color: var(--color-chrome);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  font-family: var(--font-family-accent);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin: 0;
}
body.page-contacts .contacts-cta__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
@media (any-hover: hover) {
  body.page-contacts .contacts-cta__btn:hover {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--color-chrome);
  }
  body.page-contacts .contacts-cta__btn:hover::before {
    left: 100%;
  }
}
@media (any-hover: none) {
  body.page-contacts .contacts-cta__btn:active {
    background: var(--color-black-80);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--color-chrome);
  }
  body.page-contacts .contacts-cta__btn:active::before {
    left: 100%;
  }
}
body.page-contacts .contacts-cta__btn i {
  font-size: 1.125rem;
}
@media (width <= 47.99875rem) {
  body.page-contacts .contacts-hero {
    padding: clamp(7.5rem, 7.75rem + -1.25vw, 6.25rem) 0 clamp(3.75rem, 4rem + -1.25vw, 2.5rem);
  }
  body.page-contacts .contacts-hero__title {
    font-size: clamp(2.125rem, 2.15rem + -0.125vw, 2rem);
  }
  body.page-contacts .contacts-section {
    padding: clamp(0.625rem, 0rem + 3.125vw, 3.75rem) 0;
  }
  body.page-contacts .contacts-title {
    font-size: clamp(1.75rem, 1.8rem + -0.25vw, 1.5rem);
  }
  body.page-contacts .contacts-grid__item--info {
    padding: 1.875rem 1.25rem;
  }
  body.page-contacts .contacts-list__item {
    gap: 0.9375rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.9375rem;
  }
  body.page-contacts .contacts-list__icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.125rem;
  }
  body.page-contacts .contacts-list__value {
    font-size: 1rem;
  }
  body.page-contacts .contacts-cta {
    padding: clamp(3.75rem, 4rem + -1.25vw, 2.5rem) 0;
  }
  body.page-contacts .contacts-cta__btn {
    width: 100%;
    max-width: 18.75rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}

.page-privacy {
  background: var(--bg-primary);
  color: var(--text-primary);
}
.page-privacy .privacy-main {
  padding: clamp(5rem, 5.25rem + -1.25vw, 3.75rem) 0;
}
.page-privacy .privacy-main .container {
  max-width: 56.25rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.page-privacy .privacy-main .privacy-content {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 3.125rem 3.75rem;
}
@media (width <= 47.99875rem) {
  .page-privacy .privacy-main .privacy-content {
    padding: 1.875rem 1.25rem;
  }
}
.page-privacy .privacy-main .privacy-content__title {
  font-family: var(--font-family-accent);
  font-size: clamp(1.5rem, 2.85rem + -0.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem;
  line-height: 1.2;
  border-bottom: 2px solid var(--color-steel);
  padding-bottom: 1.25rem;
}
.page-privacy .privacy-main .privacy-content__date {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-bottom: 2.5rem;
}
.page-privacy .privacy-main .privacy-content__body h2 {
  font-family: var(--font-family-accent);
  font-size: clamp(1.75rem, 1.8rem + -0.25vw, 1.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 2.5rem 0 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.page-privacy .privacy-main .privacy-content__body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.125rem;
  height: 2px;
  background: var(--gradient-steel);
}
.page-privacy .privacy-main .privacy-content__body h2:first-of-type {
  margin-top: 0;
}
.page-privacy .privacy-main .privacy-content__body p {
  font-size: clamp(1.125rem, 1.15rem + -0.125vw, 1rem);
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 1.5625rem;
}
.page-privacy .privacy-main .privacy-content__body p:last-child {
  margin-bottom: 0;
}
.page-privacy .privacy-main .privacy-content__body ul, .page-privacy .privacy-main .privacy-content__body ol {
  margin: 1.25rem 0;
  padding-left: 1.25rem;
}
.page-privacy .privacy-main .privacy-content__body ul li, .page-privacy .privacy-main .privacy-content__body ol li {
  font-size: clamp(1.125rem, 1.15rem + -0.125vw, 1rem);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}