:root {
  --blue-deep: #0a3cff;
  --blue-main: #1f6cff;
  --cyan-main: #2fd3e5;
  --cyan-soft: #7ae6f0;
  --green-main: #1fbf75;
  --white: #ffffff;
  --text-main: #0b2c4d;
  --shadow-soft: 0 10px 40px rgba(31,108,255,0.18);
  --radius-lg: 32px;
  --text-muted: #4a6f8a;
  --grad: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 50%, #1fbf75 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--text-main);
  background: #f9fcff;
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-top {
  background: var(--blue-deep);
  color: white;
  font-size: 0.95rem;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  transition: transform 0.4s ease;
}

.header-top.scrolled {
  transform: translateY(-100%);
}

.header-contact {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}

.header-contact a,
.header-contact span {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(10,60,255,0.08);
  transition: all 0.4s ease;
}

.header-main.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 6px 24px rgba(10,60,255,0.12);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  padding-top: 44px;
}

.header-main.scrolled .header-content {
  padding-top: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--blue-deep);
  font-size: 1.7rem;
  font-weight: 800;
}

.logo-icon { font-size: 2.3rem; }

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;           
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

.desktop-nav a:hover { color: var(--cyan-main); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--blue-main);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 60, 255, 0.98);
  color: white;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active { transform: translateY(0); }

.mobile-menu-header {
  padding: 20px 30px;
  display: flex;
  justify-content: flex-end;
}

.close-btn {
  background: none;
  border: none;
  font-size: 70px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.mobile-nav a {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-actions {
  padding: 0 30px 20px;
  text-align: center;
}

.mobile-callback-btn {
  background: transparent;
  border: 2px solid #fff0a0;
  color: #fff0a0;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 16px;
  font-size: 1.1rem;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
}

.mobile-contacts {
  padding: 50px 30px 80px;
  text-align: center;
  font-size: 1.3rem;
  opacity: 0.92;
}

.mobile-contacts a, .mobile-contacts span {
  display: block;
  margin: 14px 0;
  color: white;
}

.hero {
  min-height: 100vh;
  background: url('/userfiles/images/burenie/hero-bg.webp') center/cover no-repeat;
  position: relative;
  color: white;
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,60,255,0.72) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,40,20,0.60) 100%
  );
  z-index: 1;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: var(--cyan-main);
  top: -150px; left: -150px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: var(--blue-main);
  bottom: -100px; right: 10%;
  animation-delay: 3s;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: var(--green-main);
  top: 30%; right: 5%;
  animation-delay: 1.5s;
}

@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  bottom: -20px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(47,211,229,0.5);
  animation: particleRise linear infinite;
}
.hero-particle:nth-child(1)  { left: 5%;  animation-duration: 7s;  animation-delay: 0s;   width:4px; height:4px; }
.hero-particle:nth-child(2)  { left: 12%; animation-duration: 9s;  animation-delay: 1s;   }
.hero-particle:nth-child(3)  { left: 22%; animation-duration: 6s;  animation-delay: 2.5s; width:8px; height:8px; background:rgba(31,191,117,0.4);}
.hero-particle:nth-child(4)  { left: 35%; animation-duration: 11s; animation-delay: 0.5s; }
.hero-particle:nth-child(5)  { left: 50%; animation-duration: 8s;  animation-delay: 3s;   width:4px; height:4px; }
.hero-particle:nth-child(6)  { left: 65%; animation-duration: 10s; animation-delay: 1.5s; background:rgba(31,108,255,0.4); }
.hero-particle:nth-child(7)  { left: 78%; animation-duration: 7.5s;animation-delay: 0.8s; width:5px; height:5px; }
.hero-particle:nth-child(8)  { left: 90%; animation-duration: 9.5s;animation-delay: 2s;   background:rgba(31,191,117,0.5);}

@keyframes particleRise {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

.hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(47,211,229,0.18);
  border: 1px solid rgba(47,211,229,0.45);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cyan-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;

  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s cubic-bezier(0.34,1.56,0.64,1) 0.1s forwards;
}
.hero-badge i { font-size: 1rem; color: var(--cyan-main); }

.hero-text h1 {
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
  background: linear-gradient(130deg, #fff 0%, #e0faff 40%, #b8f5e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.3));

  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.75s cubic-bezier(0.34,1.56,0.64,1) 0.25s forwards;
}

.hero-text h1 .h1-accent {
  background: linear-gradient(90deg, #2fd3e5, #1fbf75);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text .subtitle {
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.65;
  max-width: 520px;
  opacity: 0;
  color: rgba(255,255,255,0.88);
  transform: translateY(24px);
  animation: heroFadeUp 0.7s cubic-bezier(0.34,1.56,0.64,1) 0.42s forwards;
  margin-bottom: 36px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 16px 18px;
  transition: all 0.35s ease;
  cursor: default;

  opacity: 0;
  transform: translateY(22px) scale(0.95);
}
.hero-feature:nth-child(1) { animation: heroFadeUp 0.65s cubic-bezier(0.34,1.56,0.64,1) 0.55s forwards; }
.hero-feature:nth-child(2) { animation: heroFadeUp 0.65s cubic-bezier(0.34,1.56,0.64,1) 0.68s forwards; }
.hero-feature:nth-child(3) { animation: heroFadeUp 0.65s cubic-bezier(0.34,1.56,0.64,1) 0.81s forwards; }
.hero-feature:nth-child(4) { animation: heroFadeUp 0.65s cubic-bezier(0.34,1.56,0.64,1) 0.94s forwards; }

.hero-feature:hover {
  background: rgba(47,211,229,0.18);
  border-color: rgba(47,211,229,0.45);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(47,211,229,0.2);
}

.hero-feature-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
  color: #fff;
  box-shadow: 0 6px 18px rgba(47,211,229,0.35);
}

.hero-feature-text {}
.hero-feature-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.hero-feature-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;

  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s cubic-bezier(0.34,1.56,0.64,1) 1.05s forwards;
}

.hero-btn-primary {
  display: inline-flex;
  width: 49%;
  align-items: center;
  gap: 10px;
  background: var(--grad);
  color: white;
  border: none;
  padding: 17px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(47,211,229,0.4);
  transition: all 0.35s ease;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.hero-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.hero-btn-primary:hover::after { transform: translateX(0); }
.hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(47,211,229,0.55);
}

.hero-btn-outline {
  display: inline-flex;
  width: 49%;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.45);
  padding: 17px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  white-space: nowrap;
}
.hero-btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.hero-image-wrapper {
  position: relative;

  opacity: 0;
  transform: translateX(40px) scale(0.96);
  animation: heroSlideLeft 0.85s cubic-bezier(0.34,1.56,0.64,1) 0.35s forwards;
}

.hero-car {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.08);
  display: block;
}

.hero-image-badge {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  animation: heroFadeUp 0.7s cubic-bezier(0.34,1.56,0.64,1) 1.1s both;
  opacity: 0;
}
.image-badge-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(47,211,229,0.4);
}
.image-badge-text strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}
.image-badge-text span {
  font-size: 0.78rem;
  color: #4a6f8a;
  font-weight: 500;
}

.heder-water-seal {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 140px; height: 155px;
  object-fit: contain;
  pointer-events: none;
  animation: sealSpin 20s linear infinite;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
  opacity: 0;
  animation: sealAppear 0.6s ease 1.3s forwards, sealSpin 20s linear 2s infinite;
}
@keyframes sealSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes sealAppear {
  from { opacity: 0; transform: scale(0.5) rotate(-30deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

.hero-calc-fullwidth {
  grid-column: 1 / -1;
  margin-top: 20px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.15);
  color: var(--text-main);

  opacity: 0;
  transform: translateY(36px);
  animation: heroFadeUp 0.75s cubic-bezier(0.34,1.56,0.64,1) 1.2s forwards;
}

.hero-calc-fullwidth h3 {
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 28px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

.form-group {
  flex: 1;
  min-width: 200px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-main);
}
.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #d0e0ff;
  border-radius: 16px;
  font-size: 1rem;
  color: var(--text-main);
  background: #f7faff;
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus {
  border-color: var(--cyan-main);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47,211,229,0.12);
}

.hero-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad);
  color: white;
  border: none;
  padding: 15px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(47,211,229,0.4);
  transition: all 0.35s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(47,211,229,0.55);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroSlideLeft {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan-main);
  position: relative;
  flex-shrink: 0;
}
.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--cyan-main);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 1100px) {
  .hero-content { gap: 40px; }
  .hero-car { height: auto; }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-car { height: auto; }
  .hero-image-badge { left: 0; }
  .hero-calc-fullwidth { padding: 32px 28px; }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .hero-text h1 { font-size: clamp(26px, 6vw, 42px); }
  .hero-car { height: auto; }
  .hero-features { gap: 10px; }
  .hero-feature { padding: 12px 14px; gap: 10px; }
  .hero-feature-icon { width: 38px; height: 38px; font-size: 0.95rem; border-radius: 10px; }
  .hero-feature-text strong { font-size: 0.85rem; }
  .hero-feature-text span { display: none; }
  .hero-buttons { gap: 12px; }
  .hero-btn-primary, .hero-btn-outline { padding: 15px 22px; font-size: 0.95rem; }
  .heder-water-seal { width: 110px; height: 120px; top: -10px; right: -10px; }
  .hero-calc-fullwidth { padding: 28px 20px; }
  .hero-calc-fullwidth h3 { font-size: 1.2rem; }
  .form-horizontal { flex-direction: column; gap: 14px; }
  .hero-form-btn { width: 100%; justify-content: center; }
  .hero-image-badge { display: none; }
}

@media (max-width: 480px) {
  .hero { padding-top: 90px; }
  .hero-text h1 { font-size: clamp(22px, 7vw, 32px); line-height: 1.15; }
  .hero-text .subtitle { font-size: 0.97rem; }
  .hero-badge { font-size: 0.78rem; padding: 7px 14px; }
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .hero-feature { padding: 11px 12px; gap: 8px; border-radius: 14px; }
  .hero-feature-icon { width: 34px; height: 34px; font-size: 0.85rem; border-radius: 9px; }
  .hero-feature-text strong { font-size: 0.80rem; }
  .hero-buttons { flex-direction: column; }
  .hero-btn-primary, .hero-btn-outline { width: 100%; justify-content: center; }
  .hero-car { height: auto; }
  .heder-water-seal { width: 90px; height: 100px; }
  .hero-calc-fullwidth { padding: 22px 16px; border-radius: 20px; }
}

@media (max-width: 360px) {
  .hero { padding-top: 85px; }
  .hero-text h1 { font-size: 22px; }
  .hero-badge { font-size: 0.72rem; gap: 7px; padding: 6px 12px; }
  .hero-features { gap: 7px; }
  .hero-feature { padding: 10px 10px; }
  .hero-feature-text strong { font-size: 0.76rem; }
  .hero-car { height: auto; }
}

