.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0 28px;
  width: min(1400px, calc(100% - 24px));
  margin: 60px auto 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px 20px;
  align-items: center;
}

.footer-col--left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
}

.footer-col--right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  text-align: right;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-dev {
  text-align: right;
}

.footer-dev .dev-name {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.footer-dev .dev-phone {
  font-family: "PFDinCond", sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 16px;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-top: 2px;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-footer a:hover {
  opacity: 0.8;
}

.footer-center {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  justify-self: center;
  text-align: center;
}

.footer-tech-label,
.footer-tech-suffix {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.2;
}

.footer-copium-logo {
  height: clamp(22px, 3.2vw, 32px);
  width: auto;
  max-width: min(240px, 52vw);
  display: block;
  flex-shrink: 0;
  opacity: 0.95;
}

@media (min-width: 1921px) {
  .top-nav {
    width: min(1880px, calc(100% - 48px));
    margin-bottom: 24px;
  }
  .top-nav-inner {
    min-height: 84px;
    border-radius: 20px;
  }
  .brand-zone {
    padding: 0 28px 0 30px;
  }
  .brand-logo {
    height: 70px;
  }

  .top-nav-menu {
    gap: 56px;
    font-size: 22px;
    padding: 0 40px;
  }
  .top-nav-item i {
    font-size: 20px;
  }

  .phone-zone {
    padding: 0 28px 0 22px;
  }
  .top-nav-phone {
    font-size: 46px;
  }
}

@media (max-width: 1300px) {
  .top-nav-menu {
    gap: 32px;
    font-size: 17.5px;
  }
  .top-nav-phone {
    gap: 10px;
    font-size: 24px;
  }
  .top-nav-phone i {
    font-size: 0.92em;
  }
  .phone-zone {
    padding: 0 16px;
  }
}

@media (max-width: 1100px) {
  .top-nav-menu {
    gap: 20px;
    font-size: 16px;
    padding: 0 20px;
  }
  .top-nav-item i {
    font-size: 16px;
    gap: 8px;
  }
  .phone-zone {
    padding: 0 16px;
  }
  .brand-zone {
    padding: 0 16px;
  }
  .top-nav-phone span {
    display: none;
  }
  .top-nav-phone {
    gap: 0;
    font-size: 28px;
  }
  .top-nav-phone i {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 74px;
  }
  .top-nav {
    width: calc(100% - 12px);
    overflow: hidden;
  }
  .mobile-home-link-wrap {
    display: block;
    width: calc(100% - 12px);
    margin: 8px auto 0;
  }
  .mobile-home-link {
    display: inline-flex;
  }
  .top-nav-inner {
    min-height: 56px;
    overflow: hidden;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    position: relative;
  }
  .top-nav-menu {
    display: none !important;
  }

  .mobile-nav-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 90px 24px 32px;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
    z-index: 2000;
    overflow-y: auto;
    pointer-events: none;
    transform: translate3d(0, 8px, 0);
  }

  .mobile-nav-popup.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translate3d(0, 0, 0);
  }

  .mobile-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2002;
    transition: all 0.2s;
  }
  .mobile-close-btn:active {
    background: var(--accent);
    border-color: var(--accent);
  }
  .mobile-menu-header {
    display: none;
  }

  .mobile-nav-popup .nav-group {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .mobile-nav-popup.open .nav-group {
    opacity: 1;
    transform: none;
  }
  .mobile-nav-popup .nav-group:last-of-type {
    border-bottom: none;
  }

  .mobile-nav-popup .top-nav-item {
    width: 100%;
    height: auto;
    padding: 16px 0;
    justify-content: flex-start;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    gap: 12px;
    border-radius: 0;
    background: transparent !important;
    border: none;
    white-space: normal;
  }
  .mobile-nav-popup .top-nav-item i:first-child {
    display: inline-flex;
    width: 22px;
    text-align: center;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.45);
  }
  .mobile-nav-popup .top-nav-item.active,
  .mobile-nav-popup .top-nav-item:hover {
    color: #fff;
    background: transparent !important;
  }
  .mobile-nav-popup .top-nav-item.active i:first-child {
    color: var(--accent);
    opacity: 1;
  }
  .mobile-nav-popup .top-nav-item.active::after {
    display: none;
  }

  .mobile-nav-popup .top-nav-item .chev {
    font-size: 11px;
    opacity: 0.35;
    margin-left: auto;
    transition:
      transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
      color 0.3s,
      opacity 0.3s;
    padding: 8px;
    cursor: pointer;
  }
  .mobile-nav-popup .nav-group.open .chev {
    transform: rotate(180deg);
    color: var(--accent);
    opacity: 0.9;
  }
  .mobile-nav-popup .nav-group.open > .top-nav-item {
    color: #fff;
    background: transparent !important;
  }

  .mobile-nav-popup .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: max-height 0.4s ease;
    display: flex;
  }
  .mobile-nav-popup .dropdown-menu::-webkit-scrollbar {
    width: 4px;
  }
  .mobile-nav-popup .dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
  }

  .mobile-nav-popup .nav-group:hover .dropdown-menu {
    max-height: 0;
    transform: none;
    left: auto;
    pointer-events: none;
  }
  .mobile-nav-popup .nav-group.open .dropdown-menu {
    max-height: 320px;
    pointer-events: auto;
  }
  .mobile-nav-popup .dropdown-wide {
    min-width: 0;
    flex-direction: column;
  }
  .mobile-nav-popup .dropdown-wide .dropdown-item {
    width: 100%;
  }

  .mobile-nav-popup .dropdown-item {
    padding: 10px 0 10px 34px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    border-radius: 0;
    white-space: normal;
    opacity: 1;
    transform: none;
    transition: color 0.2s;
  }
  .mobile-nav-popup .nav-group.open .dropdown-item {
    opacity: 1;
    transform: none;
  }
  .mobile-nav-popup .dropdown-item i {
    display: inline-block;
    font-size: 14px;
    opacity: 0.4;
    width: 20px;
    text-align: center;
  }
  .mobile-nav-popup .dropdown-item:hover,
  .mobile-nav-popup .dropdown-item:active,
  .mobile-nav-popup .dropdown-item.active {
    background: transparent;
    color: #fff;
    transform: none;
    border: none;
    padding-left: 34px;
  }
  .mobile-nav-popup .dropdown-item:hover i,
  .mobile-nav-popup .dropdown-item.active i {
    opacity: 1;
    color: var(--accent);
  }

  .mobile-nav-popup .mobile-menu-footer {
    display: flex !important;
    flex-direction: column;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
  }

  .mobile-contacts-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
  }
  .contact-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .contact-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
  }
  .contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s;
  }
  .contact-row:active {
    opacity: 0.6;
  }
  .contact-row i {
    width: 42px;
    height: 42px;
    background: rgba(242, 140, 40, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
  }
  .contact-row div {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }
  .contact-value {
    font-family: "PFDinCond", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
  }
  .mobile-socials {
    display: flex;
    gap: 12px;
  }
  .mobile-socials .social-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 20px;
  }

  .menu-overlay {
    background: rgba(8, 10, 14, 0.96);
    backdrop-filter: none;
  }
  .phone-zone:hover .phone-dropdown {
    display: none;
  }
  .phone-zone {
    padding: 0 16px;
  }

  .top-nav-phone {
    font-size: 24px;
    gap: 0;
  }
  .top-nav-phone span {
    display: none;
  }
  .top-nav-phone i {
    font-size: 1em;
  }
  .brand-logo {
    height: 60px;
  }

  .site-footer {
    margin-top: 32px;
    padding: 20px 0 16px;
  }
  .footer-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0 16px;
    gap: 16px;
  }
  .footer-col--left {
    align-items: center;
    order: 2;
    justify-self: center;
  }
  .footer-center {
    order: 1;
  }
  .footer-col--right {
    align-items: center;
    order: 3;
    text-align: center;
    justify-self: center;
  }
  .footer-dev {
    text-align: center;
  }
}

