:root {
  --bg-0:#0A0C0A;
  --bg-1:#101310;
  --bg-2:#171b17;
  --line:#242923;
  --ink:#E0E0E0;
  --ink-dim:#9a9a9a;
  --steel:#8A8D91;
  --red:#9B6FD1;
  --red-dim:#4B2C83;
  --gold:#C9A24B;
  --orange:#F0812E;
  --orange-dim:#C4601A;
  --radius:2px;
  --display:"Oswald", sans-serif;
  --body:"Manrope", sans-serif;
}

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

html {
  scroll-behavior:smooth;
}
header.site1 {
    position: sticky;
    top: 0;
    z-index: 200;
    background: transparent; /* Прозрачно, за да се вижда видеото отдолу */
    padding: 15px 0;
    margin-bottom: -70px; /* Издърпва видеото нагоре точно под менюто */
    transition: background-color 0.3s ease, padding 0.3s ease;
}
body {
  background:var(--bg-0);
  color:var(--ink);
  font-family:var(--body);
  line-height:1.6;
  overflow-x:hidden;
}

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

img {
  max-width:100%;
  display:block;
}

ul {
  list-style:none;
}

button {
  font-family:inherit;
  cursor:pointer;
  border:none;
}

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

h1, h2, h3, h4 {
  font-family:var(--display);
  font-weight:600;
  letter-spacing:0.5px;
  color:#fff;
}

.eyebrow {
  font-family:var(--display);
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:12.5px;
  color:var(--red);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}

.eyebrow::before {
  content:"";
  width:24px;
  height:1px;
  background:var(--red);
  display:inline-block;
}

section {
  padding:96px 0;
  position:relative;
}

@media (max-width:768px) {
  section {
    padding:64px 0;
  }

}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  font-family:var(--display);
  font-size:14.5px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  border-radius:var(--radius);
  transition:all .25s ease;
  white-space:nowrap;
}

.btn-outline {
  border:1px solid #444;
  color:var(--ink);
}

.btn-outline:hover {
  border-color:var(--ink);
  background:rgba(255,255,255,.04);
}

.btn-call {
  background:var(--orange);
  color:#2b1400;
}

.btn-call:hover {
  background:#F5964F;
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(240,129,46,.35);
}

.btn-sm {
  padding:10px 18px;
  font-size:12px;
}

.announce-bar {
  background:var(--bg-0);
  color:var(--ink-dim);
  border-bottom:1px solid var(--line);
}

.announce-bar .container {
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:36px;
  font-size:12px;
  font-weight:600;
  gap:14px;
}

.announce-text {
  display:flex;
  align-items:center;
  gap:8px;
}

.announce-text i {
  color:var(--red);
}

.announce-social {
  display:flex;
  gap:16px;
}

.announce-social a {
  color:var(--ink-dim);
  font-size:13px;
  transition:color .2s;
}

.announce-social a:hover {
  color:var(--red);
}

@media (max-width:980px) {
  .nav-cta .btn-call {
    display: none;
  }

}

@media (max-width:768px) {
  .info-bar {
    display: none;
  }

}

@media (max-width:640px) {
  .announce-bar .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: auto;
    padding: 10px 12px 10px 100px;
    gap: 8px;
    font-size: 11px;
  }

  .announce-text {
    justify-content: center;
    text-align: center;
    line-height: 1.4;
  }

  .announce-social {
    justify-content: center;
  }

}

@media (max-width:520px) {
  .announce-bar .container {
    padding-left: 80px;
    font-size: 10.5px;
  }

}

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

}

.topbar-wrap {
    position: relative;
    z-index: 100;
}

.info-bar {
  background:var(--bg-1);
  border-bottom:1px solid var(--line);
}

.info-bar-row {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  height:76px;
  gap:10px;
  padding-left:150px;
}

.info-item {
  display:flex;
  align-items:center;
  gap:11px;
  padding:0 18px;
  position:relative;
  flex:1;
  min-width:0;
}

.info-item:not(:last-child)::after {
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:26px;
  background:var(--line);
}

.info-item:first-child {
  padding-left:0;
}

.info-ico {
  color:var(--red);
  font-size:15px;
  width:20px;
  text-align:center;
  flex-shrink:0;
}

.info-lbl {
  font-size:10.5px;
  color:var(--ink-dim);
  text-transform:uppercase;
  letter-spacing:.5px;
}

