:root {
  --bg-main: #050608;
  --bg-alt: #090b10;
  --accent: #ff7a1a;
  --accent-soft: #ffb15a;
  --text-main: #f5f5f7;
  --text-muted: #a3a3b5;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-lg: 24px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.7);
  --transition-fast: 0.18s ease-out;
  --transition: 0.24s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}


body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: #050608;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
}

main {
  padding-top: 80px;
  padding-bottom: max(32px, env(safe-area-inset-bottom));
}


.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.13), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 177, 90, 0.1), transparent 55%),
    linear-gradient(135deg, #050608 0%, #050509 35%, #090b10 100%);
  background-repeat: no-repeat;
  background-size: cover;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
  color: inherit;
}

.container {
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
}

main {
  padding-top: 80px;
}
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.92), rgba(5, 5, 9, 0.9));
  border-bottom: none;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 14px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.logo-text span:last-child {
  color: var(--accent);
}

.header-nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-link {
  position: relative;
  padding-block: 4px;
  opacity: 0.8;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width var(--transition-fast);
}

.nav-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-link:hover::after {
  width: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  font-weight: 600;
  font-size: 15px;
  padding-inline: 12px;
  padding-block: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
  background: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff8c3a);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.7),
    0 0 22px rgba(255, 122, 26, 0.6);
  color: #050608;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.85),
    0 0 32px rgba(255, 122, 26, 0.9);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 9, 0.8);
  color: var(--text-main);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(12, 12, 18, 0.95);
}
.hero {
  position: relative;
  padding-block: 112px 96px;
  overflow: visible;  
  margin-top: -16px;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 52px;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 8, 0.92),
    rgba(5, 5, 8, 0)
  );
  pointer-events: none;
  z-index: 0;
}


.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.85;
  mix-blend-mode: screen;
}

.hero-orb--left {
  width: 420px;
  height: 420px;
  left: -120px;
  top: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(255, 177, 90, 0.9), rgba(5, 6, 8, 0.95));
  animation: float-orb 16s ease-in-out infinite alternate;
}

.hero-orb--right {
  width: 560px;
  height: 560px;
  right: -240px;
  bottom: -260px;  
  background: radial-gradient(
    circle at 70% 70%,
    rgba(255, 122, 26, 0.04),
    rgba(255, 122, 26, 0.6),
    rgba(5, 5, 9, 0.98)
  );
  animation: float-orb 18s ease-in-out infinite alternate-reverse;
}


@keyframes float-orb {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(32px, -26px, 0);
  }
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
  z-index: 1;
  max-width: 1040px;
  margin-inline: auto;
}
.hero .container > * {
  max-width: 1040px;   
  margin-left: auto;
  margin-right: auto;
}


.hero-main {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(255, 122, 26, 0.12), rgba(5, 5, 9, 0.96));
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-title {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero-lead {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  margin-bottom: 24px;
}

.hero-link-btn {
  position: relative;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.hero-link-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width var(--transition-fast);
}

.hero-link-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.hero-link-btn:hover::after {
  width: 26px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-logo-glow {
  position: relative;
  width: 480px;
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-logo-glow::before {
  content: "";
  position: absolute;
  bottom: 26px;
  width: 360px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 177, 90, 0.95),
    rgba(255, 122, 26, 0.8),
    transparent 72%
  );
  filter: blur(24px);
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.hero-logo-img {
  max-height: 320px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 32px 46px rgba(0, 0, 0, 0.95));
  transform: translateY(-4px);
}
.section-services::before,
.section-services::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.section-services::after {
  width: 480px;
  height: 480px;
  right: -200px;
  bottom: -200px;
  background: radial-gradient(
    circle at 70% 70%,
    rgba(255, 122, 26, 0.18),
    rgba(255, 122, 26, 0.75),
    transparent 70%
  );
}

.section-services::after {
  width: 480px;
  height: 480px;
  right: -200px;
  bottom: -200px;
  background: radial-gradient(
    circle at 70% 70%,
    rgba(255, 122, 26, 0.18),
    rgba(255, 122, 26, 0.75),
    transparent 70%
  );
}

.section-services .container {
  position: relative;
  z-index: 1; 
}

.services-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.services-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 24px;
}

.services-grid,
.coverage-layout,
.about-layout,
.contacts-layout {
  width: 100%;
  max-width: 1040px;      
  margin-inline: auto;    
}




.service-card {
  position: relative;
  padding: 20px 22px;
  border-radius: 22px;

  background: rgba(5, 5, 9, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    opacity var(--transition-fast);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.18),
    transparent 55%
  );
  opacity: 0.35;      
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-3px);
  background: rgba(8, 8, 14, 0.96);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
}