@media (max-width: 449px) {
  .top-nav-phone span {
    display: none;
  }
  .top-nav-phone i {
    font-size: 24px;
  }
  .top-nav-phone {
    gap: 0;
  }
  .phone-zone {
    padding: 0 12px;
  }
  .brand-zone {
    padding: 0 12px;
  }
  .brand-logo {
    height: 60px;
  }
}

@media (max-width: 900px) {
  body::before,
  body::after {
    content: none;
  }

  body {
    background: #0b0e16;
  }

  .top-nav-inner {
    background: rgba(16, 18, 24, 0.68);
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
  }
  .top-nav-menu {
    backdrop-filter: blur(10px) saturate(125%);
    -webkit-backdrop-filter: blur(10px) saturate(125%);
  }
  .menu-overlay {
    background: rgba(8, 10, 14, 0.9);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
  .dropdown-menu,
  .phone-dropdown {
    background: rgba(14, 16, 22, 0.74);
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
  }
  .glass-card,
  .service-card,
  .cta-card,
  .team-card,
  .contact-card,
  .map-area,
  .calc-glass {
    background: rgba(20, 22, 28, 0.7) !important;
    backdrop-filter: blur(12px) saturate(125%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(125%) !important;
  }
  .mobile-nav-popup {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

@supports not (
  (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))
) {
  .top-nav-inner,
  .top-nav-menu,
  .dropdown-menu,
  .phone-dropdown,
  .menu-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .top-nav-inner {
    background: rgba(26, 30, 40, 0.92);
  }
  .top-nav-menu {
    background: rgba(20, 23, 30, 0.92);
  }
  .dropdown-menu,
  .phone-dropdown {
    background: rgba(14, 17, 24, 0.96);
  }
  .menu-overlay {
    background: rgba(8, 10, 14, 0.94);
  }
}

.hidden {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes counterPop {
  0% {
    transform: scale(0.6);
    opacity: 0.3;
  }
  60% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.section {
  padding: 60px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.section + .section {
  padding-top: 0;
}

.section-label {
  font-family: "PFDin", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.6;
}

.content-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.7;
}
.content-text p {
  margin-bottom: 16px;
}
.content-text h2 {
  font-family: "Benzin", sans-serif;
  font-size: 26px;
  color: #fff;
  margin: 40px 0 16px;
}
.content-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 12px;
}
.content-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-text ul,
.content-text ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.content-text li {
  margin-bottom: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "PFDin", sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px rgba(242, 140, 40, 0.35);
}
.btn-primary:hover {
  background: #3a7de8;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(242, 140, 40, 0.45);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  backdrop-filter: var(--glass-blur) var(--glass-saturate);
  -webkit-backdrop-filter: var(--glass-blur) var(--glass-saturate);
}
.glass-card:hover {
  border-color: rgba(242, 140, 40, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.glass-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(242, 140, 40, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
}
.glass-card .card-title {
  font-family: "PFDin", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.glass-card .card-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.glass-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: gap 0.2s;
}
.glass-card .card-link:hover {
  gap: 12px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}
.advantage-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.advantage-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(242, 140, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
}
.advantage-title {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}
.advantage-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cta-banner {
  background: linear-gradient(
    135deg,
    rgba(242, 140, 40, 0.15) 0%,
    rgba(242, 140, 40, 0.05) 100%
  );
  border: 1px solid rgba(242, 140, 40, 0.2);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
}
.cta-banner .section-title {
  margin-bottom: 16px;
}
.cta-banner .section-subtitle {
  margin-bottom: 32px;
}
.cta-phone {
  font-family: "PFDinCond", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.04em;
  transition: color 0.2s;
  margin-bottom: 24px;
}
.cta-phone:hover {
  color: var(--accent);
}

.page-header {
  padding: 40px 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(16, 21, 33, 0.34);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}
.page-header .page-title {
  font-family: "Benzin", sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
}
.page-header .breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.page-header .breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}
.page-header .breadcrumbs span {
  opacity: 0.5;
}

.about-hero-text,
.contacts-hero-text {
  background: rgba(16, 21, 33, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 28px 24px;
}

.section > h1:first-child {
  display: inline-block;
  background: rgba(16, 21, 33, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(12px) saturate(125%);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: 12px 16px;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .about-hero-text,
  .contacts-hero-text {
    padding: 18px 14px;
    border-radius: 16px;
    backdrop-filter: blur(12px) saturate(125%);
    -webkit-backdrop-filter: blur(12px) saturate(125%);
  }

  .section > h1:first-child {
    width: 100%;
    padding: 10px 12px;
    border-radius: 14px;
  }
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: var(--glass-blur) var(--glass-saturate);
  -webkit-backdrop-filter: var(--glass-blur) var(--glass-saturate);
}
.contact-card .cc-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.contact-card .cc-value {
  font-family: "PFDinCond", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.contact-card .cc-value a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-card .cc-value a:hover {
  color: var(--accent);
}
.contact-card .cc-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calc-input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: "PFDin", sans-serif;
  font-size: 17px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.calc-input:focus {
  border-color: var(--accent);
}
.calc-input option {
  background: #1a1a2e;
  color: #fff;
}
.calc-result {
  margin-top: 24px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(242, 140, 40, 0.08);
  border: 1px solid rgba(242, 140, 40, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.low-gpu .glass-card,
.low-gpu .contact-card,
.low-gpu .service-card,
.low-gpu .cta-card,
.low-gpu .calc-glass {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: var(--glass-bg-solid) !important;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast) !important;
}

.low-gpu .service-card:hover,
.low-gpu .cta-card:hover {
  transform: translateY(-2px) !important;
}

.low-gpu .service-icon {
  transform: none !important;
  filter: none !important;
}

.low-gpu .hero-poster img {
  transform: none !important;
}

.low-gpu .plx-layer {
  will-change: auto;
}

@media (max-width: 900px) {
  .section {
    padding: 40px 16px;
  }
  .cta-banner {
    padding: 40px 24px;
  }
  .cta-phone {
    font-size: 36px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 449px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 2200px) {
  .fs-hero {
    --fs-nav-offset: 80px;
    height: calc(100svh - 8px) !important;
    min-height: 520px !important;
    max-height: 880px !important;
  }
  .fs-slides {
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
  }
  .fs-slide {
    padding: var(--fs-nav-offset)
      max(24px, calc((100vw - min(1400px, calc(100% - 12px))) / 2 + 24px)) 36px;
  }
  .fs-dots {
    bottom: 36px;
  }
}

@media (min-width: 1400px) and (max-height: 760px) {
  .fs-hero {
    --fs-nav-offset: 80px;
    height: calc(100svh - 8px) !important;
    min-height: 400px !important;
    max-height: 600px !important;
  }
  .fs-slides {
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
  }
  .fs-slide {
    padding: var(--fs-nav-offset)
      max(24px, calc((100vw - min(1400px, calc(100% - 12px))) / 2 + 24px)) 24px;
  }
  .fs-dots {
    bottom: 24px;
  }
}
@media (max-width: 900px) {
  .fs-hero {
    min-height: 55vh;
    margin-top: 0;
    padding-top: 0;
  }
  .fs-slides {
    min-height: 55vh;
  }
  .fs-slide {
    padding: 0 18px 68px;
    transition: none;
  }
  .fs-slide:not(.active) {
    display: none;
  }
  .fs-title {
    font-size: clamp(1.35rem, 5.8vw, 30px);
  }
  .fs-sub {
    font-size: 14px;
    margin-bottom: 16px;
    max-width: 95%;
  }
  .fs-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 22px;
  }
  .fs-dots {
    display: flex;
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 6px;
  }
  .fs-dot {
    flex: 1;
    max-width: 52px;
    height: 3px;
  }
  .fs-slide .fs-bg,
  .fs-content {
    transform: none !important;
  }
  .fs-slide .fs-decor {
    display: none;
  }
  .fs-badge {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin-bottom: 10px;
    padding: 6px 12px;
    font-size: 11px;
  }
}

.stats-wrap {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 40px 32px 0;
  position: relative;
}
.stats-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-x;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 60px,
    #000 calc(100% - 60px),
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 60px,
    #000 calc(100% - 60px),
    transparent
  );
}
.stats-scroll::-webkit-scrollbar {
  display: none;
}
.stats-row {
  display: flex;
  align-items: center;
  gap: 60px;
  min-width: max-content;
  padding-bottom: 8px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.stat-number {
  font-family: "Benzin", sans-serif;
  font-size: clamp(70px, 10vw, 110px);
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.stat-icon {
  color: #fff;
  font-size: clamp(50px, 8vw, 80px);
  flex-shrink: 0;
  line-height: 1;
}
.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  max-width: 160px;
  line-height: 1.45;
}
.stats-bar {
  position: relative;
  height: 6px;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}
.stats-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 40px;
  background: #f28c28;
  border-radius: 3px;
  cursor: grab;
  transition: background 0.15s;
}
.stats-thumb:hover,
.stats-thumb:active {
  background: #3a7eff;
}
.stats-thumb:active {
  cursor: grabbing;
}

.section-title {
  font-family: "Benzin", sans-serif;
  font-size: clamp(2rem, 4vw, 56px);
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, #f28c28, transparent);
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}
.section-title.visible::after {
  width: 80px;
}
.services-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  content-visibility: auto;
  contain-intrinsic-size: 980px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--glass-bg, rgba(24, 26, 32, 0.52));
  backdrop-filter: var(--glass-blur, blur(18px))
    var(--glass-saturate, saturate(120%));
  -webkit-backdrop-filter: var(--glass-blur, blur(18px))
    var(--glass-saturate, saturate(120%));
  border-radius: 20px;
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.01) 36%,
    rgba(10, 12, 18, 0.1) 100%
  );
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 140, 40, 0.4);
  background: rgba(24, 26, 32, 0.7);
}
.service-card:hover::before {
  opacity: 0;
}
.service-icon {
  position: relative;
  z-index: 1;
  font-size: 44px;
  color: #f28c28;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 16px rgba(242, 140, 40, 0.35));
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card:hover .service-icon {
  transform: rotateY(360deg);
}
.service-card-title {
  position: relative;
  z-index: 1;
  font-family: "Benzin", sans-serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card-desc {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

.history-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  --tl-year-size: 64px;
  --tl-line-y: 100px;
  --sep-width: 160px;
  content-visibility: auto;
  contain-intrinsic-size: 980px;
}
.tl-wrap {
  display: flex;
  align-items: flex-start;
}
.tl-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.tl-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 60px,
    #000 calc(100% - 60px),
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 60px,
    #000 calc(100% - 60px),
    transparent
  );
}
.tl-scroll::-webkit-scrollbar {
  display: none;
}
.tl-track {
  display: flex;
  gap: 0;
  min-width: max-content;
  position: relative;
  padding-right: 140px;
  padding-left: 60px;
}
.tl-line {
  position: absolute;
  top: var(--tl-line-y);
  left: calc(60px + var(--sep-width) / 2);
  right: 64px;
  height: 2px;
  background: #f28c28;
  z-index: 0;
}
.tl-arrow {
  position: absolute;
  top: calc(var(--tl-line-y) - 5px);
  right: 64px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #f28c28;
  border-right: 2px solid #f28c28;
  transform: rotate(45deg);
  z-index: 1;
}
.tl-year-sep {
  flex-shrink: 0;
  width: var(--sep-width);
  position: relative;
  z-index: 2;
}
.tl-year-sep span {
  position: absolute;
  top: calc(var(--tl-line-y) - 14px);
  left: 50%;
  transform: translate(-50%, -100%);
  font-family: "PFDinCond", "PFDin", sans-serif;
  font-size: var(--tl-year-size);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.08em;
  line-height: 1;
  padding: 0 16px;
  background: #0f0f11;
  z-index: 2;
  white-space: nowrap;
}
.tl-year-sep .tl-sep-dot {
  position: absolute;
  top: calc(var(--tl-line-y) + 1px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 4px solid #f28c28;
  background: #0f0f11;
  z-index: 3;
}
.tl-year-sep .tl-sep-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #f28c28;
  border-radius: 50%;
}
.tl-item {
  flex-shrink: 0;
  width: 260px;
  padding: 0 10px;
  position: relative;
  z-index: 2;
  padding-top: calc(var(--tl-line-y) + 40px);
}
.tl-month {
  position: absolute;
  top: calc(var(--tl-line-y) - 14px);
  left: 10px;
  transform: translateY(-100%);
  font-family: "PFDin", sans-serif;
  font-size: 14px;
  color: #8b95a8;
  line-height: 1;
}
.tl-dot {
  position: absolute;
  top: calc(var(--tl-line-y) + 1px);
  left: 20px;
  width: 8px;
  height: 8px;
  background: #f28c28;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.tl-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: linear-gradient(
    135deg,
    rgba(242, 140, 40, 0.15),
    rgba(24, 26, 32, 0.8)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.tl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 140, 40, 0.4);
}
.tl-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tl-card-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #f28c28;
  color: #fff;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: "PFDin", sans-serif;
}
.tl-card:hover .tl-card-btn {
  background: #cf6d12;
}
.tl-card-title {
  font-family: "Benzin", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
  padding: 0 4px;
}
.tl-card-desc {
  font-size: 12px;
  color: #8b95a8;
  margin: 0;
  line-height: 1.4;
  padding: 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tl-scrollbar {
  position: relative;
  height: 6px;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}
.tl-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 40px;
  background: #f28c28;
  border-radius: 3px;
  cursor: grab;
  transition: background 0.15s;
}
.tl-thumb:hover,
.tl-thumb:active {
  background: #3a7eff;
}
.tl-thumb:active {
  cursor: grabbing;
}
.tl-card img.broken {
  display: none;
}
.tl-card.no-img::before {
  content: "\f03e";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: rgba(255, 255, 255, 0.12);
}
@media (max-width: 768px) {
  .history-section {
    --tl-year-size: 48px;
    --sep-width: 120px;
  }
  .tl-item {
    width: 220px;
  }
}
@media (max-width: 480px) {
  .history-section {
    --sep-width: 100px;
  }
  .tl-item {
    width: 200px;
  }
}

