:root {
  --yellow: #ffc400;
  --blue: #0876c9;
  --pink: #f0188b;
  --black: #0a0c0f;
  --dark: #101318;
  --text: #151515;
  --muted: #626262;
  --line: #e8e8e8;
  --container: 1210px;
  --shadow: 0 18px 45px rgba(0, 0, 0, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: none; }
button, input { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto;
}

.crop {

  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: var(--w) / var(--h);
}
.crop > img {
  width: 100%;
height: 200px;
object-fit: cover;

  

}

.site-header {
  position: absolute;
  z-index: 20;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 0 10px 0;
  color: #fff;
}
.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr 250px;
  align-items: start;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: flex-start;
}
.brand-logo { max-width: 80px;
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.logo-crop { width: 220px; filter: drop-shadow(0 5px 12px rgba(0,0,0,.35)); }
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
  padding-top: 22px;
}
.main-nav a {
  position: relative;
  font-family: Oswald, Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.main-nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: -8px;
  background: var(--yellow);
  transition: width .24s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.header-phone {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-self: end;
  padding-top: 16px;
}
.header-phone svg {
  width: 22px;
  fill: var(--yellow);
  flex: 0 0 auto;
}
.header-phone strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}
.header-phone small {
  display: block;
  color: rgba(255,255,255,.9);
  font-size: 12px;
}
.menu-toggle { display: none; }

.hero {
  min-height: 625px;
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 25%, rgba(60, 77, 89, .55), transparent 38%),
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(3,5,8,.94) 38%, rgba(4,6,9,.82) 60%, rgba(0,0,0,.95) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), transparent 45%, rgba(0,0,0,.42)),
    linear-gradient(90deg, rgba(0,0,0,.7), transparent 58%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: 74%;
  height: 100%;
  opacity: .62;
  filter: blur(2px) saturate(.9);
}
.hero-bg > img { height: 100%; width: auto; min-width: 100%; }
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 625px;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: end;
  padding-top: 118px;
  padding-bottom: 48px;
}
.hero-copy { padding-bottom: 6px; }
.hero h1 {
  margin: 0;
  max-width: 670px;
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(46px, 4.75vw, 70px);
  line-height: .96;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 4px 14px rgba(0,0,0,.45);
}
.hero h1 span { color: var(--yellow); }
.hero p {
  margin: 21px 0 0;
  max-width: 560px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.35;
  color: rgba(255,255,255,.94);
}
.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  background: var(--yellow);
  color: #121212;
  box-shadow: 0 12px 24px rgba(255,196,0,.26);
}
.btn-primary:hover { background: #ffd43d; box-shadow: 0 16px 30px rgba(255,196,0,.34); }
.btn-outline {
  min-width: 225px;
  color: #fff;
  border-color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.08);
}
.btn-outline:hover { background: #fff; color: #101010; }
.advantages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 610px;
  margin-top: 54px;
}
.advantages article {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}
.advantages svg {
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.advantages span {
  font-size: 12px;
  color: rgba(255,255,255,.93);
}
.hero-products {
  align-self: end;
  margin-left: -14px;
  margin-right: -20px;
  padding-bottom: 0;
  filter: drop-shadow(0 25px 42px rgba(0,0,0,.55));
}
.hero-products .crop {
  width: min(660px, 55vw);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 100%);
}

