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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #e8ecf5;
  line-height: 1.6;
  background: #0a0e1a;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0a0e1a;
  border-bottom: 1px solid rgba(28, 42, 69, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.logo-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(0, 224, 198, 0.55));
  animation: logo-glow 2.6s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(0, 224, 198, 0.45)); }
  50%      { filter: drop-shadow(0 0 14px rgba(0, 224, 198, 0.85)); }
}

.logo-text {
  background: linear-gradient(135deg, #fff 20%, #00e0c6 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text span {
  background: linear-gradient(135deg, #00e0c6 20%, #00b8ff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Lead strip (compact under header) */
.lead-strip {
  background: linear-gradient(135deg, #0a0e1a, #0e2a3a);
  padding: 18px 0;
  position: sticky;
  top: 64px;
  z-index: 40;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.lead-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lead-strip h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
}

.lead-strip .lead-form {
  display: flex;
  gap: 10px;
  flex: 1;
  margin: 0;
  max-width: 720px;
}

.lead-strip .lead-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border: 1px solid #2c3a58;
  border-radius: 8px;
  background: #0f1730;
  color: #fff;
  font-size: 15px;
}

.lead-strip .lead-form .btn {
  padding: 11px 22px;
  white-space: nowrap;
}

.lead-strip .form-ok {
  margin: 0;
  color: #00e0c6;
  font-weight: 700;
}

.lead-quick {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.lead-quick span {
  color: #8a94a8;
  font-size: 14px;
  margin-right: 4px;
}

.lead-quick a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: #121a2e;
  border: 1px solid #2c3a58;
  transition: transform 0.2s, border-color 0.2s;
}

.lead-quick a:hover {
  transform: translateY(-2px);
  border-color: #00e0c6;
  color: #00e0c6;
}

.lead-quick a:nth-child(2):hover { color: #25D366; border-color: #25D366; } /* WhatsApp */
.lead-quick a:nth-child(3):hover { color: #229ED9; border-color: #229ED9; } /* Telegram */
.lead-quick a:nth-child(4):hover { color: #7360F2; border-color: #7360F2; } /* Viber */

@media (max-width: 860px) {
  .lead-strip-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .lead-strip h2 {
    text-align: center;
  }
  .lead-strip .lead-form {
    flex-direction: column;
  }
}

/* Hero watermark logo (integrated into hero background) */
.hero-watermark {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.55;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
}

.hero-watermark svg {
  flex-shrink: 0;
}

.hero-watermark span {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  background: linear-gradient(135deg, #fff 25%, #00e0c6 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 600px) {
  .hero-watermark span {
    font-size: 22px;
  }
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.nav a {
  color: #c9d2e3;
  text-decoration: none;
  margin-left: 28px;
  font-size: 15px;
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav a:hover {
  color: #00e0c6;
}

.header-phone {
  color: #0a0e1a;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
  margin-left: 16px;
  background: linear-gradient(135deg, #00e0c6, #00b8ff);
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: 0 0 14px rgba(0, 224, 198, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(0, 224, 198, 0.8);
}

/* Compact desktop nav for multi-page menu */
@media (max-width: 1240px) and (min-width: 861px) {
  .nav a {
    margin-left: 14px;
    font-size: 14px;
  }
  .header-phone {
    padding: 9px 14px;
    font-size: 14px;
    margin-left: 10px;
  }
}

/* Burger menu */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .lead-strip {
    position: static;
  }

  .burger {
    display: flex;
  }

  .header-phone {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    font-size: 14px;
    padding: 8px 12px;
    margin-right: 10px;
  }

  .nav .nav-phone {
    display: block;
    margin: 20px 0 0;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00e0c6, #00b8ff);
    color: #0a0e1a;
    font-weight: 800;
    font-size: 15px;
  }

  .nav .nav-phone:hover {
    color: #0a0e1a;
  }

  .nav {
    position: fixed;
    top: 64px;
    right: 0;
    width: 260px;
    height: 100vh;
    background: #0d1424;
    border-left: 1px solid #1c2a45;
    flex-direction: column;
    padding: 24px 20px;
    transform: translateX(105%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav a {
    margin: 0 0 18px;
    font-size: 17px;
    color: #e8ecf5;
  }

  .nav a:hover {
    color: #00e0c6;
  }
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  padding: 130px 0 110px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,10,24,0.92) 0%, rgba(6,10,24,0.72) 55%, rgba(10,26,46,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 22px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  max-width: 760px;
}

.hero h1 span {
  color: #00e0c6;
}

.hero p {
  max-width: 640px;
  margin: 24px 0 36px;
  font-size: 18px;
  color: #c9d2e3;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #00e0c6;
  color: #0a0e1a;
}

.btn-primary:hover {
  background: #33e8d2;
}

.btn-outline {
  border-color: #c9d2e3;
  color: #fff;
}

.btn-outline:hover {
  border-color: #00e0c6;
  color: #00e0c6;
}

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.hero-stats div {
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 34px;
  color: #00e0c6;
  font-weight: 800;
}

.hero-stats span {
  color: #c9d2e3;
  font-size: 14px;
}

/* Sections common */
section {
  padding: 90px 0;
}

section h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-sub {
  color: #8a94a8;
  max-width: 620px;
  margin-bottom: 44px;
}

/* Products */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  border: 1px solid #1c2a45;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #121a2e;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 224, 198, 0.1);
}

.card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.img-outdoor { background: linear-gradient(135deg, #1f2b4d, #10263a) center/cover; }
.img-indoor  { background: linear-gradient(135deg, #14283c, #0e1a2e) center/cover; }
.img-media   { background: linear-gradient(135deg, #0f2e33, #0a1f26) center/cover; }
.img-scored  { background: linear-gradient(135deg, #2b1f4d, #120e26) center/cover; }

.card h3 {
  font-size: 19px;
  margin: 18px 20px 8px;
}

.card p {
  margin: 0 20px 20px;
  color: #8a94a8;
  font-size: 15px;
  flex-grow: 1;
}

/* Gallery */
.gallery {
  background: #0a0e1a;
}

.gallery h2 {
  color: #fff;
}

.gallery .section-sub {
  color: #8a94a8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  position: relative;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #0e1426;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item .video-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(10, 14, 26, 0.75);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
}

.gallery-item .video-badge::before {
  content: "▶ ";
  color: #00e0c6;
}

/* Lightbox */
.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 24, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 44px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  user-select: none;
}

.lightbox-close:hover {
  color: #00e0c6;
}

/* Advantages */
.advantages {
  background: #0d1424;
}

.adv-grid {
  grid-template-columns: repeat(4, 1fr);
}

.adv {
  background: #121a2e;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid #1c2a45;
}

.adv-num {
  font-size: 28px;
  font-weight: 800;
  color: #00e0c6;
}

.adv h3 {
  margin: 10px 0 8px;
  font-size: 18px;
}

.adv p {
  color: #8a94a8;
  font-size: 14px;
}

/* Quote form */
.quote {
  background: linear-gradient(135deg, #0a0e1a, #0e2a3a);
  color: #fff;
  text-align: center;
}

.quote h2 {
  font-size: 32px;
}

.quote p {
  color: #c9d2e3;
  max-width: 560px;
  margin: 0 auto 32px;
}

.lead-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 0 auto;
}

.lead-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 16px;
  border: 1px solid #2c3a58;
  border-radius: 8px;
  background: #0f1730;
  color: #fff;
  font-size: 16px;
}

.lead-form input::placeholder {
  color: #5a6478;
}

.form-ok {
  margin-top: 20px;
  color: #00e0c6;
  font-weight: 600;
}

/* Contacts */
.contact-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .contact-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-list h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8a94a8;
  margin-bottom: 6px;
}

.contact-list p {
  font-size: 17px;
}

.contact-list a {
  color: #00e0c6;
  text-decoration: none;
}

.geo {
  margin-top: 40px;
  color: #8a94a8;
}

/* Footer */
.footer {
  background: #0a0e1a;
  color: #c9d2e3;
  padding: 28px 0;
  text-align: center;
  font-size: 14px;
}

/* Card layout updates */
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px;
}

.card-price {
  font-weight: 800;
  font-size: 17px;
  color: #00a89a;
  margin: 10px 0;
}

.card-link {
  display: inline-block;
  color: #0a0e1a;
  background: #eef7f6;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.card-link:hover {
  background: #00e0c6;
}

/* Use cases */
.use-cases {
  background: #0d1424;
}

.uc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

@media (max-width: 1100px) {
  .uc-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
}

.uc {
  background: #121a2e;
  border: 1px solid #1c2a45;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.uc:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 224, 198, 0.08);
}

.uc span {
  font-size: 14px;
}

/* Calculator */
.calculator {
  background: #0a0e1a;
}

.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .calc-wrap { grid-template-columns: 1fr; }
}

.calc-form {
  background: #121a2e;
  border: 1px solid #1c2a45;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-row label {
  font-weight: 700;
  font-size: 14px;
}

.calc-row select,
.calc-row input {
  padding: 12px 14px;
  border: 1px solid #2c3a58;
  border-radius: 8px;
  font-size: 16px;
  background: #0f1730;
  color: #fff;
  font-family: inherit;
}

.calc-row select option {
  background: #0f1730;
}

.calc-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calc-result {
  background: linear-gradient(135deg, #0a0e1a, #0e2a3a);
  color: #fff;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.calc-big {
  font-size: 40px;
  font-weight: 800;
  color: #00e0c6;
  margin-bottom: 6px;
}

.calc-result p {
  color: #c9d2e3;
  margin-bottom: 8px;
}

.calc-note {
  font-size: 13px;
  color: #8a94a8 !important;
}

/* Testimonials */
.testimonials {
  background: #0d1424;
}

.testi-slider {
  position: relative;
}

.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #1c2a45 transparent;
}

.testi-track::-webkit-scrollbar { height: 6px; }
.testi-track::-webkit-scrollbar-thumb { background: #1c2a45; border-radius: 3px; }

.testi {
  background: #121a2e;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #1c2a45;
  min-width: 320px;
  max-width: 380px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.testi p {
  font-size: 15px;
  color: #c9d2e3;
  margin: 0 0 18px;
}

.testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #0a0e1a;
  background: linear-gradient(135deg, #00e0c6, #00b8ff);
  flex-shrink: 0;
}

.testi-who strong {
  color: #fff;
  font-size: 15px;
  display: block;
}

.testi-role {
  color: #8a94a8;
  font-size: 13px;
}

.testi-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #2c3a58;
  background: #121a2e;
  color: #e8ecf5;
  font-size: 20px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.testi-btn:hover {
  border-color: #00e0c6;
  color: #00e0c6;
  transform: translateY(-2px);
}

/* FAQ */
.faq { background: #0a0e1a; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid #1c2a45;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 12px;
  background: #121a2e;
}

.faq-list summary {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  color: #e8ecf5;
}

.faq-list p {
  margin-top: 12px;
  color: #8a94a8;
  font-size: 15px;
}

/* Blog */
.blog { background: #0d1424; }

.blog-card { background: #121a2e; }

.blog-date {
  color: #8a94a8;
  font-size: 13px;
  margin-bottom: 8px;
}

/* Contacts */
.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.so {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.so.tg { background: #229ED9; }
.so.wa { background: #25D366; }
.so.vb { background: #7360F2; }
.so.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.so:hover { opacity: 0.85; }

/* Floating buttons */
.float-btns {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.fb {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  box-shadow: 0 6px 18px rgba(10, 14, 26, 0.25);
  transition: transform 0.2s;
}

.fb:hover { transform: scale(1.08); }

.fb.tg { background: #229ED9; width: 42px; height: 42px; }
.fb.wa { background: #25D366; width: 42px; height: 42px; }
.fb.vb { background: #7360F2; width: 42px; height: 42px; }
.fb.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); width: 42px; height: 42px; }

.fb.order {
  background: #00e0c6;
  color: #0a0e1a;
  border-radius: 50%;
  width: 46px;
  height: 46px;
}

.fb svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .fb { width: 42px; height: 42px; font-size: 17px; }
  .fb.tg, .fb.wa, .fb.vb, .fb.ig { width: 38px; height: 38px; }
  .fb.order { width: 42px; height: 42px; }
  .fb svg { width: 19px; height: 19px; }
}

/* === Mobile === */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .logo { font-size: 20px; gap: 9px; }
  .logo-icon svg { width: 30px; height: 30px; }

  .nav { width: 100%; border-left: none; top: 64px; }

  .lead-strip h2 { font-size: 17px; white-space: normal; }
  .lead-strip .lead-form input { font-size: 16px; padding: 12px 14px; }
  .lead-strip .lead-form .btn { width: 100%; }
  .lead-strip .form-ok { text-align: center; }

  .hero { padding: 96px 0 70px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; margin: 18px 0 26px; }
  .hero .btn { padding: 13px 24px; font-size: 15px; width: 100%; text-align: center; }
  .hero-actions { gap: 10px; }
  .hero-badge { font-size: 10px; letter-spacing: 3px; padding: 7px 16px; margin-bottom: 22px; }
  .hero-stats { gap: 30px; margin-top: 40px; }
  .hero-stats strong { font-size: 26px; }
  .hero-stats span { font-size: 12px; }
  .hero-watermark { top: 22px; gap: 8px; opacity: 0.5; }
  .hero-watermark span { font-size: 18px; }
  .hero-watermark svg { width: 24px !important; height: 24px !important; }

  section { padding: 56px 0; }
  section h2 { font-size: 26px; }
  .section-sub { margin-bottom: 28px; font-size: 15px; }

  .grid { grid-template-columns: 1fr; gap: 18px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item { height: 200px; }
  .uc-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .uc { font-size: 11px; padding: 8px 6px; }

  .testi { min-width: 260px; max-width: 100%; }

  .calc-wrap { gap: 22px; }
  .calc-form { padding: 18px; }
  .calc-row-split { grid-template-columns: 1fr; gap: 10px; }
  .calc-big { font-size: 32px; }
  .calc-result { padding: 20px; }

  .contact-list { grid-template-columns: 1fr; gap: 18px; }
  .contact-list p { font-size: 16px; }

  .quote { padding: 34px 0; }
  .quote p { font-size: 15px; }
  .lead-form input { min-width: 0; width: 100%; }
  .lead-form .btn { width: 100%; text-align: center; }

  .footer { font-size: 13px; padding: 22px 0; }

  .float-btns { right: 12px; bottom: 12px; gap: 8px; }
  .fb { width: 38px; height: 38px; font-size: 16px; }
  .fb.tg, .fb.wa, .fb.vb, .fb.ig { width: 34px; height: 34px; }
  .fb.order { width: 38px; height: 38px; }
  .fb svg { width: 17px; height: 17px; }

  .lightbox img, .lightbox video { max-width: 96%; }
}