

/* Start:/bitrix/templates/rogazinsky/template_styles.css?178531014540818*/
:root {
    --bg-dark: #1b1e23;
    --bg-darker: #15181d;
    --text-light: #e0e0e0;
    --text-lighter: #ffffff;
    --text-gray: #cccccc;
    --accent-cyan: #5ce1e6;
    --accent-purple: #b59eff;
    --section-light: #24292f;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.navbar {
    background: rgba(27, 30, 35, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 600;
    color: var(--text-lighter) !important;
    font-size: 1.2rem;
}

.nav-link {
    color: var(--text-gray) !important;
    margin: 0 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-cyan) !important;
}

.contact-email {
    color: var(--accent-purple) !important;
    font-weight: 500;
}

#hero {
    height: 75vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-lighter);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.btn-primary-custom {
    background-color: var(--accent-cyan);
    border: none;
    color: var(--bg-dark);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 30px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--text-lighter);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(92, 225, 230, 0.3);
}

.btn-secondary-custom {
    background-color: transparent;
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: var(--accent-purple);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 158, 255, 0.3);
}

.section {
    padding: 50px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-lighter);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--accent-cyan);
    bottom: -15px;
    left: 0;
}

.light-bg {
    background-color: var(--section-light);
}

.service-card {
    background-color: var(--bg-dark);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-cyan);
}

.service-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-lighter);
}

.service-description {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.certificate-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.certificate-link:hover {
    color: var(--text-lighter);
}

.certificate-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.certificate-link:hover i {
    transform: translateX(3px);
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
    transform: translateY(100px);
    transition: all 0.3s ease;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-lighter);
    margin-bottom: 5px;
}

.portfolio-category {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

/* SEO Tool */
.seo-feature {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.seo-feature i {
    color: var(--accent-purple);
    margin-right: 10px;
    margin-top: 5px;
}

section#contact input::placeholder, section#contact textarea::placeholder {
    color: var(--accent-cyan);
}

footer {
    background-color: var(--bg-darker);
    padding: 30px 0;
    text-align: center;
}

.footer-text {
    color: var(--text-gray);
    margin-bottom: 0;
}

.mobile-contact-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    color: var(--bg-dark);
    font-size: 1.5rem;
    text-align: center;
    line-height: 60px;
    box-shadow: 0 5px 15px rgba(92, 225, 230, 0.4);
    transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
    transform: scale(1.1);
    background-color: var(--text-lighter);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .btn-primary-custom, .btn-secondary-custom {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .btn-primary-custom {
        margin-right: 0;
    }
    
    .mobile-contact-btn {
        display: block;
    }

}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
}

a.btn-primary-custom:hover {
    color: var(--bg-dark);
}



#seo-tool {
    scroll-margin-top: 50px;
}

.seo-feature h5 {
  color: var(--text-lighter);
  margin-bottom: 4px;
}
.seo-feature .small {
  color: var(--text-gray);
  line-height: 1.35;
}

.seo-visual {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(21, 24, 29, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.seo-visual__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.22;
  transform: translateZ(0);
}

.seo-axis {
  position: absolute;
  left: 44px;
  bottom: 44px;
  background: rgba(92, 225, 230, 0.35);
}

.seo-axis--x {
  height: 2px;
  right: 34px;
}
.seo-axis--x::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 10px solid rgba(92, 225, 230, 0.6);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.seo-axis--y {
  width: 2px;
  top: 34px;
}
.seo-axis--y::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 10px solid rgba(92, 225, 230, 0.6);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.seo-visual__path {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
}

.seo-node {
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
}

.seo-node__ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  opacity: 0.6;
}

.seo-node__icon {
  color: rgba(255,255,255,0.95);
  font-size: 26px;
  text-shadow: 0 0 18px rgba(255,255,255,0.25);
}

.seo-node--star {
  left: 26%;
  top: 72%;
  background: radial-gradient(circle at 30% 30%, rgba(181, 158, 255, 0.40), rgba(21, 24, 29, 0.55));
  box-shadow:
    0 0 0 6px rgba(181, 158, 255, 0.06),
    0 0 28px rgba(181, 158, 255, 0.35),
    0 0 70px rgba(181, 158, 255, 0.18);
}