.info-val {
  font-size:13px;
  color:#fff;
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.info-val a {
  color:#fff;
}

@media (max-width:980px) {
  .info-item:nth-child(1) {
    display:none;
  }

}

@media (max-width:700px) {
  .info-item:nth-child(4) {
    display:none;
  }

  .info-bar-row {
    height:64px;
    padding-left:118px;
  }

}

@media (max-width:520px) {
  .info-item:nth-child(2) {
    display:none;
  }

  .info-item {
    padding:0 10px;
  }

  .info-bar-row {
    padding-left:88px;
  }

}

.brand-badge {
  position: absolute;
  left: 24px;
  top: 0;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(0,0,0,.35), 0 0 0 6px var(--bg-0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 210;
}

.brand-badge img {
  width:76%;
  height:76%;
  object-fit:contain;
  filter:drop-shadow(0 6px 14px rgba(0,0,0,.5));
}

@media (max-width:700px) {
  .brand-badge {
    width:96px;
    height:96px;
    left:14px;
  }

}

@media (max-width:520px) {
  .brand-badge {
    width:68px;
    height:68px;
    left:12px;
  }

}

header.site {
  position:sticky;
  top:0;
  z-index:200;
  background:transparent;
  padding:16px 0;
}

nav {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  height:72px;
  gap:34px;
  background:linear-gradient(90deg, var(--orange-dim), var(--orange));
  border-radius:20px;
  padding:0 22px 0 14px;
  box-shadow:0 20px 44px rgba(0,0,0,.45);
}

.logo {
  font-family:var(--display);
  font-size:20px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#2b1400;
  display:flex;
  align-items:center;
  gap:14px;
  line-height:1.05;
  margin-right:auto;
}

.logo-img {
  height:44px;
  width:auto;
  display:block;
  filter:drop-shadow(0 4px 14px rgba(0,0,0,.25));
}

.logo span {
  font-size:10px;
  letter-spacing:2px;
  color:#2b1400;
  font-family:var(--body);
  font-weight:700;
}

@media (max-width:560px) {
  nav {
    height:60px;
    border-radius:16px;
    padding:0 12px 0 10px;
  }

  .logo-img {
    height:34px;
  }

  .logo {
    font-size:16px;
  }

}

/* Родителският контейнер да подрежда елементите в линия */
nav {
    display: flex;
    align-items: center;

}

/* Навигацията заема цялото свободно място и центрира линковете */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center; /* Центрира линковете хоризонтално */
    gap: 40px;
    flex: 1; /* Заема цялото налично разстояние в средата */
    margin: 0 auto;
    list-style: none;
}

    .nav-links > li {
        position: relative;
    }

    .nav-links a.top-link {
        font-size: 13.5px;
        font-weight: 700;
        color: #2b1400;
        text-transform: uppercase;
        letter-spacing: .5px;
        transition: opacity .2s;
        padding: 8px 0;
        opacity: .82;
        text-decoration: none;
    }

        .nav-links a.top-link:hover,
        .nav-links a.top-link.active-link {
            opacity: 1;
            color: #1a0d00;
        }

.has-dropdown > a::after {
  content:"▾";
  margin-left:6px;
  font-size:11px;
  color:#2b1400;
}

.dropdown {
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%) translateY(8px);
  background:var(--bg-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  min-width:260px;
  padding:10px;
  opacity:0;
  visibility:hidden;
  transition:all .2s ease;
  box-shadow:0 20px 40px rgba(0,0,0,.5);
}

.has-dropdown:hover .dropdown {
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}

.dropdown a {
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:var(--radius);
  font-size:13.5px;
  color:var(--ink-dim);
}

.dropdown a:hover {
  background:rgba(255,255,255,.05);
  color:#fff;
}

.dropdown i {
  color:var(--red);
  width:16px;
}

.nav-cta {
  display:flex;
  align-items:center;
  gap:16px;
}

.nav-cta .btn-call {
  background:#1F0F3D;
  color:#fff;
}

.nav-cta .btn-call:hover {
  background:#2E1B57;
  box-shadow:0 8px 20px rgba(0,0,0,.3);
}

.burger {
  display:none;
  background:none;
  color:#2b1400;
  font-size:22px;
  width:32px;
  height:32px;
  align-items:center;
  justify-content:center;
}

@media (max-width:980px) {
  .nav-links {
    position:fixed;
    top:88px;
    left:20px;
    right:20px;
    bottom:20px;
    background:var(--bg-1);
    border:1px solid var(--line);
    border-radius:20px;
    flex-direction:column;
    align-items:flex-start;
    padding:24px;
    gap:6px;
    transform:translateX(120%);
    transition:transform .3s ease;
    overflow-y:auto;
    box-shadow:0 30px 60px rgba(0,0,0,.5);
  }

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

  .nav-links > li {
    width:100%;
  }

  .nav-links a.top-link {
    color:var(--ink-dim);
    opacity:1;
    display:block;
    width:100%;
    padding:14px 0;
    border-bottom:1px solid var(--line);
  }

  .dropdown {
    position:static;
    transform:none;
    opacity:1;
    visibility:visible;
    display:none;
    box-shadow:none;
    border:none;
    background:transparent;
    padding:0 0 0 12px;
  }

  .has-dropdown.open .dropdown {
    display:block;
  }

  .has-dropdown > a::after {
    color:var(--ink-dim);
  }

  .nav-cta .btn-outline {
    display:none;
  }

  .burger {
    display:flex;
  }

}

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

.hero-full {
    position: relative;
    margin-top: -40px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-full-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

    .hero-full-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-full-tint {
  position:absolute;
  inset:0;
  z-index:1;
  background:radial-gradient(ellipse at center, rgba(7,9,7,.5) 0%, rgba(7,9,7,.86) 78%), linear-gradient(180deg, rgba(7,9,7,.55) 0%, rgba(7,9,7,.4) 40%, rgba(7,9,7,.75) 100%);
}

.hero-full-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  padding: 140px 24px 80px;
}

.eyebrow-center {
  justify-content:center;
}

.hero-full-content h1 {
  font-size:clamp(32px,5vw,54px);
  line-height:1.14;
  margin:18px 0 20px;
  color:#fff;
}

.hero-full-content .sub {
  font-size:17px;
  color:var(--ink-dim);
  max-width:560px;
  margin:0 auto 22px;
}

.hero-full-content .trust {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12.5px;
  color:var(--steel);
  border:1px solid var(--line);
  background:rgba(10,12,10,.4);
  padding:8px 14px;
  border-radius:20px;
  margin-bottom:30px;
}

.hero-full-content .trust i {
  color:var(--orange);
}

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

@media (max-width:640px) {
  .hero-full {
    min-height:560px;
  }

  .hero-full-content {
    padding:80px 20px;
  }

}

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

.ba-wrap {
  position: relative;
  max-width: 820px;
  margin: 50px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  user-select: none;
  transition: box-shadow 0.3s ease;
}

.ba-side {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  font-family: var(--display);
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
}

.ba-side img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.ba-before img {
  filter: grayscale(0.25) brightness(0.9) contrast(1);
}

.ba-after img {
  filter: saturate(1.25) brightness(1.08) contrast(1.05);
}

.ba-before::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 55%);
  pointer-events: none;
}

.ba-after::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25), transparent 55%);
  pointer-events: none;
}

.ba-after-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ba-after-clip .ba-side {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ba-after-clip .ba-side img {
  width: 100%;
  height: 100%;
  max-width: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #ffffff;
  left: 50%;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 6;
  touch-action: none;
}

.ba-handle .grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 13px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.ba-caption {
  text-align: center;
  margin-top: 26px;
  color: var(--ink-dim);
  font-size: 14.5px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-filters {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-bottom:10px;
}

.gf-btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  border-radius:24px;
  background:var(--bg-1);
  border:1px solid var(--line);
  color:var(--ink-dim);
  font-size:13px;
  font-weight:600;
  transition:all .2s;
}

.gf-btn i {
  font-size:12px;
}

.gf-btn:hover {
  border-color:var(--red);
  color:#fff;
}

.gf-btn.active {
  background:var(--red);
  border-color:var(--red);
  color:#fff;
}

.gf-btn.active[data-key="salon"], .gf-btn.active[data-key="polirane"], .gf-btn.active[data-key="keramika"] {
  background:var(--orange);
  border-color:var(--orange);
  color:#2b1400;
}

footer {
  background:#000;
  border-top:1px solid var(--line);
  padding:56px 0 110px;
}

@media (min-width:769px) {
  footer {
    padding-bottom:50px;
  }

}

.footer-grid {
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:30px;
}

.footer-grid-4 {
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:36px;
}

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

}

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

}

.footer-col h4 {
  font-size:14.5px;
  color:#fff;
  margin-bottom:18px;
  letter-spacing:.3px;
}