.cta-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  content-visibility: auto;
  contain-intrinsic-size: 560px;
}
.cta-card {
  position: relative;
  background: var(--glass-bg, rgba(24, 26, 32, 0.52));
  backdrop-filter: var(--glass-blur, blur(18px))
    var(--glass-saturate, saturate(120%));
  -webkit-backdrop-filter: var(--glass-blur, blur(18px))
    var(--glass-saturate, saturate(120%));
  border-radius: 24px;
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  padding: 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 36%,
    rgba(10, 12, 18, 0.1) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.cta-card > * {
  position: relative;
  z-index: 1;
}
.cta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.cta-divider-inner {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-family: "Benzin", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
  text-transform: lowercase;
  position: relative;
  padding: 20px 0;
  animation: dividerPulse 3s ease-in-out infinite;
}
.cta-divider-inner::before,
.cta-divider-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.12)
  );
}
.cta-divider-inner::before {
  top: -60px;
}
.cta-divider-inner::after {
  bottom: -60px;
  background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.12));
}
@keyframes dividerPulse {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(242, 140, 40, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(242, 140, 40, 0.5);
  }
}
.cta-title {
  font-family: "Benzin", sans-serif;
  font-size: 32px;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.cta-text {
  color: #8b95a8;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.cta-text em {
  color: #fff;
  font-style: italic;
}
.cta-text ul {
  list-style: none;
  padding: 0;
}
.cta-text ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.cta-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f28c28;
}
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.social-row a:hover {
  background: #f28c28;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 140, 40, 0.35);
}
.social-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  margin-bottom: 28px;
}
.cta-persuade {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-bottom: 16px;
}
.surprise-btn {
  background: #5a6476;
  box-shadow: 0 8px 32px rgba(90, 100, 118, 0.4);
  font-size: 16px;
  padding: 16px 32px;
}
.surprise-btn:hover {
  background: #687489;
  box-shadow: 0 14px 40px rgba(104, 116, 137, 0.5);
  transform: translateY(-2px);
}
.cta-calc-icon {
  font-size: 64px;
  color: #f28c28;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 20px rgba(242, 140, 40, 0.35));
}
.cta-3d-img {
  width: clamp(100px, 20vw, 180px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(242, 140, 40, 0.3));
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
  align-self: center;
}
.cta-3d-img:hover {
  transform: scale(1.08) rotate(-2deg);
}
.cta-card-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.cta-card-row .cta-card-body {
  flex: 1;
  min-width: 0;
}
@keyframes float3d {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1.5deg);
  }
}
.cta-3d-float {
  animation: float3d 4s ease-in-out infinite;
}
.cta-card:nth-child(3) .cta-3d-float {
  animation-delay: -2s;
}