.service-card:hover::before {
  opacity: 0.9;     
}

.service-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}

.service-text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}


.services-strip {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3a1c07, #5a2e10);
  border: 1px solid rgba(255, 177, 90, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  font-size: 13px;
}

.services-strip-tag {
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
}

.services-strip-text {
  color: #ffe4c2;
}

.section-services .hero-eyebrow {
  margin-inline: auto;
  margin-bottom: 20px;
  padding: 5px 16px;
  font-size: 13px; 
}

.section-services .services-title {
  text-align: center;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 18px 0 12px;
}

.section-services .services-lead {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
  font-size: 15px;
}


.section-services .services-grid {
  margin-top: 48px;
}

.section-services {
  position: relative;
  padding-block: 150px 120px;
  overflow: hidden;
}
.services-eyebrow {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 24px;
  font-size: 13px;
}

.services-title {
  text-align: center;
  font-size: 36px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.services-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: var(--text-muted);
}

.section-coverage {
  position: relative;
  padding-block: 120px 120px;   
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.coverage-main {
  max-width: 540px;
}

.coverage-label {
  margin-inline: auto;
  margin-bottom: 20px;
}

.coverage-title {
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

.coverage-lead {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 46rem;
  margin: 0 auto 28px;
}


.coverage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coverage-item {
  position: relative;
  padding: 16px 18px 18px;
  border-radius: 20px;
  background: rgba(5, 5, 9, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.coverage-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--accent-soft);
}

.coverage-text {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.coverage-panel {
  max-width: 520px;
  margin-left: auto;
  padding: 24px 24px 26px;
  border-radius: 26px;
  background: radial-gradient(circle at top left,
              rgba(255, 255, 255, 0.08),
              transparent 55%)
            ,
            rgba(5, 5, 9, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.coverage-panel-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.coverage-panel-text {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.coverage-highlight {
  color: var(--accent-soft);
}
@media (max-width: 1024px) {
  .coverage-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .coverage-panel {
    margin-left: 0;
  }
}

.section-geo-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.geo-eyebrow {
  margin: 0 auto 16px;    
  display: inline-flex;
}

.geo-title {
  font-size: 34px;          
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.geo-lead {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

.geo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.25fr);
  column-gap: 36px;
  row-gap: 24px;
  align-items: flex-start;
}
.geo-summary {
  margin-top: 40px; 
}

.section-services,
.section-geo {
  background: transparent;
}
.section-services::after {
  display: none !important;
}
.hero-orb--right {
  right: -260px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  filter: blur(100px);
  opacity: 0.6;
  background: radial-gradient(
    circle at 70% 70%,
    rgba(255, 122, 26, 0.02),
    rgba(255, 122, 26, 0.45),
    #050608 80%
  );
}
.section-geo {
  padding-block: 120px 120px;  
}

#coverage .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 13px;              
}

#coverage h2 {
  text-align: center;
  margin: 0 auto 14px;
}
#coverage .section-geo-lead,
#coverage .section-lead,
#coverage > .container > p {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}
.geo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px 40px;
  align-items: flex-start; 
}
.geo-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.geo-main-card {
  margin-top: 96px;         
}

.section-coverage {
  position: relative;
  padding-block: 120px 120px;
  background: transparent; 
}
.section-coverage .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.coverage-title {
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.coverage-lead {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
}
.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px 40px;
  align-items: flex-start;
}
.coverage-main {
  display: flex;
  flex-direction: column;
}

.coverage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.coverage-item {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(5, 5, 9, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.coverage-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(5, 6, 8, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--accent-soft);
  margin-bottom: 8px;
}

.coverage-text {
  font-size: 14px;
  color: var(--text-muted);
}
.coverage-panel {
  padding: 24px 26px;
  border-radius: 24px;
  background: rgba(5, 5, 9, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.85);
  max-width: 520px;
  margin-left: auto;
  margin-top: 76px; 
}

.coverage-panel-title {
  font-weight: 600;
  margin: 0 0 10px;
}

.coverage-highlight {
  color: var(--accent-soft);
}

.coverage-panel-text {
  font-size: 14px;
  color: var(--text-muted);
}
.section-coverage {
  text-align: center;
}
.section-coverage .coverage-layout {
  text-align: left;
}
.coverage-title {
  font-size: 36px;       
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 18px auto 10px;
}

.coverage-lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;    
  color: var(--text-muted);
}
.coverage-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.coverage-item {
  position: relative;
  padding: 22px 24px;                
  border-radius: 24px;
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.05),
      transparent 55%
    ),
    rgba(9, 10, 16, 0.97);      
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}
.coverage-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(255, 177, 90, 0.18),
    transparent 60%
  );
  opacity: 0.35;                       
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity var(--transition-fast);
}