.seo-node--chart {
  left: 50%;
  top: 52%;
  background: radial-gradient(circle at 30% 30%, rgba(92, 225, 230, 0.38), rgba(21, 24, 29, 0.55));
  box-shadow:
    0 0 0 6px rgba(92, 225, 230, 0.06),
    0 0 28px rgba(92, 225, 230, 0.35),
    0 0 70px rgba(92, 225, 230, 0.18);
}

.seo-node--check {
  left: 76%;
  top: 32%;
  background: radial-gradient(circle at 30% 30%, rgba(61, 220, 151, 0.35), rgba(21, 24, 29, 0.55));
  box-shadow:
    0 0 0 6px rgba(61, 220, 151, 0.06),
    0 0 28px rgba(61, 220, 151, 0.33),
    0 0 70px rgba(61, 220, 151, 0.16);
}

.seo-visual,
.seo-visual * {
  will-change: transform, opacity, filter;
}

.seo-visual__grid {
  animation: seoGridFlicker 6.5s ease-in-out infinite;
}

@keyframes seoGridFlicker {
  0%   { opacity: 0.18; filter: brightness(1); }
  35%  { opacity: 0.24; filter: brightness(1.05); }
  60%  { opacity: 0.19; filter: brightness(1); }
  100% { opacity: 0.22; filter: brightness(1.03); }
}

.seo-visual__path {
  animation: seoPathPulse 4.2s ease-in-out infinite;
}

@keyframes seoPathPulse {
  0%   { opacity: 0.70; filter: drop-shadow(0 0 0 rgba(92,225,230,0)); }
  50%  { opacity: 0.95; filter: drop-shadow(0 0 10px rgba(92,225,230,0.18)); }
  100% { opacity: 0.80; filter: drop-shadow(0 0 0 rgba(92,225,230,0)); }
}

.seo-node {
  animation: seoNodeGlow 3.8s ease-in-out infinite;
}

@keyframes seoNodeGlow {
  0%   { transform: translate(-50%, -50%) scale(1);    filter: brightness(1); }
  50%  { transform: translate(-50%, -50%) scale(1.03); filter: brightness(1.08); }
  100% { transform: translate(-50%, -50%) scale(1);    filter: brightness(1.02); }
}

.seo-node__ring {
  animation: seoRingBreath 2.9s ease-in-out infinite;
}

@keyframes seoRingBreath {
  0%   { opacity: 0.40; transform: scale(1); }
  50%  { opacity: 0.70; transform: scale(1.04); }
  100% { opacity: 0.55; transform: scale(1.01); }
}

.seo-node--star {
  animation:
    seoNodeGlow 3.8s ease-in-out infinite,
    seoFloatStar 7.4s ease-in-out infinite;
}
.seo-node--chart {
  animation:
    seoNodeGlow 3.8s ease-in-out infinite,
    seoFloatChart 8.6s ease-in-out infinite;
}
.seo-node--check {
  animation:
    seoNodeGlow 3.8s ease-in-out infinite,
    seoFloatCheck 9.2s ease-in-out infinite;
}

@keyframes seoFloatStar {
  0%   { transform: translate(-50%, -50%) translate(0, 0); }
  35%  { transform: translate(-50%, -50%) translate(6px, -5px); }
  70%  { transform: translate(-50%, -50%) translate(-4px, 7px); }
  100% { transform: translate(-50%, -50%) translate(0, 0); }
}

@keyframes seoFloatChart {
  0%   { transform: translate(-50%, -50%) translate(0, 0); }
  30%  { transform: translate(-50%, -50%) translate(-7px, -3px); }
  65%  { transform: translate(-50%, -50%) translate(5px, 8px); }
  100% { transform: translate(-50%, -50%) translate(0, 0); }
}

@keyframes seoFloatCheck {
  0%   { transform: translate(-50%, -50%) translate(0, 0); }
  40%  { transform: translate(-50%, -50%) translate(8px, 4px); }
  75%  { transform: translate(-50%, -50%) translate(-6px, -7px); }
  100% { transform: translate(-50%, -50%) translate(0, 0); }
}

