 :root {
   --blue: #263466;
   --blue-light: #2e3f7a;
   --gold: #BF9673;
   --gold-light: #d4aa8a;
   --red: #C7212C;
   --white: #ffff;
   --gray: #f5f6fa;
   --text: #1a1a2e;
   --text-light: #6b7280;
 }

 * {
   -webkit-tap-highlight-color: transparent;
   -webkit-touch-callout: none;
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   font-family: 'Avino Sans', sans-serif;
   color: var(--text);
   background: var(--white);
   overflow-x: hidden;
   position: relative;
   box-sizing: border-box;
   max-width: 100%;
 }

 h1,
 h2,
 h3,
 h4 {
   font-family: 'Raleway', sans-serif;
 }

 /* Базовый класс для каскадной задержки */
 .stagger-item {
   opacity: 0;
   transform: scale(0.95) translateY(20px);
   transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
     transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 .stagger-item.visible {
   opacity: 1;
   transform: scale(1) translateY(0);
 }

 .animate-on-scroll {
   opacity: 0;
   transform: translateY(30px);
   transition: opacity 0.8s ease, transform 0.8s ease;
 }

 .animate-on-scroll.visible {
   opacity: 1;
   transform: translateY(0);
 }

 /* NAVBAR */
 nav {
  /* настраиваемые переменные */
  --nav-top: rgba(38, 52, 102, 0.96);
  --nav-bottom: rgba(34, 47, 90, 0.86);
  --gold-weak: rgba(191,150,115,0.08);
  --gold-strong: rgba(212,175,55,0.9);
  --sheen-color: rgba(255,255,255,0.08);
  --sheen-speed: 12s;     /* уменьшай -> шейн быстрее, увеличивай -> медленнее */
  --gold-speed: 8s;

  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  box-sizing: border-box;

  /* основной фон: глубокий вертикальный градиент + лёгкая тёмная маска для глубины */
  background:
    linear-gradient(180deg, var(--nav-top) 0%, var(--nav-bottom) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.06));
  background-blend-mode: overlay;
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  backdrop-filter: blur(12px) saturate(125%);

  border-bottom: 1px solid var(--gold-weak);
  box-shadow:
    0 12px 30px rgba(8,12,28,0.16),        /* мягкая внешняя тень */
    inset 0 1px 0 rgba(255,255,255,0.02);   /* лёгкий внутренний бличок */
  transition: transform 0.35s cubic-bezier(.4,0,.2,1),
              background 300ms ease,
              box-shadow 250ms ease,
              height 220ms ease;
  overflow: visible;
  -webkit-font-smoothing: antialiased;
}

nav::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -40%;
  width: 80%;
  height: 120%;
  pointer-events: none;
  transform: skewX(-14deg) translateX(-140%);
  background: linear-gradient(90deg,
    transparent 0%,
    var(--sheen-color) 45%,
    rgba(255,255,255,0.02) 55%,
    transparent 100%);
  filter: blur(6px);
  opacity: 0.95;
  z-index: 2;
  animation: navSheen var(--sheen-speed) linear infinite;
}

nav::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-strong) 45%,
    transparent 100%);
  box-shadow: 0 8px 22px rgba(212,175,55,0.06);
  transform: translateX(-100%);
  opacity: 0.98;
  z-index: 3;
  animation: goldSweep var(--gold-speed) linear infinite;
}

nav.scrolled {
  height: 58px;
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  box-shadow:
    0 14px 40px rgba(6,10,22,0.22),
    inset 0 1px 0 rgba(255,255,255,0.02);
  background:
    linear-gradient(180deg, rgba(30,44,82,0.98) 0%, rgba(26,39,76,0.9) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.08));
}

@keyframes navSheen {
  0%   { transform: skewX(-14deg) translateX(-140%); opacity: 0.95; }
  50%  { transform: skewX(-14deg) translateX(20%); opacity: 0.65; }
  100% { transform: skewX(-14deg) translateX(160%); opacity: 0.95; }
}

@keyframes goldSweep {
  0%   { transform: translateX(-100%); opacity: 0.0; }
  20%  { opacity: 0.6; }
  50%  { transform: translateX(0%); opacity: 1; }
  80%  { opacity: 0.6; }
  100% { transform: translateX(100%); opacity: 0.0; }
}
nav.hidden-nav {
  transform: translateY(-100%);
}