.btn {
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 50%, #1fbf75 100%);
  color: white;
  border: none;
  padding: 16px 26px;
  font-size: 1.12rem;
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(47,211,229,0.35);
  transition: all 0.35s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(47,211,229,0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  box-shadow: none;
}

.btn-outline:hover {
  background: white;
  color: var(--blue-deep);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.btn-primary {
  background: linear-gradient(135deg, #1fbf75 0%, #2fd3e5 50%, #1f6cff 100%);
  border: none;
}

.btn-lg {
  padding: 18px 28px;
  font-size: 1.22rem;
  width: 240px;
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .header-main .header-content { padding-top: 16px !important; }
  .hero { padding-top: 80px; padding-bottom: 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 50px; }
  .hero-image-wrapper { height: 400px; }
  .hero-calc-fullwidth { margin-top: 40px; padding: 36px 24px; }
  .form-horizontal { flex-direction: column; gap: 18px; }

  .hero-feature {
    padding: 14px 12px;
    gap: 10px;
  }

  .hero-feature-icon {
    font-size: 1.5rem;
  }

  .hero-feature span {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 32px 0 48px;
  }
  .btn-lg {
    width: 100%;
    max-width: 380px;
  }
}

.mobile-menu {
  pointer-events: none;
  opacity: 0;
}

.mobile-menu.active {
  pointer-events: auto;
  opacity: 1;
}


@media (max-width: 1024px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 12px 0 !important;
  }

  .logo {
    font-size: 1.2rem;
    gap: 8px;
  }

  .logo-icon {
    font-size: 1.6rem;
  }

  .mobile-menu-btn {
    font-size: 1.8rem;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.15;
  }

  .subtitle {
    font-size: 1.05rem;
  }

  .hero-feature {
    padding: 14px 16px;
    gap: 10px;
  }

  .hero-feature-icon {
    font-size: 1.6rem;
  }

  .hero-feature span {
    font-size: 0.95rem;
  }

  .hero-image-wrapper {
    height: 260px;
  }

}

@media (max-width: 360px) {
	
	  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-feature {
    padding: 12px 10px;
  }

  .hero-feature span {
    font-size: 0.85rem;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 0.98rem;
  }

  .hero {
    padding-top: 65px;
  }

}

@media (max-width: 480px) {

  .hero {
    padding-top: 95px; 
  }

}

@media (max-width: 360px) {

  .hero {
    padding-top: 90px;
  }

}

@media (max-width: 768px) {

  .mobile-nav {
    gap: 22px; 
  }

  .mobile-nav a {
    font-size: 1.35rem; 
    font-weight: 600;
  }

  .mobile-contacts {
    font-size: 1rem; 
    padding: 30px 20px 50px;
  }

  .mobile-callback-btn {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .close-btn {
    font-size: 48px; 
  }

}

@media (max-width: 360px) {

  .mobile-nav a {
    font-size: 1.15rem;
  }

  .mobile-nav {
    gap: 18px;
  }

}
















.services {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #4fa3ff 0%, #2fd3e5 50%, #1fbf75 100%);
  overflow: hidden;
}

.services-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
  animation: sBlob 10s ease-in-out infinite;
}
.services-blob-1 {
  width: 700px; height: 700px;
  background: #0a3cff;
  top: -200px; left: -200px;
  animation-delay: 0s;
}
.services-blob-2 {
  width: 500px; height: 500px;
  background: #1fbf75;
  bottom: -150px; right: -100px;
  animation-delay: 4s;
}
.services-blob-3 {
  width: 350px; height: 350px;
  background: #2fd3e5;
  top: 40%; left: 50%;
  transform: translateX(-50%);
  animation-delay: 2s;
}
@keyframes sBlob {
  0%, 100% { transform: scale(1) translateY(0); }
  50%       { transform: scale(1.07) translateY(-20px); }
}

.decor-left, .decor-right {
  position: absolute;
  width: 600px; height: 100%;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.20;
  pointer-events: none;
  z-index: 1;
}
.decor-left  { left: -200px; transform: rotate(90deg);  background-image: url('/userfiles/images/burenie/water_left.webp'); }
.decor-right { right: -200px; transform: rotate(-90deg); background-image: url('/userfiles/images/burenie/water-right.webp'); }

.services .section-title {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
}
.services .section-title h2 {
  font-size: clamp(32px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  background: linear-gradient(90deg, #fff 0%, #e0faff 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.services .section-title p {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.97);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.16),
    0 0 0 1px rgba(255,255,255,0.12);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.45s ease;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5, #1fbf75);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}
.service-card:hover {
  transform: translateY(-14px) scale(1.015);
  box-shadow:
    0 40px 90px rgba(31,108,255,0.25),
    0 0 0 1px rgba(47,211,229,0.2);
}
.service-card:hover::before { opacity: 1; }

.service-card-inner {
  display: flex;
  flex: 1;
}

.card-image {
  flex: 0 0 38%;
  position: relative;
  overflow: hidden;
  background: #eef5ff;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover .card-image img {
  transform: scale(1.08);
}
.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(31,108,255,0.35) 0%,rgba(47,211,229,0.25) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover .card-image::after { opacity: 1; }

.card-content {
  flex: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.card-content h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 800;
  color: #0b2c4d;
  margin-bottom: 20px;
  line-height: 1.25;
}
.card-content h3::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5);
  margin-top: 10px;
  transition: width 0.4s ease;
}
.service-card:hover .card-content h3::after { width: 100%; }

.card-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex-grow: 1;
}
.card-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4a6f8a;
}

.drop-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1f6cff, #2fd3e5);
  color: #fff;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 3px 10px rgba(47,211,229,0.35);
  transition: transform 0.3s ease;
}
.service-card:hover .drop-icon { transform: scale(1.12); }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(208,224,255,0.6);
  flex-wrap: wrap;
}
.service-price {
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.services-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 50%, #1fbf75 100%);
  color: #fff;
  border: none;
  padding: 11px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(47,211,229,0.38);
  transition: all 0.35s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.services-card-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.services-card-btn:hover::after { transform: translateX(0); }
.services-card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(47,211,229,0.55);
}

.additional-info {
  margin-top: 64px;
  position: relative;
  z-index: 2;
}
.additional-info-inner {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.additional-info-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  flex-shrink: 0;
}
.additional-info-text {
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,0.93);
  line-height: 1.7;
}
.additional-info-text strong {
  color: #fff;
  font-weight: 700;
}

.s-anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.34,1.56,0.64,1);
  transition-duration: 0.75s;
  will-change: opacity, transform;
}
.s-anim.fade-up   { transform: translateY(50px); }
.s-anim.fade-left { transform: translateX(-50px); }
.s-anim.fade-right{ transform: translateX(50px); }
.s-anim.zoom-in   { transform: scale(0.85); transition-timing-function: cubic-bezier(0.34,1.56,0.64,1); }

.s-anim.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr; gap: 28px; }
  .card-image { flex: 0 0 36%; }
}

@media (max-width: 768px) {
  .services { padding: 80px 0 70px; }
  .services .section-title { margin-bottom: 48px; }
  .services-grid { gap: 22px; }

  .service-card-inner { flex-direction: column; }
  .card-image { flex: 0 0 auto; height: 220px; }
  .card-content { padding: 24px 22px; }
  .card-content h3 { font-size: 1.15rem; }

  .additional-info-inner {
    flex-direction: column;
    text-align: center;
    padding: 26px 24px;
    gap: 14px;
  }
  .additional-info-text { font-size: 0.92rem; }
}

@media (max-width: 480px) {
  .services { padding: 60px 0 55px; }
  .card-image { height: 185px; }
  .card-content { padding: 20px 18px; }
  .card-content h3 { font-size: 1.05rem; margin-bottom: 14px; }
  .card-content ul li { font-size: 0.88rem; }
  .drop-icon { width: 22px; height: 22px; font-size: 0.65rem; border-radius: 6px; }
  .card-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .services-card-btn { width: 100%; justify-content: center; }
  .service-price { font-size: 1.2rem; }
  .additional-info-inner { padding: 20px 16px; border-radius: 18px; }
  .additional-info-text { font-size: 0.85rem; }
  .additional-info-icon { width: 46px; height: 46px; font-size: 1.3rem; }
}

@media (max-width: 360px) {
  .services { padding: 50px 0 45px; }
  .card-image { height: 160px; }
  .card-content h3 { font-size: 0.98rem; }
  .card-content ul li { font-size: 0.84rem; gap: 8px; }
  .service-price { font-size: 1.1rem; }
}

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .process {
  position: relative;
  padding: 120px 0 100px;
  background: #f4f8ff;
  overflow: hidden;
}

.process-bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(31,108,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 80%, rgba(47,211,229,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(31,191,117,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.process-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  animation: pBlob 12s ease-in-out infinite;
}
.process-blob-1 {
  width: 500px; height: 500px;
  background: #1f6cff;
  top: -100px; left: -150px;
  animation-delay: 0s;
}
.process-blob-2 {
  width: 400px; height: 400px;
  background: #2fd3e5;
  bottom: -80px; right: -100px;
  animation-delay: 5s;
}
@keyframes pBlob {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.1) translateY(-15px); }
}

.process .section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.process .section-title h2 {
  font-size: clamp(28px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #0a3cff 0%, #2fd3e5 50%, #1fbf75 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  filter: drop-shadow(0 3px 10px rgba(31,108,255,0.15));
}
.process .section-title p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: #4a6f8a;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.process-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  z-index: 2;
}

.timeline-track {
  position: absolute;
  left: 40px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(180deg, #1f6cff 0%, #2fd3e5 50%, #1fbf75 100%);
  border-radius: 2px;
  z-index: 0;
  /* анимированный fill сверху вниз */
  transform-origin: top;
}

.timeline-glow {
  position: absolute;
  left: 33px;
  top: 0;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #2fd3e5;
  box-shadow: 0 0 0 0 rgba(47,211,229,0.4);
  animation: glowPulse 2.5s ease-in-out infinite;
  z-index: 3;
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(47,211,229,0.5); }
  50%      { box-shadow: 0 0 0 14px rgba(47,211,229,0); }
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.process-step:last-child { margin-bottom: 0; }

.step-number {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 100%);
  color: #fff;
  font-size: 1.9rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 32px rgba(31,108,255,0.38),
    0 0 0 4px rgba(47,211,229,0.2);
  position: relative;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease;
}
.step-number .step-ico {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fd3e5 0%, #1fbf75 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.process-step:hover .step-number .step-ico { opacity: 1; }
.process-step:hover .step-number {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 20px 48px rgba(47,211,229,0.5), 0 0 0 6px rgba(47,211,229,0.15);
}

.step-content {
  flex: 1;
  background: #fff;
  border-radius: 22px;
  padding: 28px 32px;
  box-shadow:
    0 8px 32px rgba(31,108,255,0.08),
    0 0 0 1px rgba(208,224,255,0.6);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.step-content::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #1f6cff, #2fd3e5);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.step-content::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,108,255,0.04) 0%, rgba(47,211,229,0.04) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 22px;
  pointer-events: none;
}
.process-step:hover .step-content {
  transform: translateY(-6px) translateX(4px);
  box-shadow:
    0 24px 60px rgba(31,108,255,0.14),
    0 0 0 1px rgba(47,211,229,0.25);
}
.process-step:hover .step-content::before { transform: scaleY(1); }
.process-step:hover .step-content::after  { opacity: 1; }

.step-content h3 {
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 800;
  color: #0b2c4d;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.step-h3-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1f6cff, #2fd3e5);
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(47,211,229,0.35);
  transition: transform 0.35s ease;
}
.process-step:hover .step-h3-icon { transform: rotate(-8deg) scale(1.1); }

.step-content p {
  font-size: 0.98rem;
  line-height: 1.72;
  color: #4a6f8a;
  margin: 0;
}

.step-badge {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #a0bcd8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.step-content .step-arrow {
  position: absolute;
  left: -12px;
  top: 28px;
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid #fff;
  filter: drop-shadow(-2px 0 4px rgba(31,108,255,0.08));
}

.process-cta {
  text-align: center;
  margin-top: 72px;
  position: relative;
  z-index: 2;
}
.process-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 50%, #1fbf75 100%);
  color: #fff;
  border: none;
  padding: 20px 52px;
  font-size: 1.12rem;
  font-weight: 700;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 16px 48px rgba(47,211,229,0.42);
  transition: all 0.38s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.process-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.process-cta-btn:hover::after { transform: translateX(0); }
.process-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 65px rgba(47,211,229,0.58);
}
.process-cta-btn i { font-size: 1.15rem; }

.process-cta-sub {
  margin-top: 16px;
  font-size: 0.88rem;
  color: #7a9db8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-sub-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.cta-sub-item i { color: #2fd3e5; font-size: 0.85rem; }

.p-anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.34,1.56,0.64,1);
  transition-duration: 0.72s;
  will-change: opacity, transform;
}
.p-anim.fade-up    { transform: translateY(44px); }
.p-anim.fade-left  { transform: translateX(-44px); }
.p-anim.fade-right { transform: translateX(44px); }
.p-anim.zoom-in    { transform: scale(0.85); }
.p-anim.visible    { opacity: 1; transform: none; }

@media (max-width: 768px) {
  .process { padding: 80px 0 70px; }
  .process .section-title { margin-bottom: 52px; }
  .timeline-track, .timeline-glow { left: 28px; }
  .process-step { gap: 18px; }
  .step-number { width: 64px; height: 64px; font-size: 1.5rem; }
  .step-content { padding: 22px 22px 22px 24px; }
  .step-content h3 { font-size: 1rem; }
  .step-content p { font-size: 0.92rem; }
  .process-cta-btn { padding: 17px 36px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .process { padding: 60px 0 55px; }
  .timeline-track { left: 22px; }
  .timeline-glow { left: 15px; }
  .process-step { gap: 14px; }
  .step-number { width: 52px; height: 52px; font-size: 1.25rem; box-shadow: 0 8px 20px rgba(31,108,255,0.32); }
  .step-content { padding: 18px 16px; border-radius: 16px; }
  .step-content h3 { font-size: 0.95rem; gap: 8px; }
  .step-h3-icon { width: 28px; height: 28px; font-size: 0.75rem; border-radius: 8px; }
  .step-content p { font-size: 0.88rem; }
  .step-arrow { left: -10px; border-right-width: 10px; top: 22px; }
  .step-badge { font-size: 0.65rem; top: 12px; right: 12px; }
  .process-cta-btn { padding: 15px 24px; font-size: 0.95rem; width: 100%; justify-content: center; }
  .process-cta-sub { gap: 12px; font-size: 0.82rem; }
}

@media (max-width: 360px) {
  .step-number { width: 46px; height: 46px; font-size: 1.1rem; }
  .step-content h3 { font-size: 0.9rem; }
  .step-content p { font-size: 0.84rem; }
  .step-content { padding: 15px 14px; }
}
  
  
  
  
  
  
  
  
  
  
  
  
 
.eq-anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-duration: 0.75s;
  will-change: opacity, transform;
}
.eq-anim.fade-up    { transform: translateY(52px); }
.eq-anim.fade-left  { transform: translateX(-52px); }
.eq-anim.fade-right { transform: translateX(52px); }
.eq-anim.zoom-in    { transform: scale(0.85); }
.eq-anim.visible    { opacity: 1; transform: none; }

.equipment {
  position: relative;
  padding: 120px 0 100px;
  background: url('/userfiles/images/burenie/traktor.webp') center / cover no-repeat;
  overflow: hidden;
}

.equipment::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 40, 120, 0.78) 0%,
    rgba(0, 0, 0, 0.58) 50%,
    rgba(0, 40, 20, 0.68) 100%
  );
  z-index: 1;
}

.equipment > * { position: relative; z-index: 2; }

.equipment .section-title {
  text-align: center;
  margin-bottom: 72px;
}
.equipment .section-title h2 {
  font-size: clamp(30px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff 0%, #e0faff 50%, #b8f5e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.3));
  margin-bottom: 16px;
}
.equipment .section-title p {
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.equipment-item {
  display: flex;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.2),
    0 0 0 1px rgba(255,255,255,0.12);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.45s ease;
  position: relative;
}

.equipment-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5, #1fbf75);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
  border-radius: 28px 28px 0 0;
}