.seo-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(92, 225, 230, 0.08),
    transparent
  );
  opacity: 0.0;
  transform: translateY(-120px);
  animation: seoScan 6.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes seoScan {
  0%   { opacity: 0;   transform: translateY(-120px); }
  12%  { opacity: .65; transform: translateY(40px); }
  55%  { opacity: .35; transform: translateY(250px); }
  75%  { opacity: 0;   transform: translateY(520px); }
  100% { opacity: 0;   transform: translateY(520px); }
}

.seo-visual__grid { z-index: 1; }
.seo-axis,
.seo-visual__path { z-index: 3; }
.seo-node         { z-index: 4; }
.seo-visual__caption { z-index: 5; }

@media (prefers-reduced-motion: reduce) {
  .seo-visual__grid,
  .seo-visual__path,
  .seo-node,
  .seo-node__ring,
  .seo-visual::after {
    animation: none !important;
  }
}

.seo-visual__path path {
  stroke-dasharray: 10 10;
  animation: seoDashMove 2.6s linear infinite;
}

@keyframes seoDashMove {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -40; }
}

.seo-node {
  cursor: default;
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
  outline: none;
}

.seo-node:focus-visible {
  box-shadow:
    0 0 0 3px rgba(92, 225, 230, 0.25),
    0 0 0 8px rgba(92, 225, 230, 0.08);
}

.seo-node:hover,
.seo-node:focus-visible {
  transform: translate(-50%, -50%) scale(1.08);
  filter: brightness(1.12);
}

.seo-node:hover .seo-node__icon,
.seo-node:focus-visible .seo-node__icon {
  text-shadow:
    0 0 16px rgba(255,255,255,0.32),
    0 0 28px rgba(255,255,255,0.18);
}

.seo-node::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  max-width: 260px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(27, 30, 35, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  line-height: 1.25;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 10;
}

.seo-node::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(6px);
  border-top: 8px solid rgba(27, 30, 35, 0.92);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 10;
}

.seo-node:hover::after,
.seo-node:hover::before,
.seo-node:focus-visible::after,
.seo-node:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 992px) {
  .seo-node::after,
  .seo-node::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .seo-visual__path path { animation: none !important; }
  .seo-node { transition: none !important; }
}




#ai-solutions {
    scroll-margin-top: 50px;
}

#ai-solutions .lead {
  color: var(--text-gray);
}

.ai-card {
  background: linear-gradient(180deg, rgba(27, 30, 35, 0.92), rgba(21, 24, 29, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.ai-card:hover {
  transform: translateY(-8px);
  border-color: rgba(92, 225, 230, 0.35);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
}

.ai-card__top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.ai-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(27, 30, 35, 0.6);
  flex: 0 0 auto;
}

.ai-card__icon i {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 0 16px rgba(255,255,255,0.12);
}

.ai-card__icon--cyan {
  box-shadow: 0 0 26px rgba(92, 225, 230, 0.18);
  border-color: rgba(92, 225, 230, 0.22);
}

.ai-card__icon--purple {
  box-shadow: 0 0 26px rgba(181, 158, 255, 0.18);
  border-color: rgba(181, 158, 255, 0.22);
}

.ai-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-lighter);
  line-height: 1.25;
}

.ai-card__meta {
  margin-top: 6px;
  font-size: 0.9rem;
  color: rgba(204, 204, 204, 0.85);
}

.ai-card__text {
  margin: 14px 0 16px;
  color: var(--text-gray);
  line-height: 1.55;
}

.ai-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.ai-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.90);
  background: rgba(36, 41, 47, 0.65);
  border: 1px solid rgba(255,255,255,0.08);
}

.ai-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.ai-list__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: rgba(224,224,224,0.92);
}

.ai-list__item i {
  color: var(--accent-purple);
  margin-top: 5px;
}

.ai-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

@media (max-width: 768px) {
  .ai-card {
    padding: 22px;
  }
  .ai-card__actions .btn {
    width: 100%;
  }
}