.reveal,
.reveal.visible,
.reveal-stagger > *,
.reveal-stagger.visible > * {
  opacity: 1;
  transform: none;
  transition: none;
}
.stat-number.counted {
  animation: none;
}

.low-gpu .service-card,
.low-gpu .cta-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(20, 22, 28, 0.92) !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease !important;
}
.low-gpu .service-card:hover,
.low-gpu .cta-card:hover {
  transform: translateY(-2px) !important;
}
.low-gpu .service-icon {
  transform: none !important;
  filter: none !important;
}

@media (max-width: 900px) {
  .service-card,
  .cta-card {
    backdrop-filter: blur(10px) saturate(110%);
    -webkit-backdrop-filter: blur(10px) saturate(110%);
  }
  .stats-wrap {
    padding: 24px 16px 0;
    margin-bottom: 24px;
  }
  .stats-row {
    gap: 32px;
  }
  .stat-number {
    font-size: clamp(48px, 12vw, 70px);
  }
  .stat-icon {
    font-size: clamp(36px, 10vw, 56px);
  }
  .stat-label {
    font-size: 13px;
    max-width: 140px;
  }
  .stat-item {
    gap: 14px;
  }
  .services-section {
    padding: 48px 16px;
  }
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 28px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .service-icon {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .service-card-title {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .service-card-desc {
    font-size: 14px;
  }
  .history-section {
    padding: 48px 16px;
  }
  .cta-section {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 16px;
  }
  .cta-card {
    padding: 32px 24px;
    border-radius: 18px;
  }
  .cta-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .cta-text {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .cta-calc-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
  .cta-divider {
    padding: 16px 0;
    writing-mode: horizontal-tb;
  }
  .cta-divider-inner {
    writing-mode: horizontal-tb;
    padding: 0 20px;
    font-size: 15px;
  }
  .cta-divider-inner::before,
  .cta-divider-inner::after {
    display: none;
  }
  .social-row a {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }
  .surprise-btn {
    padding: 14px 22px;
    font-size: 15px;
  }
  .cta-3d-img {
    width: clamp(80px, 18vw, 120px);
  }
}
@media (max-width: 600px) {
  .fs-hero {
    min-height: 50vh;
    margin-top: 0;
    padding-top: 0;
  }
  .fs-slides {
    min-height: 50vh;
  }
  .fs-slide {
    padding: 0 14px 58px;
  }
  .fs-title {
    font-size: clamp(1.2rem, 5.6vw, 26px);
    margin-bottom: 12px;
  }
  .fs-sub {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-card {
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 16px;
  }
  .service-icon {
    font-size: 28px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .service-card-title {
    font-size: 16px;
  }
  .service-card-desc {
    display: none;
  }
  .cta-card-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cta-card-row .cta-card-body {
    text-align: left;
  }
  .cta-3d-img {
    width: 100px;
    align-self: center;
  }
}
@media (max-width: 480px) {
  .fs-hero {
    min-height: 46vh;
    margin-top: 0;
    padding-top: 0;
  }
  .fs-slides {
    min-height: 46vh;
  }
  .fs-slide {
    padding: 0 12px 52px;
  }
  .fs-title {
    font-size: clamp(1.05rem, 5.2vw, 22px);
    margin-bottom: 10px;
  }
  .fs-sub {
    font-size: 12px;
    line-height: 1.35;
    margin-bottom: 10px;
  }
  .fs-dots {
    left: 12px;
    right: 12px;
    bottom: 10px;
  }
  .fs-dot {
    max-width: 44px;
  }
  .stats-wrap {
    padding: 16px 8px 0;
  }
  .stats-row {
    gap: 24px;
  }
  .stat-number {
    font-size: clamp(40px, 14vw, 52px);
  }
  .stat-icon {
    font-size: clamp(30px, 12vw, 44px);
  }
  .stat-label {
    font-size: 12px;
    max-width: 120px;
  }
  .services-section {
    padding: 36px 12px;
  }
  .history-section {
    padding: 36px 12px;
  }
  .cta-section {
    padding: 36px 12px;
  }
  .cta-card {
    padding: 24px 18px;
    border-radius: 14px;
  }
  .cta-title {
    font-size: 20px;
  }
  .cta-text {
    font-size: 14px;
  }
  .cta-persuade {
    font-size: 13px;
  }
  .social-row {
    gap: 8px;
  }
  .social-row a {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .surprise-btn {
    padding: 12px 18px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  .fs-btn {
    width: 100%;
    justify-content: center;
  }
  .cta-calc-icon {
    font-size: 40px;
  }
}

.svc-price {
  margin-bottom: 48px;
  padding: 40px;
  background: var(--glass-bg, rgba(24, 26, 32, 0.52));
  backdrop-filter: var(--glass-blur, blur(18px))
    var(--glass-saturate, saturate(120%));
  -webkit-backdrop-filter: var(--glass-blur, blur(18px))
    var(--glass-saturate, saturate(120%));
  border-radius: var(--radius, 20px);
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
}
.svc-price-head {
  margin-bottom: 24px;
}
.svc-price-title {
  margin: 0 0 12px;
  font-family: "Benzin", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: #fff;
  text-align: center;
}
.svc-price-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}
.svc-price-groups {
  display: grid;
  gap: 14px;
}
.svc-price-group {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(12, 15, 22, 0.26);
  overflow: hidden;
}
.svc-price-group-title {
  display: block;
  padding: 16px 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.svc-price-table-wrap {
  padding: 0 12px 12px;
}
.svc-price-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  overflow: hidden;
}
.svc-price-table th,
.svc-price-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  vertical-align: top;
}
.svc-price-table th {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.svc-price-table td {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}
.svc-price-table tbody tr:last-child td {
  border-bottom: none;
}
.low-gpu .svc-price {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(20, 22, 28, 0.92) !important;
}

@media (max-width: 900px) {
  .svc-price {
    padding: 24px 20px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(20, 22, 28, 0.92);
  }
  .svc-price-group-title {
    padding: 14px 16px;
    font-size: 15px;
  }
  .svc-price-table-wrap {
    padding: 0 10px 10px;
  }
  .svc-price-table,
  .svc-price-table thead,
  .svc-price-table tbody,
  .svc-price-table tr,
  .svc-price-table th,
  .svc-price-table td {
    display: block;
    width: 100%;
  }
  .svc-price-table thead {
    display: none;
  }
  .svc-price-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
  }
  .svc-price-table tbody tr:last-child {
    border-bottom: none;
  }
  .svc-price-table td {
    border-bottom: none;
    padding: 6px 12px;
    font-size: 14px;
  }
  .svc-price-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 3px;
  }
}