.equipment-item:hover {
  transform: translateY(-12px) scale(1.012);
  box-shadow:
    0 40px 90px rgba(31,108,255,0.28),
    0 0 0 1px rgba(47,211,229,0.2);
}
.equipment-item:hover::before { opacity: 1; }

.item-text {
  flex: 1;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.item-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(47,211,229,0.4);
  align-self: flex-start;
  transition: transform 0.35s ease;
}
.equipment-item:hover .item-num { transform: rotate(-8deg) scale(1.1); }

.item-text h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 800;
  color: #0b2c4d;
  margin-bottom: 14px;
  line-height: 1.25;
}
.item-text h3::after {
  content: '';
  display: block;
  width: 40px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5);
  margin-top: 10px;
  transition: width 0.45s ease;
}
.equipment-item:hover .item-text h3::after { width: 100%; }

.wave-line {
  display: none;
}

.item-text p {
  font-size: clamp(0.88rem, 1.2vw, 1.02rem);
  line-height: 1.72;
  color: #4a6f8a;
  margin: 0;
}

.item-icon {
  flex: 0 0 42%;
  background: linear-gradient(135deg,
    rgba(31,108,255,0.06) 0%,
    rgba(47,211,229,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.item-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(31,108,255,0.22) 0%,
    rgba(47,211,229,0.18) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.equipment-item:hover .item-icon::before { opacity: 1; }

.item-icon img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.55s cubic-bezier(0.34,1.56,0.64,1);
  filter: drop-shadow(0 8px 20px rgba(31,108,255,0.2));
}
.equipment-item:hover .item-icon img {
  transform: scale(1.1) translateY(-6px);
}

.equipment-footer {
  margin-top: 56px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 24px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.eq-footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.97rem;
  font-weight: 600;
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

.eq-footer-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 50%, #1fbf75 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(47,211,229,0.4);
}

.eq-footer-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.2);
  flex: 0 0 1px;
  min-width: unset;
}

@media (max-width: 1100px) {
  .equipment-grid { grid-template-columns: 1fr; gap: 22px; }
  .equipment-item { max-width: 700px; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
  .equipment { padding: 80px 0 70px; }
  .equipment .section-title { margin-bottom: 48px; }

  .equipment-item {
    flex-direction: column;
    border-radius: 22px;
  }
  .item-icon {
    flex: 0 0 auto;
    height: 200px;
    padding: 24px;
  }
  .item-icon img { max-height: 160px; }
  .item-text { padding: 26px 24px 28px; }
  .item-text h3 { font-size: 1.1rem; }
  .item-text p { font-size: 0.93rem; }

  .equipment-footer {
    padding: 24px 20px;
    gap: 14px;
    border-radius: 18px;
    margin-top: 40px;
  }
  .eq-footer-sep { display: none; }
  .eq-footer-item { min-width: 140px; font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .equipment { padding: 60px 0 55px; }
  .equipment .section-title h2 { font-size: clamp(24px, 7vw, 36px); }
  .equipment .section-title p { font-size: 0.95rem; }

  .equipment-item { border-radius: 18px; }
  .item-icon {
    height: 170px;
    padding: 18px;
  }
  .item-icon img { max-height: 130px; }
  .item-text { padding: 20px 18px 22px; }
  .item-num { width: 30px; height: 30px; font-size: 0.75rem; border-radius: 8px; margin-bottom: 10px; }
  .item-text h3 { font-size: 1rem; margin-bottom: 10px; }
  .item-text h3::after { margin-top: 8px; }
  .item-text p { font-size: 0.87rem; }

  .equipment-footer {
    padding: 18px 14px;
    margin-top: 32px;
  }
  .eq-footer-item { font-size: 0.82rem; gap: 8px; min-width: 120px; }
  .eq-footer-icon { width: 36px; height: 36px; font-size: 0.95rem; border-radius: 10px; }
}

@media (max-width: 360px) {
  .equipment { padding: 50px 0 45px; }
  .item-icon { height: 150px; }
  .item-icon img { max-height: 110px; }
  .item-text h3 { font-size: 0.95rem; }
  .item-text p { font-size: 0.83rem; line-height: 1.6; }
  .equipment-footer { flex-direction: column; align-items: flex-start; }
  .eq-footer-item { min-width: unset; }
  }
  
  
  
  
  
  
  
  
  
  
  
  
.pr-anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-duration: 0.75s;
  will-change: opacity, transform;
}
.pr-anim.fade-up    { transform: translateY(52px); }
.pr-anim.fade-left  { transform: translateX(-52px); }
.pr-anim.fade-right { transform: translateX(52px); }
.pr-anim.zoom-in    { transform: scale(0.86); transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }
.pr-anim.visible    { opacity: 1; transform: none; }

.pr-row-anim {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.55s cubic-bezier(0.34,1.56,0.64,1),
              transform 0.55s cubic-bezier(0.34,1.56,0.64,1);
}
.pr-row-anim.visible {
  opacity: 1;
  transform: none;
}

.pricing {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #4fa3ff 0%, #2fd3e5 50%, #1fbf75 100%);
  overflow: hidden;
}
.pricing > * { position: relative; z-index: 1; }

.pricing .decor-left,
.pricing .decor-right {
  position: absolute;
  width: 600px; height: 100%;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}
.pricing .decor-left  { left: -200px; transform: rotate(90deg);  background-image: url('/userfiles/images/burenie/water_left.webp'); }
.pricing .decor-right { right: -200px; transform: rotate(-90deg); background-image: url('/userfiles/images/burenie/water-right.webp'); }

.pricing .section-title {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
}
.pricing .section-title h2 {
  font-size: clamp(30px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff 0%, #e0faff 50%, #b8f5e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.28));
  margin-bottom: 16px;
}
.pricing .section-title p {
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.pricing-table-wrapper {
  position: relative;
  z-index: 2;
}

.pricing-table {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 28px 70px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.15);
}

.pt-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  background: linear-gradient(90deg, #1f6cff 0%, #2fd3e5 60%, #1fbf75 100%);
  padding: 0;
}
.pt-header-cell {
  padding: 20px 28px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.pt-header-cell:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.18);
}
.pt-header-icon {
  font-size: 1.15rem;
  opacity: 0.9;
}

.pt-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  border-bottom: 1px solid rgba(208,224,255,0.45);
  transition: background 0.3s ease;
  cursor: default;
}
.pt-row:last-child { border-bottom: none; }
.pt-row:hover { background: linear-gradient(90deg, rgba(31,108,255,0.04) 0%, rgba(47,211,229,0.05) 100%); }

.pt-cell {
  padding: 18px 28px;
  display: flex;
  align-items: center;
  color: #0b2c4d;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.5;
}
.pt-cell:not(:last-child) {
  border-right: 1px solid rgba(208,224,255,0.35);
}

.pt-cell-service {
  font-weight: 600;
  gap: 12px;
}
.pt-service-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f6cff, #2fd3e5);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(47,211,229,0.2);
}

.pt-cell-depth {
  color: #4a6f8a;
  font-weight: 500;
  font-size: clamp(0.84rem, 1.1vw, 0.96rem);
}

.pt-cell-price {
  font-weight: 900;
  font-size: clamp(0.9rem, 1.3vw, 1.12rem);
  background: linear-gradient(90deg, #1f6cff, #2fd3e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.mobile-pricing-cards { display: none; }

.mobile-card {
  background: rgba(255,255,255,0.97);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0,0,0,0.1);
  margin-bottom: 14px;
  position: relative;
}
.mobile-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5, #1fbf75);
}
.mobile-card-inner {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.mobile-card-left {}
.mobile-card-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 5px;
  line-height: 1.35;
}
.mobile-card-params {
  font-size: 0.84rem;
  color: #4a6f8a;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mobile-card-params::before {
  content: '📏';
  font-size: 0.78rem;
}
.mobile-card-price {
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

.additional-services {
  margin-top: 36px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 40px 44px;
  box-shadow:
    0 28px 70px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.15);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.additional-services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5, #1fbf75);
}

.as-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  justify-content: center;
}
.as-header-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f6cff, #2fd3e5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(47,211,229,0.4);
}
.additional-services h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #0b2c4d;
  text-align: center;
  margin: 0;
}

.as-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.as-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #f4f9ff 0%, #eef6ff 100%);
  border-radius: 18px;
  border: 1px solid rgba(208,224,255,0.5);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease,
              background 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.as-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #1f6cff, #2fd3e5);
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.as-item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 14px 36px rgba(31,108,255,0.14);
  background: linear-gradient(135deg, #eef6ff 0%, #e6f4ff 100%);
}
.as-item:hover::before { transform: scaleY(1); }

.as-item-text {
  font-size: clamp(0.86rem, 1.1vw, 0.97rem);
  color: #4a6f8a;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}
.as-item-price {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 900;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

.promo-banner {
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.gift-card {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff9f43 50%, #feca57 100%);
  border-radius: 28px;
  padding: 44px 52px;
  box-shadow:
    0 28px 72px rgba(255,107,107,0.45),
    0 0 0 1px rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.gift-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  pointer-events: none;
}
.gift-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}

.gift-icon-wrap {
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}
.gift-big-icon {
  font-size: 5rem;
  display: block;
  animation: giftBounce 2.5s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
  line-height: 1;
}
@keyframes giftBounce {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%       { transform: translateY(-12px) rotate(4deg); }
}

.gift-sparkles {
  position: absolute;
  inset: -20px;
  pointer-events: none;
}
.gift-sparkles span {
  position: absolute;
  font-size: 1.2rem;
  animation: sparkleFloat 3s ease-in-out infinite;
}
.gift-sparkles span:nth-child(1) { top: 0;    left: 0;   animation-delay: 0s; }
.gift-sparkles span:nth-child(2) { top: 0;    right: 0;  animation-delay: 1s; }
.gift-sparkles span:nth-child(3) { bottom: 0; left: 50%; animation-delay: 2s; }
@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) scale(0.8); opacity: 0.6; }
  50%       { transform: translateY(-14px) scale(1.2); opacity: 1; }
}

.gift-text {
  flex: 1;
  position: relative;
  z-index: 1;
  min-width: 220px;
}
.gift-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.gift-text h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  font-weight: 900;
  color: white;
  line-height: 1.3;
  margin: 0 0 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.gift-text h3 strong {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.5);
  text-underline-offset: 4px;
}
.gift-text p {
  font-size: clamp(0.88rem, 1.3vw, 1.02rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin: 0;
}

.gift-cta {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.gift-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #ff6b6b;
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 30px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
  transition: all 0.35s ease;
  white-space: nowrap;
}
.gift-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}

@media (max-width: 1100px) {
  .as-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .pt-header,
  .pt-row {
    grid-template-columns: 1.6fr 0.8fr 1.1fr;
  }
  .pt-header-cell,
  .pt-cell { padding: 16px 18px; }
}

@media (max-width: 768px) {
  .pricing { padding: 80px 0 70px; }
  .pricing .section-title { margin-bottom: 48px; }

  .pt-header,
  .pt-row { display: none; }
  .mobile-pricing-cards { display: block; padding: 8px; }

  .pricing-table {
    padding: 0;
    border-radius: 24px;
  }

  .additional-services {
    padding: 28px 24px;
    border-radius: 24px;
    margin-top: 24px;
  }
  .as-grid { grid-template-columns: 1fr; gap: 10px; }
  .as-item { padding: 14px 18px; border-radius: 14px; }

  .gift-card {
    padding: 32px 28px;
    gap: 24px;
    border-radius: 22px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .gift-big-icon { font-size: 4rem; }
  .gift-label { margin: 0 auto 12px; }
  .gift-btn { width: 100%; justify-content: center; }
  .promo-banner { margin-top: 24px; }
}

@media (max-width: 480px) {
  .pricing { padding: 60px 0 55px; }
  .pricing .section-title h2 { font-size: clamp(22px, 7vw, 32px); }
  .pricing .section-title p { font-size: 0.95rem; }

  .mobile-card-inner { padding: 16px 18px; }
  .mobile-card-title { font-size: 0.9rem; }
  .mobile-card-params { font-size: 0.8rem; }
  .mobile-card-price { font-size: 1rem; }

  .additional-services {
    padding: 22px 16px;
    border-radius: 20px;
  }
  .additional-services h3 { font-size: 1.1rem; }
  .as-header-icon { width: 40px; height: 40px; font-size: 1.15rem; border-radius: 11px; }
  .as-item { padding: 12px 14px; border-radius: 12px; flex-wrap: wrap; gap: 8px; }
  .as-item-text { font-size: 0.83rem; }
  .as-item-price { font-size: 0.9rem; }

  .gift-card { padding: 26px 18px; border-radius: 20px; }
  .gift-big-icon { font-size: 3.2rem; }
  .gift-text h3 { font-size: 1rem; }
  .gift-text p { font-size: 0.85rem; }
  .gift-btn { font-size: 0.9rem; padding: 14px 22px; }
}

@media (max-width: 360px) {
  .pricing { padding: 50px 0 45px; }
  .pricing .section-title h2 { font-size: 20px; }

  .mobile-card-inner { padding: 14px 14px; }
  .mobile-card-title { font-size: 0.84rem; }
  .mobile-card-price { font-size: 0.95rem; }

  .as-item { flex-direction: column; align-items: flex-start; gap: 4px; }
  .as-item-price { align-self: flex-end; }

  .gift-card { padding: 22px 14px; }
  .gift-big-icon { font-size: 2.8rem; }
  .gift-text h3 { font-size: 0.95rem; }
  .gift-btn { font-size: 0.85rem; padding: 12px 18px; }
}
  
  
  
  
  
  
  
  
  
  
  
  
.adv-anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-duration: 0.75s;
  will-change: opacity, transform;
}
.adv-anim.fade-up    { transform: translateY(52px); }
.adv-anim.fade-left  { transform: translateX(-52px); }
.adv-anim.fade-right { transform: translateX(52px); }
.adv-anim.zoom-in    { transform: scale(0.86); }
.adv-anim.visible    { opacity: 1; transform: none; }