.design-panel {
  background: linear-gradient(180deg, rgba(27, 30, 35, 0.92), rgba(21, 24, 29, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
}

.design-lead {
  color: var(--text-gray);
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 3rem !important;
}

.design-points {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.design-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(224, 224, 224, 0.95);
}

.design-point i {
  color: var(--accent-cyan);
  opacity: 0.95;
  margin-top: 1px;
}

.design-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.design-visual {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(21, 24, 29, 0.35);
  border: 1px solid rgba(255,255,255,0.06);
}

.design-visual__glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.30;
}

.design-visual__glow--cyan {
  left: -40px;
  top: -40px;
  background: rgba(92, 225, 230, 0.75);
}

.design-visual__glow--purple {
  right: -60px;
  bottom: -60px;
  background: rgba(181, 158, 255, 0.75);
}

.design-visual__card {
  position: absolute;
  left: 18px;
  right: 18px;
  border-radius: 14px;
  background: rgba(27, 30, 35, 0.65);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
  padding: 14px;
}

.design-visual__card--top { top: 18px; }
.design-visual__card--mid { top: 122px; }
.design-visual__card--bot { bottom: 18px; }

.design-visual__bar {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.design-visual__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
}

.design-visual__line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  margin-bottom: 10px;
}

.design-visual__kpi {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(36, 41, 47, 0.55);
  border: 1px solid rgba(255,255,255,0.07);
}
.design-visual__kpi + .design-visual__kpi { margin-top: 10px; }

.design-visual__kpi i { color: var(--accent-purple); }

.design-visual__pill {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  margin-bottom: 10px;
}
.design-visual__pill:last-child { margin-bottom: 0; }

.w-80 { width: 80%; }
.w-70 { width: 70%; }
.w-60 { width: 60%; }

@media (max-width: 768px) {
  .design-panel { padding: 22px; }
  .design-actions .btn { width: 100%; }
}

.design-visual {
  transition: border-color 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.design-visual__glow {
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

.design-visual__card {
  transition: top 260ms ease, bottom 260ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.design-visual__kpi {
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.design-panel:hover .design-visual {
  border-color: rgba(92, 225, 230, 0.18);
  box-shadow: 0 22px 70px rgba(0,0,0,0.35);
  filter: brightness(1.04);
}

.design-panel:hover .design-visual__glow {
  opacity: 0.44;
  filter: blur(26px);
}

.design-panel:hover .design-visual__card--top {
  top: 30px; /* было 18px */
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 14px 46px rgba(0,0,0,0.30);
}

.design-panel:hover .design-visual__card--mid {
  top: 132px; /* было 122px */
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 14px 46px rgba(0,0,0,0.30);
}

.design-panel:hover .design-visual__card--bot {
  bottom: 30px; /* было 18px */
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 14px 46px rgba(0,0,0,0.30);
}

.design-panel:hover .design-visual__kpi {
  background: rgba(36, 41, 47, 0.70);
  border-color: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}

.design-panel:hover .design-visual__card--top .design-visual__line {
  opacity: 1;
}

.design-panel:hover .design-visual::after {
  opacity: 0.9;
  animation-duration: 5.6s;
}

@media (prefers-reduced-motion: reduce) {
  .design-panel:hover .design-visual__card--top,
  .design-panel:hover .design-visual__card--mid,
  .design-panel:hover .design-visual__card--bot {
    top: auto;
    bottom: auto;
  }
}












#opencart-template {
  scroll-margin-top: 50px;
}

.oc-showcase {
  position: relative;
  padding: 42px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(92, 225, 230, 0.07),
      transparent 34%
    ),
    radial-gradient(
      circle at 95% 90%,
      rgba(181, 158, 255, 0.08),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(27, 30, 35, 0.97),
      rgba(21, 24, 29, 0.94)
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.oc-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  mask-image: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.5),
    transparent
  );
}

.oc-showcase > .row {
  position: relative;
  z-index: 2;
}

.oc-showcase__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--accent-cyan);
  background: rgba(92, 225, 230, 0.07);
  border: 1px solid rgba(92, 225, 230, 0.16);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.oc-showcase__label i {
  font-size: 0.8rem;
}

.oc-showcase__title {
  max-width: 570px;
  margin: 0 0 18px;
  color: var(--text-lighter);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 700;
  line-height: 1.15;
}

.oc-showcase__text {
  max-width: 610px;
  margin-bottom: 22px;
  color: var(--text-gray);
  font-size: 1.03rem;
  line-height: 1.65;
}