.footer-links li {
  margin-bottom:11px;
  font-size:13.5px;
  color:var(--ink-dim);
}

.footer-links a {
  color:var(--ink-dim);
  transition:color .2s;
}

.footer-links a:hover {
  color:#fff;
}

.footer-links i {
  color:var(--orange);
  width:16px;
  margin-right:2px;
}

.footer-social {
  display:flex;
  gap:14px;
  margin-top:18px;
}

.footer-social a {
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ink-dim);
  transition:all .2s;
}

.footer-social a:hover {
  color:#fff;
  border-color:#555;
}

.footer-bottom {
  margin-top:40px;
  padding-top:24px;
  border-top:1px solid var(--line);
  font-size:12px;
  color:#555;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}

.sticky-cta {
  display:none;
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:300;
  background:#0a0a0a;
  border-top:1px solid var(--line);
  padding:10px 14px;
  gap:10px;
}

.sticky-cta a {
  flex:1;
}

@media (max-width:768px) {
  .sticky-cta {
    display:flex;
  }

}

::selection {
  background:var(--red);
  color:#1F0F3D;
}

.active-link {
  color:#1F0F3D !important;
  opacity:1 !important;
  position:relative;
}

.active-link::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-4px;
  height:2px;
  background:#1F0F3D;
}

@media (max-width:980px) {
  .active-link {
    color:#fff !important;
  }

  .active-link::after {
    background:var(--orange);
  }

}

.social-fab {
  position:fixed;
  right:20px;
  bottom:26px;
  z-index:400;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

@media (max-width:768px) {
  .social-fab {
    bottom:92px;
    right:16px;
  }

}

.social-fab-list {
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:all .25s ease;
}

.social-fab-list.open {
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.social-fab-list a {
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  box-shadow:0 8px 18px rgba(0,0,0,.4);
  border:1px solid rgba(255,255,255,.08);
}

.social-fab-list a.tiktok {
  background:#0a0a0a;
}

.social-fab-list a.instagram {
  background:radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-fab-list a.facebook {
  background:#1877F2;
}

.social-fab-toggle {
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  font-size:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 26px rgba(155,111,209,.45);
  transition:transform .2s ease;
}

.social-fab-toggle:hover {
  transform:scale(1.06);
}

.social-fab-toggle i {
  transition:transform .25s ease;
}

.social-fab.open .social-fab-toggle i {
  transform:rotate(135deg);
}

.insta-grid {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
  margin-top:40px;
}

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

}

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

}

.insta-tile {
  aspect-ratio:1/1;
  border-radius:6px;
  background:linear-gradient(150deg, rgba(155,111,209,.16), var(--bg-2) 70%);
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ink-dim);
  font-size:22px;
  transition:all .2s;
}

.insta-tile:hover {
  color:#fff;
  border-color:var(--red);
  transform:translateY(-3px);
}

.legacy-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  min-height:640px;
}

@media (max-width:980px) {
  .legacy-grid {
    grid-template-columns:1fr;
    min-height:0;
  }

}

.legacy-phone {
  display:flex;
  align-items:center;
  gap:12px;
}

.legacy-phone .ico {
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--bg-1);
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--orange);
}

.legacy-phone .num {
  font-family:var(--display);
  font-size:15px;
  color:#fff;
}

.inquiry-section {
  padding:0;
  background:var(--bg-0);
}

.inquiry-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:660px;
  position:relative;
}

@media (max-width:900px) {
  .inquiry-grid {
    grid-template-columns:1fr;
    min-height:0;
  }

}

.inquiry-panel {
  background:linear-gradient(150deg, var(--orange), var(--orange-dim) 120%);
  color:#2b1400;
  padding:90px 6vw 90px 6vw;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  z-index:2;
  clip-path:polygon(0 0, 100% 0, 74% 100%, 0 100%);
}

@media (max-width:900px) {
  .inquiry-panel {
    clip-path:none;
    padding:70px 28px;
  }

}

.inquiry-panel .eyebrow {
  color:#2b1400;
}

.inquiry-panel .eyebrow::before {
  background:#2b1400;
}

.inquiry-panel h2 {
  color:#2b1400;
  font-size:clamp(28px,3.6vw,42px);
  line-height:1.15;
  margin-bottom:30px;
  max-width:500px;
}

.inquiry-form {
  display:flex;
  flex-direction:column;
  gap:16px;
  max-width:440px;
}

.inquiry-row {
  display:flex;
  gap:16px;
}

@media (max-width:520px) {
  .inquiry-row {
    flex-direction:column;
  }

}

.inquiry-form input, .inquiry-form textarea {
  background:rgba(0,0,0,.1);
  border:1px solid rgba(43,20,0,.18);
  border-radius:4px;
  padding:15px 16px;
  font-family:var(--body);
  font-size:14px;
  color:#2b1400;
  width:100%;
  resize:none;
}

.inquiry-form input::placeholder, .inquiry-form textarea::placeholder {
  color:rgba(43,20,0,.65);
}

.inquiry-form input:focus, .inquiry-form textarea:focus {
  outline:none;
  border-color:#2b1400;
  background:rgba(0,0,0,.16);
}

.inquiry-media {
  position:relative;
  overflow:hidden;
}

.inquiry-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  min-height:320px;
  filter:grayscale(.15) brightness(.85);
}

@media (max-width:900px) {
  .inquiry-media {
    aspect-ratio:16/10;
  }

}

.inquiry-callout {
  position:absolute;
  right:26px;
  bottom:26px;
  z-index:3;
  display:flex;
  align-items:center;
  gap:14px;
  background:var(--orange);
  color:#2b1400;
  border-radius:40px;
  padding:10px 22px 10px 10px;
  box-shadow:0 16px 34px rgba(0,0,0,.5);
}

.inquiry-callout .ico {
  width:48px;
  height:48px;
  border-radius:50%;
  background:#101010;
  color:var(--orange);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  box-shadow:0 0 0 6px rgba(255,255,255,.18);
}

.inquiry-callout .num {
  font-family:var(--display);
  font-size:16px;
}

@media (max-width:560px) {
  .inquiry-callout {
    right:16px;
    bottom:16px;
    padding:8px 16px 8px 8px;
  }

  .inquiry-callout .ico {
    width:40px;
    height:40px;
  }

}

.inquiry-section {
  position: relative;
  background: #000;
  overflow: hidden;
  padding: 0;
  margin-top: 45px;
}

.inquiry-grid {
  position: relative;
  display: flex;
  min-height: 620px;
  width: 100%;
}