.advantages {
  position: relative;
  padding: 120px 0 100px;
  background: url('/userfiles/images/burenie/hero-bg.webp') center / cover no-repeat;
  overflow: hidden;
}

.advantages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 40, 120, 0.80) 0%,
    rgba(0, 0, 0, 0.60) 50%,
    rgba(0, 40, 20, 0.72) 100%
  );
  z-index: 1;
}

.advantages > * { position: relative; z-index: 2; }

.advantages .section-title {
  text-align: center;
  margin-bottom: 72px;
}
.advantages .section-title h2 {
  font-size: clamp(28px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff 0%, #e0faff 50%, #b8f5e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.32));
  margin-bottom: 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.advantage-card {
  display: flex;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.12);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.45s ease;
  position: relative;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5, #1fbf75);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}
.advantage-card:hover {
  transform: translateY(-12px) scale(1.012);
  box-shadow:
    0 40px 90px rgba(31,108,255,0.26),
    0 0 0 1px rgba(47,211,229,0.2);
}
.advantage-card:hover::before { opacity: 1; }

.card-icon {
  flex: 0 0 130px;
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 50%, #1fbf75 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.card-icon::after {
  content: '';
  position: absolute;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  transition: transform 0.45s ease;
}
.advantage-card:hover .card-icon::after {
  transform: translate(-50%, -50%) scale(1.3);
}

.card-icon i {
  color: #fff;
  font-size: 3.6rem;
  position: relative;
  z-index: 1;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
              filter 0.35s ease;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.2));
}
.advantage-card:hover .card-icon i {
  transform: scale(1.18) rotate(-6deg);
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.3));
}

.card-text {
  flex: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 12px;
  align-self: flex-start;
  box-shadow: 0 3px 10px rgba(47,211,229,0.4);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.advantage-card:hover .card-num { transform: rotate(-8deg) scale(1.12); }

.card-text h3 {
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 800;
  color: #0b2c4d;
  margin: 0 0 12px;
  line-height: 1.25;
}
.card-text h3::after {
  content: '';
  display: block;
  width: 36px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5);
  margin-top: 10px;
  transition: width 0.45s ease;
}
.advantage-card:hover .card-text h3::after { width: 100%; }

.card-text .wave-line { display: none; }

.card-text p {
  font-size: clamp(0.86rem, 1.1vw, 0.98rem);
  line-height: 1.72;
  color: #4a6f8a;
  margin: 0;
}

.advantages-footer {
  margin-top: 52px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 24px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.adv-footer-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.adv-footer-chip:hover {
  background: rgba(255,255,255,0.24);
  transform: translateY(-3px);
}
.adv-footer-chip-icon {
  font-size: 1.05rem;
}

@media (max-width: 1100px) {
  .advantages-grid { grid-template-columns: 1fr; gap: 18px; }
  .advantage-card { max-width: 700px; width: 100%; margin: 0 auto; }
}

@media (max-width: 768px) {
  .advantages { padding: 80px 0 70px; }
  .advantages .section-title { margin-bottom: 48px; }

  .advantage-card {
    flex-direction: column;
    border-radius: 22px;
    max-width: 100%;
  }
  .card-icon {
    flex: 0 0 auto;
    height: 140px;
    padding: 22px;
    flex-direction: row;
    gap: 0;
  }
  .card-icon i { font-size: 3rem; }
  .card-text { padding: 24px 22px 26px; }
  .card-text h3 { font-size: 1.05rem; }
  .card-text p { font-size: 0.91rem; }

  .advantages-footer {
    padding: 20px 18px;
    gap: 10px;
    margin-top: 36px;
    border-radius: 18px;
  }
  .adv-footer-chip { padding: 9px 14px; font-size: 0.84rem; }
}

@media (max-width: 480px) {
  .advantages { padding: 60px 0 55px; }
  .advantages .section-title h2 { font-size: clamp(22px, 7vw, 32px); }

  .advantage-card { border-radius: 18px; }
  .card-icon { height: 120px; }
  .card-icon i { font-size: 2.6rem; }
  .card-text { padding: 18px 16px 20px; }
  .card-num { width: 24px; height: 24px; font-size: 0.65rem; border-radius: 6px; margin-bottom: 9px; }
  .card-text h3 { font-size: 0.98rem; margin-bottom: 9px; }
  .card-text h3::after { margin-top: 7px; }
  .card-text p { font-size: 0.86rem; }

  .adv-footer-chip { font-size: 0.78rem; padding: 8px 12px; gap: 6px; }
  .adv-footer-chip-icon { font-size: 0.9rem; }
}

@media (max-width: 360px) {
  .advantages { padding: 50px 0 45px; }
  .card-icon { height: 105px; }
  .card-icon i { font-size: 2.3rem; }
  .card-text h3 { font-size: 0.92rem; }
  .card-text p { font-size: 0.82rem; line-height: 1.6; }
  .advantages-footer { flex-direction: column; align-items: flex-start; padding: 16px 14px; }
  .adv-footer-chip { width: 100%; }
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
.tc-anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-duration: 0.75s;
  will-change: opacity, transform;
}
.tc-anim.fade-up    { transform: translateY(52px); }
.tc-anim.fade-left  { transform: translateX(-52px); }
.tc-anim.fade-right { transform: translateX(52px); }
.tc-anim.zoom-in    { transform: scale(0.86); }
.tc-anim.visible    { opacity: 1; transform: none; }

.technology {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #4fa3ff 0%, #2fd3e5 50%, #1fbf75 100%);
  overflow: hidden;
}

.technology .decor-left,
.technology .decor-right {
  position: absolute;
  width: 600px; height: 100%;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
}
.technology .decor-left  { left: -200px; transform: rotate(90deg);  background-image: url('/userfiles/images/burenie/water_left.webp'); }
.technology .decor-right { right: -200px; transform: rotate(-90deg); background-image: url('/userfiles/images/burenie/water-right.webp'); }

.technology > * { position: relative; z-index: 2; }

.technology .section-title {
  text-align: center;
  margin-bottom: 72px;
}
.technology .section-title h2 {
  font-size: clamp(28px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff 0%, #e0faff 50%, #b8f5e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.28));
  margin-bottom: 14px;
}
.technology .section-title p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.tech-card {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.16),
    0 0 0 1px rgba(255,255,255,0.12);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.45s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5, #1fbf75);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}
.tech-card:hover {
  transform: translateY(-12px) scale(1.012);
  box-shadow:
    0 40px 90px rgba(31,108,255,0.26),
    0 0 0 1px rgba(47,211,229,0.2);
}
.tech-card:hover::before { opacity: 1; }

.tc-card-header {
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 55%, #1fbf75 100%);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.tc-card-header::after {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  pointer-events: none;
  transition: transform 0.5s ease;
}
.tech-card:hover .tc-card-header::after {
  transform: scale(1.5) translate(-10px, 10px);
}

.tc-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  z-index: 1;
}
.tech-card:hover .tc-icon-wrap {
  transform: scale(1.15) rotate(-6deg);
}
.tc-icon-wrap i {
  color: #fff;
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.tc-header-text {
  flex: 1;
  position: relative;
  z-index: 1;
}
.tc-header-text h3 {
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.tc-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tc-card-body {
  padding: 26px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.tc-arrow-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.arrow {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1f6cff, #2fd3e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.35s ease;
  user-select: none;
}
.tech-card:hover .arrow {
  transform: translateX(6px);
}

.tc-card-body p {
  flex: 1;
  font-size: clamp(0.87rem, 1.1vw, 0.99rem);
  line-height: 1.75;
  color: #4a6f8a;
  margin: 0;
}

.tc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(208,224,255,0.5);
}
.tc-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, rgba(31,108,255,0.08) 0%, rgba(47,211,229,0.08) 100%);
  color: #1f6cff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
  border: 1px solid rgba(47,211,229,0.2);
  white-space: nowrap;
  transition: all 0.3s ease;
}
.tech-card:hover .tc-tag {
  background: linear-gradient(135deg, rgba(31,108,255,0.13) 0%, rgba(47,211,229,0.13) 100%);
}
.tc-tag i { font-size: 0.7rem; }

.tc-footer {
  margin-top: 48px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 24px;
  padding: 26px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tc-footer-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  padding: 10px 20px;
  color: white;
  font-size: 0.93rem;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.tc-footer-chip:hover {
  background: rgba(255,255,255,0.24);
  transform: translateY(-3px);
}
.tc-footer-chip i { font-size: 0.95rem; color: rgba(255,255,255,0.85); }

@media (max-width: 1100px) {
  .tech-grid { grid-template-columns: 1fr; gap: 18px; }
  .tech-card { max-width: 700px; width: 100%; margin: 0 auto; }
}

@media (max-width: 768px) {
  .technology { padding: 80px 0 70px; }
  .technology .section-title { margin-bottom: 48px; }

  .tc-card-header { padding: 20px 22px; gap: 14px; }
  .tc-icon-wrap { width: 48px; height: 48px; border-radius: 13px; }
  .tc-icon-wrap i { font-size: 1.3rem; }
  .tc-header-text h3 { font-size: 1.05rem; }

  .tc-card-body { padding: 20px 22px 24px; }
  .tc-card-body p { font-size: 0.92rem; }
  .arrow { font-size: 1.7rem; }

  .tc-footer { padding: 20px 18px; gap: 9px; border-radius: 18px; margin-top: 36px; }
  .tc-footer-chip { font-size: 0.84rem; padding: 9px 14px; }
}

@media (max-width: 480px) {
  .technology { padding: 60px 0 55px; }
  .technology .section-title h2 { font-size: clamp(22px, 7vw, 32px); }
  .technology .section-title p { font-size: 0.94rem; }

  .tech-grid { gap: 14px; }
  .tech-card { border-radius: 20px; max-width: 100%; }

  .tc-card-header { padding: 16px 18px; gap: 12px; }
  .tc-icon-wrap { width: 42px; height: 42px; border-radius: 11px; }
  .tc-icon-wrap i { font-size: 1.15rem; }
  .tc-header-text h3 { font-size: 0.96rem; }
  .tc-card-num { font-size: 0.66rem; }

  .tc-card-body { padding: 16px 18px 20px; }
  .tc-arrow-row { gap: 10px; }
  .arrow { font-size: 1.5rem; }
  .tc-card-body p { font-size: 0.86rem; line-height: 1.68; }

  .tc-tags { margin-top: 14px; padding-top: 13px; gap: 6px; }
  .tc-tag { font-size: 0.7rem; padding: 3px 9px; }

  .tc-footer { padding: 16px 14px; gap: 8px; }
  .tc-footer-chip { font-size: 0.78rem; padding: 8px 12px; gap: 6px; }
}

@media (max-width: 360px) {
  .technology { padding: 50px 0 45px; }
  .technology .section-title h2 { font-size: 20px; }

  .tc-card-header { padding: 14px 16px; gap: 10px; }
  .tc-icon-wrap { width: 38px; height: 38px; border-radius: 10px; }
  .tc-icon-wrap i { font-size: 1rem; }
  .tc-header-text h3 { font-size: 0.9rem; }

  .tc-card-body { padding: 14px 16px 18px; }
  .arrow { font-size: 1.3rem; }
  .tc-card-body p { font-size: 0.83rem; }

  .tc-footer { flex-direction: column; align-items: flex-start; padding: 14px 12px; }
  .tc-footer-chip { width: 100%; }
}
  
  
  
  
  
  
  
  
  
  
  
  
.ta-anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-duration: 0.75s;
  will-change: opacity, transform;
}
.ta-anim.fade-up    { transform: translateY(52px); }
.ta-anim.fade-left  { transform: translateX(-52px); }
.ta-anim.fade-right { transform: translateX(52px); }
.ta-anim.zoom-in    { transform: scale(0.88); }
.ta-anim.visible    { opacity: 1; transform: none; }

.target-audience {
  position: relative;
  padding: 120px 0 100px;
  background: url('/userfiles/images/burenie/traktor.webp') center / cover no-repeat;
  overflow: hidden;
}

.target-audience::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 40, 120, 0.80) 0%,
    rgba(0, 0, 0, 0.60) 50%,
    rgba(0, 40, 20, 0.72) 100%
  );
  z-index: 1;
}

.target-audience > * { position: relative; z-index: 2; }

.target-audience .section-title {
  text-align: center;
  margin-bottom: 56px;
}
.target-audience .section-title h2 {
  font-size: clamp(28px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff 0%, #e0faff 50%, #b8f5e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.32));
  margin-bottom: 14px;
}
.target-audience .section-title p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  padding: 10px;
}

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid transparent;
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.8rem, 1.1vw, 0.97rem);
  font-weight: 600;
  padding: 16px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  text-align: center;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
}

.tab-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-btn-icon {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  z-index: 1;
}

.tab-btn-label {
  position: relative;
  z-index: 1;
}

.tab-btn:hover {
  color: white;
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}
.tab-btn:hover::before { opacity: 1; }
.tab-btn:hover .tab-btn-icon {
  background: rgba(255,255,255,0.22);
  transform: scale(1.1);
}

