<!-- start Simple Custom CSS and JS -->
<style type="text/css">
@font-face {
    font-family: 'Montserrat';
    src: url('/resources/font/Montserrat-Regular.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/resources/font/Roboto-Regular.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

.production-features* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth !important;
  scroll-padding: 0;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth !important;
  overflow-x: hidden;
  max-width: 100%;
  margin: 0;
  padding: 0;
  transition: scroll 0.5s ease-in-out !important;
}

:root {
  --bg-dark: #0a0a0a;
  --bg-light: #ffffff;
  --text-dark: #0a0a0a;
  --text-light: #ffffff;
  --text-gray-dark: #555555;
  --text-gray-light: #777777;
  --accent: #ff6b35;
  --accent-light: #ff8c5a;
  --border-dark: #222222;
  --border-light: #e0e0e0;
  --header-height: 100px;
  --transition-smooth: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  --bg-overlay: rgba(0, 0, 0, 0.3);
  --font-heading: 'Montserrat', 'Arial', 'Helvetica', sans-serif;
  --font-body: 'Roboto', 'Arial', 'Helvetica', sans-serif;
  --container-max-width: 1400px;
  --container-padding: 0px;
  --content-container-width: 83%;
}

html {
  scroll-behavior: smooth;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap:110px;
}

.site-nav .nav-container {
  width: 100%;
  max-width: var(--container-max-width);
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-logo-img {
  width: 165px;
  height: auto;
  display: block;
}

.nav-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content:center;
  height: 100%;
  font-family: var(--font-heading);
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  flex: 0 1 auto;
}

.nav-menu a {
  color: rgba(255, 255, 255);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 100%;
  font-family: var(--font-body);
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--accent);
}

.nav-button {
  background: transparent;
  color: #ffffff;
  padding: 0 20px;
  height: 40px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--accent);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-heading);
  flex-shrink: 0;
  letter-spacing: 0.3px;
  line-height: 1;
  text-align: center;
  margin: 0;
  box-sizing: border-box;
}

.nav-button:hover {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
}

.burger-menu {
  display: none;
}

.main-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.section-fluid {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.frame {
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 1;
  animation: slideDownFade 0.8s ease-out;
}

@keyframes slideDownFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.frame,
.hero-frame,
.section:has(> .areoi-background) > .frame,
.section-fluid:has(> .areoi-background) > .frame,
.orange-block,
.form-frame {
  height: 100vh;
  min-height: 100vh;
  margin-top: 0;
}

.frame .frame-container,
.hero-frame .frame-container,
.section:has(> .areoi-background) > .frame .frame-container,
.section-fluid:has(> .areoi-background) > .frame .frame-container,
.orange-block .t-container,
.form-frame .form-container-wrapper {
  padding-top: var(--header-height);
}

.frame:first-of-type .frame-container,
.hero-frame:first-of-type .frame-container,
.section:has(> .areoi-background):first-of-type > .frame .frame-container,
.section-fluid:has(> .areoi-background):first-of-type > .frame .frame-container,
.orange-block:first-of-type .t-container,
.form-frame:first-of-type .form-container-wrapper {
  padding-top: var(--header-height);
}

.frame-content-container {
  width: var(--content-container-width);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 30;
  align-items:space-between;
}

.hero-frame {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  z-index: 5;
  transform: none;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-frame .hero-carousel {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  margin: 0 !important;
  max-width: none !important;
  min-width: 100% !important;
}

.hero-frame .hero-carousel .carousel-inner,
.hero-frame .hero-carousel .carousel-item {
  width: 100% !important;
  height: 100% !important;
}

.hero-frame .hero-carousel .strip,
.hero-frame .hero-carousel .wp-block-image,
.hero-frame .hero-carousel figure {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
}

.hero-frame .hero-carousel img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}

.hero-frame .hero-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.hero-frame .frame-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top:100px;
}

.hero-frame .hero-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 200px;
  flex: 1;
  width: 100%;
  height: 100%;
}

.hero-frame .hero-content {
  flex: 0 1 auto;
  max-width: none;
  pointer-events: auto;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px 0;
}

.hero-frame .hero-eyebrow {
  color: #ffffff !important;
  font-size: 70px !important;
  text-transform: none !important;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  font-weight: 900 !important;
  line-height: 1.2;
  font-family: var(--font-heading) !important;
  white-space: normal;
}

.hero-frame .hero-title {
  color: #ffffff !important;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  font-family: var(--font-body) !important;
  max-width: 650px;
  white-space: normal;
}

.hero-frame .hero-link {
  color: #ffffff !important;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  transition: gap 0.3s ease, color 0.3s ease;
  font-family: var(--font-body) !important;
}

.hero-frame .hero-link:hover {
  gap: 12px;
  color: var(--accent) !important;
}

.hero-frame .frame-nav {
  flex: 0 0 180px !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  height: fit-content !important;
  margin-right: 0 !important;
  align-self: center !important;
  margin-left: 0 !important;
}

.hero-frame .nav-circle {
  border-color: #ffffff !important;
  color: #ffffff !important;
  background-color: transparent !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  border-width: 2px;
}

.hero-frame .nav-label {
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  white-space: normal;
}