.coverage-item:hover {
  transform: translateY(-4px);
  background: rgba(12, 13, 20, 0.98);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
}

.coverage-item:hover::before {
  opacity: 0.65;                       
}

.coverage-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;                     
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(5, 6, 8, 0.95);
  border: 1px solid rgba(255, 177, 90, 0.7);
  color: var(--accent-soft);
  margin-bottom: 10px;
}
.coverage-text {
  margin: 0;
  font-size: 15px;                   
  line-height: 1.6;
  color: var(--text-main);            
}
.coverage-panel {
  align-self: center;
  margin-top: 32px;
  padding: 24px 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left,
      rgba(255, 177, 90, 0.18),
      transparent 55%
    ),
    rgba(9, 10, 16, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.coverage-panel-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}

.coverage-panel-text {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

.section-about {
  position: relative;
  padding-block: 96px 120px;
}

.about-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.about-title {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 18px 0 10px;
}

.about-lead {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: flex-start;
}
.about-main {
  max-width: 640px;
}

.about-text {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--text-main);
}

.about-list {
  margin: 12px 0 0;
  padding-left: 18px;
  font-size: 15px;
  color: var(--text-muted);
}

.about-list li + li {
  margin-top: 6px;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-fact {
  padding: 16px 18px 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left,
      rgba(255, 255, 255, 0.06),
      transparent 55%
    ),
    rgba(8, 9, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-fact-value {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 4px;
}

.about-fact-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-contacts {
  position: relative;
  padding-block: 96px 120px;
}

.contacts-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.contacts-title {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 18px 0 10px;
}

.contacts-lead {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
}
.contacts-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 22px 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left,
      rgba(255, 255, 255, 0.06),
      transparent 55%
    ),
    rgba(8, 9, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.contacts-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
  margin-bottom: 4px;
}

.contacts-phone-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin: 0 0 4px;
}

.contacts-phone {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-soft);
}

.contacts-phone:hover {
  color: var(--accent);
}

.contacts-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.contacts-meta-item {
  font-size: 13px;
}

.contacts-meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contacts-meta-value {
  color: var(--text-main);
}
.contacts-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contacts-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 12px;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  padding: 10px 13px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 5, 9, 0.9);
  color: var(--text-main);
  font-size: 14px;
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.form-input::placeholder {
  color: rgba(163, 163, 181, 0.75);
}

.form-input:focus {
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(255, 122, 26, 0.4);
  background: rgba(10, 10, 16, 0.96);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.contacts-submit {
  margin-top: 6px;
  align-self: flex-start;
}

.contacts-map-card {
  padding: 18px 18px 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at bottom right,
      rgba(255, 122, 26, 0.16),
      transparent 60%
    ),
    rgba(5, 6, 9, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-map {
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.contacts-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contacts-map-caption {
  font-size: 13px;
  color: var(--text-muted);
}
.site-footer {
  margin-top: 56px;
  padding-block: 22px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    to top,
    rgba(5, 5, 9, 0.96),
    rgba(5, 5, 9, 0.88)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(245, 245, 247, 0.72);
}

.footer-dev a {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.footer-dev a:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
}


@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.section-services {
  padding-block: 120px 130px;
}
.services-grid {
  gap: 24px 28px;
}
.service-card {
  position: relative;
  padding: 24px 26px;
  border-radius: 22px;

  background: radial-gradient(circle at top left,
              rgba(255, 177, 90, 0.10),
              transparent 60%)
              ,
              linear-gradient(145deg,
              rgba(10, 10, 16, 0.97),
              rgba(6, 6, 12, 0.97));

  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left,
              rgba(255, 255, 255, 0.10),
              transparent 55%);
  opacity: 0.55;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  background: radial-gradient(circle at top left,
              rgba(255, 196, 120, 0.16),
              transparent 60%)
              ,
              linear-gradient(145deg,
              rgba(14, 14, 22, 0.99),
              rgba(9, 9, 16, 0.99));
  border-color: rgba(255, 177, 90, 0.45);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.95);
}
.service-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #f7f7fa;
}

.service-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(226, 226, 240, 0.9);
}
.service-card:hover .service-title {
  color: #fff7ea;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
  transition-delay: calc(var(--reveal-index, 0) * 18ms);
}


.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.header-nav .nav-link.is-active {
  opacity: 1;
}

.header-nav .nav-link.is-active::after {
  width: 26px;
}
[data-tilt] {
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}
[data-tilt]:hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.9);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