.tab-btn.active {
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 55%, #1fbf75 100%);
  border-color: rgba(255,255,255,0.25);
  color: white;
  box-shadow: 0 10px 32px rgba(31,108,255,0.45);
  transform: translateY(-4px);
}
.tab-btn.active::before { opacity: 0; }
.tab-btn.active .tab-btn-icon {
  background: rgba(255,255,255,0.25);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.tab-contents {
  position: relative;
}

.tab-content {
  display: none;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 28px 72px rgba(0,0,0,0.2),
    0 0 0 1px rgba(255,255,255,0.14);
  animation: tabIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

.tab-content.active { display: block; }

@keyframes tabIn {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.tab-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5, #1fbf75);
  z-index: 3;
}

.tab-inner {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 0;
  align-items: stretch;
}

.tab-image {
  position: relative;
  overflow: hidden;
}

.tab-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.tab-content:hover .tab-image img {
  transform: scale(1.04);
}

.tab-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 60%,
    rgba(255,255,255,0.18) 100%
  );
  pointer-events: none;
}

.tab-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 100%);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(31,108,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tab-text {
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.tab-text-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 55%, #1fbf75 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(47,211,229,0.42);
}

.tab-text h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 800;
  color: #0b2c4d;
  line-height: 1.3;
  margin: 0 0 14px;
}

.tab-text h3::after {
  content: '';
  display: block;
  width: 44px; height: 3px;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5);
  border-radius: 2px;
  margin-top: 12px;
  transition: width 0.45s ease;
}
.tab-content:hover .tab-text h3::after { width: 100%; }

.tab-text p {
  font-size: clamp(0.87rem, 1.1vw, 1rem);
  line-height: 1.78;
  color: #4a6f8a;
  margin: 0 0 22px;
}

.tab-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 18px;
  border-top: 1px solid rgba(208,224,255,0.5);
}
.tab-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, rgba(31,108,255,0.08), rgba(47,211,229,0.08));
  color: #1f6cff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(47,211,229,0.22);
}
.tab-chip i { font-size: 0.68rem; }

@media (max-width: 1100px) {
  .tab-inner {
    grid-template-columns: 1fr;
  }
  .tab-image img { min-height: 300px; height: 300px; }
  .tab-image::after { background: linear-gradient(0deg, rgba(255,255,255,0.1) 0%, transparent 50%); }
  .tab-text { padding: 36px 36px 40px; }
}

@media (max-width: 900px) {
  .tabs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .target-audience { padding: 80px 0 70px; }
  .target-audience .section-title { margin-bottom: 40px; }

  .tabs {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 18px;
    padding: 8px;
    gap: 8px;
  }
  .tab-btn { padding: 12px 8px; border-radius: 12px; font-size: 0.82rem; gap: 6px; }
  .tab-btn-icon { width: 36px; height: 36px; border-radius: 10px; font-size: 1.05rem; }

  .tab-content { border-radius: 22px; }
  .tab-image img { min-height: 240px; height: 240px; }
  .tab-text { padding: 26px 24px 30px; }
  .tab-text-icon { width: 44px; height: 44px; border-radius: 12px; font-size: 1.2rem; margin-bottom: 14px; }
  .tab-text h3 { font-size: 1.05rem; }
  .tab-text p { font-size: 0.9rem; }
  .tab-chips { gap: 6px; padding-top: 14px; }
  .tab-chip { font-size: 0.7rem; padding: 4px 10px; }

  .tab-img-badge { font-size: 0.72rem; padding: 6px 12px; bottom: 14px; left: 14px; }
}

@media (max-width: 480px) {
  .target-audience { padding: 60px 0 55px; }
  .target-audience .section-title h2 { font-size: clamp(22px, 7vw, 32px); }
  .target-audience .section-title p { font-size: 0.93rem; }

  .tabs {
    grid-template-columns: repeat(2, 1fr);
    padding: 6px;
    gap: 6px;
    border-radius: 16px;
  }
  .tab-btn { padding: 10px 6px; font-size: 0.76rem; gap: 5px; border-radius: 10px; }
  .tab-btn-icon { width: 32px; height: 32px; font-size: 0.95rem; border-radius: 8px; }

  .tab-content { border-radius: 18px; }
  .tab-image img { min-height: 200px; height: 200px; }
  .tab-text { padding: 20px 18px 24px; }
  .tab-text-icon { width: 38px; height: 38px; font-size: 1.05rem; margin-bottom: 12px; border-radius: 10px; }
  .tab-text h3 { font-size: 0.98rem; }
  .tab-text h3::after { margin-top: 9px; }
  .tab-text p { font-size: 0.85rem; line-height: 1.68; margin-bottom: 16px; }
  .tab-chips { gap: 5px; padding-top: 12px; }
  .tab-chip { font-size: 0.68rem; padding: 4px 9px; }
}

@media (max-width: 360px) {
  .target-audience { padding: 50px 0 45px; }
  .target-audience .section-title h2 { font-size: 20px; }

  .tabs { grid-template-columns: 1fr 1fr; gap: 5px; padding: 5px; }
  .tab-btn { padding: 9px 5px; font-size: 0.72rem; }
  .tab-btn-icon { width: 28px; height: 28px; font-size: 0.85rem; border-radius: 7px; }

  .tab-image img { min-height: 170px; height: 170px; }
  .tab-text { padding: 16px 14px 20px; }
  .tab-text-icon { width: 34px; height: 34px; font-size: 0.95rem; margin-bottom: 10px; }
  .tab-text h3 { font-size: 0.9rem; }
  .tab-text p { font-size: 0.82rem; }
  .tab-chip { font-size: 0.65rem; padding: 3px 8px; }
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  
.fq-anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-duration: 0.75s;
  will-change: opacity, transform;
}
.fq-anim.fade-up    { transform: translateY(52px); }
.fq-anim.fade-left  { transform: translateX(-52px); }
.fq-anim.fade-right { transform: translateX(52px); }
.fq-anim.zoom-in    { transform: scale(0.88); }
.fq-anim.visible    { opacity: 1; transform: none; }

.faq {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #4fa3ff 0%, #2fd3e5 50%, #1fbf75 100%);
  overflow: hidden;
}

.faq .decor-left,
.faq .decor-right {
  position: absolute;
  width: 600px; height: 100%;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
}
.faq .decor-left  { left:-200px;transform:rotate(90deg);background-image:url('/userfiles/images/burenie/water_left.webp'); }
.faq .decor-right { right:-200px;transform:rotate(-90deg);background-image:url('/userfiles/images/burenie/water-right.webp'); }

.faq > * { position: relative; z-index: 2; }

.faq .section-title {
  text-align: center;
  margin-bottom: 72px;
}
.faq .section-title h2 {
  font-size: clamp(28px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff 0%, #e0faff 50%, #b8f5e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.28));
  margin-bottom: 14px;
}
.faq .section-title p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
}

.faq-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50px;
  padding: 8px 20px;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.faq-count-badge i { font-size: 0.95rem; }

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.faq-item {
	margin: 10px 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 14px 40px rgba(0,0,0,0.13),
    0 0 0 1px rgba(255,255,255,0.12);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease;
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #1f6cff, #2fd3e5, #1fbf75);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  z-index: 2;
}
.faq-item:hover,
.faq-item.active {
  transform: translateY(-6px) scale(1.008);
  box-shadow:
    0 28px 65px rgba(31,108,255,0.2),
    0 0 0 1px rgba(47,211,229,0.18);
}
.faq-item:hover::before,
.faq-item.active::before {
  transform: scaleY(1);
}

.faq-question {
  padding: 20px 24px 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s ease;
  user-select: none;
  position: relative;
}
.faq-item.active .faq-question {
  background: linear-gradient(90deg, rgba(31,108,255,0.04), rgba(47,211,229,0.04));
}

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.faq-q-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(31,108,255,0.10), rgba(47,211,229,0.10));
  border: 1.5px solid rgba(47,211,229,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #1f6cff;
  transition: all 0.35s ease;
}
.faq-item.active .faq-q-num,
.faq-item:hover .faq-q-num {
  background: linear-gradient(135deg, #1f6cff, #2fd3e5);
  color: white;
  border-color: transparent;
  transform: scale(1.08);
}

.faq-q-text {
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  font-weight: 700;
  color: #0b2c4d;
  line-height: 1.35;
}

.faq-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(31,108,255,0.08), rgba(47,211,229,0.08));
  border: 1px solid rgba(47,211,229,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  color: #1f6cff;
  font-size: 0.85rem;
}
.faq-item.active .faq-icon {
  background: linear-gradient(135deg, #1f6cff, #2fd3e5);
  color: white;
  border-color: transparent;
  transform: rotate(180deg);
  box-shadow: 0 4px 14px rgba(47,211,229,0.4);
}

.faq-divider {
  height: 1px;
  margin: 0 24px 0 28px;
  background: rgba(208,224,255,0.5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease 0.1s;
}
.faq-item.active .faq-divider {
  transform: scaleX(1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s ease;
  padding: 0 24px 0 28px;
}
.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 20px 24px 26px 28px;
}

.faq-answer p {
  font-size: clamp(0.86rem, 1.1vw, 0.98rem);
  line-height: 1.78;
  color: #4a6f8a;
  margin: 0;
}

.faq-cta {
  margin-top: 48px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.faq-cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.faq-cta-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.faq-cta-text h3 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 800;
  color: white;
  margin: 0 0 5px;
}
.faq-cta-text p {
  font-size: clamp(0.84rem, 1.1vw, 0.96rem);
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #1f6cff;
  font-size: 0.97rem;
  font-weight: 800;
  padding: 16px 30px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
  transition: all 0.35s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.faq-cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 44px rgba(0,0,0,0.26);
}

@media (max-width: 1100px) {
  .faq-columns { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .faq { padding: 80px 0 70px; }
  .faq .section-title { margin-bottom: 48px; }
  .faq-columns { gap: 16px; }
  .faq-item { border-radius: 18px; }
  .faq-question { padding: 16px 18px 16px 20px; gap: 10px; }
  .faq-q-num { width: 28px; height: 28px; border-radius: 7px; font-size: 0.65rem; }
  .faq-icon { width: 32px; height: 32px; border-radius: 9px; font-size: 0.78rem; }
  .faq-q-left { gap: 10px; }
  .faq-q-text { font-size: 0.92rem; }
  .faq-divider { margin: 0 18px 0 20px; }
  .faq-answer { padding: 0 18px 0 20px; }
  .faq-item.active .faq-answer { padding: 16px 18px 22px 20px; }
  .faq-answer p { font-size: 0.9rem; }

  .faq-cta { padding: 24px 22px; gap: 18px; border-radius: 18px; margin-top: 32px; }
  .faq-cta-icon { width: 44px; height: 44px; font-size: 1.3rem; border-radius: 12px; }
  .faq-cta-btn { padding: 13px 22px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .faq { padding: 60px 0 55px; }
  .faq .section-title h2 { font-size: clamp(22px, 7vw, 32px); }
  .faq .section-title p { font-size: 0.93rem; }
  .faq-count-badge { font-size: 0.78rem; padding: 6px 14px; }
  .faq .section-title { margin-bottom: 36px; }

  .faq-columns { gap: 12px; }
  .faq-item { border-radius: 16px; }
  .faq-question { padding: 14px 14px 14px 16px; gap: 8px; }
  .faq-q-num { width: 24px; height: 24px; border-radius: 6px; font-size: 0.6rem; }
  .faq-icon { width: 28px; height: 28px; border-radius: 8px; font-size: 0.72rem; }
  .faq-q-text { font-size: 0.86rem; }
  .faq-divider { margin: 0 14px 0 16px; }
  .faq-answer { padding: 0 14px 0 16px; }
  .faq-item.active .faq-answer { padding: 14px 14px 18px 16px; }
  .faq-answer p { font-size: 0.85rem; line-height: 1.68; }

  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
    border-radius: 16px;
    margin-top: 24px;
  }
  .faq-cta-left { gap: 12px; }
  .faq-cta-icon { width: 38px; height: 38px; font-size: 1.1rem; border-radius: 10px; }
  .faq-cta-btn { width: 100%; justify-content: center; padding: 13px 18px; font-size: 0.88rem; }
}

@media (max-width: 360px) {
  .faq { padding: 50px 0 45px; }
  .faq .section-title h2 { font-size: 20px; }
  .faq-q-text { font-size: 0.82rem; }
  .faq-answer p { font-size: 0.82rem; }
  .faq-question { padding: 12px 12px 12px 14px; }
  .faq-divider { margin: 0 12px 0 14px; }
  .faq-answer { padding: 0 12px 0 14px; }
  .faq-item.active .faq-answer { padding: 12px 12px 16px 14px; }
  .faq-cta-text h3 { font-size: 0.95rem; }
  .faq-cta-text p { font-size: 0.8rem; }
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  .reviews-section {
  position: relative;
  padding: 120px 0 140px;
  background: url('/userfiles/images/burenie/hero-bg.webp') center / cover no-repeat;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.reviews-section > * { position: relative; z-index: 1; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 70px;
}

.reviews-header h2 {
  font-size: clamp(34px, 5.5vw, 70px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff 0%, #e0f7ff 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.28));
  margin-bottom: 22px;
}

.reviews-header p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.reviews-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.r-pill {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 50px;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-weight: 600;
  font-size: .97rem;
  transition: all .3s ease;
}
.r-pill:hover {
  background: rgba(255,255,255,0.24);
  transform: translateY(-3px);
}
.r-pill strong {
  font-size: 1.3rem;
  font-weight: 900;
}

.reviews-swiper-wrap {
  position: relative;
}

.reviews-carousel {
  overflow: visible !important;
  padding: 28px 0 84px !important;
}

.review-item {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-radius: 32px;
  padding: 36px 34px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.16);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1),
              box-shadow .5s ease;
  cursor: default;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.review-item::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(31,108,255,0.06) 0%,
    rgba(47,211,229,0.06) 100%);
  pointer-events: none;
}
.review-item::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(47,211,229,0.05) 0%,
    rgba(31,191,117,0.05) 100%);
  pointer-events: none;
}

.swiper-slide-active .review-item,
.review-item:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 90px rgba(31,108,255,0.26);
}