.inquiry-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.inquiry-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.inquiry-panel-wrapper {
  position: relative;
  z-index: 2;
  width: 66%;
  filter: drop-shadow(20px 0px 20px rgba(0, 0, 0, 0.6));
}

.inquiry-panel {
  background: #f0812e;
  padding: 75px 7vw 75px 6vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon( 0 0, 96% 0, 86% 12%, 73% 86%, 82% 100%, 0 100% );
}

.inquiry-title {
  font-family: var(--body);
  font-weight: 800;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 30px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
}

.inquiry-row {
  display: flex;
  gap: 14px;
}

.inquiry-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 13.5px;
  color: #fff;
  outline: none;
}

.inquiry-input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.inquiry-input-half {
  width: 50%;
}

.inquiry-textarea {
  resize: none;
}

.btn-send-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 30px;
  padding: 6px 6px 6px 26px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

.btn-arrow {
  background: #f0812e;
  color: #0a0a0a;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.inquiry-callout {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f0812e;
  color: #fff;
  border-radius: 40px;
  padding: 10px 24px 10px 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.callout-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.callout-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
}

.callout-num {
  font-weight: 800;
  font-size: 17px;
  line-height: 1.1;
}

@media (max-width: 900px) {
  .inquiry-grid {
    flex-direction: column;
  }

  .inquiry-panel-wrapper {
    width: 100%;
    filter: none;
  }

  .inquiry-panel {
    clip-path: none;
    padding: 50px 24px;
  }

  .inquiry-media {
    position: relative;
    height: 380px;
  }

  .inquiry-input-half {
    width: 100%;
  }

}

@media (max-width: 520px) {
  .inquiry-row {
    flex-direction: column;
  }

}

.contacts-section {
  padding: 26px 0 80px;
}

.sh-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #f0812e;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.sh-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-grow: 1;
}

.sh-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.sh-val {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.sh-arrow {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.2s, color 0.2s;
}

.sh-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 129, 46, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.sh-card:hover .sh-arrow {
  transform: translate(2px, -2px);
  color: #f0812e;
}

.card-viber:hover .sh-icon {
  background: #7360f2;
  color: #fff;
}

.card-email:hover .sh-icon {
  background: #f0812e;
  color: #fff;
}

.card-instagram:hover .sh-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.card-tiktok:hover .sh-icon {
  background: #00f2fe;
  color: #000;
}

.card-facebook:hover .sh-icon {
  background: #1877f2;
  color: #fff;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  background: var(--bg-1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 16px;
}

.legal-updated i {
  color: var(--red);
}

.legal-content {
  max-width: 760px;
  padding-top: 26px;
  padding-bottom: 20px;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-child {
  border-top: none;
}

.legal-section h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}

.legal-num {
  font-family: var(--display);
  font-size: 13px;
  color: var(--red);
  background: rgba(155,111,209,.12);
  border-radius: 8px;
  padding: 6px 10px;
  letter-spacing: 1px;
}

.legal-section p {
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 6px 0 16px;
  padding-left: 0;
}

.legal-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--orange);
}

.legal-section a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover {
  color: #fff;
}

.legal-cta {
  margin-top: 10px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.legal-cta a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #555;
  transition: color .2s;
}

.footer-legal a:hover {
  color: var(--ink-dim);
}

:root {
  --ds-purple-main: #be55ff;
  --ds-purple-light: #c084fc;
}

:root {
  --ds-purple-main: #be55ff;
  --ds-purple-light: #c084fc;
  --ds-orange-exact: #d05b20;
}

.ab-section {
  width: 100%;
  background: var(--bg-1, #0d0d0f);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ab-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.ab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ab-visual {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-shape-bg {
  position: absolute;
  top: -100px;
  bottom: -100px;
  left: -40px;
  right: -100vw;
  background: linear-gradient(135deg, #d05b20 0%, #b34a15 100%);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.ab-dots-pattern {
  position: absolute;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 2px, transparent 2px);
  background-size: 16px 16px;
  z-index: 2;
}

.ab-dots-top {
  top: -10px;
  left: -10px;
}

.ab-dots-bottom {
  bottom: -10px;
  right: 20px;
}

.ab-main-photo-wrap {
  position: relative;
  z-index: 3;
  width: 380px;
  height: 380px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.ab-main-photo {
  width: 85%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
}

.ab-visual:hover .ab-main-photo {
  transform: scale(1.05);
}

.ab-square-photo {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  z-index: 4;
  border: 3px solid var(--ds-orange-exact);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  background: #181524;
  transition: transform 0.3s ease;
}

.ab-square-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-square-photo:hover {
  transform: scale(1.08);
}

.ab-square-top {
  width: 200px;
  height: 200px;
  top: 20px;
  right: 15px;
}

.ab-square-bottom {
  width: 190px;
  height: 190px;
  bottom: 20px;
  left: 15px;
}

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

.ab-content .eyebrow {
  color: var(--ds-purple-main);
  display: inline-block;
  margin-bottom: 12px;
}

.ab-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink, #ffffff);
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.ab-description {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-dim, #9ca3af);
  margin: 0 0 28px 0;
}

.ab-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ab-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-dim, #9ca3af);
}

.ab-check-list i {
  color: var(--ds-purple-main);
  font-size: 16px;
  width: 20px;
}

.ab-check-list strong {
  color: var(--ink, #ffffff);
}

.ab-cta-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.ab-cta-group .btn-outline {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--ds-purple-main);
  color: var(--ds-purple-light);
  transition: all 0.3s ease;
}

.ab-cta-group .btn-outline:hover {
  background: var(--ds-purple-main);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(190, 85, 255, 0.4);
}

.ab-phone-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.ab-phone-link:hover {
  transform: translateY(-2px);
}

.ab-phone-ico {
  width: 46px;
  height: 46px;
  background: rgba(190, 85, 255, 0.1);
  border: 1px solid rgba(190, 85, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ds-purple-main);
  font-size: 18px;
}

.ab-phone-info {
  display: flex;
  flex-direction: column;
}

.ab-phone-lbl {
  font-size: 12px;
  color: var(--ink-dim, #9ca3af);
}

.ab-phone-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--ds-purple-light);
}

@media (max-width: 1024px) {
  .ab-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ab-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .ab-shape-bg {
    left: -50px;
    right: -50px;
  }

}