.oc-showcase__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.oc-showcase__chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(36, 41, 47, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.oc-showcase__list {
  display: grid;
  gap: 11px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.oc-showcase__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(224, 224, 224, 0.94);
  line-height: 1.45;
}

.oc-showcase__list i {
  flex: 0 0 auto;
  margin-top: 5px;
  color: var(--accent-purple);
}

.oc-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.oc-showcase__actions .btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
}

.oc-browser {
  position: relative;
  min-height: 465px;
  padding: 28px 12px;
}

.oc-browser__glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(55px);
  opacity: 0.2;
}

.oc-browser__glow--cyan {
  top: -25px;
  left: -15px;
  background: var(--accent-cyan);
  animation: ocGlowCyan 7s ease-in-out infinite;
}

.oc-browser__glow--purple {
  right: -10px;
  bottom: -25px;
  background: var(--accent-purple);
  animation: ocGlowPurple 8.5s ease-in-out infinite;
}

.oc-browser__window {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 17px;
  background: #f4f6f8;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 28px 75px rgba(0, 0, 0, 0.48),
    0 0 45px rgba(92, 225, 230, 0.07);
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  animation: ocBrowserFloat 7s ease-in-out infinite;
}

.oc-showcase:hover .oc-browser__window {
  transform: perspective(1100px) rotateY(0) rotateX(0) translateY(-4px);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.56),
    0 0 55px rgba(92, 225, 230, 0.11);
}

.oc-browser__toolbar {
  display: flex;
  align-items: center;
  gap: 13px;
  height: 42px;
  padding: 0 13px;
  background: #252a31;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.oc-browser__dots {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
}

.oc-browser__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.oc-browser__dots span:first-child {
  background: rgba(255, 115, 115, 0.8);
}

.oc-browser__dots span:nth-child(2) {
  background: rgba(240, 205, 92, 0.8);
}

.oc-browser__dots span:nth-child(3) {
  background: rgba(92, 225, 160, 0.8);
}

.oc-browser__address {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1 1 auto;
  height: 25px;
  padding: 0 10px;
  overflow: hidden;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(10, 12, 15, 0.38);
  font-size: 0.68rem;
  white-space: nowrap;
}

.oc-browser__address i {
  color: rgba(92, 225, 230, 0.75);
  font-size: 0.58rem;
}

.oc-browser__toolbar-icon {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.oc-browser__page {
  color: #24272b;
  background: #f4f6f8;
}

.oc-browser__header {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  background: #ffffff;
  border-bottom: 1px solid #e9edf1;
}

.oc-browser__logo {
  display: flex;
  align-items: center;
  gap: 7px;
}

.oc-browser__logo-icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  color: #17393b;
  background: #5ce1e6;
  font-size: 0.72rem;
}

.oc-browser__logo-text {
  width: 55px;
  height: 7px;
  border-radius: 10px;
  background: #2b3035;
}

.oc-browser__nav {
  display: flex;
  gap: 13px;
  margin-left: auto;
}

.oc-browser__nav span {
  width: 31px;
  height: 5px;
  border-radius: 10px;
  background: #cbd2d9;
}

.oc-browser__nav span:nth-child(2) {
  width: 38px;
}

.oc-browser__cart {
  position: relative;
  margin-left: 17px;
  color: #363c42;
  font-size: 0.8rem;
}

.oc-browser__cart span {
  position: absolute;
  top: -8px;
  right: -9px;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  color: #172023;
  background: #5ce1e6;
  font-size: 0.48rem;
  font-weight: 700;
}

.oc-browser__hero {
  display: flex;
  align-items: center;
  min-height: 150px;
  padding: 20px 23px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(181, 158, 255, 0.7),
      transparent 33%
    ),
    linear-gradient(120deg, #252a31, #171b20);
}

.oc-browser__hero-content {
  position: relative;
  z-index: 2;
  flex: 0 0 59%;
}

.oc-browser__hero-label {
  width: 62px;
  height: 5px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: rgba(92, 225, 230, 0.85);
}

.oc-browser__hero-title {
  width: 93%;
  height: 12px;
  margin-bottom: 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
}

.oc-browser__hero-title--short {
  width: 70%;
}

.oc-browser__hero-text {
  width: 82%;
  height: 6px;
  margin: 13px 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.28);
}