.review-quote-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 6px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  opacity: .35;
  user-select: none;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  font-size: .85rem;
  box-shadow: 0 2px 8px rgba(255,170,0,.35);
  animation: starPop .4s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes starPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.star:nth-child(1) { animation-delay: .05s; }
.star:nth-child(2) { animation-delay: .10s; }
.star:nth-child(3) { animation-delay: .15s; }
.star:nth-child(4) { animation-delay: .20s; }
.star:nth-child(5) { animation-delay: .25s; }

.review-content {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.review-divider {
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(47,211,229,.4) 30%,
    rgba(47,211,229,.4) 70%,
    transparent 100%);
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.review-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(31,108,255,.35);
}

.avatar-1 { background: linear-gradient(135deg, #1f6cff, #2fd3e5); }
.avatar-2 { background: linear-gradient(135deg, #2fd3e5, #1fbf75); }
.avatar-3 { background: linear-gradient(135deg, #ff6b6b, #feca57); }
.avatar-4 { background: linear-gradient(135deg, #a855f7, #3b82f6); }
.avatar-5 { background: linear-gradient(135deg, #f97316, #eab308); }
.avatar-6 { background: linear-gradient(135deg, #06b6d4, #8b5cf6); }

.review-author-info {
  flex: 1;
}

.review-name {
  font-size: .88rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 3px;
  line-height: 1.2;
}

.review-city {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.review-type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg,
    rgba(31,108,255,.09) 0%,
    rgba(47,211,229,.09) 100%);
  color: var(--blue-main);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
  border: 1px solid rgba(47,211,229,.2);
  flex-shrink: 0;
  white-space: nowrap;
}

.swiper-button-prev,
.swiper-button-next {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50%;
  background: var(--grad) !important;
  color: white !important;
  box-shadow: 0 8px 28px rgba(31,108,255,.45);
  transition: all .3s ease;
  top: calc(50% - 44px) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px !important;
  font-weight: 800;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.15);
  box-shadow: 0 14px 40px rgba(31,108,255,.6);
}

.swiper-button-prev { left: -8px !important; }
.swiper-button-next { right: -8px !important; }

.swiper-pagination {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255,255,255,.4) !important;
  opacity: 1 !important;
  transition: all .3s ease;
}

.swiper-pagination-bullet-active {
  background: white !important;
  width: 30px !important;
  border-radius: 5px !important;
  box-shadow: 0 2px 10px rgba(255,255,255,.5);
}

.reviews-progress-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}

.reviews-progress-track {
  flex: 1;
  max-width: 360px;
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  overflow: hidden;
}

.reviews-progress-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 2px;
  width: 16.66%;
  transition: width .4s ease;
}

.reviews-counter {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
}

.reviews-cta {
  text-align: center;
  margin-top: 72px;
}

.btn-cta {
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,.38);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 20px 50px;
  border-radius: 24px;
  cursor: pointer;
  transition: all .35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .01em;
}
.btn-cta:hover {
  background: rgba(255,255,255,.26);
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0,0,0,.22);
}

@media (max-width: 1100px) {
  .swiper-button-prev { left: 0 !important; }
  .swiper-button-next { right: 0 !important; }
}

@media (max-width: 768px) {
  .reviews-section { padding: 80px 0 100px; }
  .reviews-header { margin-bottom: 48px; }
  .review-item { padding: 26px 22px; }
  .swiper-button-prev { left: -10px !important; display: none !important; }
  .swiper-button-next { right: -10px !important; display: none !important; }
  .reviews-progress-wrap { margin-top: 8px; }
}

@media (max-width: 480px) {
  .r-pill { padding: 9px 14px; font-size: .82rem; }
  .r-pill strong { font-size: 1.05rem; }
  .reviews-pills { gap: 8px; }
  .review-author { flex-wrap: wrap; }
  .review-type { margin-top: 4px; }
}
  
  
  
  
  
  
  
  
  
  
  
.ct-anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-duration: 0.75s;
  will-change: opacity, transform;
}
.ct-anim.fade-up    { transform: translateY(52px); }
.ct-anim.fade-left  { transform: translateX(-52px); }
.ct-anim.fade-right { transform: translateX(52px); }
.ct-anim.zoom-in    { transform: scale(0.86); }
.ct-anim.visible    { opacity: 1; transform: none; }

.cta {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #4fa3ff 0%, #2fd3e5 50%, #1fbf75 100%);
  overflow: hidden;
}

.cta .decor-left,
.cta .decor-right {
  position: absolute;
  width: 600px; height: 100%;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.14;
  pointer-events: none;
  z-index: 1;
}
.cta .decor-left  { left:-200px;transform:rotate(90deg);background-image:url('/userfiles/images/burenie/water_left.webp'); }
.cta .decor-right { right:-200px;transform:rotate(-90deg);background-image:url('/userfiles/images/burenie/water-right.webp'); }

.cta > * { position: relative; z-index: 2; }

.cta .section-title {
  text-align: center;
  margin-bottom: 64px;
}
.cta .section-title h2 {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff 0%, #e0faff 50%, #b8f5e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.28));
  margin-bottom: 14px;
}
.cta .section-title p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 52px;
}

.cta-feature {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 56px rgba(0,0,0,0.16),
    0 0 0 1px rgba(255,255,255,0.12);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.45s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cta-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5, #1fbf75);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}
.cta-feature:hover {
  transform: translateY(-10px) scale(1.012);
  box-shadow:
    0 36px 80px rgba(31,108,255,0.24),
    0 0 0 1px rgba(47,211,229,0.18);
}
.cta-feature:hover::before { opacity: 1; }

.cf-header {
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 55%, #1fbf75 100%);
  padding: 22px 24px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.cf-header::after {
  content: '';
  position: absolute;
  right: -30px; top: -30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  pointer-events: none;
  transition: transform 0.5s ease;
}
.cta-feature:hover .cf-header::after { transform: scale(1.6) translate(-8px, 8px); }

.cf-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  z-index: 1;
}
.cta-feature:hover .cf-icon { transform: scale(1.15) rotate(-6deg); }
.cf-icon i { color: white; font-size: 1.35rem; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2)); }

.cf-header-title {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 800;
  color: white;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.cf-body {
  padding: 18px 24px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.arrow {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1f6cff, #2fd3e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.35s ease;
  user-select: none;
}
.cta-feature:hover .arrow { transform: translateX(5px); }

.cf-value {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 900;
  color: #0b2c4d;
  line-height: 1.2;
}

.cta-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.cta-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: white;
  color: #1f6cff;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 900;
  padding: 22px 52px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  box-shadow:
    0 16px 50px rgba(0,0,0,0.22),
    0 0 0 3px rgba(255,255,255,0.3);
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
  max-width: 700px;
  width: 100%;
  justify-content: center;
  text-align: center;
  line-height: 1.35;
}
.cta-main-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 55%, #1fbf75 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cta-main-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 28px 70px rgba(31,108,255,0.38),
    0 0 0 3px rgba(255,255,255,0.4);
  color: white;
}
.cta-main-btn:hover::before { opacity: 1; }
.cta-main-btn i,
.cta-main-btn span { position: relative; z-index: 1; }
.cta-main-btn i { font-size: 1.25rem; flex-shrink: 0; }

.cta-btn-pulse {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-btn-pulse::before,
.cta-btn-pulse::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(31,108,255,0.35);
  width: 42px; height: 42px;
  animation: btnPulse 2s ease-out infinite;
}
.cta-btn-pulse::after { animation-delay: 0.8s; }
@keyframes btnPulse {
  0%   { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.cta-main-btn:hover .cta-btn-pulse::before,
.cta-main-btn:hover .cta-btn-pulse::after {
  border-color: rgba(255,255,255,0.4);
}

.cta-info-block {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 22px;
  padding: 28px 40px;
  max-width: 800px;
  width: 100%;
  text-align: center;
}
.cta-info-block p {
  font-size: clamp(0.88rem, 1.2vw, 1.03rem);
  line-height: 1.78;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.cta-info-block strong {
  color: white;
  font-weight: 800;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cta-trust-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  padding: 9px 18px;
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.cta-trust-chip:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-3px);
}
.cta-trust-chip i { font-size: 0.9rem; color: rgba(255,255,255,0.85); }

@media (max-width: 1200px) {
  .cta-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .cta-features { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cta .section-title { margin-bottom: 48px; }
}

@media (max-width: 768px) {
  .cta { padding: 80px 0 70px; }

  .cf-header { padding: 18px 20px 14px; gap: 11px; }
  .cf-icon { width: 42px; height: 42px; border-radius: 12px; }
  .cf-icon i { font-size: 1.15rem; }
  .cf-header-title { font-size: 0.92rem; }

  .cf-body { padding: 14px 20px 18px; gap: 10px; }
  .arrow { font-size: 1.5rem; }
  .cf-value { font-size: 1.1rem; }

  .cta-main-btn { padding: 18px 36px; font-size: 1rem; border-radius: 20px; }

  .cta-info-block { padding: 22px 24px; border-radius: 18px; }
  .cta-info-block p { font-size: 0.91rem; }

  .cta-trust-chip { font-size: 0.8rem; padding: 8px 14px; }
}

@media (max-width: 600px) {
  .cta-features { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  .cta { padding: 60px 0 55px; }
  .cta .section-title h2 { font-size: clamp(22px, 7vw, 32px); }
  .cta .section-title p { font-size: 0.93rem; }
  .cta .section-title { margin-bottom: 36px; }

  .cta-features { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 36px; }
  .cta-feature { border-radius: 18px; }

  .cf-header { padding: 14px 16px 12px; gap: 9px; }
  .cf-icon { width: 36px; height: 36px; border-radius: 10px; }
  .cf-icon i { font-size: 1rem; }
  .cf-header-title { font-size: 0.84rem; }

  .cf-body { padding: 12px 16px 16px; gap: 8px; }
  .arrow { font-size: 1.3rem; }
  .cf-value { font-size: 1rem; }

  .cta-bottom { gap: 24px; }
  .cta-main-btn { padding: 16px 24px; font-size: 0.92rem; border-radius: 18px; gap: 10px; }
  .cta-btn-pulse::before,
  .cta-btn-pulse::after { width: 34px; height: 34px; }

  .cta-info-block { padding: 18px 18px; border-radius: 16px; }
  .cta-info-block p { font-size: 0.86rem; line-height: 1.68; }

  .cta-trust { gap: 7px; }
  .cta-trust-chip { font-size: 0.75rem; padding: 7px 11px; gap: 5px; }
  .cta-trust-chip i { font-size: 0.8rem; }
}

@media (max-width: 360px) {
  .cta { padding: 50px 0 45px; }
  .cta .section-title h2 { font-size: 20px; }

  .cta-features { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cf-header { padding: 12px 13px 10px; gap: 7px; }
  .cf-icon { width: 30px; height: 30px; border-radius: 8px; }
  .cf-icon i { font-size: 0.88rem; }
  .cf-header-title { font-size: 0.78rem; }
  .cf-body { padding: 10px 13px 14px; }
  .cf-value { font-size: 0.92rem; }

  .cta-main-btn { padding: 14px 18px; font-size: 0.86rem; border-radius: 16px; }
  .cta-info-block { padding: 14px 14px; }
  .cta-info-block p { font-size: 0.82rem; }

  .cta-trust { flex-direction: column; align-items: stretch; gap: 6px; }
  .cta-trust-chip { justify-content: center; }
}
  
  
  
  
  
  
  
  
  
  
  
  
  


.works-section {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #4fa3ff 0%, #2fd3e5 50%, #1fbf75 100%);
  overflow: hidden;
}

.works-section > * { position: relative; z-index: 1; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.works-header {
  text-align: center;
  margin-bottom: 60px;
}

.works-header h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  background: linear-gradient(90deg, #fff 0%, #e0f7ff 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.25));
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.works-header p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.93);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.works-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.stat-pill {
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}
.stat-pill:hover {
  background: rgba(255,255,255,0.26);
  transform: translateY(-3px);
}
.stat-pill strong {
  font-size: 1.4rem;
  font-weight: 900;
}

.works-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.filter-btn {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.filter-btn:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}
.filter-btn.active {
  background: white;
  color: var(--blue-deep);
  border-color: white;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.works-grid {
  columns: 3;
  column-gap: 24px;
  /* fallback — если columns не поддерживается, использован flex ниже */
}

@supports not (columns: 3) {
  .works-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
}

.work-card {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease, opacity 0.4s ease;
  position: relative;
}

.work-card:hover {
  transform: translateY(-12px) scale(1.015);
  box-shadow: 0 32px 80px rgba(31,108,255,0.25);
}

.work-card.hidden {
  opacity: 0;
  transform: scale(0.85) translateY(30px);
  pointer-events: none;
}

.work-card.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,108,255,0.85) 0%, rgba(47,211,229,0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-card:hover .card-overlay { opacity: 1; }

.overlay-btn {
  background: white;
  color: var(--blue-main);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(20px) scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.work-card:hover .overlay-btn {
  transform: translateY(0) scale(1);
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--grad);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(31,108,255,0.4);
  z-index: 2;
}

.card-year {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}

.card-body {
  padding: 22px 24px 26px;
}

.card-body h3 {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.35;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.meta-chip {
  background: #eef5ff;
  color: var(--blue-main);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.depth-bar-wrap {
  margin-top: 14px;
}
.depth-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.depth-bar-track {
  height: 5px;
  background: #dceeff;
  border-radius: 10px;
  overflow: hidden;
}
.depth-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: var(--grad);
  width: 0%;
  transition: width 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.works-cta {
  text-align: center;
  margin-top: 64px;
}

.btn-main {
  background: var(--grad);
  color: white;
  border: none;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 20px 52px;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 14px 44px rgba(47,211,229,0.4);
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
}
.btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(47,211,229,0.55);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 60, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal-window {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 36px;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 120px rgba(0,0,0,0.4);
  transform: scale(0.88) translateY(40px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--cyan-main) #eef5ff;
}

.modal-window::-webkit-scrollbar { width: 6px; }
.modal-window::-webkit-scrollbar-track { background: #eef5ff; }
.modal-window::-webkit-scrollbar-thumb { background: var(--cyan-main); border-radius: 3px; }

.modal-backdrop.open .modal-window {
  transform: scale(1) translateY(0);
}

.modal-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 36px 36px 0 0;
}

.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,30,80,0.85) 0%, rgba(10,30,80,0.2) 60%, transparent 100%);
}

.modal-hero-content {
  position: absolute;
  bottom: 28px;
  left: 32px;
  right: 80px;
  color: white;
}

.modal-hero-tag {
  display: inline-block;
  background: var(--grad);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal-hero-content h2 {
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue-deep);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
.modal-close:hover {
  background: white;
  transform: scale(1.12) rotate(90deg);
}

.modal-body {
  padding: 36px 36px 44px;
}

.modal-params {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.param-card {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f5ff 100%);
  border-radius: 20px;
  padding: 18px 16px;
  text-align: center;
  border: 1px solid rgba(31,108,255,0.1);
  transition: transform 0.3s ease;
}
.param-card:hover { transform: translateY(-4px); }

.param-icon { font-size: 1.8rem; margin-bottom: 6px; }

.param-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1.2;
  margin-bottom: 4px;
}

.param-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-section {
  margin-bottom: 32px;
}

.modal-section-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--cyan-main), transparent);
  border-radius: 1px;
}

.modal-section p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.modal-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8fbff;
  border-radius: 16px;
  padding: 14px 18px;
}

.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-text strong {
  color: var(--text-main);
  display: block;
  margin-bottom: 2px;
}

.modal-result {
  background: linear-gradient(135deg, #e8f5ff 0%, #e0fff6 100%);
  border-radius: 20px;
  padding: 24px 28px;
  border-left: 4px solid var(--cyan-main);
}

.modal-result p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.modal-gallery img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.modal-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(40px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.work-card.animate-in {
  animation: cardReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@media (max-width: 1200px) {
  .works-grid { columns: 2; }
}

@media (max-width: 768px) {
  .works-section { padding: 70px 0 80px; }
  .works-grid { columns: 1; column-gap: 0; }
  .modal-hero { height: 200px; }
  .modal-body { padding: 24px 20px 32px; }
  .modal-params { grid-template-columns: repeat(2, 1fr); }
  .modal-gallery { grid-template-columns: repeat(2, 1fr); }
  .modal-hero-content { left: 18px; right: 60px; bottom: 18px; }
  .works-stats { gap: 8px; }
  .stat-pill { padding: 10px 18px; font-size: 0.9rem; }
  .stat-pill strong { font-size: 1.15rem; }
  .works-filters { gap: 8px; }
  .filter-btn { font-size: 0.85rem; padding: 9px 16px; }
  .btn-main { padding: 17px 32px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .modal-params { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .modal-gallery { grid-template-columns: 1fr 1fr; }
  .param-val { font-size: 0.95rem; }
  .works-header h2 { font-size: 2rem; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.loading-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan-main);
  animation: pulse 1.4s ease-in-out infinite;
}
.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(90deg, #ddeeff 25%, #eef7ff 50%, #ddeeff 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 10px;
}

.ripple-btn {
  position: relative;
  overflow: hidden;
}
.ripple-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  border-radius: inherit;
  transform: scale(0);
  transition: transform 0.5s ease;
}
.ripple-btn:active::after {
  transform: scale(2);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.badge-new {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ff4d4d;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 3;
  animation: pulse 2s ease-in-out infinite;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: white;
  font-size: 1.2rem;
  opacity: 0.8;
  display: none;
}
.no-results.show { display: block; }














.team-section {
  position: relative;
  padding: 120px 0 140px;
  background: url('/userfiles/images/burenie/traktor.webp') center / cover no-repeat;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.team-section > * { position: relative; z-index: 1; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}

.team-header {
  text-align: center;
  margin-bottom: 70px;
}

.team-header h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff 0%, #e0f7ff 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.28));
  margin-bottom: 22px;
}

.team-header p {
  font-size: clamp(1rem, 2vw, 1.32rem);
  color: rgba(255,255,255,0.92);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.team-facts {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.fact-pill {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50px;
  padding: 11px 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: all .3s ease;
}
.fact-pill:hover {
  background: rgba(255,255,255,0.24);
  transform: translateY(-3px);
}
.fact-pill strong {
  font-size: 1.35rem;
  font-weight: 900;
}

.team-swiper-wrap {
  position: relative;
}

.team-swiper {
  overflow: visible !important;      
  padding: 30px 0 80px !important;   
}

.team-card {
  background: rgba(255,255,255,0.96);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1),
              box-shadow .5s ease;
  cursor: grab;
  user-select: none;
  display: flex;
  flex-direction: column;
}

.team-card:active { cursor: grabbing; }

.swiper-slide-active .team-card,
.team-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 90px rgba(31,108,255,0.28);
}

.card-photo {
  position: relative;
  height: 320px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}

.team-card:hover .card-photo img {
  transform: scale(1.07);
}

.photo-grad {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(10,44,77,.75) 0%, transparent 100%);
  pointer-events: none;
}

.exp-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--grad);
  color: white;
  font-size: .72rem;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 50px;
  letter-spacing: .04em;
  box-shadow: 0 6px 18px rgba(31,108,255,.45);
  z-index: 2;
}

.photo-name {
  position: absolute;
  bottom: 18px; left: 22px; right: 22px;
  z-index: 2;
  color: white;
}
.photo-name h3 {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 5px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.photo-name span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--cyan-soft);
  letter-spacing: .03em;
}

.card-body {
  padding: 26px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-chip {
  background: linear-gradient(135deg,rgba(31,108,255,.1) 0%,rgba(47,211,229,.1) 100%);
  color: var(--blue-main);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  border: 1px solid rgba(47,211,229,.25);
  white-space: nowrap;
}

.card-quote {
  position: relative;
  font-size: .96rem;
  line-height: 1.72;
  color: var(--text-muted);
  padding-left: 18px;
}
.card-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 4px; height: calc(100% - 8px);
  border-radius: 2px;
  background: var(--grad);
}

.card-achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.achievement {
  background: #f4f9ff;
  border-radius: 16px;
  padding: 12px 14px;
  text-align: center;
  border: 1px solid rgba(31,108,255,.08);
  transition: transform .3s ease;
}
.achievement:hover { transform: translateY(-3px); }

.ach-val {
  font-size: 1.25rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1.2;
  margin-bottom: 3px;
}
.ach-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.swiper-button-prev,
.swiper-button-next {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50%;
  background: var(--grad) !important;
  color: white !important;
  box-shadow: 0 8px 28px rgba(31,108,255,.45);
  transition: all .3s ease;
  top: calc(50% - 30px) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px !important;
  font-weight: 800;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.15);
  box-shadow: 0 14px 40px rgba(31,108,255,.6);
}

.swiper-button-prev { left: -10px !important; }
.swiper-button-next { right: -10px !important; }

.swiper-pagination {
  bottom: 24px !important;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255,255,255,.45) !important;
  opacity: 1 !important;
  transition: all .3s ease;
}

.swiper-pagination-bullet-active {
  background: white !important;
  width: 30px !important;
  border-radius: 5px !important;
  box-shadow: 0 2px 10px rgba(255,255,255,.5);
}

.slider-progress-wrap {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.slider-progress-track {
  flex: 1;
  max-width: 400px;
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  overflow: hidden;
}

.slider-progress-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 2px;
  width: 16.66%;             
  transition: width .4s ease;
}

.slider-counter {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}

.team-cta {
  text-align: center;
  margin-top: 72px;
}

.btn-main {
  background: var(--grad);
  color: white;
  border: none;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 20px 52px;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 14px 44px rgba(47,211,229,.4);
  transition: all .35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
}
.btn-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.btn-main:hover::after { transform: scaleX(1); }
.btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(47,211,229,.55);
}

@media (max-width: 1100px) {
  .swiper-button-prev { left: 4px !important; }
  .swiper-button-next { right: 4px !important; }
}

@media (max-width: 768px) {
  .team-section { padding: 80px 0 100px; }
  .team-header { margin-bottom: 48px; }
  .card-photo { height: 260px; }
  .card-body { padding: 20px 20px 26px; }
  .card-achievements { grid-template-columns: 1fr 1fr; }
  .swiper-button-prev,
  .swiper-button-next { display: none !important; }
  .slider-progress-wrap { margin-top: 8px; }
}

@media (max-width: 480px) {
  .card-photo { height: 230px; }
  .card-achievements { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ach-val { font-size: 1.05rem; }
  .fact-pill { padding: 9px 16px; font-size: .88rem; }
  .fact-pill strong { font-size: 1.1rem; }
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(36px) scale(.94); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.swiper-slide-active .team-card {
  animation: cardIn .55s cubic-bezier(.34,1.56,.64,1) both;
}

















.certs-section {
  position: relative;
  padding: 120px 0 140px;
  background: linear-gradient(135deg, #4fa3ff 0%, #2fd3e5 50%, #1fbf75 100%);
  overflow: hidden;
}

.certs-section > * { position: relative; z-index: 1; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}

.certs-header {
  text-align: center;
  margin-bottom: 72px;
}

.certs-header h2 {
  font-size: clamp(34px, 5.5vw, 70px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff 0%, #e0f7ff 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.28));
  margin-bottom: 22px;
}

.certs-header p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  max-width: 660px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.header-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.h-pill {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 50px;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-weight: 600;
  font-size: .97rem;
  transition: all .3s ease;
}
.h-pill:hover {
  background: rgba(255,255,255,0.24);
  transform: translateY(-3px);
}
.h-pill strong {
  font-size: 1.3rem;
  font-weight: 900;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cert-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 20px 56px rgba(0,0,0,0.16);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1),
              box-shadow .5s ease;
  display: flex;
  flex-direction: column;
}

.cert-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 40px 90px rgba(31,108,255,0.28);
}

.cert-number {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 900;
  color: white;
  box-shadow: 0 4px 14px rgba(31,108,255,.5);
}

.cert-seal {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 18px rgba(240,165,0,.5);
  animation: rotateSeal 8s linear infinite;
}

@keyframes rotateSeal {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.cert-preview {
  position: relative;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f4f9ff;
}

.cert-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
  display: block;
}

.cert-card:hover .cert-preview img {
  transform: scale(1.06);
}

.cert-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(31,108,255,.88) 0%,
    rgba(47,211,229,.88) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transition: opacity .4s ease;
}

.cert-card:hover .cert-hover-overlay { opacity: 1; }

.overlay-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transform: scale(.7);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1) .1s;
}

.cert-card:hover .overlay-icon { transform: scale(1); }

.overlay-text {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  transform: translateY(16px);
  opacity: 0;
  transition: all .35s ease .15s;
}

.cert-card:hover .overlay-text {
  transform: translateY(0);
  opacity: 1;
}

.cert-frame {
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(31,108,255,.12);
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}
.cert-frame::before,
.cert-frame::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--cyan-main);
  border-style: solid;
}
.cert-frame::before {
  top: -2px; left: -2px;
  border-width: 3px 0 0 3px;
  border-radius: 4px 0 0 0;
}
.cert-frame::after {
  bottom: -2px; right: -2px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 4px 0;
}