@media (max-width: 600px) {
  .ab-container {
    padding: 0 20px;
  }

  .ab-section {
    padding: 60px 0;
  }

  .ab-visual {
    height: 380px;
  }

  .ab-main-photo-wrap {
    width: 210px;
    height: 300px;
  }

  .ab-square-top {
    width: 100px;
    height: 100px;
    right: 0;
    top: 10px;
  }

  .ab-square-bottom {
    width: 110px;
    height: 110px;
    left: 0;
    bottom: 10px;
  }

  .ab-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

}

:root {
  --brand-orange: #f36c21;
  --font-heading: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
}

.legacy-custom-section {
  width: 100%;
  background: #090a0c;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  font-family: var(--font-body);
}

.legacy-full-wrapper {
  width: 100%;
  padding-left: 0;
  padding-right: max(20px, calc((100vw - 1400px) / 2));
  box-sizing: border-box;
}

.legacy-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.legacy-visual-left {
  position: relative;
  width: 100%;
  height: 500px;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.glow-backdrop {
  position: absolute;
  top: 20%;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(243, 108, 33, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.photo-card.main-photo {
  position: absolute;
  top: 20px;
  left: 0;
  width: 82%;
  height: 400px;
  border-radius: 0 24px 24px 0;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: none;
}

.photo-card.main-photo img, .photo-card.sub-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(18, 20, 26, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(243, 108, 33, 0.4);
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ffffff;
}

.photo-badge i {
  color: var(--brand-orange);
}

.photo-card.sub-photo {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 170px;
  height: 170px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 3;
  border: 3px solid var(--brand-orange);
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

.legacy-content-right {
  position: relative;
  z-index: 5;
}

.legacy-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-orange);
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.legacy-title span {
  color: #ffffff;
}

.legacy-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #a0a0a0;
  margin-bottom: 30px;
  max-width: 540px;
}

.staggered-timeline {
  position: relative;
  width: 100%;
  min-height: 300px;
}

.timeline-arrows-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.dialog-step {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  z-index: 2;
}

.dialog-step.step-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
}

.dialog-step.step-2 {
  position: absolute;
  top: 55px;
  right: -20px;
  width: 240px;
}

.step-bottom-row {
  position: absolute;
  top: 195px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 2;
}

.dialog-step.step-3 {
  width: 240px;
  flex-shrink: 0;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-orange);
}