.hero-frame .nav-step.is-past .nav-circle {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.hero-frame .nav-step.is-past .nav-label {
  color: #ffffff !important;
}

.hero-frame .nav-step.is-active .nav-circle {
  border-color: var(--accent) !important;
  color: #000000 !important;
  border-width: 4px !important;
}

.hero-frame .nav-step.is-active .nav-label {
  color: var(--accent) !important;
  font-weight: 600 !important;
}

.hero-frame .dots-left,
.hero-frame .dots-right {
  color: #ffffff;
}

.hero-frame .dots-left .dot,
.hero-frame .dots-right .dot {
  background-color: #ffffff !important;
  opacity: 1 !important;
}

.hero-frame .next-move-container {
  width: 100%;
  text-align: center;
  padding: 0 0 20px 0;
  margin-top: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 30;
}

.hero-frame .next-move-container,
.frame .next-move-container {
  margin-top: 10px !important;
  padding-bottom: 10px !important;
}

.frame-white {
  background-color: #ffffff;
  color: var(--text-dark);
}

.info-number {
  display: none !important;
}

.frame-white .info-title {
  color: var(--text-dark);
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: normal;
}

.frame-white .info-desc {
  color: var(--text-dark);
  font-weight: 400;
  font-family: var(--font-body);
  white-space: normal;
}

.frame-white .info-col {
  background-color: transparent !important;
  backdrop-filter: none;
  border-color: var(--accent);
}

.frame-white .info-col h4 {
  color: var(--text-dark);
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: none;
  white-space: normal;
  padding-left:2rem;
}

.frame-white .info-col li {
  color: var(--text-dark);
  font-weight: 400;
  font-family: var(--font-body);
  white-space: normal;
}

.frame-white .info-col li::before {
  color: var(--accent);
}

.frame-white .nav-circle {
  border-color: #000000;
  color: #000000;
  background-color: transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  border-width: 2px;
}

.frame-white .nav-label {
  color: #000000;
  font-weight: 500;
  font-family: var(--font-body);
  white-space: normal;
}

.frame-white .nav-step.is-past .nav-circle {
  border-color: #000000;
  color: #000000;
}

.frame-white .nav-step.is-past .nav-label {
  color: #000000;
}

.frame-white .nav-step.is-active .nav-circle {
  border-color: var(--accent);
  color: #000000;
  border-width: 3px !important;
}

.frame-white .nav-step.is-active .nav-label {
  color: var(--accent);
  font-weight: 600;
}

.frame-white .dots-left .dot,
.frame-white .dots-right .dot {
  background-color: #000000;
  opacity: 1;
}

.frame-black {
  background-color: #000000;
  color: var(--text-light);
}

.frame-black .info-title {
  color: #ffffff;
  font-weight: 900;
  font-family: var(--font-heading);
  white-space: normal;
}

.frame-black .info-desc {
  color: #cccccc;
  font-weight: 400;
  font-family: var(--font-body);
  white-space: normal;
}

.frame-black .info-col {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.frame-black .info-col h4 {
  color: #ffffff;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: none;
  white-space: normal;
}

.frame-black .info-col li {
  color: #ffffff;
  font-weight: 400;
  font-family: var(--font-body);
  white-space: normal;
}

.frame-black .info-col li::before {
  color: var(--accent);
}

.frame-black .nav-circle {
  border-color: #ffffff;
  color: #ffffff;
  background-color: transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  border-width: 3px;
}

.frame-black .nav-label {
  color: #ffffff;
  font-weight: 500;
  font-family: var(--font-body);
  white-space: normal;
}

.frame-black .nav-step.is-past .nav-circle {
  border-color: #ffffff;
  color: #ffffff;
}

.frame-black .nav-step.is-past .nav-label {
  color: #ffffff;
}

.frame-black .nav-step.is-active .nav-circle {
  border-color: var(--accent);
  color: #000000;
  border-width: 4px !important;
}

.frame-black .nav-step.is-active .nav-label {
  color: var(--accent);
  font-weight: 600;
}

.frame-black .dots-left .dot,
.frame-black .dots-right .dot {
  background-color: #ffffff;
  opacity: 1;
}

.areoi-background {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: 100vw !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  max-width: none !important;
  min-width: 100vw !important;
}

.areoi-background__image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.areoi-background__color {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  opacity: 0.5 !important;
  pointer-events: none !important;
}

.section:has(> .areoi-background),
.section-fluid:has(> .areoi-background) {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  overflow: visible !important;
}

.section:has(> .areoi-background) > .frame,
.section-fluid:has(> .areoi-background) > .frame {
  background: none !important;
  color: var(--text-light);
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.section:has(> .areoi-background) > .frame > *,
.section-fluid:has(> .areoi-background) > .frame > * {
  position: relative;
  z-index: 10;
  color: #ffffff;
}

.section:has(> .areoi-background) > .frame .info-col,
.section-fluid:has(> .areoi-background) > .frame .info-col {
  background-color: var(--bg-overlay) !important;
  border-color: var(--accent);
  color: #ffffff;
}

.section:has(> .areoi-background) > .frame .info-col h4,
.section-fluid:has(> .areoi-background) > .frame .info-col h4 {
  color: #ffffff;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: none;
  white-space: normal;
  padding-left:2rem;
}

.section:has(> .areoi-background) > .frame .info-col li,
.section-fluid:has(> .areoi-background) > .frame .info-col li {
  color: #ffffff;
  font-weight: 400;
  font-family: var(--font-body);
  white-space: normal;
}

.section:has(> .areoi-background) > .frame .info-col li::before,
.section-fluid:has(> .areoi-background) > .frame .info-col li::before {
  color: var(--accent);
}

.section:has(> .areoi-background) > .frame .info-title,
.section-fluid:has(> .areoi-background) > .frame .info-title {
  color: #ffffff;
  font-weight: 900;
  font-family: var(--font-heading);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  white-space: normal;
}

.section:has(> .areoi-background) > .frame .info-desc,
.section-fluid:has(> .areoi-background) > .frame .info-desc {
  color: #ffffff;
  font-weight: 400;
  font-family: var(--font-body);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  white-space: normal;
}

.section:has(> .areoi-background) .frame-nav,
.section-fluid:has(> .areoi-background) .frame-nav {
  flex: 0 0 180px !important;
  margin-left: 0 !important;
  align-self: center !important;
}

.section:has(> .areoi-background) .nav-circle,
.section-fluid:has(> .areoi-background) .nav-circle {
  border-color: #ffffff !important;
  color: #ffffff !important;
  background-color: transparent !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  border-width: 2px;
}

.section:has(> .areoi-background) .nav-label,
.section-fluid:has(> .areoi-background) .nav-label {
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  white-space: normal;
}

.section:has(> .areoi-background) .nav-step.is-past .nav-circle,
.section-fluid:has(> .areoi-background) .nav-step.is-past .nav-circle {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.section:has(> .areoi-background) .nav-step.is-past .nav-label,
.section-fluid:has(> .areoi-background) .nav-step.is-past .nav-label {
  color: #ffffff !important;
}

.section:has(> .areoi-background) .nav-step.is-active .nav-circle,
.section-fluid:has(> .areoi-background) .nav-step.is-active .nav-circle {
  border-color: var(--accent) !important;
  color: #000000 !important;
  border-width: 4px !important;
}

.section:has(> .areoi-background) .nav-step.is-active .nav-label,
.section-fluid:has(> .areoi-background) .nav-step.is-active .nav-label {
  color: var(--accent) !important;
  font-weight: 600 !important;
}

.section:has(> .areoi-background) .dots-left .dot,
.section:has(> .areoi-background) .dots-right .dot,
.section-fluid:has(> .areoi-background) .dots-left .dot,
.section-fluid:has(> .areoi-background) .dots-right .dot {
  background-color: #ffffff !important;
  opacity: 1 !important;
}

.frame-container {
  max-width: var(--container-max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 20;
  padding: 0 var(--container-padding);
}

.frame-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  flex: 1;
  width: 100%;
  height: 100%;
}

.frame-info {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px 0;
}

.info-number {
  display: none !important;
}

.info-title {
  font-size: 70px !important;
  margin-bottom: 20px;
  line-height: 1.1;
  font-family: var(--font-heading);
  font-weight: 900;
  white-space: normal;
}

.info-desc {
  font-size: 24px !important;
  margin-bottom: 12px;
  line-height: 1.6;
  font-family: var(--font-body);
  font-weight: 400;
  white-space: normal;
}

.info-details {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.info-col {
  flex: 1;
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 20px 20px;
  background-color: transparent;
  text-align: left !important;
}

.info-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.info-col h4 {
  font-size: 26px !important;
  text-transform: none !important;
  font-weight: 700 !important;
  letter-spacing: 0;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  text-align: left;
  width: 100%;
  white-space: normal;
}

.info-col ul {
  list-style: none;
  margin-top: 5px;
}

.info-col li {
  font-size: 22px !important;
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
  font-weight: 400;
  font-family: var(--font-body);
  text-align: left;
  line-height: 1.4;
  white-space: normal;
}

.info-col li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
  top: 0;
}

.frame-nav {
  flex: 0 0 180px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  height: fit-content;
  margin-left: 0;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  align-self: center;
}

.step-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin-bottom: 5px;
}

.nav-step {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 2;
}

.nav-step:hover {
  transform: translateX(5px);
}

.nav-step:hover .nav-label {
  color: var(--accent);
}

.nav-circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 3px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  flex-shrink: 0;
  background-color: transparent;
  font-family: var(--font-heading);
}

.nav-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  font-family: var(--font-body);
  white-space: normal;
}

.nav-step.is-active .nav-circle {
  border-color: var(--accent);
  color: #000000;
  border-width: 4px !important;
}

.nav-step.is-active .nav-label {
  color: var(--accent);
  font-weight: 600;
}

.nav-step.is-past .nav-circle {
  border-color: currentColor;
}

.dots-between {
  display: flex;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
}

.dots-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-left: -5px;
  width: 50px;
}

.dots-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  margin-left: 20px;
  width: 50px;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.dots-left .dot-2,
.dots-right .dot-2 {
  width: 7px;
  height: 7px;
}

.dots-left .dot-1 {
  margin-left: 10px;
}
.dots-left .dot-2 {
  margin-left: 5px;
}
.dots-left .dot-3 {
  margin-left: 10px;
}

.dots-right .dot-1 {
  margin-right: 10px;
}
.dots-right .dot-2 {
  margin-right: 5px;
}
.dots-right .dot-3 {
  margin-right: 10px;
}

.next-move-container {
  width: 100%;
  text-align: center;
  padding: 0 0 20px 0;
  margin-top: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 30;
}

.next-move-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 12px 18px;
  border-radius: 40px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--font-heading);
}

.next-move-button:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.next-move-button:hover::after {
  transform: translateX(5px);
}

.stars-divider {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
}

.stars-divider span {
  font-size: 20px;
}

.frame-white .stars-divider span {
  color: #dddddd;
}

.frame-black .stars-divider span {
  color: #333333;
}

.divider-frame {
  min-height: auto;
  scroll-snap-align: none;
  padding: 40px;
}

.contact-frame {
  background-color: #f5f5f5;
  color: #000000;
}

.contact-card {
  max-width: 700px;
  /*margin: 0 auto;
  width: 100%;*/
}

.contact-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #000000;
  font-family: var(--font-heading);
  white-space: normal;
}

.contact-sub {
  color: #555555;
  font-size: 18px;
  margin-bottom: 40px;
  font-family: var(--font-body);
  white-space: normal;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 16px 20px;
  color: #000000;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group.full-width {
  width: 100%;
  margin-bottom: 20px;
}

.form-consent {
  margin-bottom: 32px;
}

.form-consent p {
  color: #777777;
  font-size: 12px;
  margin-bottom: 8px;
  font-family: var(--font-body);
  white-space: normal;
}

.consent-link {
  color: #555555;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.consent-link:hover {
  color: #000000;
}

.submit-btn {
  background: var(--accent);
  color: #000000;
  border: none;
  border-radius: 40px;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 16px;
  font-family: var(--font-heading);
}

.submit-btn:hover {
  background: var(--accent-light);
  transform: scale(1.02);
}

.about-frame {
  background-color: #0a0a0a;
  color: #ffffff;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #ffffff;
  margin-bottom: 32px;
  font-family: var(--font-heading);
  white-space: normal;
}

.about-heading {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  font-family: var(--font-heading);
  white-space: normal;
}

.site-footer {
  scroll-snap-align: end;
  padding: 48px 60px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  background: #ffffff;
  height: auto;
  min-height: auto;
}

.footer-made {
  color: #999999;
  font-size: 14px;
  font-family: var(--font-body);
  white-space: normal;
}

.orange-block {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--container-padding);
  background-color: #ff6600;
  color: #ffffff;
  transform: none;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  min-height: 80vh;
  height: 80vh;
  overflow: hidden;
}

.orange-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 111, 0, 0.95), transparent);
  pointer-events: none;
  z-index: 10;
}

.orange-block .t-container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 20;
  max-width: var(--container-max-width);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.orange-block .t-col {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.orange-block .t050__uptitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
  font-weight: 600;
  color: #ffffff;
  text-align: center !important;
  font-family: var(--font-heading);
  width: 100%;
  white-space: normal;
}

.orange-block .t050__uptitle p {
  margin: 0;
  padding: 0;
  white-space: normal;
}

.orange-block .t050__title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center !important;
  font-family: var(--font-heading);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  white-space: normal;
}

.orange-block .t050__title h1 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
  white-space: normal;
}

.orange-block .t050__descr {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  text-align: center !important;
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-body);
  white-space: normal;
}

.orange-block .t050__descr p {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
  white-space: normal;
}

.form-frame {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #ffffff;
  color: var(--text-dark);
  top: 0;
  margin-top: 0;
  transform: none;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  min-height: 100vh;
  height: 100vh;
}