.section { padding: 18px 0 22px; }
.section-head {
  text-align: center;
  margin-bottom: 20px;
}
.section-head.compact { margin-bottom: 13px; }
.section h2, .promo-box h2, .partners h2, .quote-form h2, .contact-list h2 {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(25px, 2.1vw, 32px);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.dots span {
  width: 13px;
  height: 13px;
  border-radius: 999px;
}
.dots span:nth-child(1) { background: #139ee9; }
.dots span:nth-child(2) { background: #f2188d; }
.dots span:nth-child(3) { background: var(--yellow); }
.dots span:nth-child(4) { background: #111; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  overflow: hidden;
  min-height: 320px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.18); }
.card-img { width: 100%; background: #ddd; height: 200px; object-fit: cover;}
.service-card div { padding: 16px 18px 18px; }
.service-card h3 {
  margin: 0 0 7px;
  color: #1173bf;
  font-size: 15px;
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}
.service-card h3.pink { color: var(--pink); }
.service-card p {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
}
.service-card ul {
  margin: 0;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.35;
}

.dark-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 14%),
    #101317;
  color: #fff;
}
.portfolio { padding: 27px 0 28px; }
.portfolio-head {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 16px;
}
.portfolio h2 {
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  text-transform: uppercase;
}
.portfolio-head a {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}
.work-card {
  position: relative;
  overflow: hidden;
  background: #1d2228;
}
.work-card .crop { width: 100%; }
.work-card .crop img { transition: transform .35s ease; }
.work-card:hover .crop img { transform: scale(1.055); }
.work-card h3 {
  margin: 0;
  padding: 7px 8px 5px;
  background: rgba(0,0,0,.84);
  color: #fff;
  text-align: center;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.process { 
  padding: 20px 0; 
  font-family: sans-serif; /* Добавьте свой шрифт при необходимости */
}

.steps {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px; /* Немного увеличен отступ для идеального расположения стрелок */
  max-width: 1100px;
}

.steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
}

.step-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f5f5f5; /* Плоский светло-серый цвет, как на фото */
  color: #1f1f1f;
  /* Убраны тени, бордеры и градиенты */
}