.step-ico {
  width: 30px;
  height: 30px;
  background: rgba(243, 108, 33, 0.12);
  color: var(--brand-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.step-body h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.step-body p {
  font-size: 12px;
  line-height: 1.4;
  color: #888888;
  margin: 0;
}

.legacy-actions-inline {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.btn-orange-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-orange);
  color: #ffffff;
  padding: 6px 6px 6px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-orange-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(243, 108, 33, 0.35);
}

.btn-arrow-icon {
  width: 32px;
  height: 32px;
  background: #111111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
}

.legacy-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.legacy-phone .ico {
  width: 36px;
  height: 36px;
  background: #14151a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legacy-phone .num {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 992px) {
  .legacy-full-wrapper {
    padding: 0 20px;
  }

  .legacy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legacy-visual-left {
    height: 340px;
  }

  .staggered-timeline {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .dialog-step.step-1, .dialog-step.step-2 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
  }

  .step-bottom-row {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .dialog-step.step-3 {
    width: 100%;
  }

  .timeline-arrows-canvas {
    display: none;
  }

  .legacy-actions-inline {
    flex-wrap: wrap;
  }

}

.custom-grid-section {
  position: relative;
  background-color: #0b0c10;
  padding: 80px 0;
  overflow: hidden;
}

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

.text-center {
  text-align: center;
}

.eyebrow-purple {
  color: #a855f7;
  font-family: var(--font-heading, "Oswald", sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-purple::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #a855f7;
  border-radius: 50%;
  box-shadow: 0 0 10px #a855f7;
}

.title-purple {
  color: #ffffff;
  font-family: var(--font-heading, "Oswald", sans-serif);
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.desc-purple {
  color: #9ca3af;
  max-width: 620px;
  margin: 14px auto 0;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

.btn-purple-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background-color: #12141c;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: #ffffff;
  font-family: var(--font-heading, "Oswald", sans-serif);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-purple-nav:hover {
  background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
  border-color: #ff6b00;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.svc-card-header {
  margin-left: 60px;
  min-height: 48px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.svc-card-header h3 {
  color: #c084fc;
  font-family: var(--font-heading, "Oswald", sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0;
  text-align: left;
}

.full-container {
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 40px;
}

.custom-grid-section {
  position: relative;
  background-color: #0b0c10;
  padding: 100px 0;
  overflow: hidden;
  width: 100%;
}

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

.text-center {
  text-align: center;
}

.eyebrow-purple {
  color: #a855f7;
  font-family: var(--font-heading, "Oswald", sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-purple::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #a855f7;
  border-radius: 50%;
  box-shadow: 0 0 10px #a855f7;
}

.title-purple {
  color: #ffffff;
  font-family: var(--font-heading, "Oswald", sans-serif);
  font-size: clamp(30px, 4vw, 46px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.desc-purple {
  color: #9ca3af;
  max-width: 700px;
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.6;
}

.svc-card-header {
  margin-left: 15px;
  min-height: 52px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.svc-card-header h3 {
  color: #c084fc;
  font-family: var(--font-heading, "Oswald", sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}

.svc-card-header h3 span {
  color: #ffffff;
  font-weight: 400;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 3px;
}

.btn-purple-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: #12141c;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: #ffffff;
  font-family: var(--font-heading, "Oswald", sans-serif);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-purple-nav:hover {
  background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
  border-color: #ff6b00;
  box-shadow: 0 0 22px rgba(255, 107, 0, 0.5);
}

@media (max-width: 768px) {
  .full-container {
    padding: 0 20px;
  }

}

.social-hub-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hub-column {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
  z-index: 2;
}

.hub-column.left-socials {
  align-items: flex-start;
}

.hub-column.right-direct {
  align-items: flex-end;
  padding-top: 50px;
}

.offset-1 {
  transform: translateX(0px);
}

.offset-2 {
  transform: translateX(35px);
}

.offset-3 {
  transform: translateX(-15px);
}

.offset-4 {
  transform: translateX(20px);
}

.offset-5 {
  transform: translateX(-25px);
}

.sh-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #12141c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 24px;
  width: 100%;
  max-width: 440px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  margin: 5px 0;
}

.sh-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: #ff6b00;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3), 0 10px 25px rgba(0, 0, 0, 0.6);
}

.sh-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
  flex-shrink: 0;
}

.sh-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.sh-label {
  color: #ffffff;
  font-family: var(--font-heading, "Oswald", sans-serif);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sh-val {
  color: #9ca3af;
  font-size: 0.85rem;
  word-break: break-all;
}

.sh-arrow {
  color: #6b7280;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.sh-card:hover .sh-arrow {
  color: #ff6b00;
}

@media (max-width: 900px) {
  .social-hub-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hub-column.right-direct {
    padding-top: 0;
    align-items: flex-start;
  }

  .offset-1, .offset-2, .offset-3, .offset-4, .offset-5 {
    transform: translateX(0) !important;
  }

}

.top-header-group--overlay {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
а
.custom-grid-section1 {
    position: relative;
    background: #090a0c;
    padding: 20px 0;
    overflow: hidden;
}

.why-scatter {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 620;
  max-width: 1300px;
  margin: 0 auto;
}

.why-scatter-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
 
.why-arrow {
  fill: none;
  stroke: #ff6b00;
  stroke-width: 2.5;
  stroke-dasharray: 10 8;
  stroke-linecap: round;
  opacity: 0.85;
  filter: drop-shadow(0 0 5px rgba(255, 107, 0, 0.55));
}

.why-card {
  position: absolute;
  z-index: 2;
  width: 270px;
  max-width: 85vw;
  background-color: #0d0e13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #ff6b00;
  border-radius: 4px;
  padding: 26px 26px 24px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  text-align: left;
}

.why-card .svc-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.why-card .svc-card-header i {
  color: #ff6b00;
  font-size: 1.3rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.why-card .svc-card-header h3 {
  color: #ffffff;
  font-family: var(--font-heading, "Oswald", sans-serif);
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0;
}

.why-card .svc-card-header h3 span {
  color: #ff6b00;
  font-weight: 600;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 0.5px;
}

.why-card p {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.why-card:hover {
  border-color: #ff6b00;
  box-shadow: 0 0 24px rgba(255, 107, 0, 0.4), 0 14px 32px rgba(0, 0, 0, 0.7);
  z-index: 5;
  transform: translate(-50%, -50%) rotate(0deg) translateY(-6px) !important;
}

.idx-services-purple .why-arrow {
  stroke: #a855f7;
  filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.55));
}

.idx-services-purple .why-card {
  border-left-color: #a855f7;
}

.idx-services-purple .why-card .svc-card-header i {
  color: #a855f7;
}

.idx-services-purple .why-card .svc-card-header h3 span {
  color: #a855f7;
}

.idx-services-purple .why-card:hover {
  border-color: #a855f7;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.4), 0 14px 32px rgba(0, 0, 0, 0.7);
}

.idx-services-purple .btn-purple-nav:hover {
  border-color: #c084fc;
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.5);
}

.section-header-why.why-center-header {
  margin-bottom: 0px;
  margin-left:30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header-whyl.whyl-center-header {
  margin-bottom: 0px;
  margin-right: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wc-1 {
  top: 0%;
  left: 3%;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.wc-2 {
  top: 52%;
  left: 20%;
  transform: translate(-50%, -50%) rotate(2deg);
}

.wc-3 {
  top: 22%;
  left: 56%;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.wc-4 {
  top: 100%;
  left: 75%;
  transform: translate(-50%, -50%) rotate(2deg);
}

.wc-5 {
  top: 15%;
  left: 100%;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.wc-6 {
  top: 65%;
  left: 85%;
  transform: translate(-50%, -50%) rotate(3deg);
}

.wc2-1 {
  top: 13%;
  left: 90%;
  transform: translate(-50%, -50%) rotate(3deg);
}

.wc2-2 {
  top: 22%;
  left: 48%;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.wc2-3 {
  top: 17%;
  left: 4%;
  transform: translate(-50%, -50%) rotate(2deg);
}

.wc2-4 {
  top: 80%;
  left: 16%;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.wc2-5 {
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(2deg);
}

.wc2-6 {
  top: 76%;
  left: 95%;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.why-scatter-svg-mobile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .section-header-why.why-center-header, .section-header-whyl.whyl-center-header {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .section-header-why.why-center-header .desc-purple, .section-header-whyl.whyl-center-header .desc-purple {
    margin: 14px auto 0;
    text-align: center;
    max-width: 92%;
  }

  .section-header-why.why-center-header .title-purple, .section-header-whyl.whyl-center-header .title-purple {
    max-width: 100%;
  }

  .why-scatter-svg, .why-scatter-svg-mobile {
    display: none !important;
  }

  .why-scatter {
    position: relative;
    aspect-ratio: unset;
    height: auto;
    max-width: 340px;
    margin: 0 auto;
    padding: 14px 0 34px;
    overflow: visible;
  }

  .why-card .svc-card-header h3 {
    font-size: 0.98rem;
  }

  .why-card p {
    font-size: 0.85rem;
  }

  .why-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: min(90vw, 330px);
    max-width: 330px;
    margin: 0 auto 28px;
    box-sizing: border-box;
  }

  .wc-1 {
    transform: rotate(-3deg) translateX(-10px);
  }

  .wc-2 {
    transform: rotate(3deg) translateX(10px);
  }

  .wc-3 {
    transform: rotate(-3deg) translateX(-10px);
  }

  .wc-4 {
    transform: rotate(3deg) translateX(10px);
    margin-bottom: 40px;
  }

  .wc-5 {
    transform: rotate(-3deg) translateX(-10px);
  }

  .wc-6 {
    transform: rotate(3deg) translateX(10px);
    margin-bottom: 40px;
  }

  .wc2-1 {
    transform: rotate(3deg) translateX(10px);
  }

  .wc2-2 {
    transform: rotate(-3deg) translateX(-10px);
  }

  .wc2-3 {
    transform: rotate(3deg) translateX(10px);
  }

  .wc2-4 {
    transform: rotate(-3deg) translateX(-10px);
  }

  .wc2-5 {
    transform: rotate(3deg) translateX(10px);
  }

  .wc2-6 {
    transform: rotate(-3deg) translateX(-10px);
    margin-bottom: 0;
  }

  .why-card:hover {
    transform: translateY(-4px) !important;
    z-index: 10 !important;
  }

}

@media (max-width: 480px) {
  .why-card {
    width: min(94vw, 300px);
    max-width: 300px;
  }

}

.uslugi-scatter-grid {
  position: relative;
  aspect-ratio: unset !important;
  max-width: 1180px;
  height: auto !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 50px 26px;
  padding: 20px 10px 50px;
}

.uslugi-scatter-grid .why-card {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 300px;
}

.uslugi-scatter-grid .why-card:nth-child(6n/**/+1) {
  transform: rotate(-2deg);
}

.uslugi-scatter-grid .why-card:nth-child(6n/**/+2) {
  transform: rotate(2deg) translateY(26px);
}

.uslugi-scatter-grid .why-card:nth-child(6n/**/+3) {
  transform: rotate(-3deg) translateY(-14px);
}

.uslugi-scatter-grid .why-card:nth-child(6n/**/+4) {
  transform: rotate(3deg) translateY(18px);
}

.uslugi-scatter-grid .why-card:nth-child(6n/**/+5) {
  transform: rotate(-2deg);
}

.uslugi-scatter-grid .why-card:nth-child(6n) {
  transform: rotate(2deg) translateY(-10px);
}

.uslugi-scatter-grid .why-card:hover {
  transform: translateY(-6px) !important;
}

@media (max-width: 900px) {
  .uslugi-scatter-grid {
    gap: 34px 0;
    padding: 10px 0 30px;
  }

  .uslugi-scatter-grid .why-card {
    width: min(90vw, 330px);
    max-width: 330px;
    margin: 0 auto;
  }

  .uslugi-scatter-grid .why-card:nth-child(6n/**/+1), .uslugi-scatter-grid .why-card:nth-child(6n/**/+2), .uslugi-scatter-grid .why-card:nth-child(6n/**/+3), .uslugi-scatter-grid .why-card:nth-child(6n/**/+4), .uslugi-scatter-grid .why-card:nth-child(6n/**/+5), .uslugi-scatter-grid .why-card:nth-child(6n) {
    transform: none;
  }

}

.inquiry-section {
  position: relative;
  z-index: 5;
  overflow: visible;
  margin-top: 100px;
  margin-bottom: 100px;
}

.inquiry-grid {
  position: relative;
  overflow: visible;
}

.inquiry-panel-wrapper {
  position: absolute;
  top: -15px;
  bottom: -15px;
  left: 0;
  width: 58%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(24px 0 30px rgba(0, 0, 0, .55));
}

.inquiry-panel {
  height: 100%;
}

@media (max-width: 900px) {
  .inquiry-section {
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
  }

  .inquiry-panel-wrapper {
    position: relative;
    top: 0;
    bottom: 0;
    width: 100%;
    filter: none;
  }

}

.why-flow-wrapper {
  position: relative;
}

.why-connector-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.why-mid-header {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .why-connector-svg {
    display: none;
  }

}

@keyframes galGlowShift {
  0%, 100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

}

.ba-handle .grip {
  position: relative;
}

.ba-handle .grip::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  animation: gripPulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes gripPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }

}

.gallery-filters {
  padding: 6px;
  margin-bottom: 34px;
}

.gf-btn {
  font-family: var(--font-heading, "Oswald", sans-serif);
  letter-spacing: 0.3px;
}

.gf-btn.active {
  box-shadow: 0 0 16px rgba(255, 107, 0, 0.35);
}

.gf-btn.active[data-key="dom"], .gf-btn.active[data-key="remont"], .gf-btn.active[data-key="mebel"], .gf-btn.active[data-key="ofis"] {
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.4);
}

@media (max-width: 600px) {
  .gallery-filters {
    gap: 8px;
  }

  .gf-btn {
    padding: 9px 14px;
    font-size: 12px;
  }

}

.insta-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.insta-tile {
  width: 200px;
  height: 200px;
  flex: 0 0 200px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 10px;
  }

  .insta-tile {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    flex: none;
  }

}

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

}

.side-by-side-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 950px;
  margin: 40px auto 0;
  position: relative;
}

.ba-card {
  flex: 1;
  width: 50%;
}

.ba-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.ba-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.badge-after {
  left: auto;
  right: 12px;
  background: rgba(155, 111, 209, 0.85);
}

.ba-arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.arrow-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-1, #111);
  border: 2px solid var(--line, #333);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

@media (max-width: 650px) {
  .side-by-side-gallery {
    flex-direction: column;
    gap: 12px;
  }

  .ba-card {
    width: 100%;
  }

  .arrow-circle {
    transform: rotate(90deg);
  }

}

@media (max-width:768px) {
  section {
    padding: 64px 0;
  }

}

@media (max-width:980px) {
  .nav-cta .btn-call {
    display: none;
  }

}

@media (max-width:768px) {
  .info-bar {
    display: none;
  }

}

@media (max-width:640px) {
  .announce-bar .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: auto;
    padding: 10px 12px 10px 100px;
    gap: 8px;
    font-size: 11px;
  }

  .announce-text {
    justify-content: center;
    text-align: center;
    line-height: 1.4;
  }

  .announce-social {
    justify-content: center;
  }

}

@media (max-width:520px) {
  .announce-bar .container {
    padding-left: 80px;
    font-size: 10.5px;
  }

}

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

}

@media (max-width:980px) {
  .info-item:nth-child(1) {
    display: none;
  }

}

@media (max-width:700px) {
  .info-item:nth-child(4) {
    display: none;
  }

  .info-bar-row {
    height: 64px;
    padding-left: 118px;
  }

}

@media (max-width:520px) {
  .info-item:nth-child(2) {
    display: none;
  }

  .info-item {
    padding: 0 10px;
  }

  .info-bar-row {
    padding-left: 88px;
  }

}

@media (max-width:700px) {
  .brand-badge {
    width: 96px;
    height: 96px;
    left: 14px;
  }

}

@media (max-width:520px) {
  .brand-badge {
    width: 68px;
    height: 68px;
    left: 12px;
  }

}

@media (max-width:560px) {
  nav {
    height: 60px;
    border-radius: 16px;
    padding: 0 12px 0 10px;
  }

  .logo-img {
    height: 34px;
  }

  .logo {
    font-size: 16px;
  }

}

@media (max-width:980px) {
  .nav-links {
    position: fixed;
    top: 88px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: 20px;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 6px;
    transform: translateX(120%);
    transition: transform .3s ease;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,.5);
  }

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

  .nav-links > li {
    width: 100%;
  }

  .nav-links a.top-link {
    color: var(--ink-dim);
    opacity: 1;
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 12px;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .has-dropdown > a::after {
    color: var(--ink-dim);
  }

  .nav-cta .btn-outline {
    display: none;
  }

  .burger {
    display: flex;
  }

}

@media (max-width:640px) {
  .hero-full {
    min-height: 560px;
  }

  .hero-full-content {
    padding: 80px 20px;
  }

}

@media (min-width:769px) {
  footer {
    padding-bottom: 50px;
  }

}

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

}

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

}

@media (max-width:768px) {
  .sticky-cta {
    display: flex;
  }

}

@media (max-width:980px) {
  .active-link {
    color: #fff !important;
  }

  .active-link::after {
    background: var(--orange);
  }

}

@media (max-width:768px) {
  .social-fab {
    bottom: 92px;
    right: 16px;
  }

}

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

}

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

}

@media (max-width: 900px) {
  .inquiry-grid {
    flex-direction: column;
  }

  .inquiry-panel-wrapper {
    width: 100%;
    filter: none;
  }

  .inquiry-panel {
    clip-path: none;
    padding: 50px 24px;
  }

  .inquiry-media {
    position: relative;
    height: 380px;
  }

  .inquiry-input-half {
    width: 100%;
  }

  .inquiry-callout {
    display: none;
  }

}

@media (max-width: 520px) {
  .inquiry-row {
    flex-direction: column;
  }

}

@media (max-width: 1024px) {
  .ab-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ab-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .ab-shape-bg {
    left: -50px;
    right: -50px;
    top: 0;
    bottom: 0;
  }

}

@media (max-width: 600px) {
  .ab-container {
    padding: 0 20px;
  }

  .ab-section {
    padding: 60px 0;
  }

  .ab-visual {
    height: 380px;
  }

  .ab-main-photo-wrap {
    width: 210px;
    height: 300px;
  }

  .ab-square-top {
    width: 100px;
    height: 100px;
    right: 0;
    top: 10px;
  }

  .ab-square-bottom {
    width: 110px;
    height: 110px;
    left: 0;
    bottom: 10px;
  }

  .ab-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .ab-phone-link {
    display: none;
  }

}

@media (max-width: 992px) {
  .legacy-full-wrapper {
    padding: 0 20px;
  }

  .legacy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legacy-visual-left {
    height: 320px;
  }

  .photo-card.main-photo {
    top: 10px;
    width: 80%;
    height: 290px;
  }

  .photo-card.sub-photo {
    width: 130px;
    height: 130px;
  }

  .photo-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .staggered-timeline {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .dialog-step.step-1, .dialog-step.step-2 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
  }

  .step-bottom-row {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .legacy-phone {
    display: none;
  }

  .dialog-step.step-3 {
    width: 100%;
  }

  .timeline-arrows-canvas {
    display: none;
  }

  .legacy-actions-inline {
    flex-wrap: wrap;
  }

}

@media (max-width: 768px) {
  .full-container {
    padding: 0 20px;
  }

}

@media (max-width: 900px) {
  .social-hub-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hub-column.right-direct {
    padding-top: 0;
    align-items: flex-start;
  }

  .offset-1, .offset-2, .offset-3, .offset-4, .offset-5 {
    transform: translateX(0) !important;
  }

}

@media (max-width: 900px) {
  .section-header-why.why-center-header, .section-header-whyl.whyl-center-header {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .section-header-why.why-center-header .desc-purple, .section-header-whyl.whyl-center-header .desc-purple {
    margin: 14px auto 0;
    text-align: center;
    max-width: 92%;
  }

  .section-header-why.why-center-header .title-purple, .section-header-whyl.whyl-center-header .title-purple {
    max-width: 100%;
  }

  .why-scatter-svg, .why-scatter-svg-mobile {
    display: none !important;
  }

  .why-scatter {
    position: relative;
    aspect-ratio: unset;
    height: auto;
    max-width: 340px;
    margin: 0 auto;
    padding: 14px 0 34px;
    overflow: visible;
  }

  .why-card .svc-card-header h3 {
    font-size: 0.98rem;
  }

  .why-card p {
    font-size: 0.85rem;
  }

  .why-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: min(90vw, 330px);
    max-width: 330px;
    margin: 0 auto 28px;
    box-sizing: border-box;
  }

  .wc-1 {
    transform: rotate(-3deg) translateX(-10px);
  }

  .wc-2 {
    transform: rotate(3deg) translateX(10px);
  }

  .wc-3 {
    transform: rotate(-3deg) translateX(-10px);
  }

  .wc-4 {
    transform: rotate(3deg) translateX(10px);
    margin-bottom: 40px;
  }

  .wc-5 {
    transform: rotate(-3deg) translateX(-10px);
  }

  .wc-6 {
    transform: rotate(3deg) translateX(10px);
    margin-bottom: 40px;
  }

  .wc2-1 {
    transform: rotate(3deg) translateX(10px);
  }

  .wc2-2 {
    transform: rotate(-3deg) translateX(-10px);
  }

  .wc2-3 {
    transform: rotate(3deg) translateX(10px);
  }

  .wc2-4 {
    transform: rotate(-3deg) translateX(-10px);
  }

  .wc2-5 {
    transform: rotate(3deg) translateX(10px);
  }

  .wc2-6 {
    transform: rotate(-3deg) translateX(-10px);
    margin-bottom: 0;
  }

  .why-card:hover {
    transform: translateY(-4px) !important;
    z-index: 10 !important;
  }

}

@media (max-width: 480px) {
  .why-card {
    width: min(94vw, 300px);
    max-width: 300px;
  }

}

@media (max-width: 900px) {
  .inquiry-section {
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
  }

  .inquiry-panel-wrapper {
    position: relative;
    top: 0;
    bottom: 0;
    width: 100%;
    filter: none;
  }

}

@media (max-width: 900px) {
  .why-connector-svg {
    display: none;
  }

}

@media (max-width: 600px) {
  .gallery-filters {
    gap: 8px;
  }

  .gf-btn {
    padding: 9px 14px;
    font-size: 12px;
  }

}

@media (max-width: 768px) {
  .insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 10px;
  }

  .insta-tile {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    flex: none;
  }

}

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

}

@media (max-width: 650px) {
  .side-by-side-gallery {
    flex-direction: column;
    gap: 12px;
  }

  .ba-card {
    width: 100%;
  }

  .arrow-circle {
    transform: rotate(90deg);
  }

}
@media (min-width: 992px) {
    .legacy-custom-section {
        margin-top: -100px !important;
    }
    .why-scatter-21 {
        margin-bottom: -400px !important; /* Дърпа следващия елемент нагоре */
    }

    /* Ако ползвате марджин върху самия бутон или следващата секция: */
    /* .btn-purple-nav { margin-top: -400px !important; } */
}

/* 2. За МОБИЛНИ УСТРОЙСТВА (Телефони) */
@media (max-width: 991px) {
    .legacy-custom-section {
        margin-top: -20px !important;
        margin-bottom: 0px !important;
    }
    .why-scatter-21 {
        margin-bottom: 0 !important; /* Нулира марджина, за да не се застъпят на телефон */
        margin-top: 0 !important;
    }
}