.form-frame .form-container-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--header-height) 20px 20px 20px;
  overflow-y: auto;
}

.form-component {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
}

.form-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
  font-family: var(--font-heading);
  white-space: normal;
}

.form-subtitle {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.4;
  font-family: var(--font-body);
  white-space: normal;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
  white-space: normal;
}

.required-star {
  color: #ff3333;
  margin-left: 2px;
  font-size: 13px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 2px solid var(--border-light);
  border-radius: 10px;
  background-color: #ffffff;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input-error {
  border-color: #ff3333;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 150px;
}

.error-message {
  font-size: 12px;
  color: #ff3333;
  margin-top: 2px;
  padding-left: 4px;
  font-family: var(--font-body);
  white-space: normal;
}

.agreements-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 20px;
  padding: 0;
  background-color: transparent;
}

.agreement-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.agreement-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-gray-dark);
  font-family: var(--font-body);
  white-space: normal;
}

.agreement-checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent);
  border: 2px solid var(--border-light);
  border-radius: 3px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.agreement-checkbox:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.checkbox-error {
  border-color: #ff3333;
}

.agreement-text {
  flex: 1;
  white-space: normal;
}

.agreement-required {
  font-weight: 600;
  color: var(--accent);
}

.agreement-link {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.agreement-link:hover {
  color: var(--accent-light);
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 10px;
  width: 100%;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 12px 40px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  width: auto;
  min-width: 200px;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.form-submit-btn:hover:not(:disabled) {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #cccccc;
  box-shadow: none;
}

.nositle {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-gray-light);
  text-align: center;
  font-family: var(--font-body);
  white-space: normal;
}

.footer {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0 40px;
}

.footer-container {
  max-width: 67%; 
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
}

.footer-left {
  flex: 1.5;
  min-width: 320px;
  text-align: left;
}

.footer-title {
  font-size: 42px;
  font-weight: 900;
  margin: 0 0 12px 0;
  color: #ffffff;
  line-height: 1.1;
  font-family: var(--font-heading);
  white-space: normal;
}

.footer-description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 450px;
  color: #ffffff;
  opacity: 0.8;
  font-family: var(--font-body);
  white-space: normal;
}

.footer-aligner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.footer-contact-group {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.footer-phone,
.footer-email {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 5px;
  line-height: 1.3;
  font-family: var(--font-heading);
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.footer-phone:hover,
.footer-email:hover {
  opacity: 0.8;
}

.footer-contact-label {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.7;
  font-family: var(--font-body);
  white-space: nowrap;
}

.footer-chat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-chat-label {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
  font-family: var(--font-body);
  white-space: nowrap;
}

.footer-chat-link {
  display: inline-block;
  transition: opacity 0.2s ease;
  line-height: 0;
}

.footer-chat-link:hover {
  opacity: 0.8;
}

.footer-chat-img {
  width: 42px;
  height: 42px;
}

.footer-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-link {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  font-family: var(--font-body);
  white-space: nowrap;
}

.footer-link:hover {
  opacity: 0.7;
}

.footer-right {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.footer-credentials {
  width: 100%;
  display:flex;
  justify-content:center;
  flex-direction:column;
}

.footer-legal {
  margin-bottom: 10px;
}

.footer-legal p {
  margin: 5px 0;
  font-size: 15px;
  color: #ffffff;
  opacity: 0.8;
  line-height: 1.5;
  font-family: var(--font-body);
  white-space: nowrap;
}

.footer-address {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.8;
  font-family: var(--font-body);
  max-width: 200px;
  white-space: normal;
}

.animate-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.2, 0.9, 0.3, 1), 
              transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: opacity, transform;
}

.animate-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.nav-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  padding-left: 0.5rem;
  animation: fadeIn 0.3s ease;
  white-space: normal;
}

.form-input-error {
  border-color: #dc3545 !important;
  background-color: #fff8f8;
}

.form-input-error:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.checkbox-error {
  outline: 2px solid #dc3545;
  outline-offset: 2px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 0.25rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  animation: slideDown 0.3s ease;
  white-space: normal;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-footer-frame {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  background-color: #ffffff;
  color: var(--text-dark);
  top: 0;
  margin-top: 0;
  transform: none;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  min-height: 100vh;
  height: auto;
}

.form-footer-frame .frame-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: auto;
  position: relative;
  z-index: 20;
  padding: 0;
  padding-top: var(--header-height);
}

.form-footer-frame .frame-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex: 1 0 auto;
  width: 100%;
  padding: 40px 0;
}

.form-footer-frame .frame-info {
  display: none;
}

