:root {
  --orange: #F5630A;
  --orange-dark: #D94E00;
  --orange-light: #FFF0E8;
  --dark: #181818;
  --dark-2: #2C2C2C;
  --gray: #6B6B6B;
  --gray-light: #F0F0F0;
  --gray-mid: #D8D8D8;
  --white: #FFFFFF;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: 'Exo 2', sans-serif;
  line-height: 1.15;
  font-weight: 800;
}

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

img,
iframe,
picture,
video,
svg {
  max-width: 100%;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section-sm {
  padding: 56px 0;
}

.section-label {
  display: inline-block;
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--orange);
}

.section-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 680px;
}

.topbar {
  background: var(--dark);
  color: #aaa;
  font-size: 13px;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a {
  color: #ccc;
  transition: color .2s;
}

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

.topbar-phones {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar-phones a {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
}

.topbar-phones .op {
  font-size: 11px;
  color: #666;
  margin-right: 4px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.logo .name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--dark);
  line-height: 1;
}

.logo .sub {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}

nav {
  display: flex;
  gap: 6px;
}

.header-inner nav {
  align-items: center;
}

nav a {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-2);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all .2s;
}

nav a:hover,
nav a.active {
  background: var(--gray-light);
  color: var(--orange);
}

.header-cta {
  background: var(--orange);
  color: white;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--orange-dark);
}

.breadcrumbs {
  background: var(--gray-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.breadcrumbs nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}

.breadcrumbs nav a {
  color: var(--gray);
  transition: color .2s;
}

.breadcrumbs nav a:hover {
  color: var(--orange);
}

.breadcrumbs .sep,
.sep {
  color: var(--gray-mid);
}

.breadcrumbs .current,
.current {
  color: var(--dark-2);
  font-weight: 500;
}

footer {
  background: #111;
  color: #9CA3AF;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 16px;
}

.footer-phones a {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: white;
  margin-top: 6px;
  transition: color .2s;
  white-space: nowrap;
}

.footer-phones a:hover {
  color: var(--orange);
}

.footer-phones .op {
  font-size: 11px;
  color: #6B7280;
  margin-right: 4px;
}

.footer-col h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #9CA3AF;
  margin-bottom: 8px;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: .7;
  line-height: 1;
  margin-left: 4px;
  transform: translateY(1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-mid);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 200;
  transition: opacity .2s ease, visibility .2s ease;
  transition-delay: .3s;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition-delay: 0s;
}

.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-2);
  transition: background .15s, color .15s;
  border-radius: 0;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: var(--orange-light);
  color: var(--orange);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 8px;
  background: var(--white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.06));
}

.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--orange);
  color: white;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(245, 99, 10, 0.5);
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: pulse-common 2.5s infinite;
}

@keyframes pulse-common {
  0%,
  100% {
    box-shadow: 0 6px 28px rgba(245, 99, 10, 0.5);
  }

  50% {
    box-shadow: 0 6px 40px rgba(245, 99, 10, 0.85);
  }
}

.mobile-call-picker {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 220;
  width: min(320px, calc(100vw - 24px));
}

.mobile-call-picker summary {
  list-style: none;
}

.mobile-call-picker summary::-webkit-details-marker {
  display: none;
}

.call-picker-menu {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%);
  width: 100%;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  z-index: 2;
}

.call-picker-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9CA3AF;
  padding: 4px 6px 8px;
}

.call-picker-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s;
  white-space: nowrap;
}

.call-picker-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.call-picker-menu .op {
  font-size: 11px;
  color: #9CA3AF;
  margin-right: 8px;
}

.call-picker-menu .phone-note {
  font-size: 12px;
  color: #9CA3AF;
  font-weight: 500;
  flex-shrink: 0;
}

.mobile-call-picker .mobile-call-btn {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  justify-content: center;
  text-align: center;
  gap: 0;
  margin: 0;
}

.mobile-call-picker .mobile-call-btn svg {
  display: none;
}

.call-picker-menu > a > span:first-child,
.cta-phones a,
.footer-phones a,
.topbar-phones a {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 10px;
  }

  .header-inner > nav {
    display: flex !important;
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 4px;
  }

  .header-inner > nav a,
  .header-inner > nav .nav-dropdown > a {
    white-space: nowrap;
  }

  .header-inner > nav .dropdown-menu {
    display: none !important;
  }

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

@media (max-width: 640px) {
  .topbar {
    display: none;
  }

  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-inner > nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .header-inner > nav::-webkit-scrollbar {
    display: none;
  }

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

  .mobile-call-btn {
    display: flex;
  }

  .mobile-call-picker {
    display: block;
  }

  .mobile-call-picker .mobile-call-btn {
    display: flex !important;
    max-width: none;
    padding: 14px 20px;
  }

  footer {
    padding-bottom: 88px;
  }
}