.cert-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg,rgba(31,108,255,.1) 0%,rgba(47,211,229,.1) 100%);
  color: var(--blue-main);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  border: 1px solid rgba(47,211,229,.25);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cert-body h3 {
  font-size: clamp(.85rem, 1.4vw, 1.05rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
}

.cert-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cert-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  padding: 7px 12px;
  background: #f4f9ff;
  border-radius: 10px;
}

.cert-meta-row span:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.cert-meta-row span:last-child {
  color: var(--text-main);
  font-weight: 700;
}

.cert-action {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cert-valid {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-main);
}

.valid-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-main);
  box-shadow: 0 0 0 0 rgba(31,191,117,.4);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(31,191,117,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(31,191,117,0); }
}

.cert-open-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--grad);
  color: white;
  border: none;
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 14px rgba(47,211,229,.35);
}

.cert-open-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(47,211,229,.5);
}

.cert-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.cert-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.cert-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(5,20,60,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cert-modal-win {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 36px;
  width: 100%;
  max-width: 780px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 48px 120px rgba(0,0,0,.45);
  transform: scale(.88) translateY(44px);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
  scrollbar-width: thin;
  scrollbar-color: var(--cyan-main) #eef5ff;
}

.cert-modal-win::-webkit-scrollbar { width: 5px; }
.cert-modal-win::-webkit-scrollbar-track { background: #eef5ff; }
.cert-modal-win::-webkit-scrollbar-thumb { background: var(--cyan-main); border-radius: 3px; }

.cert-modal-backdrop.open .cert-modal-win {
  transform: scale(1) translateY(0);
}

.cert-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(10,60,255,.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-main);
  transition: all .3s ease;
}
.cert-modal-close:hover {
  background: rgba(10,60,255,.14);
  transform: scale(1.1) rotate(90deg);
}

.modal-cert-header {
  background: var(--grad);
  padding: 44px 40px 36px;
  border-radius: 36px 36px 0 0;
  position: relative;
  overflow: hidden;
}

.modal-cert-header::before {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.modal-cert-header::after {
  content: '';
  position: absolute;
  right: 20px; bottom: -90px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}

.modal-cert-icon {
  font-size: 3.2rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
}

.modal-cert-header h2 {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 800;
  color: white;
  line-height: 1.25;
  margin-bottom: 10px;
  max-width: 520px;
}

.modal-cert-header p {
  font-size: .97rem;
  color: rgba(255,255,255,.85);
  max-width: 480px;
  line-height: 1.6;
}

.modal-cert-body {
  padding: 36px 40px 44px;
}

.modal-cert-params {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.m-param {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f5ff 100%);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(31,108,255,.08);
  transition: transform .3s ease;
}
.m-param:hover { transform: translateY(-3px); }

.m-param-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}

.m-param-text strong {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.m-param-text span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.modal-cert-desc-title {
  font-size: .9rem;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-cert-desc-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--cyan-main), transparent);
  border-radius: 1px;
}