.oc-browser__hero-button {
  width: 66px;
  height: 20px;
  border-radius: 999px;
  background: #5ce1e6;
  box-shadow: 0 5px 16px rgba(92, 225, 230, 0.2);
}

.oc-browser__product-main {
  position: relative;
  flex: 1 1 auto;
  min-height: 115px;
}

.oc-browser__product-shape {
  position: absolute;
  top: 2px;
  right: 17%;
  width: 69px;
  height: 103px;
  border-radius: 20px 20px 31px 31px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.95),
      rgba(195, 206, 218, 0.82)
    );
  transform: rotate(9deg);
  box-shadow:
    inset -8px -10px 18px rgba(80, 86, 96, 0.16),
    0 15px 25px rgba(0, 0, 0, 0.23);
}

.oc-browser__product-shape::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 22px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 5px solid rgba(37, 42, 49, 0.8);
}

.oc-browser__product-shape::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 15px;
  width: 33px;
  height: 5px;
  border-radius: 10px;
  background: rgba(37, 42, 49, 0.28);
}

.oc-browser__product-shadow {
  position: absolute;
  right: 7%;
  bottom: -2px;
  width: 110px;
  height: 21px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  filter: blur(10px);
}

.oc-browser__catalog {
  padding: 17px;
  background: #f5f7f9;
}

.oc-browser__catalog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.oc-browser__catalog-title {
  width: 91px;
  height: 8px;
  margin-bottom: 6px;
  border-radius: 10px;
  background: #363c42;
}

.oc-browser__catalog-subtitle {
  width: 60px;
  height: 5px;
  border-radius: 10px;
  background: #bac2ca;
}

.oc-browser__catalog-filter {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 8px;
  color: #646d75;
  background: #ffffff;
  border: 1px solid #e3e8ed;
  font-size: 0.64rem;
}

.oc-browser__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.oc-product-card {
  position: relative;
  min-width: 0;
  padding: 9px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e8edf1;
  box-shadow: 0 5px 14px rgba(39, 45, 52, 0.05);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.oc-showcase:hover .oc-product-card:nth-child(1) {
  transform: translateY(-3px);
}

.oc-showcase:hover .oc-product-card:nth-child(2) {
  transform: translateY(-5px);
}

.oc-showcase:hover .oc-product-card:nth-child(3) {
  transform: translateY(-2px);
}

.oc-product-card__badge {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 2;
  padding: 2px 4px;
  border-radius: 4px;
  color: #143335;
  background: #5ce1e6;
  font-size: 0.38rem;
  font-weight: 800;
}

.oc-product-card__badge--sale {
  color: #352e47;
  background: #b59eff;
}

.oc-product-card__image {
  display: grid;
  place-items: center;
  height: 58px;
  margin-bottom: 9px;
  border-radius: 8px;
  font-size: 1.25rem;
}

.oc-product-card__image--one {
  color: #40515a;
  background: linear-gradient(145deg, #dbeef0, #eef7f8);
}

.oc-product-card__image--two {
  color: #554d74;
  background: linear-gradient(145deg, #e6e0f4, #f5f2fb);
}

.oc-product-card__image--three {
  color: #5b6470;
  background: linear-gradient(145deg, #dde2e7, #f4f6f8);
}

.oc-product-card__name {
  width: 90%;
  height: 5px;
  margin-bottom: 5px;
  border-radius: 10px;
  background: #8e969e;
}

.oc-product-card__name--short {
  width: 61%;
  background: #ccd2d8;
}

.oc-product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
}

.oc-product-card__price {
  width: 35px;
  height: 7px;
  border-radius: 10px;
  background: #343a40;
}

.oc-product-card__button {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 7px;
  color: #17383a;
  background: #5ce1e6;
  font-size: 0.48rem;
}

.oc-browser__status {
  position: absolute;
  right: -2px;
  bottom: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(21, 24, 29, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
  font-size: 0.72rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.oc-browser__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5ce1a0;
  box-shadow: 0 0 13px rgba(92, 225, 160, 0.55);
}

@keyframes ocBrowserFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -6px;
  }
}

@keyframes ocGlowCyan {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.16;
  }

  50% {
    transform: translate(14px, 12px) scale(1.08);
    opacity: 0.25;
  }
}

@keyframes ocGlowPurple {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.15;
  }

  50% {
    transform: translate(-12px, -9px) scale(1.09);
    opacity: 0.24;
  }
}