.form-footer-frame .form-component {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.form-footer-frame .footer {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0 40px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-footer-frame .footer .footer-container {
  max-width: 60%;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
}

/* ========== АДАПТИВ ДЛЯ НОУТБУКОВ (1440px - 1919px) ========== */
@media (min-width: 1440px) and (max-width: 1919px) {
  :root {
    --content-container-width: 85%;
    --header-height: 100px;
  }
  
  .frame-content-container {
    max-width: 1300px;
  }
  
  .site-nav {
    gap: 150px;
  }
  
  .custom-logo-img {
    width: 160px;
  }
  
  .nav-menu a {
    font-size: 15px;
  }
  
  .nav-button {
    padding: 0 18px;
    height: 38px;
    font-size: 13px;
  }
  
  .info-title {
    font-size: 62px !important;
  }
  
  .info-desc {
    font-size: 22px !important;
  }
  
  .hero-frame .hero-eyebrow {
    font-size: 62px !important;
  }
  
  .hero-frame .hero-title {
    font-size: 22px;
    max-width: 600px;
  }
  
  .hero-frame .hero-content-wrapper {
    gap: 100px;
  }
  
  .frame-nav {
    flex: 0 0 170px;
  }
  
  .nav-circle {
    width: 62px;
    height: 62px;
    font-size: 23px;
  }
  
  .nav-label {
    font-size: 15.5px;
  }
  
  .info-details {
    gap: 25px;
  }
  
  .info-col {
    padding: 18px 18px;
  }
  
  .info-col h4 {
    font-size: 24px !important;
  }
  
  .info-col li {
    font-size: 20px !important;
    margin-bottom: 6px;
    padding-left: 26px;
  }
  
  .info-col li::before {
    font-size: 24px;
  }
  
  .orange-block .t050__title {
    font-size: 52px;
  }
  
  .orange-block .t050__descr {
    font-size: 19px;
  }
  
  .footer-container {
    max-width: 60%;
  }
  
  .footer-title {
    font-size: 38px;
  }
  
  .footer-phone,
  .footer-email {
    font-size: 24px;
  }
  
  .footer-logo-img {
    height: 46px;
  }
  
  .services-grid {
    max-width: 1100px;
    gap: 28px;
  }
  
  .service-card {
    min-height: 230px;
  }
  
  .service-card-content {
    min-height: 230px;
  }
  
  .service-card-title {
    font-size: 19px;
  }
  
  .service-card-text {
    font-size: 13.5px;
  }
  
  .cases-grid {
    max-width: 1200px;
    gap: 28px;
  }
  
  .case-card {
    height: 68vh;
    min-height: 480px;
  }
  
  .case-title {
    font-size: 19px;
  }
  
  .case-description {
    font-size: 13.5px;
  }
  
  .case-metric-circle {
    width: 58px;
    height: 58px;
  }
  
  .case-metric-value {
    font-size: 17px;
  }
  
  .production-list {
    max-width: 1200px;
  }
  
  .production-item {
    height: 290px;
  }
  
  .production-title {
    font-size: 21px;
  }
  
  .production-text {
    font-size: 17px;
  }
  
  .production-features li {
    font-size: 17px;
  }
  
  .production-cutout {
    width: 42px;
    height: 95px;
  }
  
  .production-cutout .cutout-triangle-orange {
    border-width: 47.5px 0 47.5px 42px;
  }
  
  .production-cutout .cutout-triangle-white {
    border-width: 21px 0 21px 17px;
  }
  
  .contacts-info-grid {
    max-width: 1200px;
  }
  
  .contact-card-title {
    font-size: 15.5px;
  }
  
  .contact-card-text {
    font-size: 17px;
  }
  
  .form-title {
    font-size: 40px;
  }
  
  .form-subtitle {
    font-size: 15.5px;
  }
  
  .form-input,
  .form-textarea {
    padding: 14px 18px;
    font-size: 15px;
  }
  
  .form-submit-btn {
    padding: 11px 36px;
    font-size: 15px;
    min-width: 190px;
  }
}

/* ========== АДАПТИВ ДЛЯ БОЛЬШИХ НОУТБУКОВ (1920px и выше) ========== */
@media (min-width: 1920px) {
  :root {
    --content-container-width: 80%;
    --container-max-width: 1600px;
    --header-height: 110px;
  }
  
  .frame-content-container {
    max-width: 1600px;
  }
  
  .site-nav {
    gap: 130px;
  }
  
  .custom-logo-img {
    width: 170px;
  }
  
  .nav-menu a {
    font-size: 17px;
    gap: 15px;
  }
  
  .nav-button {
    padding: 0 24px;
    height: 44px;
    font-size: 15px;
    border-width: 2.5px;
  }
  
  .info-title {
    font-size: 68px !important;
    margin-bottom: 25px;
  }
  
  .info-desc {
    font-size: 23px !important;
    margin-bottom: 15px;
  }
  
  .hero-frame .hero-eyebrow {
    font-size: 68px !important;
    margin-bottom: 45px;
  }
  
  .hero-frame .hero-title {
    font-size: 23px;
    max-width: 700px;
    margin-bottom: 35px;
  }
  
  .hero-frame .hero-link {
    font-size: 20px;
  }
  
  .hero-frame .hero-content-wrapper {
    gap: 220px;
  }
  
  .frame-nav {
    flex: 0 0 200px;
  }
  
  .nav-circle {
    width: 74px;
    height: 74px;
    font-size: 26px;
    border-width: 3.5px;
  }
  
  .nav-label {
    font-size: 17px;
  }
  
  .nav-step.is-active .nav-circle {
    border-width: 5px !important;
  }
  
  .info-details {
    gap: 35px;
    margin-top: 40px;
  }
  
  .info-col {
    padding: 22px 22px;
    border-width: 2.5px;
    border-radius: 20px;
  }
  
  .info-col h4 {
    font-size: 25px !important;
    margin-bottom: 14px;
  }
  
  .info-col li {
    font-size: 21px !important;
    padding-left: 28px;
    margin-bottom: 8px;
  }
  
  .info-col li::before {
    font-size: 25px;
    left: 5px;
  }
  
  .orange-block .t050__title {
    font-size: 64px;
    margin-bottom: 35px;
  }
  
  .orange-block .t050__descr {
    font-size: 22px;
  }
  
  .orange-block .t050__uptitle {
    font-size: 16px;
    margin-bottom: 28px;
  }
  
  .orange-block::after {
    height: 100px;
  }
  
  .footer {
    padding: 70px 0 50px;
  }
  
  .footer-container {
    max-width: 65%;
    gap: 50px;
  }
  
  .footer-left {
    min-width: 380px;
  }
  
  .footer-title {
    font-size: 48px;
    margin-bottom: 15px;
  }
  
  .footer-description {
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 500px;
  }
  
  .footer-phone,
  .footer-email {
    font-size: 28px;
    margin-bottom: 6px;
  }
  
  .footer-contact-label {
    font-size: 15px;
  }
  
  .footer-chat-label {
    font-size: 15px;
  }
  
  .footer-chat-img {
    width: 48px;
    height: 48px;
  }
  
  .footer-link {
    font-size: 18px;
  }
  
  .footer-logo-img {
    height: 60px;
  }
  
  .footer-legal p {
    font-size: 17px;
  }
  
  .footer-address {
    font-size: 17px;
  }
  
  .services-header {
    max-width: 1200px;
    padding: 130px 20px 0;
  }
  
  .services-grid {
    max-width: 1200px;
    gap: 35px;
  }
  
  .service-card {
    min-height: 260px;
  }
  
  .service-card-content {
    min-height: 260px;
  }
  
  .service-card-info {
    padding: 25px 25px 25px 85px;
  }
  
  .service-card-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .service-card-text {
    font-size: 15px;
  }
  
  .service-card-cutout {
    width: 52px;
    height: 115px;
  }
  
  .cutout-triangle-orange {
    border-width: 57.5px 0 57.5px 52px;
  }
  
  .cutout-triangle-white {
    border-width: 25px 0 25px 21px;
  }
  
  .services-cta {
    padding: 70px 20px 70px 20px;
  }
  
  .services-cta-button .wp-block-button__link {
    padding: 12px 45px;
    font-size: 18px;
  }
  
  .cases-header {
    max-width: 1300px;
    padding: 130px 20px 0;
  }
  
  .cases-grid {
    max-width: 1300px;
    gap: 35px;
  }
  
  .case-card {
    height: 65vh;
    min-height: 550px;
    max-height: 650px;
  }
  
  .case-image {
    height: 48%;
  }
  
  .case-info {
    padding: 25px 25px 25px;
  }
  
  .case-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .case-description {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .case-features li {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .case-metric-circle {
    width: 65px;
    height: 65px;
  }
  
  .case-metric-value {
    font-size: 20px;
  }
  
  .case-metric-label {
    font-size: 9px;
  }
  
  .cases-cta {
    padding: 70px 20px 70px 20px;
  }
  
  .cases-cta-button .wp-block-button__link {
    padding: 12px 45px;
    font-size: 18px;
  }
  
  .production-header {
    max-width: 1300px;
    padding: 130px 20px 0;
  }
  
  .production-list {
    max-width: 1300px;
    gap: 35px;
  }
  
  .production-item {
    height: 330px;
  }
  
  .production-info {
    padding: 25px 25px 25px 85px;
  }
  
  .production-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .production-text {
    font-size: 19px;
  }
  
  .production-features li {
    font-size: 19px;
    padding-left: 28px;
  }
  
  .production-features li::before {
    font-size: 52px;
  }
  
  .production-cutout {
    width: 52px;
    height: 115px;
  }
  
  .production-cutout .cutout-triangle-orange {
    border-width: 57.5px 0 57.5px 52px;
  }
  
  .production-cutout .cutout-triangle-white {
    border-width: 25px 0 25px 21px;
  }
  
  .production-cta {
    padding: 70px 20px 70px 20px;
  }
  
  .production-cta-button .wp-block-button__link {
    padding: 12px 45px;
    font-size: 18px;
  }
  
  .contacts-header {
    max-width: 1300px;
    padding: 130px 20px 50px 20px;
  }
  
  .contacts-info-grid {
    max-width: 1300px;
    gap: 40px;
    margin-bottom: 70px;
  }
  
  .contact-card-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .contact-card-text {
    font-size: 20px;
  }
  
  .contacts-map-wrapper {
    height: 45vh;
    min-height: 400px;
  }
  
  .form-title {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .form-subtitle {
    font-size: 18px;
  }
  
  .form-input,
  .form-textarea {
    padding: 16px 22px;
    font-size: 17px;
    border-width: 2.5px;
    border-radius: 12px;
  }
  
  .form-label {
    font-size: 14px;
  }
  
  .form-submit-btn {
    padding: 14px 45px;
    font-size: 17px;
    min-width: 220px;
  }
  
  .agreement-label {
    font-size: 14px;
  }
  
  .burger-menu {
    display: none;
  }
}

@media (max-width: 1200px) {
  .footer-container,
  .form-footer-frame .footer .footer-container {
    max-width: 81%;
  }
  
  .site-nav {
    gap: 80px;
  }
  
  .custom-logo-img {
    width: 130px;
  }
  
  .nav-menu a {
    font-size: 14px;
  }
  
  .nav-button {
    padding: 0 16px;
    height: 36px;
    font-size: 12px;
  }
  
  .info-title {
    font-size: 52px !important;
  }
  
  .info-desc {
    font-size: 20px !important;
  }
  
  .hero-frame .hero-eyebrow {
    font-size: 52px !important;
  }
  
  .hero-frame .hero-title {
    font-size: 20px;
  }
  
  .hero-frame .hero-content-wrapper {
    gap: 150px;
  }
  
  .frame-nav {
    flex: 0 0 160px;
  }
  
  .nav-circle {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }
  
  .nav-label {
    font-size: 15px;
  }
  
  .orange-block .t050__title {
    font-size: 48px;
  }
  
  .info-col h4 {
    font-size: 22px !important;
  }
  
  .info-col li {
    font-size: 19px !important;
    padding-left: 24px;
  }
  
  .info-col li::before {
    font-size: 22px;
  }
}

@media (max-width: 1000px) {
  .footer-container,
  .form-footer-frame .footer .footer-container {
    max-width: 80%;
  }
  
  .site-nav {
    gap: 60px;
  }
  
  .custom-logo-img {
    width: 120px;
  }
  
  .nav-menu a {
    font-size: 13px;
  }
  
  .nav-button {
    padding: 0 14px;
    height: 34px;
    font-size: 11px;
  }
  
  .info-title {
    font-size: 46px !important;
  }
  
  .info-details {
    gap: 40px;
  }
  
  .info-col {
    padding: 18px 18px;
  }
  
  .info-col li {
    font-size: 18px !important;
    padding-left: 22px;
  }
  
  .info-col li::before {
    font-size: 20px;
  }
  
  .info-col h4 {
    font-size: 21px !important;
  }
  
  .frame-nav {
    flex: 0 0 150px;
  }
  
  .nav-circle {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
  
  .nav-label {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .burger-menu {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
  }
  
  .nav-menu,
  .site-nav .nav-button {
    display: none !important;
  }
  
  .site-nav {
    justify-content: space-between;
    padding: 0 20px;
    gap: 0;
  }
  
  .custom-logo-img {
    width: 120px;
  }
  
  .burger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1002;
  }
  
  .burger-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }
  
  .burger-icon span:nth-child(1) {
    top: 0px;
  }
  
  .burger-icon span:nth-child(2) {
    top: 9px;
  }
  
  .burger-icon span:nth-child(3) {
    top: 18px;
  }
  
  .burger-menu.active .burger-icon span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
  }
  
  .burger-menu.active .burger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  
  .burger-menu.active .burger-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
  }
  
  .burger-dropdown {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 100px 25px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .burger-menu.active .burger-dropdown {
    right: 0;
  }
  
  .burger-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .burger-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s ease;
    font-family: var(--font-body);
    text-align: left;
    white-space: normal;
  }
  
  .burger-link:hover {
    color: var(--accent);
  }
  
  .burger-button {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--accent);
    transition: all 0.2s ease;
    text-align: center;
    margin-top: 25px;
    font-family: var(--font-heading);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1002;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }
  
  .burger-button:hover {
    background: var(--accent);
    color: #000000;
  }
  
  .burger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .burger-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .footer-container,
  .form-footer-frame .footer .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 90%;
    gap: 40px;
  }
  
  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  
  .footer-title,
  .footer-description,
  .footer-contact-group,
  .footer-chat,
  .footer-links,
  .footer-legal,
  .footer-address {
    text-align: center;
    align-items: center;
  }
  
  .footer-aligner {
    justify-content: center;
  }
  
  .footer-contact-group {
    align-items: center;
  }
  
  .footer-chat {
    justify-content: center;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .footer-legal p {
    white-space: normal;
    text-align: center;
  }
  
  .info-title {
    font-size: 40px !important;
  }
  
  .info-desc {
    font-size: 18px !important;
  }
  
  .info-col h4 {
    font-size: 20px !important;
  }
  
  .info-col li {
    font-size: 17px !important;
    padding-left: 20px;
  }
  
  .info-col li::before {
    font-size: 20px;
  }
  
  .hero-frame .hero-eyebrow {
    font-size: 40px !important;
  }
  
  .hero-frame .hero-title {
    font-size: 18px;
  }
  
  .hero-frame .hero-link {
    font-size: 16px;
  }
  
  .hero-frame .hero-content-wrapper {
    gap: 100px;
  }
  
  .frame-nav {
    flex: 0 0 140px;
  }
  
  .nav-circle {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  
  .nav-label {
    font-size: 13px;
  }
  
  .orange-block .t050__title {
    font-size: 42px;
  }
  
  .orange-block .t050__descr {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 0 !important;
  }
  
  .hero-frame .frame-nav,
  .frame .frame-nav,
  .section .frame-nav,
  .section-fluid .frame-nav,
  [class*="frame"] .frame-nav,
  .nav-container,
  .frame-nav {
    display: none !important;
  }
  
  .next-move-container,
  .next-move-button,
  .hero-frame .hero-link,
  .burger-button,
  .burger-link,
  .footer a,
  .nav-button,
  .site-nav a {
    position: relative;
    z-index: 1001;
    cursor: pointer;
    pointer-events: auto !important;
  }
  
  .hero-content a,
  .frame-info a,
  .next-move-container a,
  .hero-link,
  .next-move-button {
    pointer-events: auto !important;
  }
  
  .hero-frame .frame-container,
  .frame .frame-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .hero-frame .hero-content-wrapper,
  .frame .frame-content-wrapper {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
  
  .hero-frame .hero-content,
  .frame .frame-info {
    width: 100%;
    padding: 15px 0;
    text-align: center;
  }
  
  .hero-frame .hero-eyebrow,
  .hero-frame .hero-title,
  .hero-frame .hero-link,
  .info-title,
  .info-desc {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .info-details {
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 30px;
  }
  
  .info-col {
    width: 100% !important;
    margin-bottom: 10px !important;
    padding: 16px 14px !important;
  }
  
  .info-col h4 {
    font-size: 19px !important;
    margin-bottom: 10px;
    text-align: left;
  }
  
  .info-col li {
    font-size: 16px !important;
    padding-left: 20px;
    margin-bottom: 6px;
    text-align: left;
  }
  
  .info-col li::before {
    font-size: 18px;
    left: 2px;
  }
  
  .info-title {
    font-size: 32px !important;
    margin-bottom: 10px;
  }
  
  .info-desc {
    font-size: 16px !important;
    margin-bottom: 20px;
  }
  
  .hero-frame .hero-eyebrow {
    font-size: 32px !important;
    margin-bottom: 10px;
  }
  
  .hero-frame .hero-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .hero-frame .hero-link {
    font-size: 14px;
    justify-content: center;
  }
  
  .orange-block .t050__title {
    font-size: 28px !important;
  }
  
  .orange-block .t050__descr {
    font-size: 15px;
  }
  
  .form-title {
    font-size: 28px;
  }
  
  .form-subtitle {
    font-size: 14px;
  }
  
  .form-submit-btn {
    padding: 10px 30px;
    font-size: 14px;
    min-width: 160px;
  }
  
  .frame-content-container {
    pointer-events: none;
  }
  
  .next-move-container,
  .next-move-button {
    pointer-events: auto !important;
    position: relative;
    z-index: 1010;
  }
  
  .hero-frame .next-move-container,
  .frame .next-move-container {
    pointer-events: auto !important;
    margin-top: 10px !important;
    padding-bottom: 15px !important;
  }
  
  .form-row {
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .form-group {
    width: 100% !important;
  }
  
  .contacts-info-grid {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .contact-card {
    width: 100% !important;
  }
  
  .cases-grid {
    grid-template-columns: 1fr !important;
  }
  
  .services-grid {
    grid-template-columns: 1fr !important;
  }
  
  .production-content {
    flex-direction: column !important;
  }
  
  .production-info,
  .production-media {
    width: 100% !important;
  }
  
  .orange-block {
    min-height: 85vh;
    height: 85vh;
  }
}

@media (max-width: 480px) {
  .custom-logo-img {
    width: 80px;
  }
  
  .info-title {
    font-size: 28px !important;
  }
  
  .info-desc {
    font-size: 15px !important;
  }
  
  .info-col {
    padding: 14px 12px !important;
  }
  
  .info-col h4 {
    font-size: 18px !important;
    margin-bottom: 8px;
  }
  
  .info-col li {
    font-size: 15px !important;
    padding-left: 18px;
    margin-bottom: 5px;
  }
  
  .info-col li::before {
    font-size: 16px;
  }
  
  .hero-frame .hero-eyebrow {
    font-size: 28px !important;
  }
  
  .hero-frame .hero-title {
    font-size: 15px;
  }
  
  .hero-frame .hero-link {
    font-size: 13px;
  }
  
  .footer-title {
    font-size: 32px;
  }
  
  .footer-phone,
  .footer-email {
    font-size: 20px;
  }
  
  .footer-chat-img {
    width: 36px;
    height: 36px;
  }
  
  .form-title {
    font-size: 24px;
  }
  
  .next-move-button {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .next-move-container,
  .hero-frame .next-move-container,
  .frame .next-move-container {
    padding-bottom: 12px !important;
  }
  
  .orange-block {
    min-height: 80vh;
    height: 80vh;
  }
}
/* Стили для сетки услуг */

.services-header {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 20px 0;
    text-align: left;
}

.wp-block-heading:is(h1) {
    font-family: var(--font-heading, 'Montserrat', 'Arial', 'Helvetica', sans-serif);
    color: #000000;
    font-weight: 900;
    text-align: left;
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 15px 0;
    white-space: normal;
}

.services-description {
    max-width: 800px;
    color: #000000;
    font-family: var(--font-body, 'Roboto', 'Arial', 'Helvetica', sans-serif);
    text-align: left;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.5;
    margin: 0 0 40px 0;
    white-space: normal;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #ff6b35;
    border-radius: 20px;
    transition: all 0.3s ease;
    min-height: 240px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: visible;
    display: flex;
    align-items: center;
}

.service-card-content {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
}

.service-card-cutout {
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 100px;
    z-index: 20;
    pointer-events: none;
}

.cutout-triangle-orange {
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 50px 0 50px 45px;
    border-color: transparent transparent transparent #ff6b35;
    z-index: 1;
}

.cutout-triangle-white {
    position: absolute;
    width: 0;
    height: 0;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 22px 0 22px 18px;
    border-color: transparent transparent transparent #ffffff;
    z-index: 2;
}

.service-card-info {
    padding: 20px 20px 20px 75px;
    position: relative;
    z-index: 5;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
    font-family: var(--font-heading, 'Montserrat', 'Arial', 'Helvetica', sans-serif);
    line-height: 1.3;
    white-space: normal;
}

.service-card-text {
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    font-family: var(--font-body, 'Roboto', 'Arial', 'Helvetica', sans-serif);
    margin: 0;
    white-space: normal;
}

.services-cta {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 60px 20px;
    text-align: center;
}

.services-cta .wp-block-buttons {
    justify-content: center !important;
}

.services-cta-button .wp-block-button__link {
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-heading, 'Montserrat', 'Arial', 'Helvetica', sans-serif);
    background-color: #ff6b35 !important;
    padding: 10px 40px;
    font-size: 16px;
    color: #ffffff;
    text-decoration:none;
    white-space: nowrap;
}

.services-cta-button .wp-block-button__link:hover {
    background-color: #ff8c5a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Стили для страницы кейсов */

.cases-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 20px 0;
    text-align: left;
}

.cases-header h1 {
    font-family: var(--font-heading, 'Montserrat', 'Arial', 'Helvetica', sans-serif);
    color: #000000;
    font-weight: 900;
    font-size: clamp(32px, 5vw, 48px);
    margin: 0 0 15px 0;
    white-space: normal;
}

.cases-description {
    max-width: 800px;
    color: #000000;
    font-family: var(--font-body, 'Roboto', 'Arial', 'Helvetica', sans-serif);
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.5;
    margin: 0 0 40px 0;
    white-space: normal;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #ff6b35;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 70vh;
    min-height: 500px;
    max-height: 600px;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.case-image {
    width: 100%;
    height: 45%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.case-card:hover .case-img {
    transform: scale(1.05);
}

.case-info {
    padding: 20px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 55%;
}

.case-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
}

.case-description {
    font-size: 14px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 10px;
    text-align: left;
    white-space: normal;
}

.case-features {
    margin: 0 0 15px 0;
    padding-left: 18px;
    list-style-type: disc;
}

.case-features li {
    font-size: 13px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 4px;
    white-space: normal;
}

.case-features li::marker {
    color: #ff6b35;
    font-size: 13px;
}

.case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 5px;
}

.case-metric {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-metric-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff6b35;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.case-metric-value {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-heading, 'Montserrat', 'Arial', 'Helvetica', sans-serif);
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
}

.case-metric-label {
    font-size: 8px;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-body, 'Roboto', 'Arial', 'Helvetica', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 2px 0 0 0;
    white-space: nowrap;
}

.cases-cta {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 60px 20px;
    text-align: center;
}

.cases-cta .wp-block-buttons {
    justify-content: center !important;
}

.cases-cta-button .wp-block-button__link {
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-heading, 'Montserrat', 'Arial', 'Helvetica', sans-serif);
    background-color: #ff6b35 !important;
    padding: 10px 40px;
    font-size: 16px;
    color: #ffffff;
    text-decoration:none;
    white-space: nowrap;
}

.cases-cta-button .wp-block-button__link:hover {
    background-color: #ff8c5a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Стили для страницы производства */

.production-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 20px 0;
    text-align: left;
}

.production-header h1 {
    font-weight: 900;
    color: #000000;
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 15px 0;
    white-space: normal;
}

.production-description {
    max-width: 800px;
    color: #000000;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.5;
    margin: 0 0 40px 0;
    white-space: normal;
}

.production-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.production-item {
    width: 100%;
    height: 300px;
    background: #ffffff;
    border: 1px solid #ff6b35;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: visible;
    position: relative;
}

.production-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.production-content {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    align-items: center;
}

.production-cutout {
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 100px;
    z-index: 20;
    pointer-events: none;
}

.production-cutout .cutout-triangle-orange {
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 50px 0 50px 45px;
    border-color: transparent transparent transparent #ff6b35;
    z-index: 1;
}

.production-cutout .cutout-triangle-white {
    position: absolute;
    width: 0;
    height: 0;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 22px 0 22px 18px;
    border-color: transparent transparent transparent #ffffff;
    z-index: 2;
}

.production-info {
    position: relative;
    width: 30%;
    height: 100%;
    padding: 20px 20px 20px 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    z-index: 5;
}

.production-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
    line-height: 1.3;
    width: 100%;
    white-space: normal;
}

.production-text {
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
}

.production-features {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px 15px;
}

.production-features li {
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    position: relative;
    padding-left: 24px;
    white-space: nowrap;
}

.production-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 45px;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
}

.production-media {
    width: 70%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.production-media-grid {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 2px;
    align-items: center;
}

.production-image {
    flex: 1;
    height: 70%;
    overflow: hidden;
    position: relative;
    margin:1rem;
}

.production-image img {
    width: 90% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    max-width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.production-item:hover .production-image img {
    transform: scale(1.05);
}

.production-item:hover .production-image:last-child img {
    transition-delay: 0.05s;
}

.production-cta {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 60px 20px;
    text-align: center;
}

.production-cta .wp-block-buttons {
    justify-content: center !important;
}

.production-cta-button .wp-block-button__link {
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    background-color: #ff6b35 !important;
    padding: 10px 40px;
    font-size: 16px;
    color: #ffffff;
    text-decoration:none;
    font-family: var(--font-heading, 'Montserrat', 'Arial', 'Helvetica', sans-serif);
    white-space: nowrap;
}

.production-cta-button .wp-block-button__link:hover {
    background-color: #ff8c5a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Стили для страницы контактов */

.contacts-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 20px 40px 20px;
    text-align: left;
}

.contacts-header h1 {
    font-family: var(--font-heading, 'Montserrat', 'Arial', 'Helvetica', sans-serif);
    color: #000000;
    font-weight: 900;
    font-size: clamp(32px, 5vw, 48px);
    margin: 0;
    white-space: normal;
}

.contacts-info-grid {
    display: flex;
    justify-content:space-between;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
    text-align: left;
}

.contact-card {
    background: transparent;
    padding: 0;
    text-align: left;
}

.contact-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
    font-family: var(--font-heading, 'Montserrat', 'Arial', 'Helvetica', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: normal;
}

.contact-card-text {
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    font-family: var(--font-body, 'Roboto', 'Arial', 'Helvetica', sans-serif);
    margin: 0;
    white-space: normal;
}

.contact-link {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff6b35;
}

.contacts-map-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #f5f5f5;
}

.contacts-map-wrapper {
    width: 100%;
    height: 40vh;
    min-height: 350px;
    max-height: 500px;
    overflow: hidden;
}

.contacts-map {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.custom-map-marker {
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 40px;
    height: 56px;
    transform: scaleY(1.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-map-marker:hover {
    transform: scale(1.1);
}

.marker-diamond-outer {
    width: 40px;
    height: 40px;
    background: #ff6b35;
    transform: rotate(45deg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-diamond-inner {
    width: 20px;
    height: 20px;
    background: white;
}

.custom-map-marker::after {
    display: none;
}

        .error-message {
            color: #dc3545;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            padding-left: 0.5rem;
            animation: fadeIn 0.3s ease;
        }
        
        .form-input-error {
            border-color: #dc3545 !important;
            background-color: #fff8f8;
        }
        
        .form-input-error:focus {
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
        }
        
        .checkbox-error {
            outline: 2px solid #dc3545;
            outline-offset: 2px;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-5px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }
        
        .modal-window {
            background-color: white;
            border-radius: 16px;
            padding: 40px;
            max-width: 400px;
            width: 90%;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .modal-icon {
            font-size: 64px;
            line-height: 1;
            margin-bottom: 16px;
        }
        
        .modal-title {
            font-size: 28px;
            font-weight: 800;
            color: #000;
            margin-bottom: 12px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .modal-text {
            font-size: 16px;
            color: #666;
            margin-bottom: 24px;
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
        }
        
        .modal-button {
            background-color: #000;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 12px 32px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s ease;
            font-family: 'Montserrat', sans-serif;
            min-width: 120px;
        }
        
        .modal-button:hover {
            background-color: #333;
        }
        
        [x-cloak] {
            display: none !important;
        }
/* ========== АДАПТИВ ДЛЯ ЭКРАНОВ 2560px (2K) ========== */
@media (min-width: 1921px) and (max-width: 2560px) {
  :root {
    --content-container-width: 75%;
    --container-max-width: 2000px;
    --header-height: 120px;
  }
  
  .frame-content-container {
    max-width: 2000px;
  }
  
  .site-nav {
    gap: 180px;
  }
  
  .custom-logo-img {
    width: 200px;
  }
  
  .nav-menu a {
    font-size: 18px;
    gap: 20px;
  }
  
  .nav-button {
    padding: 0 28px;
    height: 50px;
    font-size: 16px;
    border-width: 2.5px;
  }
  
  .info-title {
    font-size: 85px !important;
    margin-bottom: 30px;
  }
  
  .info-desc {
    font-size: 28px !important;
    margin-bottom: 18px;
  }
  
  .hero-frame .hero-eyebrow {
    font-size: 85px !important;
    margin-bottom: 50px;
  }
  
  .hero-frame .hero-title {
    font-size: 28px;
    max-width: 800px;
    margin-bottom: 40px;
  }
  
  .hero-frame .hero-link {
    font-size: 24px;
  }
  
  .hero-frame .hero-content-wrapper {
    gap: 350px;
  }
  
  .frame-nav {
    flex: 0 0 220px;
  }
  
  .nav-circle {
    width: 85px;
    height: 85px;
    font-size: 28px;
    border-width: 4px;
  }
  
  .nav-label {
    font-size: 18px;
  }
  
  .nav-step.is-active .nav-circle {
    border-width: 5px !important;
  }
  
  .info-details {
    gap: 40px;
    margin-top: 50px;
  }
  
  .info-col {
    padding: 28px 28px;
    border-width: 3px;
    border-radius: 24px;
  }
  
  .info-col h4 {
    font-size: 30px !important;
    margin-bottom: 16px;
  }
  
  .info-col li {
    font-size: 26px !important;
    padding-left: 32px;
    margin-bottom: 10px;
  }
  
  .info-col li::before {
    font-size: 30px;
    left: 6px;
  }
  
  .orange-block .t050__title {
    font-size: 72px;
    margin-bottom: 40px;
  }
  
  .orange-block .t050__descr {
    font-size: 24px;
  }
  
  .orange-block .t050__uptitle {
    font-size: 18px;
    margin-bottom: 32px;
  }
  
  .orange-block::after {
    height: 120px;
  }
  
  .footer {
    padding: 80px 0 60px;
  }
  
  .footer-container {
    max-width: 60%;
    gap: 60px;
  }
  
  .footer-left {
    min-width: 450px;
  }
  
  .footer-title {
    font-size: 56px;
    margin-bottom: 18px;
  }
  
  .footer-description {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 550px;
  }
  
  .footer-phone,
  .footer-email {
    font-size: 32px;
    margin-bottom: 8px;
  }
  
  .footer-contact-label {
    font-size: 16px;
  }
  
  .footer-chat-label {
    font-size: 16px;
  }
  
  .footer-chat-img {
    width: 52px;
    height: 52px;
  }
  
  .footer-link {
    font-size: 18px;
  }
  
  .footer-logo-img {
    height: 70px;
  }
  
  .footer-legal p {
    font-size: 18px;
  }
  
  .footer-address {
    font-size: 18px;
    max-width: 250px;
  }
  
  .services-header {
    max-width: 1400px;
    padding: 140px 20px 0;
  }
  
  .services-grid {
    max-width: 1400px;
    gap: 40px;
  }
  
  .service-card {
    min-height: 300px;
  }
  
  .service-card-content {
    min-height: 300px;
  }
  
  .service-card-info {
    padding: 30px 30px 30px 95px;
  }
  
  .service-card-title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  
  .service-card-text {
    font-size: 18px;
  }
  
  .service-card-cutout {
    width: 60px;
    height: 130px;
  }
  
  .cutout-triangle-orange {
    border-width: 65px 0 65px 60px;
  }
  
  .cutout-triangle-white {
    border-width: 28px 0 28px 24px;
  }
  
  .services-cta {
    padding: 80px 20px 80px 20px;
  }
  
  .services-cta-button .wp-block-button__link {
    padding: 14px 50px;
    font-size: 20px;
  }
  
  .cases-header {
    max-width: 1600px;
    padding: 140px 20px 0;
  }
  
  .cases-grid {
    max-width: 1600px;
    gap: 40px;
  }
  
  .case-card {
    height: 60vh;
    min-height: 650px;
    max-height: 750px;
  }
  
  .case-image {
    height: 48%;
  }
  
  .case-info {
    padding: 30px 30px 30px;
  }
  
  .case-title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  
  .case-description {
    font-size: 18px;
    margin-bottom: 14px;
  }
  
  .case-features li {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .case-metric-circle {
    width: 75px;
    height: 75px;
  }
  
  .case-metric-value {
    font-size: 22px;
  }
  
  .case-metric-label {
    font-size: 10px;
  }
  
  .cases-cta {
    padding: 80px 20px 80px 20px;
  }
  
  .cases-cta-button .wp-block-button__link {
    padding: 14px 50px;
    font-size: 20px;
  }
  
  .production-header {
    max-width: 1600px;
    padding: 140px 20px 0;
  }
  
  .production-list {
    max-width: 1600px;
    gap: 40px;
  }
  
  .production-item {
    height: 380px;
  }
  
  .production-info {
    padding: 30px 30px 30px 95px;
  }
  
  .production-title {
    font-size: 26px;
    margin-bottom: 14px;
  }
  
  .production-text {
    font-size: 22px;
  }
  
  .production-features li {
    font-size: 22px;
    padding-left: 32px;
  }
  
  .production-features li::before {
    font-size: 58px;
  }
  
  .production-cutout {
    width: 60px;
    height: 130px;
  }
  
  .production-cutout .cutout-triangle-orange {
    border-width: 65px 0 65px 60px;
  }
  
  .production-cutout .cutout-triangle-white {
    border-width: 28px 0 28px 24px;
  }
  
  .production-cta {
    padding: 80px 20px 80px 20px;
  }
  
  .production-cta-button .wp-block-button__link {
    padding: 14px 50px;
    font-size: 20px;
  }
  
  .contacts-header {
    max-width: 1600px;
    padding: 140px 20px 60px 20px;
  }
  
  .contacts-info-grid {
    max-width: 1600px;
    gap: 50px;
    margin-bottom: 80px;
  }
  
  .contact-card-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
  
  .contact-card-text {
    font-size: 22px;
  }
  
  .contacts-map-wrapper {
    height: 45vh;
    min-height: 500px;
  }
  
  .form-title {
    font-size: 48px;
    margin-bottom: 12px;
  }
  
  .form-subtitle {
    font-size: 20px;
  }
  
  .form-input,
  .form-textarea {
    padding: 18px 24px;
    font-size: 18px;
    border-width: 2.5px;
    border-radius: 14px;
  }
  
  .form-label {
    font-size: 16px;
  }
  
  .form-submit-btn {
    padding: 16px 52px;
    font-size: 18px;
    min-width: 250px;
  }
  
  .agreement-label {
    font-size: 16px;
  }
  
  .modal-window {
    max-width: 500px;
    padding: 50px;
  }
  
  .modal-icon {
    font-size: 80px;
  }
  
  .modal-title {
    font-size: 36px;
  }
  
  .modal-text {
    font-size: 18px;
  }
  
  .modal-button {
    padding: 14px 40px;
    font-size: 18px;
  }
  
  .burger-menu {
    display: none;
  }
}

/* ========== АДАПТИВ ДЛЯ ЭКРАНОВ 3440px (Ultrawide) ========== */
@media (min-width: 2561px) and (max-width: 3440px) {
  :root {
    --content-container-width: 70%;
    --container-max-width: 2800px;
    --header-height: 140px;
  }
  
  .frame-content-container {
    max-width: 2800px;
  }
  
  .site-nav {
    gap: 220px;
  }
  
  .custom-logo-img {
    width: 240px;
  }
  
  .nav-menu a {
    font-size: 20px;
    gap: 25px;
  }
  
  .nav-button {
    padding: 0 32px;
    height: 60px;
    font-size: 18px;
    border-width: 3px;
  }
  
  .info-title {
    font-size: 100px !important;
    margin-bottom: 35px;
  }
  
  .info-desc {
    font-size: 32px !important;
    margin-bottom: 20px;
  }
  
  .hero-frame .hero-eyebrow {
    font-size: 100px !important;
    margin-bottom: 60px;
  }
  
  .hero-frame .hero-title {
    font-size: 32px;
    max-width: 1000px;
    margin-bottom: 45px;
  }
  
  .hero-frame .hero-link {
    font-size: 28px;
  }
  
  .hero-frame .hero-content-wrapper {
    gap: 450px;
  }
  
  .frame-nav {
    flex: 0 0 260px;
  }
  
  .nav-circle {
    width: 100px;
    height: 100px;
    font-size: 32px;
    border-width: 4px;
  }
  
  .nav-label {
    font-size: 20px;
  }
  
  .nav-step.is-active .nav-circle {
    border-width: 6px !important;
  }
  
  .info-details {
    gap: 50px;
    margin-top: 60px;
  }
  
  .info-col {
    padding: 35px 35px;
    border-width: 3px;
    border-radius: 28px;
  }
  
  .info-col h4 {
    font-size: 35px !important;
    margin-bottom: 18px;
  }
  
  .info-col li {
    font-size: 30px !important;
    padding-left: 38px;
    margin-bottom: 12px;
  }
  
  .info-col li::before {
    font-size: 34px;
    left: 7px;
  }
  
  .orange-block .t050__title {
    font-size: 88px;
    margin-bottom: 45px;
  }
  
  .orange-block .t050__descr {
    font-size: 28px;
  }
  
  .orange-block .t050__uptitle {
    font-size: 20px;
    margin-bottom: 36px;
  }
  
  .orange-block::after {
    height: 140px;
  }
  
  .footer {
    padding: 100px 0 70px;
  }
  
  .footer-container {
    max-width: 55%;
    gap: 70px;
  }
  
  .footer-left {
    min-width: 550px;
  }
  
  .footer-title {
    font-size: 68px;
    margin-bottom: 22px;
  }
  
  .footer-description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 650px;
  }
  
  .footer-phone,
  .footer-email {
    font-size: 38px;
    margin-bottom: 10px;
  }
  
  .footer-contact-label {
    font-size: 18px;
  }
  
  .footer-chat-label {
    font-size: 18px;
  }
  
  .footer-chat-img {
    width: 60px;
    height: 60px;
  }
  
  .footer-link {
    font-size: 20px;
  }
  
  .footer-logo-img {
    height: 85px;
  }
  
  .footer-legal p {
    font-size: 20px;
  }
  
  .footer-address {
    font-size: 20px;
    max-width: 300px;
  }
  
  .services-header {
    max-width: 1800px;
    padding: 160px 20px 0;
  }
  
  .services-grid {
    max-width: 1800px;
    gap: 50px;
  }
  
  .service-card {
    min-height: 350px;
  }
  
  .service-card-content {
    min-height: 350px;
  }
  
  .service-card-info {
    padding: 35px 35px 35px 115px;
  }
  
  .service-card-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  
  .service-card-text {
    font-size: 20px;
  }
  
  .service-card-cutout {
    width: 75px;
    height: 155px;
  }
  
  .cutout-triangle-orange {
    border-width: 77.5px 0 77.5px 75px;
  }
  
  .cutout-triangle-white {
    border-width: 34px 0 34px 30px;
  }
  
  .services-cta {
    padding: 90px 20px 90px 20px;
  }
  
  .services-cta-button .wp-block-button__link {
    padding: 16px 60px;
    font-size: 22px;
  }
  
  .cases-header {
    max-width: 2000px;
    padding: 160px 20px 0;
  }
  
  .cases-grid {
    max-width: 2000px;
    gap: 50px;
  }
  
  .case-card {
    height: 55vh;
    min-height: 750px;
    max-height: 850px;
  }
  
  .case-image {
    height: 48%;
  }
  
  .case-info {
    padding: 35px 35px 35px;
  }
  
  .case-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  
  .case-description {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .case-features li {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .case-metric-circle {
    width: 90px;
    height: 90px;
  }
  
  .case-metric-value {
    font-size: 26px;
  }
  
  .case-metric-label {
    font-size: 12px;
  }
  
  .cases-cta {
    padding: 90px 20px 90px 20px;
  }
  
  .cases-cta-button .wp-block-button__link {
    padding: 16px 60px;
    font-size: 22px;
  }
  
  .production-header {
    max-width: 2000px;
    padding: 160px 20px 0;
  }
  
  .production-list {
    max-width: 2000px;
    gap: 50px;
  }
  
  .production-item {
    height: 450px;
  }
  
  .production-info {
    padding: 35px 35px 35px 115px;
  }
  
  .production-title {
    font-size: 30px;
    margin-bottom: 16px;
  }
  
  .production-text {
    font-size: 26px;
  }
  
  .production-features li {
    font-size: 26px;
    padding-left: 38px;
  }
  
  .production-features li::before {
    font-size: 68px;
  }
  
  .production-cutout {
    width: 75px;
    height: 155px;
  }
  
  .production-cutout .cutout-triangle-orange {
    border-width: 77.5px 0 77.5px 75px;
  }
  
  .production-cutout .cutout-triangle-white {
    border-width: 34px 0 34px 30px;
  }
  
  .production-cta {
    padding: 90px 20px 90px 20px;
  }
  
  .production-cta-button .wp-block-button__link {
    padding: 16px 60px;
    font-size: 22px;
  }
  
  .contacts-header {
    max-width: 2000px;
    padding: 160px 20px 70px 20px;
  }
  
  .contacts-info-grid {
    max-width: 2000px;
    gap: 60px;
    margin-bottom: 90px;
  }
  
  .contact-card-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .contact-card-text {
    font-size: 24px;
  }
  
  .contacts-map-wrapper {
    height: 50vh;
    min-height: 600px;
  }
  
  .form-title {
    font-size: 56px;
    margin-bottom: 15px;
  }
  
  .form-subtitle {
    font-size: 22px;
  }
  
  .form-input,
  .form-textarea {
    padding: 22px 28px;
    font-size: 20px;
    border-width: 3px;
    border-radius: 16px;
  }
  
  .form-label {
    font-size: 18px;
  }
  
  .form-submit-btn {
    padding: 18px 60px;
    font-size: 20px;
    min-width: 280px;
  }
  
  .agreement-label {
    font-size: 18px;
  }
  
  .modal-window {
    max-width: 600px;
    padding: 60px;
  }
  
  .modal-icon {
    font-size: 100px;
  }
  
  .modal-title {
    font-size: 42px;
  }
  
  .modal-text {
    font-size: 20px;
  }
  
  .modal-button {
    padding: 16px 48px;
    font-size: 20px;
  }
  
  .burger-menu {
    display: none;
  }
}

/* ========== АДАПТИВ ДЛЯ ЭКРАНОВ 3840px (4K) ========== */
@media (min-width: 3441px) {
  :root {
    --content-container-width: 65%;
    --container-max-width: 3500px;
    --header-height: 160px;
  }
  
  .frame-content-container {
    max-width: 3500px;
  }
  
  .site-nav {
    gap: 280px;
  }
  
  .custom-logo-img {
    width: 280px;
  }
  
  .nav-menu a {
    font-size: 24px;
    gap: 30px;
  }
  
  .nav-button {
    padding: 0 40px;
    height: 70px;
    font-size: 22px;
    border-width: 3.5px;
  }
  
  .info-title {
    font-size: 120px !important;
    margin-bottom: 45px;
  }
  
  .info-desc {
    font-size: 38px !important;
    margin-bottom: 25px;
  }
  
  .hero-frame .hero-eyebrow {
    font-size: 120px !important;
    margin-bottom: 75px;
  }
  
  .hero-frame .hero-title {
    font-size: 38px;
    max-width: 1200px;
    margin-bottom: 55px;
  }
  
  .hero-frame .hero-link {
    font-size: 32px;
  }
  
  .hero-frame .hero-content-wrapper {
    gap: 600px;
  }
  
  .frame-nav {
    flex: 0 0 320px;
  }
  
  .nav-circle {
    width: 120px;
    height: 120px;
    font-size: 38px;
    border-width: 5px;
  }
  
  .nav-label {
    font-size: 24px;
  }
  
  .nav-step.is-active .nav-circle {
    border-width: 7px !important;
  }
  
  .info-details {
    gap: 60px;
    margin-top: 70px;
  }
  
  .info-col {
    padding: 45px 45px;
    border-width: 4px;
    border-radius: 32px;
  }
  
  .info-col h4 {
    font-size: 42px !important;
    margin-bottom: 22px;
  }
  
  .info-col li {
    font-size: 36px !important;
    padding-left: 48px;
    margin-bottom: 15px;
  }
  
  .info-col li::before {
    font-size: 40px;
    left: 8px;
  }
  
  .orange-block .t050__title {
    font-size: 110px;
    margin-bottom: 55px;
  }
  
  .orange-block .t050__descr {
    font-size: 32px;
  }
  
  .orange-block .t050__uptitle {
    font-size: 24px;
    margin-bottom: 45px;
  }
  
  .orange-block::after {
    height: 160px;
  }
  
  .footer {
    padding: 120px 0 80px;
  }
  
  .footer-container {
    max-width: 50%;
    gap: 90px;
  }
  
  .footer-left {
    min-width: 700px;
  }
  
  .footer-title {
    font-size: 85px;
    margin-bottom: 28px;
  }
  
  .footer-description {
    font-size: 24px;
    margin-bottom: 50px;
    max-width: 800px;
  }
  
  .footer-phone,
  .footer-email {
    font-size: 48px;
    margin-bottom: 12px;
  }
  
  .footer-contact-label {
    font-size: 22px;
  }
  
  .footer-chat-label {
    font-size: 22px;
  }
  
  .footer-chat-img {
    width: 75px;
    height: 75px;
  }
  
  .footer-link {
    font-size: 24px;
  }
  
  .footer-logo-img {
    height: 100px;
  }
  
  .footer-legal p {
    font-size: 24px;
  }
  
  .footer-address {
    font-size: 24px;
    max-width: 350px;
  }
  
  .services-header {
    max-width: 2200px;
    padding: 180px 20px 0;
  }
  
  .services-grid {
    max-width: 2200px;
    gap: 60px;
  }
  
  .service-card {
    min-height: 400px;
  }
  
  .service-card-content {
    min-height: 400px;
  }
  
  .service-card-info {
    padding: 45px 45px 45px 140px;
  }
  
  .service-card-title {
    font-size: 34px;
    margin-bottom: 20px;
  }
  
  .service-card-text {
    font-size: 24px;
  }
  
  .service-card-cutout {
    width: 90px;
    height: 180px;
  }
  
  .cutout-triangle-orange {
    border-width: 90px 0 90px 90px;
  }
  
  .cutout-triangle-white {
    border-width: 40px 0 40px 36px;
  }
  
  .services-cta {
    padding: 100px 20px 100px 20px;
  }
  
  .services-cta-button .wp-block-button__link {
    padding: 20px 75px;
    font-size: 26px;
  }
  
  .cases-header {
    max-width: 2400px;
    padding: 180px 20px 0;
  }
  
  .cases-grid {
    max-width: 2400px;
    gap: 60px;
  }
  
  .case-card {
    height: 50vh;
    min-height: 850px;
    max-height: 950px;
  }
  
  .case-image {
    height: 48%;
  }
  
  .case-info {
    padding: 45px 45px 45px;
  }
  
  .case-title {
    font-size: 34px;
    margin-bottom: 20px;
  }
  
  .case-description {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .case-features li {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .case-metric-circle {
    width: 110px;
    height: 110px;
  }
  
  .case-metric-value {
    font-size: 32px;
  }
  
  .case-metric-label {
    font-size: 14px;
  }
  
  .cases-cta {
    padding: 100px 20px 100px 20px;
  }
  
  .cases-cta-button .wp-block-button__link {
    padding: 20px 75px;
    font-size: 26px;
  }
  
  .production-header {
    max-width: 2400px;
    padding: 180px 20px 0;
  }
  
  .production-list {
    max-width: 2400px;
    gap: 60px;
  }
  
  .production-item {
    height: 550px;
  }
  
  .production-info {
    padding: 45px 45px 45px 140px;
  }
  
  .production-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .production-text {
    font-size: 32px;
  }
  
  .production-features li {
    font-size: 32px;
    padding-left: 48px;
  }
  
  .production-features li::before {
    font-size: 82px;
  }
  
  .production-cutout {
    width: 90px;
    height: 180px;
  }
  
  .production-cutout .cutout-triangle-orange {
    border-width: 90px 0 90px 90px;
  }
  
  .production-cutout .cutout-triangle-white {
    border-width: 40px 0 40px 36px;
  }
  
  .production-cta {
    padding: 100px 20px 100px 20px;
  }
  
  .production-cta-button .wp-block-button__link {
    padding: 20px 75px;
    font-size: 26px;
  }
  
  .contacts-header {
    max-width: 2400px;
    padding: 180px 20px 80px 20px;
  }
  
  .contacts-info-grid {
    max-width: 2400px;
    gap: 80px;
    margin-bottom: 100px;
  }
  
  .contact-card-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  
  .contact-card-text {
    font-size: 28px;
  }
  
  .contacts-map-wrapper {
    height: 50vh;
    min-height: 700px;
  }
  
  .form-title {
    font-size: 68px;
    margin-bottom: 20px;
  }
  
  .form-subtitle {
    font-size: 26px;
  }
  
  .form-input,
  .form-textarea {
    padding: 28px 32px;
    font-size: 24px;
    border-width: 4px;
    border-radius: 20px;
  }
  
  .form-label {
    font-size: 22px;
  }
  
  .form-submit-btn {
    padding: 22px 75px;
    font-size: 24px;
    min-width: 320px;
  }
  
  .agreement-label {
    font-size: 22px;
  }
  
  .modal-window {
    max-width: 700px;
    padding: 70px;
  }
  
  .modal-icon {
    font-size: 120px;
  }
  
  .modal-title {
    font-size: 52px;
  }
  
  .modal-text {
    font-size: 24px;
  }
  
  .modal-button {
    padding: 20px 60px;
    font-size: 24px;
  }
  
  .burger-menu {
    display: none;
  }
}
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}</style>
<!-- end Simple Custom CSS and JS -->