.lang-option {
  position: relative;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 4px 10px 5px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: inherit;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  transition:
    color 0.2s ease-out,
    background-color 0.2s ease-out,
    box-shadow 0.2s ease-out,
    transform 0.15s ease-out;
}

.lang-option:hover {
  color: rgba(255, 255, 255, 0.85);
}

.lang-option.is-active {
  background: linear-gradient(135deg, #ff8a28, #ffb347);
  color: #0b0b0d;
  box-shadow: 0 8px 24px rgba(255, 140, 40, 0.5);
}

.lang-option.is-active:hover {
  transform: translateY(-1px);
}



.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    rgba(5, 6, 8, 0.96);
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, #ffb15a);
  transition:
    transform var(--transition-fast, 180ms ease),
    opacity var(--transition-fast, 180ms ease),
    width var(--transition-fast, 180ms ease);
}
.burger span:nth-child(1) {
  width: 14px;
}

.burger span:nth-child(2) {
  width: 18px;
}

.burger span:nth-child(3) {
  width: 14px;
}
.burger.is-active span:nth-child(1) {
  width: 18px;
  transform: translateY(4px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  width: 18px;
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding-inline: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
  z-index: 19;
}

.mobile-nav {
  padding: 14px 20px 18px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 55%),
    rgba(5, 6, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-link {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding-block: 6px;
  border-radius: 10px;
  color: rgba(245, 245, 247, 0.88);
}

.mobile-nav-link:active {
  background: rgba(255, 255, 255, 0.06);
}
.mobile-nav-phone {
  margin-top: 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), #ff8c3a);
  color: #050608;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.85);
}
.site-header.is-menu-open .mobile-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
body.menu-open {
  overflow: hidden;
}
@media (max-width: 1024px) {
  .container {
    width: min(960px, 100% - 32px);
  }

  main {
    padding-top: 76px;
  }

  .hero {
    padding-block: 96px 80px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .hero-main {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-logo-glow {
    width: 380px;
    height: 300px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .coverage-panel {
    margin-left: 0;
    margin-top: 24px;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-main {
    max-width: 100%;
  }

  .contacts-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contacts-card,
  .contacts-map-card {
    max-width: 640px;
    margin-inline: auto;
  }
}
@media (max-width: 880px) {
  .header-inner {
    gap: 12px;
    padding-block: 10px;
  }
  .site-header .container {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 16px;
  }
  .header-nav {
    display: none;
  }

  .header-phone {
    display: none;
  }
  .header-actions {
    margin-left: auto;
    gap: 6px;
    justify-content: flex-end;
  }

  .lang-switch {
    padding-inline: 6px;
  }

  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu {
    display: block;
  }
  .hero-title {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-logo-glow {
    width: 300px;
    height: 250px;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-strip {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 18px;
  }

  .coverage-title,
  .about-title,
  .contacts-title {
    font-size: 28px;
  }

  .contacts-card,
  .contacts-map-card {
    padding-inline: 16px;
    border-radius: 20px;
  }

  .contacts-map {
    min-height: 220px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .container {
    width: 100%;
    margin-inline: 0;
    padding-inline: 20px;
  }

  .hero {
    padding-block: 88px 70px;
  }

  .hero-actions {
    gap: 18px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-link-btn {
    justify-content: center;
  }

  .services-title {
    font-size: 26px;
  }

  .coverage-title,
  .about-title,
  .contacts-title {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero {
    overflow: hidden; 
  }

  .hero-orb--left {
    width: 260px;
    height: 260px;
    left: -80px;
    top: -80px;
    filter: blur(40px);
    opacity: 0.55;
    background: radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.08),
      rgba(255, 177, 90, 0.55),
      rgba(5, 6, 8, 0.98)
    );
  }

  .hero-orb--right {
    width: 360px;
    height: 360px;
    right: -180px;
    bottom: -220px;
    filter: blur(80px);
    opacity: 0.45;
  }
  .container {
    width: min(1120px, 100% - 32px);
  }
}


@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero-main {
    max-width: 100%;
  }

  .hero-visual {
    justify-content: center;
  }
  .hero-logo-glow {
    width: 100%;
    max-width: 360px; 
    height: auto;
  }

  .hero-logo-img {
    max-height: 240px;
  }
}
@media (max-width: 880px) {
  .section-services .container,
  .section-coverage .container,
  .section-about .container,
  .section-contacts .container {
    max-width: 540px;       
    margin-inline: auto;    
    padding-inline: 20px;   
  }
  .section-services .services-grid,
  .section-services .services-strip,
  .section-coverage .coverage-layout,
  .section-about .about-layout,
  .section-contacts .contacts-layout {
    width: 100%;
    max-width: 540px;
    margin-inline: auto;
  }

  }
@media (max-width: 880px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero-main {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-logo-glow {
    width: 380px;
    height: 300px;
  }
}
.hero-main {
  max-width: 560px;
  }


  /* =====================
   PRELOADER
   ===================== */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 177, 90, 0.12), transparent 55%),
    #050608;
  transition:
    opacity 0.4s ease-out,
    visibility 0.4s ease-out;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo-wrap {
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0%, rgba(255,122,26,0.35), rgba(5,5,9,0.96));
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.9),
    0 0 36px rgba(255, 122, 26, 0.65);
  animation: preloader-pulse 1.4s ease-in-out infinite;
  overflow: hidden;
}

.preloader-logo-glow {
  position: absolute;
  inset: 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
  opacity: 0.75;
  filter: blur(10px);
}

.preloader-logo {
  position: relative;
  width: 68%;
  height: auto;
  display: block;
}

/* мобильная версия прелоудера */
@media (max-width: 480px) {
  .preloader-logo-wrap {
    width: 150px;
    height: 150px;
  }
}

/* анимация пульсации */
@keyframes preloader-pulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 14px 40px rgba(0, 0, 0, 0.9),
      0 0 22px rgba(255, 122, 26, 0.6);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.95),
      0 0 40px rgba(255, 122, 26, 0.95);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 14px 40px rgba(0, 0, 0, 0.9),
      0 0 22px rgba(255, 122, 26, 0.6);
  }
}


/* ===========================
   HERO LOGO: size + glow FIX
   (override for new logo)
   =========================== */

.hero-logo-glow{
  width: clamp(520px, 42vw, 700px);
  height: clamp(380px, 34vw, 520px);
  align-items: center;            /* было flex-end — из-за этого лого "тонет" */
  justify-content: center;
}

.hero-logo-glow::before{
  bottom: 18px;
  width: clamp(380px, 34vw, 560px);
  height: clamp(140px, 12vw, 220px);
  filter: blur(32px);
  opacity: 0.95;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 177, 90, 0.92),
    rgba(255, 122, 26, 0.60),
    transparent 72%
  );
}