/* Настройки для самих svg/img внутри кружка */
.step-icon img, 
.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-icon b {
  position: absolute;
  top: 0px;
  right: -5px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

/* Точные цвета для каждого шага */
.steps li:nth-child(1) b { background: #4a90e2; }
.steps li:nth-child(2) b { background: #d81b60; }
.steps li:nth-child(3) b { background: #fbbc04; color: #fff; }
.steps li:nth-child(4) b { background: #4ba3e3; }
.steps li:nth-child(5) b { background: #111; }

.steps strong,
.steps span {
  display: block;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500; /* Текст на фото не такой жирный */
  color: #222;
}

.arrow {
  position: absolute;
  left: -22px; /* Центрирование ровно между шагами */
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  border-top: 1px solid #b0b0b0; /* Более тонкая и аккуратная стрелка */
  border-right: 1px solid #b0b0b0;
}

/* Скрываем стрелку у первого элемента, если она генерируется для всех */
.steps li:first-child .arrow {
  display: none;
}

.promo-partners {
  padding: 0 0 16px;
  background: #fff;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr .96fr;
  gap: 20px;
}
.promo-box {
  min-height: 168px;
  border-radius: 4px;
  overflow: hidden;
  padding: 23px 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 72% 38%, rgba(255,255,255,.16), transparent 32%),
    linear-gradient(135deg, #080a0d, #1a2026 66%, #080a0d);
  box-shadow: var(--shadow);
}
.promo-box h2 {
  color: var(--yellow);
  font-size: clamp(22px, 2vw, 29px);
}
.promo-box ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}
.promo-box li::before {
  content: "✓";
  color: var(--yellow);
  font-weight: 900;
  margin-right: 12px;
}
.promo-box .crop { width: 100%; filter: drop-shadow(0 18px 22px rgba(0,0,0,.35)); }
.partners {
  min-height: 168px;
  padding: 18px 28px;
  border-radius: 4px;
  background: #f5f5f5;
  box-shadow: 0 14px 32px rgba(0,0,0,.10);
  text-align: center;
}
.partners h2 {
  margin-bottom: 15px;
  font-size: 20px;
}
.partners .crop { width: 100%; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  text-align: left;
}
.partner-card {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.footer {
  padding: 18px 0;
  color: #fff;
  background:
    radial-gradient(circle at 24% 52%, rgba(255,255,255,.08), transparent 22%),
    linear-gradient(90deg, #080b0f, #141a20 55%, #07090c);
}
.footer-grid {
  display: grid;
  grid-template-columns: 240px 170px 1fr 240px;
  align-items: center;
  gap: 18px;
}
.contact-list h2, .quote-form h2 { font-size: 18px; margin-bottom: 12px; }
.contact-list p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 7px 0;
  font-size: 15px;
}
.contact-list span { color: var(--yellow); width: 18px; text-align: center; }
.map-crop { width: 170px; opacity: .72; }
.quote-form {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.35);
}
.quote-form form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}
.quote-form input {
  width: 100%;
  height: 34px;
  border: 0;
  border-radius: 3px;
  padding: 0 13px;
  background: #f2f2f2;
  color: #111;
  font-size: 12px;
}
.quote-form button {
  grid-column: 1 / -1;
  min-height: 38px;
  border: 0;
}
.footer-brand { justify-self: end; width: 225px; }
.footer-brand .crop { width: 100%; }

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: transform .55s ease, box-shadow .25s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 190px 1fr 218px; }
  .brand-logo { max-width: 80px; width: 80px;
  height: 80px;
  object-fit: contain; }
  .logo-crop { width: 190px; }
  .main-nav { gap: 22px; }
  .hero-grid { grid-template-columns: 54% 46%; }
  .hero-products { margin-left: -70px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .steps li .arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quote-form { padding-left: 0; border-left: 0; }
  .footer-brand { justify-self: start; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, var(--container)); }
  .site-header { position: fixed; padding: 10px 0; background: rgba(8,10,13,.92); backdrop-filter: blur(12px); }
  .header-inner { grid-template-columns: 160px 1fr; align-items: center; }
  .brand-logo { max-width: 80px; width: 80px;
  height: 80px;
  object-fit: contain; }
  .logo-crop { width: 160px; }
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    justify-self: end;
    width: 42px;
    height: 38px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 5px;
    background: rgba(255,255,255,.06);
  }
  .menu-toggle span { height: 2px; background: #fff; border-radius: 3px; }
  .main-nav, .header-phone {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
  }
  .site-header.is-open .main-nav,
  .site-header.is-open .header-phone { display: flex; }
  .main-nav {
    flex-direction: column;
    gap: 0;
    padding: 10px 0 0;
  }
  .main-nav a { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.10); }
  .header-phone { padding: 12px 0 4px; }
  .hero { min-height: auto; }
  .hero-grid {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 116px;
    padding-bottom: 30px;
  }
  .hero-products {
    order: -1;
    margin: 0 auto 12px;
    width: min(100%, 520px);
  }
  .hero-products .crop { width: 100%; }
  .hero h1 { font-size: clamp(42px, 13vw, 68px); }
  .advantages { grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 34px; }
  .service-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn, .btn-outline { width: 100%; min-width: 0; }
  .advantages, .service-grid, .portfolio-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .promo-box { grid-template-columns: 1fr; gap: 14px; }
  .promo-box .crop { width: min(260px, 100%); justify-self: center; }
  .partners-grid { grid-template-columns: 1fr; }
  .quote-form form { grid-template-columns: 1fr; }
  .map-crop { display: none; }
  .footer-brand { width: 210px; justify-self: center; }
}









.product-detail{
    padding:35px 0;
}

.product-box{
    display:grid;
    grid-template-columns:520px 1fr;
    gap:40px;
    background:#fff;
    border-radius:6px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.product-gallery{
    background:#f4f4f4;
}

.product-gallery img{
    display:block;
    width:100%;
    height:100%;
    min-height:470px;
    object-fit:cover;
}

.product-info{
    padding:38px;
    display:flex;
    flex-direction:column;
}

.product-category{
    display:inline-flex;
    width:max-content;
    padding:6px 12px;
    background:var(--yellow);
    color:#111;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    border-radius:4px;
    margin-bottom:14px;
}

.product-info h1{
    margin:0 0 18px;
    font-size:38px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
}

.product-description{
    margin:0 0 28px;
    color:var(--muted);
    line-height:1.6;
    font-size:15px;
}

.product-specs{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-bottom:30px;
}

.spec{
    border:1px solid var(--line);
    border-radius:5px;
    padding:16px 18px;
    transition:.25s;
}

.spec:hover{
    border-color:var(--blue);
    transform:translateY(-2px);
}

.spec span{
    display:block;
    font-size:12px;
    color:#777;
    margin-bottom:6px;
}

.spec strong{
    display:block;
    font-size:15px;
    color:#111;
    font-weight:800;
}

.product-info .btn{
    margin-top:auto;
    width:240px;
}

@media(max-width:991px){

.product-box{
    grid-template-columns:1fr;
}

.product-gallery img{
    min-height:320px;
}

.product-info{
    padding:28px;
}

.product-info h1{
    font-size:30px;
}

.product-specs{
    grid-template-columns:1fr;
}

.product-info .btn{
    width:100%;
}

}








.product-advantages{
    padding:20px 0 40px;
}

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.advantage-card{
    background:#fff;
    padding:28px;
    border-radius:6px;
    box-shadow:var(--shadow);
    transition:.3s;
    border-top:4px solid transparent;
}

.advantage-card:nth-child(1){border-color:var(--yellow);}
.advantage-card:nth-child(2){border-color:var(--blue);}
.advantage-card:nth-child(3){border-color:var(--pink);}
.advantage-card:nth-child(4){border-color:#111;}
.advantage-card:nth-child(5){border-color:var(--yellow);}
.advantage-card:nth-child(6){border-color:var(--blue);}

.advantage-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.16);
}

.advantage-icon{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    border-radius:50%;
    background:#f5f5f5;
    margin-bottom:18px;
}

.advantage-card h3{
    margin:0 0 12px;
    font-size:18px;
    font-weight:900;
    line-height:1.2;
    color:#111;
}

.advantage-card p{
    margin:0;
    color:#666;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:991px){

.advantages-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:640px){

.advantages-grid{
    grid-template-columns:1fr;
}

.advantage-card{
    padding:22px;
}

}





.faq-modern{
    padding:25px 0 45px;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    background:#fff;
    border-radius:8px;
    box-shadow:var(--shadow);
    overflow:hidden;
    border-left:6px solid var(--yellow);
    transition:.3s;
}

.faq-item:nth-child(2){border-color:var(--blue);}
.faq-item:nth-child(3){border-color:var(--pink);}
.faq-item:nth-child(4){border-color:#111;}

.faq-item:hover{
    transform:translateY(-3px);
}

.faq-question{
    width:100%;
    border:0;
    background:#fff;
    display:flex;
    align-items:center;
    gap:25px;
    padding:28px 32px;
    cursor:pointer;
    text-align:left;
}

.faq-number{
    font-size:42px;
    font-weight:900;
    color:#ececec;
    width:70px;
    flex-shrink:0;
}

.faq-title{
    flex:1;
}

.faq-title h3{
    margin:0;
    font-size:20px;
    font-weight:900;
    color:#111;
}

.faq-title small{
    display:block;
    margin-top:6px;
    color:#888;
    font-size:13px;
}

.faq-icon{
    width:44px;
    height:44px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:300;
    flex-shrink:0;
    transition:.3s;
}

.faq-item.active .faq-icon{
    background:var(--yellow);
    color:#111;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s cubic-bezier(.4,0,.2,1);
    padding:0 32px;
    color:#666;
    line-height:1.8;
    font-size:15px;
}

.faq-item.active .faq-answer{
    padding:0 32px 30px;
}

@media(max-width:768px){

.faq-question{
    padding:22px;
    gap:18px;
}

.faq-number{
    font-size:28px;
    width:45px;
}

.faq-title h3{
    font-size:17px;
}

.faq-answer{
}

}

.faq-answer{
    overflow:hidden;
    max-height:0;
    transition:max-height .35s ease, padding .35s ease;
}
















.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:20px;
}

.portfolio-grid a{
    display:block;
    overflow:hidden;
    border-radius:18px;
}

.portfolio-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.portfolio-grid a:hover img{
    transform:scale(1.08);
}

































       /* ========== SERVICE DETAIL SECTION ========== */
        .service-detail {
            padding: 60px 0;
        }
 
        .service-box {
            display: grid;
            grid-template-columns: 520px 1fr;
            gap: 40px;
            background: #fff;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
 
        .service-gallery {
            background: #f4f4f4;
            display: flex;
            align-items: center;
            justify-content: center;
        }
 
        .service-gallery img {
            width: 100%;
            height: 100%;
            min-height: 470px;
            object-fit: cover;
            display: block;
        }
 
        .service-info {
            padding: 38px;
            display: flex;
            flex-direction: column;
        }
 
        .service-category {
            display: inline-flex;
            width: max-content;
            padding: 8px 16px;
            background: var(--yellow);
            color: #111;
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
            border-radius: 4px;
            margin-bottom: 18px;
        }
 
        .service-info h1 {
            margin: 0 0 18px;
            font-size: 38px;
            line-height: 1;
            font-weight: 900;
            text-transform: uppercase;
        }
 
        .service-description {
            margin: 0 0 28px;
            color: var(--muted);
            line-height: 1.7;
            font-size: 15px;
        }
 
        .service-specs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin-bottom: 30px;
        }
 
        .spec {
            border: 1px solid var(--line);
            border-radius: 5px;
            padding: 16px 18px;
            transition: all .3s;
        }
 
        .spec:hover {
            border-color: var(--blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0,0,0,.08);
        }
 
        .spec span {
            display: block;
            font-size: 12px;
            color: #999;
            margin-bottom: 6px;
            font-weight: 600;
        }
 
        .spec strong {
            display: block;
            font-size: 15px;
            color: #111;
            font-weight: 800;
        }
 
        .service-info .btn {
            margin-top: auto;
            width: 100%;
        }
 
        /* ========== SECTION STYLES ========== */
        .section {
            padding: 50px 0 60px;
        }
 
        .section-head {
            text-align: center;
            margin-bottom: 40px;
        }
 
        .section-head h2 {
            margin: 0;
            font-size: clamp(28px, 2.5vw, 36px);
            line-height: 1.1;
            font-weight: 900;
            text-transform: uppercase;
        }
 
        .dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 14px;
        }
 
        .dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
 
        .dots span:nth-child(1) { background: var(--blue); }
        .dots span:nth-child(2) { background: var(--pink); }
        .dots span:nth-child(3) { background: var(--yellow); }
        .dots span:nth-child(4) { background: #111; }
 
        /* ========== ADVANTAGES SECTION ========== */
        .service-advantages {
            padding: 50px 0;
            background: #f9f9f9;
        }
 
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
 
        .advantage-card {
            background: #fff;
            padding: 32px;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,.08);
            transition: all .3s;
            border-top: 4px solid transparent;
        }
 
        .advantage-card:nth-child(1) { border-color: var(--yellow); }
        .advantage-card:nth-child(2) { border-color: var(--blue); }
        .advantage-card:nth-child(3) { border-color: var(--pink); }
        .advantage-card:nth-child(4) { border-color: #111; }
        .advantage-card:nth-child(5) { border-color: var(--yellow); }
        .advantage-card:nth-child(6) { border-color: var(--blue); }
 
        .advantage-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0,0,0,.12);
        }
 
        .advantage-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            border-radius: 50%;
            background: #f0f0f0;
            margin-bottom: 18px;
        }
 
        .advantage-card h3 {
            margin: 0 0 12px;
            font-size: 18px;
            font-weight: 900;
            line-height: 1.2;
            color: #111;
        }
 
        .advantage-card p {
            margin: 0;
            color: #666;
            line-height: 1.7;
            font-size: 14px;
        }
 
        /* ========== FAQ SECTION ========== */
        .faq-modern {
            padding: 50px 0;
        }
 
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
            max-width: 900px;
            margin: 0 auto;
        }
 
        .faq-item {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 6px 20px rgba(0,0,0,.08);
            overflow: hidden;
            border-left: 5px solid var(--yellow);
            transition: all .3s;
        }
 
        .faq-item:nth-child(2) { border-color: var(--blue); }
        .faq-item:nth-child(3) { border-color: var(--pink); }
        .faq-item:nth-child(4) { border-color: #111; }
 
        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0,0,0,.12);
        }
 
        .faq-question {
            width: 100%;
            border: 0;
            background: #fff;
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px 28px;
            cursor: pointer;
            text-align: left;
            transition: all .3s;
        }
 
        .faq-item.active .faq-question {
            background: #f9f9f9;
        }
 
        .faq-number {
            font-size: 32px;
            font-weight: 900;
            color: #e8e8e8;
            width: 50px;
            flex-shrink: 0;
        }
 
        .faq-title {
            flex: 1;
        }
 
        .faq-title h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 900;
            color: #111;
        }
 
        .faq-title small {
            display: block;
            margin-top: 4px;
            color: #999;
            font-size: 12px;
        }
 
        .faq-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #111;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 300;
            flex-shrink: 0;
            transition: all .3s;
        }
 
        .faq-item.active .faq-icon {
            background: var(--yellow);
            color: #111;
        }
 
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .45s cubic-bezier(.4,0,.2,1), padding .35s ease;
            padding: 0 28px;
            color: #666;
            line-height: 1.8;
            font-size: 14px;
        }
 
        .faq-item.active .faq-answer {
            padding: 0 28px 24px;
        }
 
        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #080a0d 0%, #1a2026 55%, #080a0d 100%);
            color: #fff;
            text-align: center;
            border-radius: 8px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
 
        .cta-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255,196,0,.1), transparent 50%);
            pointer-events: none;
        }
 
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
        }
 
        .cta-section h2 {
            margin: 0 0 20px;
            font-size: clamp(28px, 3vw, 42px);
            font-weight: 900;
            text-transform: uppercase;
        }
 
        .cta-section p {
            margin: 0 0 30px;
            font-size: 16px;
            color: rgba(255,255,255,.9);
            line-height: 1.6;
        }
 
        /* ========== FOOTER ========== */
        footer {
            padding: 40px 0 20px;
            background: #f9f9f9;
            border-top: 1px solid var(--line);
            text-align: center;
            color: var(--muted);
            font-size: 13px;
        }
 
        /* ========== АДАПТИВНОСТЬ ========== */
        @media (max-width: 1024px) {
            .service-box { grid-template-columns: 1fr; }
            .service-gallery img { min-height: 350px; }
            .advantages-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-container { grid-template-columns: 1fr; }
        }
 
        @media (max-width: 768px) {
            .hero { padding: 60px 0; min-height: auto; }
            .hero-actions { flex-direction: column; }
            .btn, .btn-outline { width: 100%; }
            .service-specs { grid-template-columns: 1fr; }
            .service-info { padding: 24px; }
            .service-info h1 { font-size: 28px; }
            .advantages-grid { grid-template-columns: 1fr; }
            .advantage-card { padding: 24px; }
            .faq-question { padding: 18px 20px; }
            .faq-number { font-size: 24px; width: 40px; }
            .main-nav { display: none; }
            .header-inner { grid-template-columns: 1fr 1fr; }
            .header-phone { font-size: 12px; }
        }
 
        @media (max-width: 560px) {
            .hero h1 { font-size: 28px; }
            .service-info h1 { font-size: 24px; }
            .section-head h2 { font-size: 24px; }
            .service-specs { gap: 10px; }
            .spec { padding: 12px; }
            .cta-section { padding: 50px 0; }
        }