@media (max-width: 991.98px) {
  .oc-showcase {
    padding: 30px;
  }

  .oc-browser {
    max-width: 650px;
    min-height: auto;
    margin: 0 auto;
  }

  .oc-browser__window {
    transform: none;
  }

  .oc-showcase:hover .oc-browser__window {
    transform: translateY(-3px);
  }
}

@media (max-width: 767.98px) {
  .oc-showcase {
    padding: 23px;
    border-radius: 16px;
  }

  .oc-showcase__text {
    font-size: 0.96rem;
  }

  .oc-showcase__actions .btn {
    width: 100%;
    margin-bottom: 0;
  }

  .oc-browser {
    padding: 14px 0 26px;
  }

  .oc-browser__nav {
    display: none;
  }

  .oc-browser__hero {
    min-height: 130px;
    padding: 17px;
  }

  .oc-browser__product-shape {
    right: 8%;
    transform: scale(0.85) rotate(9deg);
  }

  .oc-browser__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .oc-product-card {
    padding: 6px;
  }

  .oc-product-card__image {
    height: 44px;
    font-size: 0.95rem;
  }

  .oc-browser__status {
    right: 8px;
    bottom: -2px;
  }
}

@media (max-width: 480px) {
  .oc-browser__address span {
    display: none;
  }

  .oc-browser__address {
    justify-content: center;
  }

  .oc-browser__hero-content {
    flex-basis: 64%;
  }

  .oc-browser__product-shape {
    right: -4px;
  }

  .oc-browser__catalog {
    padding: 11px;
  }

  .oc-product-card__image {
    height: 38px;
  }

  .oc-product-card__badge {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oc-browser__window,
  .oc-browser__glow--cyan,
  .oc-browser__glow--purple {
    animation: none !important;
  }

  .oc-browser__window,
  .oc-product-card {
    transition: none !important;
  }
}





/* =========================================================
   AI card: wide / MCP-ready product filter
   ========================================================= */

.ai-card--wide {
  position: relative;
  overflow: hidden;
}

.ai-card--wide::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(92, 225, 230, 0.08);
  filter: blur(70px);
  pointer-events: none;
}

.ai-card--wide::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -220px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(181, 158, 255, 0.08);
  filter: blur(80px);
  pointer-events: none;
}

.ai-card--wide > .row {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
}

.ai-card__wide-main,
.ai-card__wide-side {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ai-card__wide-side {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-card__wide-side .ai-list {
  margin-bottom: 24px;
}

.ai-card__wide-side .ai-card__actions {
  margin-top: auto;
}

/* Схема работы */
.ai-flow {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.ai-flow__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 105px;
  padding: 14px 10px;
  text-align: center;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(36, 41, 47, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.ai-flow__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--accent-cyan);
  background: rgba(92, 225, 230, 0.08);
  border: 1px solid rgba(92, 225, 230, 0.16);
  box-shadow: 0 0 20px rgba(92, 225, 230, 0.08);
}

.ai-flow__label {
  font-size: 0.82rem;
  line-height: 1.3;
}

.ai-flow__arrow {
  flex: 0 0 auto;
  align-self: center;
  color: rgba(181, 158, 255, 0.7);
  font-size: 0.8rem;
}

.ai-card--wide:hover .ai-flow__item {
  border-color: rgba(92, 225, 230, 0.15);
}

.ai-card--wide:hover .ai-flow__item:nth-of-type(1) {
  transform: translateY(-2px);
}

.ai-card--wide:hover .ai-flow__item:nth-of-type(2) {
  transform: translateY(-4px);
}

.ai-card--wide:hover .ai-flow__item:nth-of-type(3) {
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .ai-card__wide-side {
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }
}

@media (max-width: 575.98px) {
  .ai-flow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ai-flow__item {
    min-height: 76px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 12px 14px;
  }

  .ai-flow__arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}
/* End */
/* /bitrix/templates/rogazinsky/template_styles.css?178531014540818 */