/* Animated underline for nav links */
.nav-links a:not(.nav-cta) {
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active-link::after {
  width: 100%;
}
.nav-links a.active-link {
  color: var(--gold) !important;
}

/* Logo entrance animation */
@keyframes navFadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
nav .logo {
  animation: navFadeDown 0.6s ease forwards;
}
nav .nav-links li {
  opacity: 0;
  animation: navFadeDown 0.5s ease forwards;
}
nav .nav-links li:nth-child(1) { animation-delay: 0.1s; }
nav .nav-links li:nth-child(2) { animation-delay: 0.2s; }
nav .nav-links li:nth-child(3) { animation-delay: 0.3s; }
nav .nav-links li:nth-child(4) { animation-delay: 0.4s; }
nav .nav-links li:nth-child(5) { animation-delay: 0.5s; }

 .logo {
   display: flex;
   align-items: center;
   gap: 10px;
   text-decoration: none;
 }

 .logo-text {
   font-family: 'Avino Sans', sans-serif;
   font-weight: 800;
   font-size: 1.1rem;
   color: var(--white);
   letter-spacing: 2px;
   line-height: 1.1;
 }

 .logo-text span {
   display: block;
   font-size: 0.55rem;
   font-weight: 400;
   color: var(--gold);
   letter-spacing: 3px;
 }

 .nav-links {
   display: flex;
   align-items: center;
   gap: 30px;
   list-style: none;
 }

 .nav-links a {
   color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;   
  padding-bottom: 5px;
 }

 .nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

 .nav-links a:hover {
   color: var(--gold);
 }

 .nav-links a:hover::after,
.nav-links a.active-link::after {
  width: 100%;
}

 .nav-cta {
   background: var(--gold);
   color: var(--blue) !important;
   padding: 8px 20px;
   border-radius: 25px;
   font-weight: 700 !important;
   transition: all 0.3s !important;
 }

 .nav-cta:hover {
   background: var(--gold-light) !important;
   transform: translateY(-1px);
   box-shadow: 0 4px 15px rgba(191, 150, 115, 0.4);
 }

 /* LANG SWITCHER */
 .lang-switcher {
   display: flex;
   gap: 4px;
   align-items: center;
   margin-left: 10px;
 }

 .lang-btn {
   background: transparent;
   border: 1px solid rgba(255, 255, 255, 0.25);
   color: rgba(255, 255, 255, 0.6);
   font-size: 0.72rem;
   font-weight: 700;
   padding: 4px 9px;
   border-radius: 12px;
   cursor: pointer;
   font-family: 'Avino Sans', sans-serif;
   letter-spacing: 0.5px;
   transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
   position: relative;
   overflow: hidden;
 }

 .lang-btn::after {
   content: '';
   position: absolute;
   inset: 0;
   background: var(--gold);
   border-radius: 12px;
   transform: scale(0);
   opacity: 0;
   transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
   z-index: -1;
 }

 .lang-btn:hover {
   border-color: var(--gold);
   color: var(--gold);
   transform: translateY(-1px);
 }

 .lang-btn.active {
   background: var(--gold);
   border-color: var(--gold);
   color: var(--blue);
   box-shadow: 0 3px 10px rgba(191, 150, 115, 0.4);
   transform: translateY(-1px);
 }

 .lang-btn.active::after {
   transform: scale(1);
   opacity: 1;
 }

 /* LANG FADE ANIMATION */
 @keyframes langFadeIn {
   from {
     opacity: 0;
     transform: translateY(4px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .lang-fade [data-i18n],
 .lang-fade [data-i18n-placeholder] {
   animation: langFadeIn 0.3s ease forwards;
 }

 .burger {
   display: none;
   flex-direction: column;
   gap: 5px;
   cursor: pointer;
   padding: 5px;
   flex-shrink: 0;
   margin-right: 0;
 }

 .burger span {
   display: block;
   width: 24px;
   height: 2px;
   background: var(--white);
   border-radius: 2px;
   transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
   transform-origin: center;
 }

 .burger.open span:nth-child(1) {
   transform: translateY(7px) rotate(45deg);
 }

 .burger.open span:nth-child(2) {
   opacity: 0;
   transform: scaleX(0);
 }

 .burger.open span:nth-child(3) {
   transform: translateY(-7px) rotate(-45deg);
 }

 .mobile-menu {
   display: flex;
   flex-direction: column;
   gap: 0;
   position: fixed;
   top: 70px;
   left: 0;
   right: 0;
   background: var(--blue);
   padding: 0 4%;
   z-index: 999;
   border-bottom: none;
   box-shadow: 0 4px 15px rgba(0,0,0,0.2);
   transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease,
              border-color 0.3s ease;
   max-height: 0;
   overflow: hidden;
   opacity: 0;
   transform: translateY(-8px);
   pointer-events: none;
 }

 .mobile-menu.open {
   display: flex;
   max-height: 500px;
   opacity: 1;
   transform: translateY(0);
   padding: 20px 4%;
   pointer-events: all;
   border-bottom: 2px solid var(--gold);
 }

 .mobile-menu a {
   color: rgba(255, 255, 255, 0.85);
   text-decoration: none;
   font-size: 1rem;
   font-weight: 500;
   padding: 14px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
   transition: color 0.3s, transform 0.2s;
 }

 .mobile-menu a:last-child {
   border-bottom: none;
 }

 .mobile-menu a:hover {
   color: var(--gold);
   transform: translateX(4px);
 }

 .mobile-lang {
   display: flex;
   gap: 8px;
   padding: 14px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 .mobile-lang .lang-btn {
   font-size: 0.8rem;
   padding: 5px 12px;
 }

 /* HERO */
 /*.hero {min-height: 100vh; background: linear-gradient(135deg, #1a2550 0%, #263466 50%, #1e2d5a 100%); display: flex; align-items: center; padding: 100px 5% 60px; position: relative; overflow: hidden; }*/
 .hero {
  background-image: url('download (28).png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    will-change: background-position;
 }

 @keyframes heroBackgroundZoom {
    from { transform: scale(1.1); }
    to   { transform: scale(1); }
}
.hero-visual-loaded .hero::before {
    animation: heroBackgroundZoom 2s ease-out forwards;
}
.hero .animate-on-scroll {
    transform: translateY(40px);
    filter: blur(10px);
    opacity: 0;
}
.hero .visible {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
}

 /*.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(191,150,115,0.12) 0%, transparent 70%); border-radius: 50%; }*/
 .hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(to right, rgba(38, 52, 102, 0.75) 40%, rgba(38, 52, 102, 0) 60%);
   z-index: 1;
   transition: transform 0.1s ease-out;
 }

 .hero::after {
   content: '';
   position: absolute;
   bottom: -30%;
   left: -10%;
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(199, 33, 44, 0.08) 0%, transparent 70%);
   border-radius: 50%;
 }

 .hero-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
   width: 100%;
   position: relative;
   z-index: 1;
 }

 .hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(191, 150, 115, 0.15);
   border: 1px solid rgba(191, 150, 115, 0.3);
   color: var(--gold);
   padding: 6px 16px;
   border-radius: 20px;
   font-size: 0.8rem;
   font-weight: 600;
   letter-spacing: 1px;
   text-transform: uppercase;
   margin-bottom: 24px;
 }

 .hero h1 {
   font-size: clamp(2rem, 4vw, 3.2rem);
   font-weight: 900;
   color: var(--white);
   line-height: 1.15;
   margin-bottom: 20px;
   overflow: hidden;
 }

 .hero h1 .accent {
   color: var(--gold);
 }
 .hero h1 span.accent {
    display: inline-block;
}

 .hero p {
   font-size: 1.05rem;
   color: rgba(255, 255, 255, 0.75);
   line-height: 1.7;
   margin-bottom: 36px;
   max-width: 480px;
 }

 .hero-btns {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }

 .btn-primary {
   background: var(--gold);
   color: var(--blue);
   padding: 14px 32px;
   border-radius: 30px;
   font-weight: 700;
   font-size: 0.95rem;
   text-decoration: none;
   transition: all 0.3s;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   border: none;
   cursor: pointer;
   font-family: 'Raleway', sans-serif;
   position: relative;
   overflow: hidden;
 }

 .btn-primary:hover {
   background: var(--gold-light);
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(191, 150, 115, 0.4);
 }

 .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

.btn-primary::after {
  animation: shine 2s infinite;
}
@keyframes shine {
    60% { left: 150%; }
    100% { left: 150%; }
}

 .btn-outline {
   background: transparent;
   color: var(--white);
   padding: 14px 32px;
   border-radius: 30px;
   font-weight: 600;
   font-size: 0.95rem;
   text-decoration: none;
   border: 1.5px solid rgba(255, 255, 255, 0.35);
   transition: all 0.3s;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   cursor: pointer;
   font-family: 'Raleway', sans-serif;
 }

 .btn-outline:hover {
   border-color: var(--gold);
   color: var(--gold);
   transform: translateY(-2px);
 }

 .hero-stats {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 16px;
   margin-top: 48px;
   padding-top: none;
 }

 .stat-item {
   text-align: center;
 }

 .stat-num {
   font-family: 'Avino Sans', sans-serif;
   font-size: 2rem;
   font-weight: 900;
   color: var(--gold);
   line-height: 1;
 }

 .stat-label {
   font-size: 0.75rem;
   color: rgba(255, 255, 255, 0.6);
   margin-top: 4px;
   line-height: 1.3;
 }

 .hero-visual {
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
 }

 .hero-card-stack {
   position: relative;
   width: 320px;
   height: 380px;
 }

 .hero-card {
   position: absolute;
   background: rgba(255, 255, 255, 0.06);
   border: 1px solid rgba(191, 150, 115, 0.2);
   border-radius: 20px;
   padding: 24px;
   backdrop-filter: blur(10px);
 }

 .hero-card-main {
   width: 280px;
   top: 40px;
   left: 20px;
   background: rgba(255, 255, 255, 0.08);
   border-color: rgba(191, 150, 115, 0.35);
 }

 .hero-card-back {
   width: 260px;
   top: 10px;
   left: 40px;
   transform: rotate(3deg);
   opacity: 0.5;
 }

 .card-icon {
   width: 48px;
   height: 48px;
   background: rgba(191, 150, 115, 0.2);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 16px;
   font-size: 1.5rem;
 }

 .card-title {
   font-family: 'Avino Sans', sans-serif;
   font-weight: 700;
   color: var(--white);
   font-size: 1rem;
   margin-bottom: 8px;
 }

 .card-desc {
   font-size: 0.8rem;
   color: rgba(255, 255, 255, 0.6);
   line-height: 1.5;
 }

 .card-price {
   margin-top: 16px;
   font-family: 'Avino Sans', sans-serif;
   font-weight: 800;
   color: var(--gold);
   font-size: 1.3rem;
 }

 .floating-badge {
   position: absolute;
   background: var(--red);
   color: white;
   padding: 8px 14px;
   border-radius: 12px;
   font-size: 0.75rem;
   font-weight: 700;
   font-family: 'Raleway', sans-serif;
   box-shadow: 0 4px 15px rgba(199, 33, 44, 0.4);
 }

 .badge-1 {
   top: 0;
   right: 0;
 }

 /* SECTIONS */
 section {
   padding: 80px 5%;
 }

 .section-header {
   text-align: center;
   margin-bottom: 56px;
 }

 .section-tag {
   display: inline-block;
   background: rgba(38, 52, 102, 0.08);
   color: var(--blue);
   padding: 5px 16px;
   border-radius: 20px;
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   margin-bottom: 14px;
 }

 .section-header h2 {
   font-size: clamp(1.8rem, 3vw, 2.6rem);
   font-weight: 800;
   color: var(--blue);
   line-height: 1.2;
   margin-bottom: 14px;
 }

 .section-header p {
   font-size: 1rem;
   color: var(--text-light);
   max-width: 560px;
   margin: 0 auto;
   line-height: 1.7;
 }

 .divider {
   width: 50px;
   height: 3px;
   background: linear-gradient(90deg, var(--gold), var(--red));
   border-radius: 2px;
   margin: 16px auto 0;
 }

 /* SERVICES */
 .services {
   background: var(--gray);
 }

 .tabs-wrapper {
   max-width: 1100px;
   margin: 0 auto;
 }

 .tabs-scroll {
   display: flex;
   gap: 8px;
   overflow-x: auto;
   padding-bottom: 4px;
   margin-bottom: 32px;
   scrollbar-width: none;
   -webkit-overflow-scrolling: touch;
 }

 .tabs-scroll::-webkit-scrollbar {
   display: none;
 }

 .tab-btn {
   flex-shrink: 0;
   padding: 10px 20px;
   border-radius: 25px;
   border: 1.5px solid #dde1ef;
   background: white;
   color: var(--text-light);
   font-size: 0.82rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.25s;
   font-family: 'Raleway', sans-serif;
   white-space: nowrap;
 }

 .tab-btn:hover {
   border-color: var(--blue);
   color: var(--blue);
 }

 .tab-btn.active {
   background: var(--blue);
   border-color: var(--blue);
   color: white;
   box-shadow: 0 4px 12px rgba(38, 52, 102, 0.25);
 }

 .tab-content {
   display: none;
 }

 .tab-content.active {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
   gap: 20px;
 }

 .service-card {
   background: white;
   border-radius: 16px;
   padding: 24px;
   border: 1px solid #eaecf5;
   transition: all 0.3s;
   position: relative;
   overflow: hidden;
 }

 .service-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, var(--blue), var(--gold));
   opacity: 0;
   transition: opacity 0.3s;
 }

 .service-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 12px 35px rgba(38, 52, 102, 0.12);
   border-color: transparent;
 }

 .service-card:hover::before {
   opacity: 1;
 }

 .hit-badge {
   position: absolute;
   top: 16px;
   right: 16px;
   background: var(--red);
   color: white;
   font-size: 0.65rem;
   font-weight: 800;
   padding: 3px 10px;
   border-radius: 10px;
   letter-spacing: 0.5px;
   font-family: 'Raleway', sans-serif;
 }

 .service-card h4 {
   font-size: 1rem;
   font-weight: 700;
   color: var(--blue);
   margin-bottom: 10px;
   padding-right: 50px;
   line-height: 1.3;
 }

 .service-card p {
   font-size: 0.83rem;
   color: var(--text-light);
   line-height: 1.6;
   margin-bottom: 16px;
 }

 .service-meta {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding-top: 14px;
   border-top: 1px solid #f0f1f7;
 }

 .service-price {
   font-family: 'Avino Sans', sans-serif;
   font-weight: 800;
   font-size: 1.1rem;
   color: var(--blue);
 }

 /* HOW */
 .steps-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
   max-width: 1100px;
   margin: 0 auto;
   position: relative;
 }

 .steps-grid::before {
   content: '';
   position: absolute;
   top: 32px;
   left: 12%;
   right: 12%;
   height: 2px;
   background: linear-gradient(90deg, var(--gold), var(--blue));
   opacity: 0.3;
 }

 .step-card {
   text-align: center;
   padding: 32px 20px;
   background: white;
   border-radius: 20px;
   border: 1px solid #eaecf5;
   transition: all 0.3s;
   position: relative;
 }

 .step-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 16px 40px rgba(38, 52, 102, 0.1);
 }

 .step-num {
   width: 64px;
   height: 64px;
   background: linear-gradient(135deg, var(--blue), var(--blue-light));
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: 'Raleway', sans-serif;
   font-weight: 900;
   font-size: 1.4rem;
   color: white;
   margin: 0 auto 20px;
   position: relative;
   z-index: 1;
   box-shadow: 0 6px 20px rgba(38, 52, 102, 0.3);
 }

 .step-card h4 {
   font-size: 1rem;
   font-weight: 700;
   color: var(--blue);
   margin-bottom: 10px;
 }

 .step-card p {
   font-size: 0.83rem;
   color: var(--text-light);
   line-height: 1.6;
 }

 /* WHY */
 .why {
   background: var(--gray);
 }

 .why-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
   max-width: 1100px;
   margin: 0 auto;
 }

 .why-features {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
 }

 .feature-card {
   background: white;
   border-radius: 16px;
   padding: 24px 20px;
   border: 1px solid #eaecf5;
   transition: all 0.3s;
 }

 .feature-card:hover {
   border-color: var(--gold);
   box-shadow: 0 8px 25px rgba(191, 150, 115, 0.15);
 }

 .feature-icon {
   font-size: 1.8rem;
   margin-bottom: 12px;
 }

 .feature-card h4 {
   font-size: 0.95rem;
   font-weight: 700;
   color: var(--blue);
   margin-bottom: 6px;
 }

 .feature-card p {
   font-size: 0.8rem;
   color: var(--text-light);
   line-height: 1.5;
 }

 .why-visual {
   background: linear-gradient(135deg, var(--blue) 0%, #1a2550 100%);
   border-radius: 24px;
   padding: 40px;
   color: white;
   position: relative;
   overflow: hidden;
 }

 .why-visual::before {
   content: '⚓';
   position: absolute;
   bottom: -20px;
   right: -10px;
   font-size: 8rem;
   opacity: 0.05;
 }

 .why-visual h3 {
   font-size: 1.5rem;
   font-weight: 800;
   margin-bottom: 24px;
   color: var(--gold);
 }

 .trust-item {
   display: flex;
   align-items: center;
   gap: 14px;
   padding: 14px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 .trust-item:last-child {
   border-bottom: none;
 }

 .trust-check {
   width: 32px;
   height: 32px;
   background: rgba(191, 150, 115, 0.2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   color: var(--gold);
   font-size: 0.9rem;
 }

 .trust-item span {
   font-size: 0.88rem;
   color: rgba(255, 255, 255, 0.85);
   line-height: 1.4;
 }

 /* CTA */
 .cta-section {
   background: linear-gradient(135deg, var(--blue) 0%, #1a2550 100%);
   text-align: center;
   padding: 80px 5%;
   position: relative;
   overflow: hidden;
 }

 .cta-section::before {
   content: '';
   position: absolute;
   top: -50%;
   left: 50%;
   transform: translateX(-50%);
   width: 600px;
   height: 600px;
   background: radial-gradient(circle, rgba(191, 150, 115, 0.1) 0%, transparent 70%);
   border-radius: 50%;
 }

 .cta-section h2 {
   font-size: clamp(1.8rem, 3vw, 2.5rem);
   font-weight: 800;
   color: white;
   margin-bottom: 16px;
   position: relative;
 }

 .cta-section p {
   color: rgba(255, 255, 255, 0.7);
   font-size: 1rem;
   margin-bottom: 36px;
   max-width: 500px;
   margin-left: auto;
   margin-right: auto;
   position: relative;
 }

 .cta-btns {
   display: flex;
   gap: 14px;
   justify-content: center;
   flex-wrap: wrap;
   position: relative;
 }

 /* CONTACT */
 .contact {
   background: var(--gray);
 }

 .contact-grid {
   display: grid;
   grid-template-columns: 1fr 1.4fr;
   gap: 60px;
   max-width: 1100px;
   margin: 0 auto;
   align-items: start;
 }

 .contact-info h3 {
   font-size: 1.6rem;
   font-weight: 800;
   color: var(--blue);
   margin-bottom: 16px;
 }

 .contact-info p {
   font-size: 0.9rem;
   color: var(--text-light);
   line-height: 1.7;
   margin-bottom: 32px;
 }

 .contact-item {
   display: flex;
   align-items: flex-start;
   gap: 14px;
   margin-bottom: 20px;
 }

 .contact-icon {
   width: 44px;
   height: 44px;
   background: var(--blue);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.1rem;
   flex-shrink: 0;
 }

 .contact-item-text strong {
   display: block;
   font-size: 0.85rem;
   font-weight: 700;
   color: var(--blue);
   margin-bottom: 2px;
 }

 .contact-item-text span {
   font-size: 0.85rem;
   color: var(--text-light);
 }

 .form-card {
   background: white;
   border-radius: 24px;
   padding: 40px;
   box-shadow: 0 8px 40px rgba(38, 52, 102, 0.08);
   border: 1px solid #eaecf5;
 }

 .form-card h3 {
   font-size: 1.3rem;
   font-weight: 800;
   color: var(--blue);
   margin-bottom: 24px;
 }

 .form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
 }

 .form-group {
   margin-bottom: 16px;
 }

 .form-group label {
   display: block;
   font-size: 0.8rem;
   font-weight: 600;
   color: var(--blue);
   margin-bottom: 6px;
   letter-spacing: 0.3px;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
   width: 100%;
   padding: 12px 16px;
   border: 1.5px solid #e2e5f0;
   border-radius: 12px;
   font-size: 0.88rem;
   font-family: 'Open Sans', sans-serif;
   color: var(--text);
   background: #fafbff;
   transition: all 0.3s;
   outline: none;
   appearance: none;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
   border-color: var(--blue);
   background: white;
   box-shadow: 0 0 0 3px rgba(38, 52, 102, 0.08);
 }

 .form-group textarea {
   resize: vertical;
   min-height: 100px;
 }

 .submit-btn {
   width: 100%;
   padding: 15px;
   background: linear-gradient(135deg, var(--blue), var(--blue-light));
   color: white;
   border: none;
   border-radius: 12px;
   font-size: 1rem;
   font-weight: 700;
   font-family: 'Raleway', sans-serif;
   cursor: pointer;
   transition: all 0.3s;
   letter-spacing: 0.5px;
 }

 .submit-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(38, 52, 102, 0.35);
 }

 .submit-btn.success {
   background: linear-gradient(135deg, #16a34a, #15803d);
 }

 /* FOOTER */
 footer {
   background: #0f1628;
   color: rgba(255, 255, 255, 0.7);
   padding: 60px 5% 30px;
 }

 .footer-grid {
   display: grid;
   grid-template-columns: 1.5fr 1fr 1fr 1fr;
   gap: 40px;
   max-width: 1100px;
   margin: 0 auto 40px;
 }

 .footer-brand p {
   font-size: 0.83rem;
   line-height: 1.7;
   margin-top: 16px;
   color: rgba(255, 255, 255, 0.5);
 }

 .footer-col h5 {
   font-family: 'Avino Sans', sans-serif;
   font-weight: 700;
   font-size: 0.9rem;
   color: white;
   margin-bottom: 16px;
   letter-spacing: 0.5px;
 }

 .footer-col a {
   display: block;
   color: rgba(255, 255, 255, 0.5);
   text-decoration: none;
   font-size: 0.83rem;
   margin-bottom: 10px;
   transition: color 0.3s;
 }

 .footer-col a:hover {
   color: var(--gold);
 }

 .footer-bottom {
   max-width: 1100px;
   margin: 0 auto;
   padding-top: 24px;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 12px;
   font-size: 0.78rem;
   color: rgba(255, 255, 255, 0.35);
 }

 @media (max-width: 1024px) {
   .hero-grid {
     grid-template-columns: 1fr;
     gap: 40px;
   }

   .hero-visual {
     display: none;
   }

   .why-grid {
     grid-template-columns: 1fr;
   }

   .why-visual {
     order: -1;
   }

   .steps-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .steps-grid::before {
     display: none;
   }

   .footer-grid {
     grid-template-columns: 1fr 1fr;
   }
 }

 @media (max-width: 768px) {

   /* NAV */
   nav {
     padding: 0 16px;
     box-sizing: border-box;
     overflow: visible;
   }

   .nav-links {
     display: none !important;
   }

   .burger {
     display: flex !important;
   }

   .mobile-menu {
     left: 0;
     right: 0;
     box-sizing: border-box;
   }

   /* ОБЩЕЕ */
   section {
     padding: 60px 16px;
   }

   /* HERO */
   .hero {
     background-image: url('download (29).png');
     background-position: top center;
     padding: 100px 16px 50px;
     box-sizing: border-box;
     overflow: hidden;
   }

   .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(to down, rgba(38, 52, 102, 0.75) 40%, rgba(38, 52, 102, 0) 60%);
     z-index: 1;
   }

   .hero::after {
     display: none;
   }

   .hero-grid {
     box-sizing: border-box;
     width: 100%;
   }

   .hero h1 {
     font-size: 1.9rem;
   }

   .hero p {
     font-size: 0.95rem;
   }

   .hero-btns {
     flex-direction: column;
   }

   .btn-primary,
   .btn-outline {
     width: 100%;
     justify-content: center;
   }

   .hero-stats {
     grid-template-columns: repeat(3, 1fr);
     gap: 10px;
   }

   .stat-num {
     font-size: 1.6rem;
   }

   .stat-label {
     font-size: 0.7rem;
   }

   /* SERVICES */
   .tab-content.active {
     grid-template-columns: 1fr;
   }

   /* STEPS */
   .steps-grid {
     grid-template-columns: 1fr;
   }

   /* WHY */
   .why-features {
     grid-template-columns: 1fr;
   }

   /* CONTACT */
   .contact-grid {
     grid-template-columns: 1fr;
   }

   .form-row {
     grid-template-columns: 1fr;
   }

   .form-card {
     padding: 28px 16px;
   }

   /* FOOTER */
   .footer-grid {
     grid-template-columns: 1fr;
     gap: 28px;
   }

   .footer-bottom {
     flex-direction: column;
     text-align: center;
   }
 }

 @media (max-width: 480px) {
   .cta-btns {
     flex-direction: column;
     align-items: center;
   }

   .hero-stats {
     gap: 6px;
   }

   .stat-num {
     font-size: 1.4rem;
   }

   .stat-label {
     font-size: 0.68rem;
   }
 }