.hero-logo-img{
  max-height: clamp(300px, 24vw, 460px); /* кратно больше, чем было */
  width: auto;
  transform: translateY(-6px);
}

/* Адаптация: чтобы на мобилке не раздувало */
@media (max-width: 880px){
  .hero-logo-glow{
    width: min(420px, 100%);
    height: auto;
    padding: 18px 0 28px;
  }
.hero-logo-glow::before{
  bottom: 10px;                          /* было 18px */
  width: clamp(320px, 28vw, 520px);      /* было 380/34vw/560 */
  height: clamp(110px, 10vw, 180px);     /* было 140/12vw/220 */
  filter: blur(28px);                    /* было 32px */
  opacity: 0.70;                         /* было 0.95 */
  background: radial-gradient(
    ellipse at center,
    rgba(255, 170, 70, 0.70),
    rgba(255, 120, 25, 0.35),
    transparent 75%
  );
}
.hero-logo-img{
  max-height: clamp(340px, 26vw, 520px); /* было 300/24vw/460 */
  width: auto;
  transform: translateY(-8px);
}
}

@media (max-width: 480px){
  .hero-logo-img{ max-height: 280px; }
}


/* ===========================
   HERO LOGO: no glow + bigger + lower
   =========================== */

/* 1) УБИРАЕМ ПЯТНО полностью */
.hero-logo-glow::before{
  display: none !important;
  content: none !important;
}

/* 2) ЧУТЬ БОЛЬШЕ сам логотип + ЧУТЬ НИЖЕ */
.hero-logo-img{
  max-height: clamp(380px, 29vw, 590px); /* чуть больше */
  width: auto;
  transform: translateY(0);              /* НЕ опускаем */
}


/* если вдруг контейнер держит лого слишком “внизу/вверху” — выравниваем нормально */
.hero-logo-glow{
  align-items: center;
  justify-content: center;
}

/* MOBILE: hero logo BIGGER */
@media (max-width: 768px){
  .hero-logo-glow{
    width: 100%;
    max-width: 520px;   /* было 420px */
  }
  .hero-logo-img{
    max-height: 420px;  /* было 300px (и конфликтовало с 340px) */
    transform: translateY(6px);
  }
}

@media (max-width: 480px){
  .hero-logo-glow{ max-width: 460px; }
  .hero-logo-img{
    max-height: 360px;  /* было 300px */
    transform: translateY(4px);
  }
}