.modal-cert-desc {
  font-size: .97rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.modal-cert-confirms {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.confirm-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fbff;
  border-radius: 14px;
  padding: 13px 16px;
}

.confirm-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.confirm-text {
  font-size: .93rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.confirm-text strong { color: var(--text-main); }

.modal-cert-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  margin-bottom: 28px;
  position: relative;
}

.modal-cert-img-wrap img {
  width: 100%;
  display: block;
  max-height: 380px;
  object-fit: cover;
  object-position: top;
}

.img-watermark {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--grad);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: .04em;
}

.certs-cta {
  text-align: center;
  margin-top: 80px;
}

.btn-main {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,.4);
  color: white;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 20px 52px;
  border-radius: 24px;
  cursor: pointer;
  transition: all .35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .01em;
}
.btn-main:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0,0,0,.2);
}

@media (max-width: 1100px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .certs-section { padding: 80px 0 100px; }
  .certs-grid { grid-template-columns: 1fr; gap: 24px; }
  .modal-cert-params { grid-template-columns: 1fr; }
  .modal-cert-header { padding: 32px 24px 28px; }
  .modal-cert-body { padding: 28px 22px 36px; }
  .cert-preview { height: 220px; }
  .modal-cert-img-wrap img { max-height: 240px; }
}

@media (max-width: 480px) {
  .header-pills { gap: 8px; }
  .h-pill { padding: 9px 14px; font-size: .82rem; }
  .h-pill strong { font-size: 1.05rem; }
}

@keyframes certIn {
  from { opacity: 0; transform: translateY(50px) rotateX(8deg); }
  to   { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

.cert-card[data-aos].aos-animate {
  animation: certIn .7s cubic-bezier(.34,1.56,.64,1) both;
}
  
  
  
  
  
  
  
  
  
  
  
  
  
.cn-anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-duration: 0.75s;
  will-change: opacity, transform;
}
.cn-anim.fade-up    { transform: translateY(52px); }
.cn-anim.fade-left  { transform: translateX(-56px); }
.cn-anim.fade-right { transform: translateX(56px); }
.cn-anim.zoom-in    { transform: scale(0.88); }
.cn-anim.visible    { opacity: 1; transform: none; }

.contact {
  position: relative;
  padding: 120px 0 100px;
  background: url('/userfiles/images/burenie/hero-bg.webp') center / cover no-repeat;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 40, 120, 0.84) 0%,
    rgba(0, 0, 0, 0.62) 50%,
    rgba(0, 40, 20, 0.76) 100%
  );
  z-index: 1;
}

.contact > * { position: relative; z-index: 2; }

.contact .section-title {
  text-align: center;
  margin-bottom: 64px;
}
.contact .section-title h2 {
  font-size: clamp(28px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff 0%, #e0faff 50%, #b8f5e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.32));
  margin-bottom: 14px;
}
.contact .section-title p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 22px;
  align-items: start;
}

.cn-panel {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.12);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.45s ease;
  position: relative;
}
.cn-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1f6cff, #2fd3e5, #1fbf75);
  z-index: 2;
}
.cn-panel:hover {
  transform: translateY(-8px) scale(1.008);
  box-shadow:
    0 40px 90px rgba(31,108,255,0.22),
    0 0 0 1px rgba(47,211,229,0.18);
}

.cn-panel-header {
  background: linear-gradient(135deg, #1f6cff 0%, #2fd3e5 55%, #1fbf75 100%);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.cn-panel-header::after {
  content: '';
  position: absolute;
  right: -30px; top: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  pointer-events: none;
  transition: transform 0.5s ease;
}
.cn-panel:hover .cn-panel-header::after { transform: scale(1.6) translate(-10px, 10px); }

.cn-panel-icon-wrap {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  z-index: 1;
}
.cn-panel:hover .cn-panel-icon-wrap { transform: scale(1.14) rotate(-6deg); }
.cn-panel-icon-wrap i { color: white; font-size: 1.25rem; }

.cn-panel-title {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 800;
  color: white;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.cn-panel-body {
  padding: 26px 28px 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(208,224,255,0.45);
  transition: background 0.25s ease;
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item:first-child { padding-top: 0; }

.ci-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(31,108,255,0.10), rgba(47,211,229,0.10));
  border: 1.5px solid rgba(47,211,229,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}
.ci-icon i { font-size: 1rem; color: #1f6cff; }
.contact-item:hover .ci-icon {
  background: linear-gradient(135deg, #1f6cff, #2fd3e5);
  border-color: transparent;
}
.contact-item:hover .ci-icon i { color: white; }

.ci-text { flex: 1; min-width: 0; }
.ci-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #4a6f8a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.ci-text a,
.ci-text span {
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  color: #0b2c4d;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.45;
  display: block;
  transition: color 0.25s ease;
}
.ci-text a:hover { color: #1f6cff; }
.ci-text small {
  font-size: 0.78rem;
  color: #7a9ab2;
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

.messengers-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.88rem;
  color: #4a6f8a;
  font-weight: 600;
  margin-bottom: 22px;
  text-align: center;
}
.messengers-subtitle::before,
.messengers-subtitle::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(208,224,255,0.6);
}

.messengers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.messenger-btn {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 14px;
  border-radius: 20px;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(248,252,255,0.9), rgba(240,248,255,0.8));
  border: 1.5px solid rgba(208,224,255,0.5);
  color: #0b2c4d;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
}
.messenger-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: inherit;
  transition: opacity 0.35s ease;
}
.messenger-btn:hover {
  transform: translateY(-7px) scale(1.03);
  border-color: transparent;
  color: white;
}
.messenger-btn:hover::before { opacity: 1; }
.messenger-btn:hover .messenger-label { color: white; }

.messenger-btn i {
  font-size: 2.8rem;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  z-index: 1;
  line-height: 1;
}
.messenger-btn:hover i { transform: scale(1.18) rotate(-6deg); }

.messenger-label {
  font-size: 0.84rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.whatsapp i  { color: #25D366; }
.telegram i  { color: #0088cc; }
.viber i     { color: #7360F2; }
.phone i     { color: #1f6cff; }

.whatsapp::before  { background: linear-gradient(135deg, #128C7E, #25D366); box-shadow: 0 14px 40px rgba(37,211,102,0.45); }
.telegram::before  { background: linear-gradient(135deg, #0062a8, #0088cc); box-shadow: 0 14px 40px rgba(0,136,204,0.45); }
.viber::before     { background: linear-gradient(135deg, #5a4bbf, #7360F2); box-shadow: 0 14px 40px rgba(115,96,242,0.45); }
.phone::before     { background: linear-gradient(135deg, #1f6cff, #2fd3e5); box-shadow: 0 14px 40px rgba(47,211,229,0.45); }

.whatsapp:hover i, .telegram:hover i, .viber:hover i, .phone:hover i { color: white; }

.cn-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cn-feature-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(208,224,255,0.4);
  transition: padding 0.3s ease;
}
.cn-feature-item:last-child { border-bottom: none; padding-bottom: 0; }
.cn-feature-item:first-child { padding-top: 0; }
.cn-feature-item:hover { padding-left: 5px; }

.cn-fi-dot {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(31,108,255,0.10), rgba(47,211,229,0.10));
  border: 1.5px solid rgba(47,211,229,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: all 0.35s ease;
  color: #1f6cff;
}
.cn-feature-item:hover .cn-fi-dot {
  background: linear-gradient(135deg, #1f6cff, #2fd3e5);
  border-color: transparent;
  color: white;
  transform: scale(1.08);
}

.cn-fi-text {
  font-size: clamp(0.84rem, 1.1vw, 0.95rem);
  color: #4a6f8a;
  line-height: 1.4;
}
.cn-fi-text strong {
  color: #0b2c4d;
  font-weight: 800;
}

.contact-bottom {
  margin-top: 40px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 24px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cb-text {
  flex: 1;
  min-width: 240px;
}
.cb-text p {
  font-size: clamp(0.88rem, 1.2vw, 1.02rem);
  line-height: 1.72;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.cb-text strong {
  color: white;
  font-weight: 800;
}

.cb-chips {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cb-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 9px 18px;
  color: white;
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.cb-chip:hover {
  background: rgba(255,255,255,0.26);
  transform: translateY(-3px);
}
.cb-chip i { font-size: 0.88rem; }

@media (max-width: 1200px) {
  .contact-grid { grid-template-columns: 1fr 1.15fr 1fr; gap: 18px; }
}

@media (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cn-panel.messengers-block { grid-column: 1 / -1; }
  .messengers-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .contact { padding: 80px 0 70px; }
  .contact .section-title { margin-bottom: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 14px; }
  .cn-panel.messengers-block { grid-column: auto; }
  .messengers-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .cn-panel-header { padding: 18px 22px; gap: 11px; }
  .cn-panel-icon-wrap { width: 40px; height: 40px; border-radius: 11px; }
  .cn-panel-icon-wrap i { font-size: 1.1rem; }
  .cn-panel-title { font-size: 0.97rem; }
  .cn-panel-body { padding: 20px 22px 24px; }

  .contact-bottom { padding: 22px 22px; gap: 18px; border-radius: 18px; margin-top: 28px; }
  .cb-chips { gap: 7px; }
  .cb-chip { font-size: 0.78rem; padding: 8px 13px; }
}

@media (max-width: 480px) {
  .contact { padding: 60px 0 55px; }
  .contact .section-title h2 { font-size: clamp(22px, 7vw, 32px); }
  .contact .section-title p { font-size: 0.93rem; }
  .contact .section-title { margin-bottom: 32px; }

  .contact-grid { gap: 12px; }
  .cn-panel { border-radius: 20px; }

  .cn-panel-header { padding: 14px 18px; gap: 10px; }
  .cn-panel-icon-wrap { width: 36px; height: 36px; border-radius: 10px; }
  .cn-panel-icon-wrap i { font-size: 0.98rem; }
  .cn-panel-title { font-size: 0.9rem; }
  .cn-panel-body { padding: 16px 18px 20px; }

  .ci-icon { width: 34px; height: 34px; border-radius: 9px; }
  .ci-icon i { font-size: 0.88rem; }
  .ci-text strong { font-size: 0.66rem; }
  .ci-text a, .ci-text span { font-size: 0.88rem; }
  .contact-item { gap: 11px; padding: 11px 0; }

  .messengers-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .messenger-btn { padding: 16px 10px; gap: 8px; border-radius: 16px; }
  .messenger-btn i { font-size: 2.2rem; }
  .messenger-label { font-size: 0.77rem; }

  .cn-fi-dot { width: 26px; height: 26px; font-size: 0.75rem; border-radius: 7px; }
  .cn-fi-text { font-size: 0.85rem; }
  .cn-feature-item { gap: 10px; padding: 10px 0; }

  .contact-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 18px;
    border-radius: 16px;
    margin-top: 22px;
  }
  .cb-text p { font-size: 0.88rem; }
  .cb-chips { gap: 6px; }
  .cb-chip { font-size: 0.74rem; padding: 7px 11px; }
}

@media (max-width: 360px) {
  .contact { padding: 50px 0 45px; }
  .contact .section-title h2 { font-size: 20px; }

  .cn-panel-header { padding: 12px 15px; gap: 8px; }
  .cn-panel-icon-wrap { width: 32px; height: 32px; border-radius: 8px; }
  .cn-panel-title { font-size: 0.84rem; }
  .cn-panel-body { padding: 14px 15px 18px; }

  .messenger-btn { padding: 14px 8px; gap: 7px; border-radius: 14px; }
  .messenger-btn i { font-size: 2rem; }
  .messenger-label { font-size: 0.72rem; }

  .cb-chips { flex-direction: column; gap: 5px; }
  .cb-chip { justify-content: flex-start; }
}
