:root{
  --bg:#06101a;
  --panel:rgba(10,18,28,.82);
  --stroke:rgba(255,255,255,.08);
  --text:#f4f6fa;
  --muted:#c2c9d2;
  --gold:#e0ad43;
  --gold2:#f0c45d;
  --container:1280px;
}

.portfolio-hero__card{
  position:relative;
}

.portfolio-hero__overlay{
  display:block;
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(6,16,26,.82) 0%, rgba(6,16,26,.44) 38%, rgba(6,16,26,.16) 70%, rgba(6,16,26,.28) 100%),
    linear-gradient(180deg, rgba(6,16,26,.08) 0%, rgba(6,16,26,0) 28%, rgba(6,16,26,.24) 100%);
}

.portfolio-hero__eyebrow{
  display:inline-flex;
  margin-bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(224,173,67,.26);
  background:rgba(6,16,26,.34);
  color:#f3c86a;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.portfolio-filters-section{
  padding-top:12px;
  padding-bottom:14px;
}

.portfolio-filters{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.portfolio-filter{
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(9,18,30,.72);
  color:#dde3ea;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.portfolio-filter:hover,
.portfolio-filter.is-active{
  border-color:rgba(224,173,67,.52);
  background:rgba(224,173,67,.12);
  color:#fff;
  transform:translateY(-1px);
}

.portfolio-grid-section{
  padding-top:10px;
}

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

.portfolio-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  overflow:hidden;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(11,22,36,.96), rgba(8,16,26,.92));
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.portfolio-card.is-hidden{
  display:none;
}

.portfolio-card__media{
  aspect-ratio:1.12 / 1;
  overflow:hidden;
  background:#0b1725;
}

.portfolio-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.portfolio-card__body{
  display:grid;
  gap:12px;
  padding:18px 18px 20px;
}

.portfolio-card__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:#cfd7e0;
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.portfolio-card__meta strong{
  color:#efc55f;
  font-size:12px;
}

.portfolio-card h3{
  margin:0;
  font-size:22px;
  line-height:1.16;
}

.portfolio-card p{
  margin:0;
  color:#b9c3ce;
  font-size:14px;
  line-height:1.55;
}

.portfolio-benefits__box,
.portfolio-cta__box{
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(9,18,30,.86), rgba(6,16,26,.92));
}

.portfolio-benefits__box{
  padding:28px;
}

.portfolio-benefits__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.portfolio-benefit{
  padding:20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.02);
}

.portfolio-benefit h3{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.2;
}

.portfolio-benefit p{
  margin:0;
  color:#bcc6d0;
  font-size:14px;
  line-height:1.55;
}

.portfolio-cta{
  padding-top:6px;
  padding-bottom:10px;
}

.portfolio-cta__box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:30px 32px;
}

.portfolio-cta__box h2{
  margin:0;
  font-size:42px;
  line-height:1.02;
  font-weight:800;
}

.portfolio-cta__box p{
  max-width:720px;
  margin:14px 0 0;
  color:#c4ccd6;
  font-size:17px;
  line-height:1.55;
}

.portfolio-form-section{
  padding-top:18px;
}

@media (max-width:1100px){
  .portfolio-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .portfolio-benefits__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .portfolio-cta__box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:640px){
  .portfolio-hero__eyebrow{
    margin-bottom:10px;
    font-size:10px;
    letter-spacing:.1em;
  }

  .portfolio-hero .hero-card__actions{
    gap:10px;
    padding-top:10px;
  }

  .portfolio-hero .hero-card__actions .btn{
    min-height:50px;
    padding:12px 18px;
    border-radius:14px;
  }

  .portfolio-filters-section{
    padding-top:8px;
  }

  .portfolio-filters{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .portfolio-filter{
    min-height:46px;
    padding:0 14px;
    font-size:12px;
    text-align:center;
  }

  .portfolio-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .portfolio-card{
    border-radius:18px;
  }

  .portfolio-card__media{
    aspect-ratio:1.18 / 1;
  }

  .portfolio-card__body{
    padding:16px 16px 18px;
    gap:10px;
  }

  .portfolio-card__meta{
    align-items:flex-start;
    flex-direction:column;
    gap:6px;
  }

  .portfolio-card h3{
    font-size:18px;
  }

  .portfolio-card p{
    font-size:13px;
    line-height:1.5;
  }

  .portfolio-benefits__box{
    padding:18px 16px;
    border-radius:20px;
  }

  .portfolio-benefits__grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .portfolio-benefit{
    padding:16px;
    border-radius:16px;
  }

  .portfolio-benefit h3{
    font-size:16px;
  }

  .portfolio-benefit p{
    font-size:13px;
  }

  .portfolio-cta__box{
    padding:22px 18px;
    gap:18px;
    border-radius:20px;
  }

  .portfolio-cta__box h2{
    font-size:28px;
  }

  .portfolio-cta__box p{
    margin-top:12px;
    font-size:15px;
  }

  .portfolio-cta__box .btn{
    width:100%;
  }
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",sans-serif;
  color:var(--text);
  background:#06101a;
}
body.menu-open{overflow:hidden}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button,input,textarea{font:inherit}

.page-bg{
  position:fixed;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(circle at 15% 22%, rgba(26,58,99,.24), transparent 26%),
    radial-gradient(circle at 84% 10%, rgba(224,173,67,.08), transparent 20%),
    linear-gradient(180deg, #07111b 0%, #071321 60%, #05101a 100%);
}

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

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(12px);
  background:rgba(5,11,18,.86);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.header__inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:14px;
}
.logo__mark{
  width:20px;
  height:20px;
  border-radius:6px;
  background:linear-gradient(180deg, var(--gold2), #b57d1b);
  box-shadow:0 0 24px rgba(224,173,67,.18);
}
.logo__text strong{
  display:block;
  font-size:18px;
  font-weight:800;
  letter-spacing:.08em;
}
.logo__text small{
  display:block;
  margin-top:2px;
  color:#b4bcc6;
  font-size:11px;
}
.nav{
  display:flex;
  gap:28px;
  font-size:13px;
  font-weight:700;
}
.header__right{
  display:flex;
  align-items:center;
  gap:16px;
}
.phone{
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 28px;
  border-radius:12px;
  border:1px solid transparent;
  font-size:14px;
  font-weight:800;
  letter-spacing:.02em;
  cursor:pointer;
}
.btn--small{
  min-height:42px;
  padding:0 18px;
  font-size:12px;
}
.btn--gold{
  color:#111;
  background:linear-gradient(180deg, #efc55f 0%, #dca63d 100%);
  box-shadow:0 14px 30px rgba(219,166,57,.18);
}
.btn--outline{
  color:#f4f6fa;
  border-color:rgba(224,173,67,.55);
  background:transparent;
}
.burger{
  display:none;
  width:46px;
  height:46px;
  padding:0;
  border:0;
  background:transparent;
}
.burger span{
  display:block;
  width:24px;
  height:2px;
  margin:5px auto;
  background:#fff;
}
.mobile-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  right:0;
  padding:16px 24px 24px;
  background:rgba(6,16,26,.98);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.mobile-menu.is-open{display:block}
.mobile-menu a{
  display:block;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.mobile-menu__cta{margin-top:16px;border-bottom:0}

.hero{
  padding:18px 0 14px;
}
.hero-card{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  background:linear-gradient(180deg, rgba(8,21,37,.72), rgba(8,21,37,.56));
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.05);
}
.hero-card__content{
  padding:62px 38px 34px;
}
.hero-card__content h1{
  margin:0;
  font-size:60px;
  line-height:1.02;
  font-weight:800;
  letter-spacing:-.04em;
}
.hero-card__content p{
  margin:22px 0 0;
  color:var(--muted);
  font-size:19px;
  line-height:1.5;
  max-width:560px;
}
.hero-card__media{
  position:relative;
  min-height:420px;
}
.hero-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-card__media .hero-image--desktop,
.hero-card__media .hero-image--mobile{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-card__media .hero-image--desktop{
  display:block;
}

.hero-card__media .hero-image--mobile{
  display:none;
}
.hero-card__actions{
  grid-column:1 / -1;
  display:flex;
  gap:14px;
  padding:0 38px 34px;
}

.section{
  padding:34px 0;
}
.section--cards{
  padding-top:8px;
}
.section-title{
  margin:0 0 20px;
  text-align:center;
  font-size:22px;
  font-weight:800;
}
.section-title--left{
  text-align:left;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.service-card{
  position:relative;
  min-height:420px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background:#0c1622;
}
.service-card__image-wrap{
  position:absolute;
  inset:0;
}
.service-card__image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.service-card__text{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:20px 18px 18px;
  background:linear-gradient(180deg, rgba(6,16,26,0) 0%, rgba(6,16,26,.16) 18%, rgba(6,16,26,.88) 100%);
}
.service-card h3{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.08;
}
.service-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.42;
}

.section--advantages{
  position:relative;
  overflow:hidden;
}
.advantages-bg{
  position:absolute;
  inset:0;
  z-index:-1;
}
.advantages-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.advantages-bg__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(6,16,26,.82), rgba(6,16,26,.88));
}
.advantages-row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}
.advantage-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.advantage-item__icon{
  flex:0 0 42px;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(224,173,67,.36);
  background:
    radial-gradient(circle at center, var(--gold) 0 22%, transparent 24%),
    linear-gradient(180deg, rgba(224,173,67,.15), rgba(224,173,67,.03));
}
.advantage-item h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.15;
}
.advantage-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.portfolio-strip{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.portfolio-mini{
  overflow:hidden;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.06);
  background:#0b1725;
  aspect-ratio:1.55 / 1;
}
.portfolio-mini img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.business-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.business-line{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:18px;
  line-height:1.5;
  color:#e9edf2;
}
.check{
  width:18px;
  height:18px;
  border-radius:4px;
  border:1px solid rgba(224,173,67,.65);
  position:relative;
  margin-top:6px;
  flex:0 0 18px;
}
.check::after{
  content:"";
  position:absolute;
  left:4px;
  top:1px;
  width:6px;
  height:10px;
  border-right:2px solid var(--gold);
  border-bottom:2px solid var(--gold);
  transform:rotate(45deg);
}

.steps-row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.step-item{
  padding:28px 22px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(9,17,27,.60);
}
.step-icon{
  width:78px;
  height:78px;
  margin:0 auto 18px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:800;
  color:#111;
  background:linear-gradient(180deg, #efc55f 0%, #dca63d 100%);
}
.step-item h3{
  margin:0 0 10px;
  font-size:24px;
  text-align:center;
}
.step-item p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.5;
  text-align:center;
}

.section--form{
  padding-top:40px;
}
.form-box{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}
.form-box h2{
  margin:0;
  font-size:54px;
  line-height:1.02;
  font-weight:800;
}
.form-box p{
  margin:16px 0 0;
  color:var(--muted);
  font-size:18px;
}
.quote-form{
  display:grid;
  gap:14px;
  margin-top:24px;
}
.quote-form input,
.quote-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(7,17,27,.58);
  border-radius:10px;
  padding:18px 18px;
  color:#fff;
  outline:none;
}
.quote-form textarea{
  min-height:112px;
  resize:vertical;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder{
  color:#9ea9b5;
}
.btn--submit{
  min-width:270px;
  margin:8px auto 0;
}
.form-box small{
  display:block;
  margin-top:16px;
  color:#a9b2bc;
  font-size:13px;
}

.form-consent-note a{
  color:#e7b947;
  text-decoration:none;
}

.form-consent-note a:hover{
  color:#f0c24f;
  text-decoration:underline;
}

.section--footer-sign{
  padding-top:20px;
  padding-bottom:56px;
}
.footer-sign__box{
  padding:40px 20px 10px;
  text-align:center;
}
.footer-sign__logo{
  font-size:110px;
  line-height:1;
  font-weight:800;
  letter-spacing:.02em;
  color:rgba(255,255,255,.84);
}
.footer-sign__sub{
  margin-top:8px;
  color:#cfd5dc;
  font-size:24px;
  letter-spacing:.08em;
  text-transform:lowercase;
}

@media (max-width:1100px){
  .nav,.header__right{display:none}
  .burger{display:block}
  .hero-card{
    grid-template-columns:1fr;
  }
  .hero-card__content{
    padding:28px 28px 18px;
  }
  .hero-card__content h1{
    font-size:46px;
  }
  .hero-card__content p{
    font-size:17px;
  }
  .hero-card__media{
    min-height:360px;
  }
  .hero-card__actions{
    padding:18px 28px 28px;
  }
  .services-grid,
  .advantages-row,
  .portfolio-strip,
  .business-grid,
  .steps-row{
    grid-template-columns:1fr 1fr;
  }
  .footer-sign__logo{font-size:70px}
  .footer-sign__sub{font-size:18px}
}

@media (max-width:640px){
  .container{
    width:min(100% - 28px, var(--container));
  }
  .header__inner{
    min-height:78px;
  }
  .logo__text strong{
    font-size:16px;
  }
  .logo__text small{
    font-size:10px;
  }

  .hero{
    padding:12px 0 8px;
  }
  .hero-card{
    display:flex;
    flex-direction:column;
    background:transparent;
    border:none;
    border-radius:0;
    overflow:visible;
  }
  .hero-card__content{
    order:2;
    padding:0;
    margin-top:-270px;
    position:relative;
    z-index:3;
    pointer-events:none;
  }
  .hero-card__content h1{
    font-size:28px;
    line-height:1.02;
    margin:0;
    max-width:100%;
    text-transform:uppercase;
    text-shadow:0 2px 18px rgba(0,0,0,.45);
  }
  .hero-card__content p{
    margin:14px 0 0;
    font-size:15px;
    line-height:1.5;
    max-width:88%;
    color:#d8dee6;
    text-shadow:0 2px 18px rgba(0,0,0,.45);
  }
  .hero-card__media{
    order:1;
    min-height:0;
    aspect-ratio:1.04 / 1;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.06);
    background:#0c1622;
    position:relative;
  }
  .hero-card__media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(6,16,26,.16) 0%, rgba(6,16,26,.20) 28%, rgba(6,16,26,.68) 72%, rgba(6,16,26,.90) 100%);
  }
  .hero-card__media img{
    object-position:center center;
  }
  .hero-card__actions{
    order:3;
    padding:18px 0 0;
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    position:relative;
    z-index:4;
  }
  .btn,
  .btn--small{
    width:100%;
    min-height:54px;
  }

  .section{
    padding:24px 0;
  }
  .section--cards{
    padding-top:8px;
  }
  .section-title{
    font-size:17px;
    margin:0 0 14px;
  }

  .services-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }
  .service-card{
    min-height:300px;
    border-radius:16px;
  }
  .service-card__image-wrap{
    position:absolute;
    inset:0;
  }
  .service-card__image-wrap img{
    object-fit:cover;
    object-position:center center;
  }
  .service-card__text{
    padding:14px 12px 12px;
    background:linear-gradient(180deg, rgba(6,16,26,0) 0%, rgba(6,16,26,.14) 18%, rgba(6,16,26,.92) 100%);
  }
  .service-card h3{
    font-size:14px;
    line-height:1.1;
    margin:0 0 6px;
  }
  .service-card p{
    font-size:11px;
    line-height:1.32;
  }

  .advantages-row,
  .portfolio-strip,
  .business-grid,
  .steps-row{
    grid-template-columns:1fr;
  }

  .portfolio-mini{
    aspect-ratio:1.52 / 1;
    border-radius:16px;
  }

  .business-grid{
    gap:14px;
  }
  .business-line{
    font-size:15px;
  }

  .advantage-item{
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
  }
  .advantage-item:last-child{
    border-bottom:0;
  }
  .advantage-item h3{
    font-size:16px;
    margin-bottom:6px;
  }
  .advantage-item p{
    font-size:13px;
  }

  .step-item{
    padding:22px 16px;
  }
  .step-icon{
    width:70px;
    height:70px;
    margin-bottom:14px;
    font-size:24px;
  }
  .step-item h3{
    font-size:18px;
    text-align:left;
  }
  .step-item p{
    font-size:14px;
    text-align:left;
  }

  .form-box h2{
    font-size:30px;
  }
  .form-box p{
    font-size:15px;
    line-height:1.5;
  }
  .quote-form input,
  .quote-form textarea{
    padding:16px 16px;
    border-radius:14px;
  }
  .quote-form textarea{
    min-height:136px;
  }
  .btn--submit{
    min-width:0;
    width:100%;
  }

  .footer-sign{
    display:none;
  }
}

@media (max-width:640px){
  /* hero: фото сверху, текст поверх фото, кнопки под фото */
  .hero{
    padding:12px 0 8px;
  }

  .hero-card{
    display:grid;
    grid-template-columns:1fr;
    background:transparent;
    border:none;
    border-radius:0;
    overflow:visible;
  }

  .hero-card__media{
    grid-column:1;
    grid-row:1;
    min-height:0;
    aspect-ratio:1.04 / 1;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.06);
    background:#0c1622;
    position:relative;
  }

  .hero-card__media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
      180deg,
      rgba(6,16,26,.18) 0%,
      rgba(6,16,26,.28) 34%,
      rgba(6,16,26,.70) 72%,
      rgba(6,16,26,.88) 100%
    );
    z-index:1;
  }

  .hero-card__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
  }

  .hero-card__content{
    grid-column:1;
    grid-row:1;
    align-self:start;
    padding:18px 18px 0;
    margin:0;
    position:relative;
    z-index:3;
    pointer-events:none;
  }

  .hero-card__content h1{
    margin:0;
    font-size:27px;
    line-height:1.02;
    letter-spacing:-.03em;
    text-transform:uppercase;
    max-width:92%;
    text-shadow:0 2px 16px rgba(0,0,0,.45);
  }

  .hero-card__content p{
    margin:14px 0 0;
    max-width:88%;
    font-size:15px;
    line-height:1.48;
    color:#dde3ea;
    text-shadow:0 2px 14px rgba(0,0,0,.4);
  }

  .hero-card__actions{
    grid-column:1;
    grid-row:2;
    padding:14px 0 0;
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    position:relative;
    z-index:4;
  }

  /* услуги: фото во всю карточку, текст прямо на фото снизу */
  .services-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .service-card{
    position:relative;
    min-height:290px;
    border-radius:16px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    background:#0b1725;
  }

  .service-card__image-wrap{
    position:absolute;
    inset:0;
    z-index:1;
  }

  .service-card__image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
  }

  .service-card__text{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:3;
    padding:14px 12px 12px;
    background:linear-gradient(
      180deg,
      rgba(6,16,26,0) 0%,
      rgba(6,16,26,.10) 18%,
      rgba(6,16,26,.78) 62%,
      rgba(6,16,26,.94) 100%
    );
  }

  .service-card h3{
    margin:0 0 6px;
    font-size:14px;
    line-height:1.08;
  }

  .service-card p{
    margin:0;
    font-size:11px;
    line-height:1.3;
    color:#d5dbe3;
  }
}

@media (max-width:640px){
  /* hero без рамки */
  .hero-card{
    border:none !important;
    background:transparent !important;
    overflow:visible !important;
  }

  .hero-card__media{
    border:none !important;
    border-radius:0 !important;
    background:transparent !important;
    aspect-ratio:1.02 / 1 !important;
    margin-top:18px !important;
    overflow:visible !important;
  }

  .hero-card__media::after{
    background:linear-gradient(
      180deg,
      rgba(6,16,26,.10) 0%,
      rgba(6,16,26,.18) 28%,
      rgba(6,16,26,.46) 62%,
      rgba(6,16,26,.72) 100%
    ) !important;
    border-radius:18px !important;
  }

  .hero-card__media img{
    border-radius:18px !important;
    object-position:center top !important;
  }

  /* текст на фото сверху */
  .hero-card__content{
    padding:34px 18px 0 !important;
    margin:0 !important;
    z-index:4 !important;
  }

  .hero-card__content h1{
    max-width:86% !important;
  }

  .hero-card__content p{
    max-width:82% !important;
  }

  /* кнопки заходят на фото */
  .hero-card__actions{
    margin-top:-34px !important;
    padding:0 0 4px !important;
    position:relative !important;
    z-index:5 !important;
  }

  .hero-card__actions .btn{
    min-height:56px !important;
    border-radius:16px !important;
  }

  /* услуги: только готовые картинки, без внешней карточки и без html текста */
  .section--cards{
    padding-top:6px !important;
  }

  .services-grid{
    grid-template-columns:1fr 1fr !important;
    gap:12px !important;
  }

  .service-card{
    min-height:auto !important;
    border:none !important;
    background:transparent !important;
    border-radius:16px !important;
    overflow:hidden !important;
    box-shadow:none !important;
  }

  .service-card__image-wrap{
    position:relative !important;
    inset:auto !important;
    aspect-ratio:.78 / 1 !important;
    border-radius:16px !important;
    overflow:hidden !important;
  }

  .service-card__image-wrap img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    border-radius:16px !important;
  }

  .service-card__text{
    display:none !important;
  }
}

@media (max-width:640px){
  /* hero: совсем без рамки */
  .hero-card,
  .hero-card__media,
  .hero-card__media img{
    border:none !important;
    outline:none !important;
    box-shadow:none !important;
  }

  .hero-card__media{
    border-radius:0 !important;
    overflow:visible !important;
    background:transparent !important;
    margin-top:22px !important;
    aspect-ratio:1.02 / 1 !important;
  }

  .hero-card__media::after{
    border-radius:0 !important;
    background:linear-gradient(
      180deg,
      rgba(6,16,26,.08) 0%,
      rgba(6,16,26,.18) 28%,
      rgba(6,16,26,.48) 64%,
      rgba(6,16,26,.74) 100%
    ) !important;
  }

  .hero-card__media img{
    border-radius:0 !important;
  }

  .hero-card__content{
    padding:34px 18px 0 !important;
  }

  .hero-card__actions{
    margin-top:-42px !important;
    padding:0 0 8px !important;
    z-index:6 !important;
  }

  /* услуги: фото крупнее + текст внутри фото снизу */
  .services-grid{
    grid-template-columns:1fr 1fr !important;
    gap:12px !important;
  }

  .service-card{
    position:relative !important;
    min-height:250px !important;
    border:none !important;
    background:transparent !important;
    box-shadow:none !important;
    border-radius:16px !important;
    overflow:hidden !important;
  }

  .service-card__image-wrap{
    position:absolute !important;
    inset:0 !important;
    aspect-ratio:auto !important;
    border-radius:16px !important;
    overflow:hidden !important;
  }

  .service-card__image-wrap img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center top !important;
    border-radius:16px !important;
  }

  .service-card__text{
    display:block !important;
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    z-index:3 !important;
    padding:16px 12px 12px !important;
    background:linear-gradient(
      180deg,
      rgba(6,16,26,0) 0%,
      rgba(6,16,26,.12) 18%,
      rgba(6,16,26,.82) 66%,
      rgba(6,16,26,.96) 100%
    ) !important;
  }

  .service-card h3{
    margin:0 0 6px !important;
    font-size:14px !important;
    line-height:1.08 !important;
    color:#fff !important;
  }

  .service-card p{
    display:block !important;
    margin:0 !important;
    font-size:11px !important;
    line-height:1.3 !important;
    color:#d9dee5 !important;
  }
}

@media (max-width:640px){
  /* HERO: полностью убрать рамку/скругление */
  .hero,
  .hero-card{
    border:none !important;
    box-shadow:none !important;
    background:transparent !important;
  }

  .hero-card__media,
  .hero-card__media::after,
  .hero-card__media img{
    border:none !important;
    outline:none !important;
    box-shadow:none !important;
    border-radius:0 !important;
  }

  .hero-card__media{
    margin-top:22px !important;
    background:transparent !important;
    overflow:visible !important;
    aspect-ratio:1.02 / 1 !important;
  }

  .hero-card__media::after{
    background:linear-gradient(
      180deg,
      rgba(6,16,26,.04) 0%,
      rgba(6,16,26,.12) 26%,
      rgba(6,16,26,.40) 62%,
      rgba(6,16,26,.70) 100%
    ) !important;
  }

  .hero-card__content{
    padding:34px 18px 0 !important;
  }

  .hero-card__actions{
    margin-top:-42px !important;
    padding:0 0 10px !important;
    z-index:8 !important;
  }

  /* УСЛУГИ: сделать изображения крупнее */
  .services-grid{
    gap:12px !important;
  }

  .service-card{
    min-height:360px !important;
    border:none !important;
    background:transparent !important;
    box-shadow:none !important;
    overflow:hidden !important;
  }

  .service-card__image-wrap{
    position:absolute !important;
    inset:0 !important;
  }

  .service-card__image-wrap img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center top !important;
    transform:scale(1.06) !important;
  }

  .service-card__text{
    padding:18px 12px 12px !important;
    background:linear-gradient(
      180deg,
      rgba(6,16,26,0) 0%,
      rgba(6,16,26,.08) 18%,
      rgba(6,16,26,.76) 62%,
      rgba(6,16,26,.96) 100%
    ) !important;
  }

  .service-card h3{
    font-size:15px !important;
  }

  .service-card p{
    font-size:11px !important;
  }
}


/* ===== CLEAN MOBILE SERVICES ===== */
@media (max-width:640px){
  .section--cards{
    padding-top:16px !important;
    margin-top:0 !important;
  }

  .section--cards .container{
    width:calc(100% - 24px) !important;
  }

  .services-grid{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:14px !important;
    margin-top:0 !important;
  }

  .service-card{
    position:relative !important;
    min-height:360px !important;
    border:1px solid rgba(255,255,255,.08) !important;
    border-radius:18px !important;
    background:#081321 !important;
    overflow:hidden !important;
    box-shadow:none !important;
  }

  .service-card__image-wrap{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    overflow:hidden !important;
    border-radius:18px !important;
  }

  .service-card__image-wrap img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
    transform:none !important;
    border-radius:18px !important;
  }

  .service-card__text{
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    z-index:3 !important;
    padding:20px 12px 12px !important;
    background:linear-gradient(180deg, rgba(6,16,26,0) 0%, rgba(6,16,26,.10) 18%, rgba(6,16,26,.78) 62%, rgba(6,16,26,.96) 100%) !important;
  }

  .service-card h3{
    margin:0 0 6px !important;
    font-size:14px !important;
    line-height:1.08 !important;
    color:#fff !important;
  }

  .service-card p{
    margin:0 !important;
    font-size:11px !important;
    line-height:1.3 !important;
    color:#d9dee5 !important;
  }
}

/* temporary debug: remove extra dark overlay from hero image */
.hero-card__media::after{
  background:none !important;
  opacity:0 !important;
}

/* trim hero bottom + pull services up */
.hero{
  height:calc(100svh - 32px) !important;
  min-height:calc(100svh - 32px) !important;
  max-height:calc(100svh - 32px) !important;
  overflow:hidden !important;
  padding-bottom:0 !important;
  margin-bottom:-32px !important;
}

.hero .container,
.hero-card,
.hero-card__media{
  height:100% !important;
  min-height:0 !important;
  max-height:100% !important;
  overflow:hidden !important;
}

.hero-card{
  margin-bottom:0 !important;
}

.hero-card__media img{
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
}

#services{
  margin-top:-26px !important;
  position:relative !important;
  z-index:5 !important;
}

.logo{
  display:flex !important;
  align-items:center !important;
}

.logo__img{
  display:block !important;
  width:auto !important;
  height:90px !important;
  max-width:520px !important;
  object-fit:contain !important;
}

@media (max-width:640px){
  .logo__img{
    width:auto !important;
    height:72px !important;
    max-width:420px !important;
    object-fit:contain !important;
  }
}

@media (max-width:640px){
  .section--advantages{
    position:relative !important;
  }

  .advantages-bg__overlay{
    background:linear-gradient(
      180deg,
      rgba(4,12,20,.72) 0%,
      rgba(4,12,20,.62) 24%,
      rgba(4,12,20,.58) 52%,
      rgba(4,12,20,.70) 100%
    ) !important;
  }

  .advantage-item{
    padding:18px 0 !important;
    border-color:rgba(255,255,255,.10) !important;
  }

  .advantage-item__icon{
    width:58px !important;
    height:58px !important;
    border:1px solid rgba(232,185,71,.35) !important;
    background:rgba(232,185,71,.06) !important;
    box-shadow:none !important;
  }

  .advantage-item__icon::before{
    background:#e7b947 !important;
    box-shadow:none !important;
  }

  .advantage-item h3{
    color:#ffffff !important;
    font-size:18px !important;
    line-height:1.08 !important;
    margin:0 0 8px !important;
  }

  .advantage-item p{
    color:#d8dee6 !important;
    font-size:14px !important;
    line-height:1.42 !important;
    margin:0 !important;
  }

  .section--advantages .section-title{
    margin-bottom:18px !important;
  }
}

@media (max-width:640px){
  .advantages-bg__overlay{
    background:linear-gradient(
      180deg,
      rgba(3,10,18,.84) 0%,
      rgba(3,10,18,.78) 30%,
      rgba(3,10,18,.76) 60%,
      rgba(3,10,18,.84) 100%
    ) !important;
  }

  .advantage-item{
    padding:18px 0 !important;
    border-color:rgba(255,255,255,.08) !important;
  }

  .advantage-item__icon{
    width:54px !important;
    min-width:54px !important;
    height:54px !important;
    min-height:54px !important;
    border-radius:50% !important;
    aspect-ratio:1 / 1 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border:1px solid rgba(232,185,71,.32) !important;
    background:rgba(232,185,71,.04) !important;
    box-shadow:none !important;
  }

  .advantage-item__icon::before{
    width:16px !important;
    height:16px !important;
    border-radius:50% !important;
    background:#e7b947 !important;
    box-shadow:none !important;
  }

  .advantage-item h3{
    color:#fff !important;
  }

  .advantage-item p{
    color:#cfd6df !important;
  }
}





@media (max-width:640px){
  .advantage-item{
    grid-template-columns:44px 1fr !important;
    gap:16px !important;
    align-items:start !important;
  }

  img.advantage-item__icon{
    width:38px !important;
    min-width:38px !important;
    height:38px !important;
    min-height:38px !important;
    margin-top:6px !important;
    object-fit:contain !important;
  }

  .advantage-item h3{
    font-size:18px !important;
    line-height:1.08 !important;
    margin:0 0 8px !important;
  }

  .advantage-item p{
    font-size:14px !important;
    line-height:1.38 !important;
    margin:0 !important;
  }
}

@media (max-width:640px){
  .advantage-item{
    grid-template-columns:52px 1fr !important;
    gap:18px !important;
  }

  img.advantage-item__icon{
    width:46px !important;
    min-width:46px !important;
    height:46px !important;
    min-height:46px !important;
    margin-top:6px !important;
  }
}

@media (max-width:640px){
  .advantage-item{
    grid-template-columns:88px 1fr !important;
    gap:20px !important;
  }

  img.advantage-item__icon{
    width:84px !important;
    min-width:84px !important;
    height:84px !important;
    min-height:84px !important;
    margin-top:0 !important;
    object-fit:contain !important;
  }
}






@media (max-width:640px){
  .advantage-item{
    display:grid !important;
    grid-template-columns:72px 1fr !important;
    gap:16px !important;
    align-items:start !important;
  }

  .advantage-item__icon,
  img.advantage-item__icon{
    width:64px !important;
    min-width:64px !important;
    max-width:64px !important;
    height:64px !important;
    min-height:64px !important;
    max-height:64px !important;
    display:block !important;
    margin:2px 0 0 !important;
    object-fit:contain !important;
    border:none !important;
    background:none !important;
    box-shadow:none !important;
    border-radius:0 !important;
  }

  .advantage-item__icon::before,
  .advantage-item__icon::after{
    content:none !important;
    display:none !important;
  }
}

@media (max-width:640px){
  .advantages-row > .advantage-item:first-of-type img.advantage-item__icon{
    transform:scale(1.28) !important;
    transform-origin:center center !important;
  }
}

@media (max-width:640px){
  img.advantage-item__icon{
    margin-top:-8px !important;
  }
}

@media (max-width:640px){
  img.advantage-item__icon{
    margin-top:-14px !important;
  }
}

@media (max-width:640px){
  .section--cards{
    position:relative !important;
    z-index:2 !important;
    padding-top:0 !important;
    margin-top:0 !important;
  }

  .section--cards .container{
    width:calc(100% - 24px) !important;
    max-width:none !important;
    margin:0 auto !important;
    padding:0 !important;
  }

  .services-grid{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:14px !important;
    margin-top:0 !important;
  }

  .service-card{
    position:relative !important;
    min-height:360px !important;
    border:1px solid rgba(255,255,255,.08) !important;
    border-radius:18px !important;
    overflow:hidden !important;
    background:#081321 !important;
  }

  .service-card__image-wrap{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    display:block !important;
    overflow:hidden !important;
    border-radius:18px !important;
    z-index:1 !important;
  }

  .service-card__image-wrap picture,
  .service-card__image-wrap img{
    display:block !important;
    width:100% !important;
    height:100% !important;
    visibility:visible !important;
    opacity:1 !important;
  }

  .service-card__image-wrap img{
    object-fit:cover !important;
    object-position:center center !important;
    transform:none !important;
  }

  .service-card__text{
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    z-index:3 !important;
    padding:20px 12px 12px !important;
    background:linear-gradient(180deg, rgba(6,16,26,0) 0%, rgba(6,16,26,.10) 18%, rgba(6,16,26,.78) 62%, rgba(6,16,26,.96) 100%) !important;
  }

  .service-card h3{
    margin:0 0 6px !important;
    font-size:14px !important;
    line-height:1.08 !important;
    color:#fff !important;
  }

  .service-card p{
    margin:0 !important;
    font-size:11px !important;
    line-height:1.3 !important;
    color:#d9dee5 !important;
  }
}

@media (max-width:640px){
  .service-card,
  .portfolio-mini,
  .service-card__image-wrap,
  .portfolio-mini img{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
  }

  .service-card__image-wrap,
  .portfolio-mini{
    position:relative !important;
    overflow:hidden !important;
    z-index:1 !important;
  }

  .service-card__image-wrap img,
  .portfolio-mini img{
    display:block !important;
    width:100% !important;
    height:100% !important;
    visibility:visible !important;
    opacity:1 !important;
    object-fit:cover !important;
    object-position:center center !important;
  }

  .service-card{
    min-height:360px !important;
  }

  .portfolio-strip{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:14px !important;
  }

  .portfolio-mini{
    min-height:220px !important;
    aspect-ratio:auto !important;
    border-radius:16px !important;
    background:#081321 !important;
  }
}

.file-field{
  display:block;
  text-align:left;
  border:1px dashed rgba(255,255,255,.18);
  background:rgba(7,17,27,.58);
  border-radius:14px;
  padding:16px 16px;
  cursor:pointer;
}

.file-field input[type="file"]{
  display:none;
}

.file-field span{
  display:block;
  color:#f4f6fa;
  font-size:15px;
  font-weight:700;
  line-height:1.35;
}

.file-field small{
  display:block;
  margin-top:6px;
  color:#aab4bf;
  font-size:12px;
  line-height:1.4;
}

@media (max-width:640px){
  .form-box h2{
    font-size:28px !important;
    line-height:1.04 !important;
  }

  .form-box p{
    font-size:15px !important;
    line-height:1.5 !important;
  }

  .quote-form{
    gap:12px !important;
  }

  .file-field{
    padding:15px 14px !important;
    border-radius:14px !important;
  }

  .file-field span{
    font-size:14px !important;
  }

  .file-field small{
    font-size:11px !important;
  }
}

.file-field__name{
  display:block;
  margin-top:10px;
  color:#e7b947;
  font-size:12px;
  font-style:normal;
  line-height:1.4;
  word-break:break-word;
}

@media (max-width:640px){
  .file-field__name{
    font-size:11px;
    margin-top:8px;
  }
}

:root{
  --heading-mobile: 18px;
  --heading-mobile-line: 1.06;
  --hero-heading-mobile: 27px;
  --hero-heading-line: 1.06;
  --body-mobile: 14px;
  --body-mobile-line: 1.42;
}

@media (max-width:640px){
  .section-title,
  .section-title--left,
  .section--form .form-box h2,
  .section--portfolio h2,
  .section--advantages h2,
  .section--steps h2,
  .section--cards h2{
    font-size:var(--heading-mobile) !important;
    line-height:var(--heading-mobile-line) !important;
    letter-spacing:0 !important;
  }

  .hero-card__content h1,
  .hero-card__content--inside h1{
    font-size:var(--hero-heading-mobile) !important;
    line-height:var(--hero-heading-line) !important;
  }

  .section--form .form-box p,
  .advantage-item p,
  .step-card p,
  .service-card p,
  .portfolio-note,
  .section p{
    font-size:var(--body-mobile) !important;
    line-height:var(--body-mobile-line) !important;
  }

  .section--form .form-box h2{
    max-width:100% !important;
    margin:0 0 16px !important;
  }
}

@media (max-width:640px){
  .quote-form textarea{
    min-height:150px !important;
    height:150px !important;
  }

  .file-field{
    background:rgba(10,22,36,.72) !important;
    border-color:rgba(255,255,255,.16) !important;
  }

  .file-field__name{
    color:#cdbb86 !important;
  }
}

@media (max-width:640px){
  .section--form textarea,
  .section--form .quote-form textarea,
  .form-box textarea{
    min-height:120px !important;
    height:120px !important;
    max-height:120px !important;
    resize:none !important;
  }
}

@media (max-width:640px){
  .section--form textarea,
  .section--form .quote-form textarea,
  .form-box textarea{
    min-height:90px !important;
    height:90px !important;
    max-height:90px !important;
    resize:none !important;
  }
}

@media (max-width:640px){
  .section--form .form-box h2{
    font-size:22px !important;
    line-height:1.06 !important;
  }
}

:root{
  --section-title-mobile: 18px;
  --section-title-mobile-line: 1.08;
  --section-text-mobile: 14px;
  --section-text-mobile-line: 1.42;
  --hero-title-mobile: 27px;
  --hero-title-mobile-line: 1.08;
}

@media (max-width:640px){
  .section-title,
  .section-title--left,
  .section--advantages .section-title,
  .section--cards .section-title,
  .section--form .form-box h2{
    font-size:var(--section-title-mobile) !important;
    line-height:var(--section-title-mobile-line) !important;
    letter-spacing:0 !important;
  }

  .hero-card__content h1,
  .hero-card__content--inside h1{
    font-size:var(--hero-title-mobile) !important;
    line-height:var(--hero-title-mobile-line) !important;
  }

  .section--form .form-box p,
  .advantage-item p,
  .service-card p,
  .step-item p,
  .business-line,
  .file-field span,
  .file-field small{
    font-size:var(--section-text-mobile) !important;
    line-height:var(--section-text-mobile-line) !important;
  }
}


/* ===== FOOTER ===== */
.site-footer{
  position:relative;
  overflow:hidden;
  margin-top:0;
  padding:42px 0 24px;
  background:#07111b;
}

.site-footer__bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.site-footer__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}

.site-footer__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(5,12,20,.78) 0%, rgba(5,12,20,.68) 22%, rgba(5,12,20,.58) 55%, rgba(5,12,20,.84) 100%),
    linear-gradient(90deg, rgba(5,12,20,.42) 0%, rgba(5,12,20,.12) 18%, rgba(5,12,20,.12) 82%, rgba(5,12,20,.42) 100%);
}

.site-footer__inner{
  position:relative;
  z-index:1;
}

.site-footer__top{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:28px;
  align-items:start;
  padding-bottom:26px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.site-footer__brand h2{
  margin:0 0 10px;
  font-size:26px;
  line-height:1;
  color:#fff;
}

.site-footer__brand p{
  margin:0;
  color:#cdd6df;
  font-size:15px;
  line-height:1.5;
}

.site-footer__nav,
.site-footer__contacts{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.site-footer__nav a,
.site-footer__contacts a,
.site-footer__contacts span{
  color:#e7edf4;
  text-decoration:none;
  font-size:15px;
  line-height:1.45;
}

.site-footer__nav a:hover,
.site-footer__contacts a:hover{
  color:#f0c24f;
}

.site-footer__sign{
  margin-top:30px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(7,17,27,.42);
}

.site-footer__sign img{
  width:100%;
  display:block;
  object-fit:cover;
  object-position:center center;
}

.site-footer__bottom{
  margin-top:18px;
  text-align:left;
}

.site-footer__bottom span{
  color:#b3bec8;
  font-size:13px;
  line-height:1.5;
}

@media (max-width:640px){
  .site-footer{
    padding:32px 0 20px !important;
  }

  .site-footer__top{
    grid-template-columns:1fr !important;
    gap:20px !important;
    padding-bottom:20px !important;
  }

  .site-footer__brand h2{
    font-size:22px !important;
    margin:0 0 8px !important;
  }

  .site-footer__brand p,
  .site-footer__nav a,
  .site-footer__contacts a,
  .site-footer__contacts span{
    font-size:14px !important;
    line-height:1.45 !important;
  }

  .site-footer__nav,
  .site-footer__contacts{
    gap:10px !important;
  }

  .site-footer__sign{
    margin-top:22px !important;
    border-radius:18px !important;
  }

  .site-footer__bottom{
    margin-top:14px !important;
  }

  .site-footer__bottom span{
    font-size:12px !important;
  }
}

.site-footer__sign{
  display:none !important;
}

.site-footer__logo{
  display:block;
  width:auto;
  height:54px;
  max-width:260px;
  object-fit:contain;
  margin:0 0 10px;
}

@media (max-width:640px){
  .site-footer__logo{
    height:42px !important;
    max-width:220px !important;
    margin:0 0 8px !important;
  }
}

.site-footer__logo{
  height:72px !important;
  max-width:340px !important;
  margin:0 0 14px !important;
}

@media (max-width:640px){
  .site-footer__logo{
    height:56px !important;
    max-width:280px !important;
    margin:0 0 12px !important;
  }

  .site-footer__brand p{
    margin:0 0 18px !important;
  }
}

@media (max-width:640px){
  .site-footer{
    padding:24px 0 18px !important;
  }

  .site-footer__top{
    gap:14px !important;
    padding-bottom:14px !important;
  }

  .site-footer__brand{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
  }

  .site-footer__logo{
    height:64px !important;
    max-width:320px !important;
    margin:0 0 6px !important;
  }

  .site-footer__brand p{
    margin:0 0 10px !important;
    font-size:13px !important;
    line-height:1.35 !important;
    color:#d4dbe3 !important;
  }

  .site-footer__nav,
  .site-footer__contacts{
    gap:8px !important;
  }

  .site-footer__nav a,
  .site-footer__contacts a,
  .site-footer__contacts span{
    font-size:13px !important;
    line-height:1.32 !important;
  }

  .site-footer__bottom{
    margin-top:10px !important;
  }

  .site-footer__bottom span{
    font-size:11px !important;
    color:#b8c1ca !important;
  }

  .site-footer__overlay{
    background:
      linear-gradient(180deg, rgba(5,12,20,.86) 0%, rgba(5,12,20,.78) 28%, rgba(5,12,20,.72) 62%, rgba(5,12,20,.88) 100%) !important,
      linear-gradient(90deg, rgba(5,12,20,.38) 0%, rgba(5,12,20,.16) 18%, rgba(5,12,20,.16) 82%, rgba(5,12,20,.38) 100%) !important;
  }
}

@media (max-width:640px){
  .site-footer__logo{
    height:58px !important;
    max-width:260px !important;
    margin:0 0 8px !important;
  }

  .site-footer__nav a,
  .site-footer__contacts a,
  .site-footer__contacts span{
    font-size:14px !important;
    font-weight:600 !important;
    line-height:1.3 !important;
  }

  .site-footer__brand p{
    font-size:14px !important;
    line-height:1.32 !important;
  }
}

@media (max-width:640px){
  .site-footer__logo{
    height:62px !important;
    max-width:280px !important;
  }

  .site-footer__nav a{
    color:#ffffff !important;
    font-weight:600 !important;
  }

  .site-footer__contacts a,
  .site-footer__contacts span{
    color:#c8d0d8 !important;
    font-weight:500 !important;
  }
}

@media (max-width:640px){
  .site-footer__logo{
    height:68px !important;
    max-width:300px !important;
  }
}

@media (max-width:640px){
  .site-footer__logo{
    height:76px !important;
    max-width:340px !important;
  }
}

@media (max-width:640px){
  .site-footer__logo{
    height:72px !important;
    max-width:320px !important;
  }
}


@media (max-width:640px){
  .services-grid{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:12px !important;
    align-items:stretch !important;
  }

  .service-card{
    min-height:260px !important;
    height:260px !important;
    max-height:260px !important;
  }

  .service-card__image-wrap{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
  }

  .service-card__image-wrap img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
  }

  .service-card__text{
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    padding:16px 10px 10px !important;
  }

  .service-card h3{
    font-size:13px !important;
    line-height:1.08 !important;
    margin:0 0 4px !important;
  }

  .service-card p{
    font-size:10px !important;
    line-height:1.24 !important;
    margin:0 !important;
  }
}

@media (max-width:640px){
  #services .services-grid{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:12px !important;
  }

  #services .service-card{
    width:100% !important;
    min-width:0 !important;
    min-height:260px !important;
    height:260px !important;
    max-height:260px !important;
    margin:0 !important;
    display:block !important;
  }

  #services .service-card__image-wrap{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
  }

  #services .service-card__image-wrap img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
  }

  #services .service-card__text{
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    padding:16px 10px 10px !important;
  }

  #services .service-card h3{
    font-size:13px !important;
    line-height:1.08 !important;
    margin:0 0 4px !important;
  }

  #services .service-card p{
    font-size:10px !important;
    line-height:1.24 !important;
    margin:0 !important;
  }
}

.section--steps{
  position:relative;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}

.step-card{
  position:relative;
  padding:26px 18px 20px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  background:rgba(7,17,27,.42);
  overflow:hidden;
}

.step-card__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.step-card__icon img{
  width:96px;
  height:96px;
  object-fit:contain;
  display:block;
}

.step-card__text h3{
  margin:0 0 10px;
  color:#fff;
  font-size:22px;
  line-height:1.08;
}

.step-card__text p{
  margin:0;
  color:#d5dde6;
  font-size:15px;
  line-height:1.45;
}

@media (max-width:640px){
  .steps-grid{
    grid-template-columns:1fr 1fr !important;
    gap:12px !important;
  }

  .step-card{
    padding:18px 12px 14px !important;
    border-radius:18px !important;
  }

  .step-card__icon{
    margin-bottom:12px !important;
  }

  .step-card__icon img{
    width:74px !important;
    height:74px !important;
  }

  .step-card__text h3{
    font-size:18px !important;
    line-height:1.08 !important;
    margin:0 0 6px !important;
  }

  .step-card__text p{
    font-size:13px !important;
    line-height:1.34 !important;
  }
}

.section--steps{
  position:relative;
}

.steps-line{
  display:flex;
  align-items:flex-start;
  gap:14px;
  overflow-x:auto;
  overflow-y:hidden;
  padding-bottom:6px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}

.steps-line::-webkit-scrollbar{
  display:none;
}

.steps-line .step-card{
  flex:0 0 220px;
  min-height:auto;
  padding:0;
  border:none;
  border-radius:0;
  background:transparent;
  overflow:visible;
  text-align:center;
}

.steps-line .step-card__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
}

.steps-line .step-card__icon img{
  width:72px;
  height:72px;
  object-fit:contain;
  display:block;
}

.steps-line .step-card__text h3{
  margin:0 0 8px;
  color:#fff;
  font-size:18px;
  line-height:1.08;
}

.steps-line .step-card__text p{
  margin:0;
  color:#d5dde6;
  font-size:14px;
  line-height:1.4;
}

.step-arrow{
  flex:0 0 auto;
  align-self:58px;
  color:#e7b947;
  font-size:34px;
  line-height:1;
  font-weight:700;
  padding:0 2px;
}

@media (max-width:640px){
  .steps-line{
    gap:10px !important;
  }

  .steps-line .step-card{
    flex:0 0 170px !important;
  }

  .steps-line .step-card__icon{
    margin-bottom:10px !important;
  }

  .steps-line .step-card__icon img{
    width:62px !important;
    height:62px !important;
  }

  .steps-line .step-card__text h3{
    font-size:16px !important;
    margin:0 0 6px !important;
  }

  .steps-line .step-card__text p{
    font-size:12px !important;
    line-height:1.32 !important;
  }

  .step-arrow{
    align-self:48px !important;
    font-size:28px !important;
  }
}

@media (max-width:640px){
  .steps-line{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:8px !important;
    overflow:visible !important;
    padding-bottom:0 !important;
    align-items:start !important;
  }

  .steps-line .step-card{
    flex:none !important;
    width:auto !important;
    min-width:0 !important;
    text-align:center !important;
    padding:0 !important;
    border:none !important;
    background:transparent !important;
    min-height:auto !important;
  }

  .steps-line .step-card__icon{
    margin-bottom:8px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .steps-line .step-card__icon img{
    width:78px !important;
    height:78px !important;
    object-fit:contain !important;
    display:block !important;
  }

  .steps-line .step-card__text h3{
    font-size:13px !important;
    line-height:1.12 !important;
    margin:0 !important;
    text-align:center !important;
  }

  .steps-line .step-card__text p{
    display:none !important;
  }

  .step-arrow{
    align-self:42px !important;
    justify-self:center !important;
    font-size:34px !important;
    line-height:1 !important;
    color:#e7b947 !important;
    padding:0 !important;
    margin:0 !important;
  }
}

@media (max-width:640px){
  .steps-line{
    display:flex !important;
    flex-wrap:nowrap !important;
    justify-content:space-between !important;
    align-items:flex-start !important;
    gap:6px !important;
    overflow:visible !important;
    padding-bottom:0 !important;
  }

  .steps-line .step-card{
    flex:1 1 0 !important;
    width:25% !important;
    min-width:0 !important;
    max-width:25% !important;
    text-align:center !important;
    padding:0 !important;
    border:none !important;
    background:transparent !important;
    min-height:auto !important;
  }

  .steps-line .step-card__icon{
    margin-bottom:8px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .steps-line .step-card__icon img{
    width:64px !important;
    height:64px !important;
    object-fit:contain !important;
    display:block !important;
  }

  .steps-line .step-card__text h3{
    font-size:11px !important;
    line-height:1.1 !important;
    margin:0 !important;
    text-align:center !important;
    word-break:break-word !important;
  }

  .steps-line .step-card__text p{
    display:none !important;
  }

  .step-arrow{
    display:none !important;
  }
}

@media (max-width:640px){
  .steps-line{
    display:flex !important;
    flex-wrap:nowrap !important;
    justify-content:space-between !important;
    align-items:flex-start !important;
    gap:4px !important;
    overflow:visible !important;
    padding-bottom:0 !important;
  }

  .steps-line .step-card{
    flex:1 1 0 !important;
    width:25% !important;
    min-width:0 !important;
    max-width:25% !important;
    text-align:center !important;
    padding:0 !important;
    border:none !important;
    background:transparent !important;
    min-height:auto !important;
  }

  .steps-line .step-card__icon{
    margin-bottom:8px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .steps-line .step-card__icon img{
    width:74px !important;
    height:74px !important;
    object-fit:contain !important;
    display:block !important;
  }

  .steps-line .step-card__text h3{
    font-size:11px !important;
    line-height:1.08 !important;
    margin:0 !important;
    text-align:center !important;
    word-break:break-word !important;
  }

  .steps-line .step-card__text p{
    display:none !important;
  }

  .step-arrow{
    display:none !important;
  }
}

@media (max-width:640px){
  .steps-line .step-card__icon{
    margin-bottom:4px !important;
  }

  .steps-line .step-card__icon img{
    width:82px !important;
    height:82px !important;
  }

  .steps-line .step-card__text h3{
    font-size:10px !important;
    line-height:1.08 !important;
  }
}

@media (max-width:640px){
  .steps-line .step-card__icon img{
    width:90px !important;
    height:90px !important;
  }
}

@media (max-width:640px){
  #steps .steps-line .step-card__icon img{
    width:90px !important;
    min-width:90px !important;
    max-width:90px !important;
    height:90px !important;
    min-height:90px !important;
    max-height:90px !important;
  }
}

@media (max-width:640px){
  #steps .steps-line .step-card__icon{
    overflow:visible !important;
  }

  #steps .steps-line .step-card__icon img{
    transform:scale(1.22) !important;
    transform-origin:center center !important;
  }
}

@media (max-width:640px){
  #steps .steps-line .step-card__icon{
    margin-bottom:2px !important;
  }
}





@media (max-width:640px){
  #steps .steps-line .step-card:nth-child(5) .step-card__icon img{
    transform:translateY(8px) scale(1.22) !important;
    transform-origin:center center !important;
  }
}

@media (max-width:640px){
  #steps .steps-line .step-card:nth-child(1) .step-card__icon img{
    transform:translateY(6px) scale(1.22) !important;
    transform-origin:center center !important;
  }
}

.header{
  background:rgba(5,11,18,.88) !important;
  border-bottom:1px solid rgba(255,255,255,.06) !important;
}

.header__inner{
  min-height:88px !important;
  gap:20px !important;
}

.nav{
  gap:24px !important;
  font-size:13px !important;
  font-weight:700 !important;
}

.phone{
  font-size:14px !important;
  font-weight:700 !important;
}

.header__right{
  gap:14px !important;
}

@media (max-width:1100px){
  .header__inner{
    min-height:78px !important;
    gap:14px !important;
  }

  .burger{
    width:44px !important;
    height:44px !important;
    display:block !important;
  }

  .burger span{
    width:22px !important;
    margin:4px auto !important;
  }
}

@media (max-width:640px){
  .header{
    background:rgba(5,11,18,.92) !important;
  }

  .header__inner{
    min-height:74px !important;
    gap:10px !important;
  }

  .burger{
    width:42px !important;
    height:42px !important;
  }

  .burger span{
    width:20px !important;
    margin:4px auto !important;
  }

  .mobile-menu{
    padding:14px 18px 18px !important;
  }

  .mobile-menu a{
    padding:11px 0 !important;
    font-size:14px !important;
  }

  .mobile-menu__cta{
    margin-top:14px !important;
  }
}

@media (max-width:640px){
  .mobile-menu{
    padding:12px 18px 18px !important;
    background:rgba(6,16,26,.98) !important;
    border-bottom:1px solid rgba(255,255,255,.06) !important;
  }

  .mobile-menu a{
    display:block !important;
    padding:12px 0 !important;
    font-size:14px !important;
    line-height:1.25 !important;
    font-weight:600 !important;
    color:#f4f6fa !important;
    border-bottom:1px solid rgba(255,255,255,.05) !important;
  }

  .mobile-menu a[href^="tel:"]{
    color:#cfd6df !important;
    font-weight:500 !important;
  }

  .mobile-menu__cta{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:100% !important;
    min-height:52px !important;
    margin-top:14px !important;
    border-bottom:0 !important;
    border-radius:14px !important;
    font-size:13px !important;
    font-weight:800 !important;
  }
}

.burger{
  position:relative !important;
  display:none;
  align-items:center !important;
  justify-content:center !important;
  border:0 !important;
  background:transparent !important;
  cursor:pointer !important;
}

.burger span{
  display:block !important;
  width:22px !important;
  height:2px !important;
  margin:4px auto !important;
  background:#fff !important;
  border-radius:2px !important;
  transition:transform .22s ease, opacity .22s ease !important;
}

.burger.is-active span:nth-child(1){
  transform:translateY(6px) rotate(45deg) !important;
}

.burger.is-active span:nth-child(2){
  opacity:0 !important;
}

.burger.is-active span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg) !important;
}

@media (max-width:1100px){
  .burger{
    display:flex !important;
    width:44px !important;
    height:44px !important;
  }
}

@media (max-width:640px){
  .burger{
    width:42px !important;
    height:42px !important;
  }

  .burger span{
    width:20px !important;
    margin:4px auto !important;
  }

  .burger.is-active span:nth-child(1){
    transform:translateY(6px) rotate(45deg) !important;
  }

  .burger.is-active span:nth-child(3){
    transform:translateY(-6px) rotate(-45deg) !important;
  }
}

@media (max-width:1100px){
  .header{
    position:sticky !important;
    top:0 !important;
    z-index:200 !important;
  }

  .mobile-menu{
    position:fixed !important;
    top:78px !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    z-index:190 !important;
    overflow:auto !important;
    background:rgba(5,11,18,.98) !important;
    padding:18px 24px 28px !important;
  }

  .mobile-menu.is-open{
    display:block !important;
  }

  .burger{
    position:relative !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:44px !important;
    height:44px !important;
    padding:0 !important;
  }

  .burger span{
    position:absolute !important;
    left:50% !important;
    width:22px !important;
    height:2px !important;
    margin:0 !important;
    border-radius:2px !important;
    background:#fff !important;
    transform-origin:center center !important;
    transition:transform .22s ease, opacity .22s ease !important;
  }

  .burger span:nth-child(1){
    transform:translate(-50%,-6px) !important;
  }

  .burger span:nth-child(2){
    transform:translate(-50%,0) !important;
  }

  .burger span:nth-child(3){
    transform:translate(-50%,6px) !important;
  }

  .burger.is-active span:nth-child(1){
    transform:translate(-50%,0) rotate(45deg) !important;
  }

  .burger.is-active span:nth-child(2){
    opacity:0 !important;
  }

  .burger.is-active span:nth-child(3){
    transform:translate(-50%,0) rotate(-45deg) !important;
  }
}

@media (max-width:640px){
  .mobile-menu{
    top:74px !important;
    padding:14px 18px 24px !important;
  }

  .burger{
    width:42px !important;
    height:42px !important;
  }

  .burger span{
    width:20px !important;
  }

  .burger span:nth-child(1){
    transform:translate(-50%,-6px) !important;
  }

  .burger span:nth-child(2){
    transform:translate(-50%,0) !important;
  }

  .burger span:nth-child(3){
    transform:translate(-50%,6px) !important;
  }

  .burger.is-active span:nth-child(1){
    transform:translate(-50%,0) rotate(45deg) !important;
  }

  .burger.is-active span:nth-child(3){
    transform:translate(-50%,0) rotate(-45deg) !important;
  }
}

@media (max-width:1100px){
  .header{
    overflow:visible !important;
  }

  body.menu-open .header{
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    background:#06101a !important;
  }

  body.menu-open .mobile-menu{
    display:block !important;
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    top:78px !important;
    bottom:0 !important;
    min-height:calc(100dvh - 78px) !important;
    padding:18px 24px 28px !important;
    overflow-y:auto !important;
    background:#06101a !important;
    z-index:300 !important;
  }
}

@media (max-width:640px){
  body.menu-open .mobile-menu{
    top:74px !important;
    min-height:calc(100dvh - 74px) !important;
    padding:14px 18px 24px !important;
  }
}

@media (max-width:640px){
  .mobile-menu a[href^="tel:"]{
    font-size:15px !important;
    font-weight:500 !important;
    color:#c8d0d9 !important;
  }

  .mobile-menu__cta{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    color:#111111 !important;
    font-size:14px !important;
    font-weight:800 !important;
    letter-spacing:.01em !important;
    margin-top:18px !important;
    padding:0 18px !important;
  }
}

@media (max-width:640px){
  .mobile-menu a.mobile-menu__cta,
  .mobile-menu .mobile-menu__cta,
  .mobile-menu .btn.mobile-menu__cta,
  .mobile-menu a.btn.btn--gold.mobile-menu__cta{
    color:#111111 !important;
  }
}

.section--other-services{
  padding-top:18px !important;
  padding-bottom:18px !important;
}

.section--other-services .services-grid{
  grid-template-columns:repeat(3, 1fr) !important;
  gap:14px !important;
}

.section--other-services .service-card{
  min-height:320px !important;
}

@media (max-width:1100px){
  .section--other-services .services-grid{
    grid-template-columns:1fr 1fr !important;
  }
}

@media (max-width:640px){
  .section--other-services{
    padding-top:10px !important;
    padding-bottom:10px !important;
  }

  .section--other-services .services-grid{
    grid-template-columns:1fr 1fr !important;
    gap:12px !important;
  }

  .section--other-services .service-card{
    min-height:220px !important;
    height:220px !important;
    max-height:220px !important;
  }

  .section--other-services .service-card__text{
    display:block !important;
  }
}

@media (max-width:640px){
  .site-footer__overlay{
    background:linear-gradient(
      180deg,
      rgba(4,10,18,.82) 0%,
      rgba(4,10,18,.76) 26%,
      rgba(4,10,18,.78) 58%,
      rgba(4,10,18,.88) 100%
    ) !important;
  }

  .site-footer__top{
    position:relative !important;
    z-index:2 !important;
  }

  .site-footer__nav a,
  .site-footer__contacts a,
  .site-footer__contacts span,
  .site-footer__brand p{
    color:#f4f6fa !important;
  }
}

.pricing-section{
  position:relative;
  padding-top:40px;
}

/* merge home blocks */
.merge-section{
  position:relative;
}

.merge-section__head{
  display:grid;
  gap:14px;
  margin-bottom:28px;
}

.merge-section__head--portfolio{
  margin-bottom:24px;
}

.merge-eyebrow{
  display:inline-flex;
  align-items:center;
  width:max-content;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(224,173,67,.28);
  background:rgba(224,173,67,.08);
  color:#f0c45d;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.merge-section__copy{
  max-width:760px;
  margin:0;
  color:#c2c9d2;
  font-size:17px;
  line-height:1.68;
}

.merge-section--benefits{
  padding-top:18px;
}

.merge-benefits-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.merge-benefit-card{
  display:grid;
  align-content:start;
  gap:16px;
  min-height:100%;
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(11,22,36,.94), rgba(7,16,26,.92));
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.merge-benefit-card__icon{
  width:52px;
  height:52px;
  object-fit:contain;
}

.merge-benefit-card--production .merge-benefit-card__icon{
  width:72px;
  height:72px;
}

.merge-benefit-card h3,
.merge-scene-card__body h3,
.merge-process-item strong,
.merge-portfolio-card__meta strong,
.merge-contact-item a,
.merge-contact-item span{
  color:#f4f6fa;
}

.merge-benefit-card h3,
.merge-scene-card__body h3{
  margin:0;
  font-size:22px;
  line-height:1.15;
}

.merge-benefit-card p,
.merge-scene-card__body p,
.merge-process-item p{
  margin:0;
  color:#c2c9d2;
  font-size:15px;
  line-height:1.6;
}

.merge-split{
  display:grid;
  grid-template-columns:minmax(0, 1.5fr) minmax(340px, .9fr);
  gap:24px;
  align-items:start;
}

.merge-split__main{
  min-width:0;
}

.merge-scene-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.merge-scene-card,
.merge-steps-box,
.merge-portfolio-card,
.merge-contact-panel{
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(11,22,36,.95), rgba(8,16,26,.92));
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.merge-scene-card img{
  width:100%;
  aspect-ratio:1.08 / 1;
  object-fit:cover;
}

.merge-scene-card__body{
  display:grid;
  gap:12px;
  padding:20px;
}

.merge-steps-box{
  display:grid;
  gap:18px;
  padding:24px;
}

.merge-steps-box__title{
  font-size:36px;
}

.merge-process-list{
  display:grid;
  gap:14px;
}

.merge-process-item{
  display:grid;
  grid-template-columns:52px minmax(0, 1fr);
  gap:14px;
  align-items:start;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
}

.merge-process-item img{
  width:52px;
  height:52px;
  object-fit:contain;
}

.merge-process-item strong{
  display:block;
  margin-bottom:8px;
  font-size:18px;
  line-height:1.2;
}

.merge-portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.merge-portfolio-card{
  position:relative;
  min-height:240px;
}

.merge-portfolio-card--wide{
  grid-column:span 2;
}

.merge-portfolio-card--tall{
  grid-row:span 2;
}

.merge-portfolio-card img{
  width:100%;
  height:100%;
  min-height:240px;
  object-fit:cover;
}

.merge-portfolio-card__meta{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(7,16,26,.58), rgba(7,16,26,.86));
  backdrop-filter:blur(6px);
}

.merge-portfolio-card__meta strong,
.merge-portfolio-card__meta span{
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.merge-portfolio-card__meta span{
  color:#d4dbe3;
}

.merge-contact-layout{
  display:grid;
  grid-template-columns:minmax(320px, .85fr) minmax(0, 1fr);
  gap:24px;
  align-items:start;
}

.merge-contact-layout--single{
  grid-template-columns:minmax(0, 760px);
  justify-content:center;
}

.merge-contact-panel{
  display:grid;
  gap:20px;
  padding:26px;
}

.merge-contact-panel__title{
  font-size:38px;
}

.merge-contact-list{
  display:grid;
  gap:14px;
}

.merge-contact-item{
  display:grid;
  gap:6px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
}

.merge-contact-item small{
  color:#9ea9b5;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.merge-contact-item a,
.merge-contact-item span{
  font-size:18px;
  font-weight:700;
  line-height:1.35;
}

.merge-contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.merge-form-box{
  min-width:0;
}

.merge-form-status{
  min-height:22px;
  color:#d8dfeb;
  font-size:13px;
  line-height:1.5;
}

@media (max-width:1100px){
  .merge-benefits-grid,
  .merge-scene-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .merge-split,
  .merge-contact-layout{
    grid-template-columns:1fr;
  }

  .merge-portfolio-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .merge-portfolio-card--wide,
  .merge-portfolio-card--tall{
    grid-column:auto;
    grid-row:auto;
  }
}

@media (max-width:640px){
  .merge-section__copy{
    font-size:15px;
    line-height:1.6;
  }

  .merge-benefits-grid,
  .merge-scene-grid,
  .merge-portfolio-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .merge-benefit-card,
  .merge-steps-box,
  .merge-contact-panel{
    padding:18px 16px;
    border-radius:20px;
  }

  .merge-benefit-card h3,
  .merge-scene-card__body h3{
    font-size:18px;
  }

  .merge-benefit-card--production .merge-benefit-card__icon{
    width:64px;
    height:64px;
  }

  .merge-scene-card__body{
    padding:16px;
  }

  .merge-steps-box__title,
  .merge-contact-panel__title{
    font-size:28px;
  }

  .merge-process-item{
    grid-template-columns:44px minmax(0, 1fr);
    padding:14px;
  }

  .merge-process-item img{
    width:44px;
    height:44px;
  }

  .merge-portfolio-card{
    min-height:220px;
  }

  .merge-portfolio-card img{
    min-height:220px;
  }

  .merge-portfolio-card__meta{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }

  .merge-contact-item a,
  .merge-contact-item span{
    font-size:16px;
  }

  .merge-contact-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .merge-contact-actions .btn{
    width:100%;
  }
}

.pricing-section .container{
  position:relative;
  z-index:1;
}

.pricing-section__intro{
  max-width:840px;
}

.pricing-section__eyebrow{
  margin:0 0 14px;
  color:#e7b947;
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.pricing-section__lead{
  max-width:760px;
  margin:14px 0 0;
  color:#b4bec8;
  font-size:18px;
  line-height:1.65;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:30px;
}

.price-card{
  position:relative;
  padding:24px 24px 22px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  background:linear-gradient(180deg,rgba(16,26,37,.92) 0%,rgba(7,17,27,.82) 100%);
  box-shadow:0 18px 50px rgba(0,0,0,.24);
  overflow:hidden;
}

.price-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(231,185,71,.16) 0%,rgba(231,185,71,0) 48%);
  pointer-events:none;
}

.price-card h3,
.price-card p{
  position:relative;
  z-index:1;
}

.price-card h3{
  margin:0;
  color:#f4f6fa;
  font-size:24px;
  line-height:1.14;
  font-weight:700;
}

.price-card p{
  margin:16px 0 0;
  color:#e7b947;
  font-size:28px;
  line-height:1;
  font-weight:800;
}

.pricing-disclaimer{
  max-width:880px;
  margin:18px 0 0;
  color:#98a4b0;
  font-size:14px;
  line-height:1.65;
}

.quiz-section{
  margin-top:28px;
}

.quiz-card{
  padding:34px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  background:
    radial-gradient(circle at top right,rgba(231,185,71,.14) 0%,rgba(231,185,71,0) 32%),
    linear-gradient(180deg,rgba(10,20,31,.94) 0%,rgba(5,12,21,.9) 100%);
  box-shadow:0 28px 70px rgba(0,0,0,.3);
}

.quiz-card__header h3{
  margin:0;
  font-size:36px;
  line-height:1.04;
  font-weight:800;
}

.quiz-card__header p{
  max-width:760px;
  margin:14px 0 0;
  color:#b4bec8;
  font-size:17px;
  line-height:1.6;
}

.pricing-quiz-form{
  margin-top:28px;
}

.quiz-layout{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.quiz-group{
  padding:20px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  background:rgba(255,255,255,.03);
}

.quiz-group__title{
  display:block;
  margin:0 0 14px;
  color:#f4f6fa;
  font-size:16px;
  line-height:1.4;
  font-weight:700;
}

.quiz-options{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.quiz-option{
  position:relative;
  display:block;
}

.quiz-option input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.quiz-option span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(9,18,28,.76);
  color:#d6dde4;
  font-size:14px;
  line-height:1.35;
  font-weight:600;
  text-align:center;
  transition:border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.quiz-option input:checked + span{
  border-color:rgba(231,185,71,.55);
  background:rgba(231,185,71,.14);
  color:#fff3cc;
  box-shadow:0 10px 30px rgba(231,185,71,.12);
}

.quiz-option span:hover{
  transform:translateY(-1px);
}

.quiz-fields{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:8px;
}

.quiz-file-field{
  grid-column:1 / -1;
}

.quiz-result{
  margin-top:8px;
  padding:22px 24px;
  border:1px solid rgba(231,185,71,.2);
  border-radius:22px;
  background:rgba(231,185,71,.08);
}

.quiz-result strong{
  display:block;
  color:#fff3cc;
  font-size:28px;
  line-height:1.2;
  font-weight:800;
}

.quiz-result p{
  margin:10px 0 0;
  color:#b4bec8;
  font-size:14px;
  line-height:1.65;
}

.quiz-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:4px;
}

.quiz-actions .btn{
  min-width:260px;
}

.quiz-note{
  margin:0;
  color:#98a4b0;
  font-size:13px;
  line-height:1.6;
}

@media (max-width:640px){
  .pricing-section{
    padding-top:24px;
  }

  .pricing-section__lead{
    font-size:15px;
    line-height:1.55;
  }

  .pricing-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    margin-top:22px;
  }

  .price-card{
    padding:15px 14px;
    border-radius:16px;
  }

  .price-card h3{
    font-size:15px;
    line-height:1.14;
  }

  .price-card p{
    margin-top:10px;
    font-size:18px;
  }

  .pricing-disclaimer{
    margin-top:14px;
    font-size:12px;
    line-height:1.55;
  }

  .quiz-section{
    margin-top:22px;
  }

  .quiz-card{
    padding:18px 14px;
    border-radius:20px;
  }

  .quiz-card__header h3{
    font-size:28px;
    line-height:1.06;
  }

  .quiz-card__header p{
    margin-top:12px;
    font-size:15px;
    line-height:1.55;
  }

  .pricing-quiz-form{
    margin-top:18px;
  }

  .quiz-layout{
    grid-template-columns:1fr;
    gap:10px;
  }

  .quiz-group{
    padding:14px;
    border-radius:16px;
  }

  .quiz-group__title{
    margin-bottom:10px;
    font-size:15px;
  }

  .quiz-options{
    gap:7px;
  }

  .quiz-option{
    flex:1 1 calc(50% - 8px);
  }

  .quiz-option span{
    width:100%;
    min-height:42px;
    padding:9px 11px;
    font-size:13px;
  }

  .quiz-fields{
    grid-template-columns:1fr;
    gap:10px;
  }

  .pricing-quiz-form input{
    padding:15px 16px;
  }

  .pricing-quiz-form .file-field{
    padding:13px 14px !important;
    border-radius:14px !important;
  }

  .pricing-quiz-form .file-field span{
    font-size:13px !important;
  }

  .pricing-quiz-form .file-field small{
    margin-top:5px;
    font-size:11px !important;
  }

  .pricing-quiz-form .file-field__name{
    margin-top:8px;
  }

  .quiz-result{
    padding:16px 14px;
    border-radius:18px;
  }

  .quiz-result strong{
    font-size:21px;
    line-height:1.22;
  }

  .quiz-result p{
    margin-top:8px;
    font-size:12px;
    line-height:1.5;
  }

  .quiz-actions{
    flex-direction:column;
    gap:10px;
  }

  .quiz-actions .btn{
    width:100%;
    min-width:0;
    text-align:center;
  }

  .quiz-note{
    font-size:12px;
    line-height:1.5;
  }
}

.site-footer__bottom{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center;
}

.site-footer__credits{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:6px 10px;
}

.site-footer__credits span,
.site-footer__credits a{
  color:#96a4b1;
  font-size:12px;
  line-height:1.5;
  text-decoration:none;
}

.site-footer__credits a:hover{
  color:#e7b947;
}

.legal-page,
.not-found-page{
  padding:32px 0 72px;
}

.legal-card,
.not-found-card{
  max-width:980px;
  margin:0 auto;
  padding:34px 34px 30px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  background:linear-gradient(180deg,rgba(10,20,31,.92) 0%,rgba(7,17,27,.84) 100%);
  box-shadow:0 24px 70px rgba(0,0,0,.24);
}

.legal-card__eyebrow,
.not-found-card__eyebrow{
  margin:0 0 12px;
  color:#e7b947;
  font-size:12px;
  font-weight:700;
  line-height:1.3;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.legal-card h1,
.not-found-card h1{
  margin:0 0 18px;
  color:#f4f6fa;
  font-size:44px;
  line-height:1.02;
  font-weight:800;
}

.legal-card h2{
  margin:28px 0 12px;
  color:#f4f6fa;
  font-size:22px;
  line-height:1.2;
  font-weight:700;
}

.legal-card p,
.legal-card li,
.not-found-card p{
  color:#b7c1cc;
  font-size:16px;
  line-height:1.7;
}

.legal-card p{
  margin:0 0 14px;
}

.legal-card ul{
  margin:0 0 16px;
  padding-left:22px;
}

.legal-card li + li{
  margin-top:8px;
}

.legal-card a,
.not-found-card a{
  color:#e7b947;
}

.legal-card a:hover,
.not-found-card a:hover{
  color:#f0c24f;
}

.legal-card__actions,
.not-found-card__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:26px;
}

.not-found-card{
  max-width:760px;
  text-align:center;
}

.not-found-card p{
  margin:0 auto;
  max-width:560px;
}

.not-found-card__actions{
  justify-content:center;
}

@media (max-width:640px){
  .site-footer__bottom{
    gap:8px !important;
  }

  .site-footer__credits{
    gap:4px 8px !important;
  }

  .site-footer__credits span,
  .site-footer__credits a{
    font-size:11px !important;
    line-height:1.45 !important;
  }

  .legal-page,
  .not-found-page{
    padding:20px 0 48px;
  }

  .legal-card,
  .not-found-card{
    padding:22px 18px 20px;
    border-radius:22px;
  }

  .legal-card__eyebrow,
  .not-found-card__eyebrow{
    margin-bottom:10px;
    font-size:10px;
  }

  .legal-card h1,
  .not-found-card h1{
    margin-bottom:14px;
    font-size:30px;
    line-height:1.06;
  }

  .legal-card h2{
    margin:22px 0 10px;
    font-size:18px;
  }

  .legal-card p,
  .legal-card li,
  .not-found-card p{
    font-size:14px;
    line-height:1.6;
  }

  .legal-card__actions,
  .not-found-card__actions{
    gap:10px;
    margin-top:22px;
  }

  .legal-card__actions .btn,
  .not-found-card__actions .btn{
    width:100%;
    text-align:center;
  }
}

@media (max-width:640px){
  body.home-page .hero .hero-card__actions{
    gap:8px !important;
    padding:0 0 4px !important;
  }
}

@media (max-width:640px){
  .hero-card__media .hero-image--desktop{
    display:none !important;
  }

  .hero-card__media .hero-image--mobile{
    display:block !important;
  }
}


@media (min-width:641px){
  body.home-page .hero .hero-card__media .hero-image--desktop{
    display:block !important;
  }

  body.home-page .hero .hero-card__media .hero-image--mobile{
    display:none !important;
  }
}

@media (max-width:640px){
  body.home-page .hero .hero-card__media .hero-image--desktop{
    display:none !important;
  }

  body.home-page .hero .hero-card__media .hero-image--mobile{
    display:block !important;
  }
}


@media (min-width:641px){
  body.home-page .hero{
    padding:18px 0 14px !important;
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    margin-bottom:0 !important;
  }

  body.home-page .hero .container{
    width:min(var(--container), calc(100% - 48px)) !important;
    max-width:var(--container) !important;
  }

  body.home-page .hero .hero-card{
    display:grid !important;
    grid-template-columns:1fr !important;
    position:relative !important;
    background:transparent !important;
    border:1px solid rgba(255,255,255,.05) !important;
    border-radius:22px !important;
    overflow:hidden !important;
    min-height:640px !important;
    margin-bottom:0 !important;
  }

  body.home-page .hero .hero-card__media{
    grid-column:1 !important;
    grid-row:1 !important;
    min-height:640px !important;
    height:640px !important;
    max-height:none !important;
    position:relative !important;
    overflow:hidden !important;
  }

  body.home-page .hero .hero-card__media img,
  body.home-page .hero .hero-card__media .hero-image--desktop{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:58% 58% !important;
    display:block !important;
  }

  body.home-page .hero .hero-card__content,
  body.home-page .hero .hero-card__content--inside{
    grid-column:1 !important;
    grid-row:1 !important;
    align-self:start !important;
    position:relative !important;
    z-index:3 !important;
    padding:64px 56px 0 !important;
    margin:0 !important;
    max-width:760px !important;
    pointer-events:none !important;
  }

  body.home-page .hero .hero-card__content h1,
  body.home-page .hero .hero-card__content--inside h1{
    max-width:700px !important;
    font-size:62px !important;
    line-height:1.02 !important;
    text-shadow:0 2px 18px rgba(0,0,0,.42) !important;
  }

  body.home-page .hero .hero-card__content p,
  body.home-page .hero .hero-card__content--inside p{
    max-width:620px !important;
    font-size:21px !important;
    line-height:1.5 !important;
    color:#d8dee6 !important;
    text-shadow:0 2px 18px rgba(0,0,0,.38) !important;
  }

  body.home-page .hero .hero-card__actions{
    grid-column:1 !important;
    grid-row:1 !important;
    align-self:end !important;
    position:relative !important;
    z-index:4 !important;
    display:flex !important;
    gap:14px !important;
    padding:0 56px 40px !important;
    margin:0 !important;
  }

  body.home-page .hero .hero-card__actions .btn{
    width:auto !important;
    min-height:56px !important;
  }
}

@media (min-width:641px){
  body.home-page .hero{
    padding:0 !important;
    margin:0 0 18px !important;
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    overflow:visible !important;
  }

  body.home-page .hero .container{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:0 !important;
  }

  body.home-page .hero .hero-card{
    width:100% !important;
    min-height:720px !important;
    border:none !important;
    border-radius:0 !important;
    background:transparent !important;
    overflow:hidden !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    margin:0 !important;
  }

  body.home-page .hero .hero-card__media{
    grid-column:1 !important;
    grid-row:1 !important;
    width:100% !important;
    min-height:720px !important;
    height:720px !important;
    border:none !important;
    border-radius:0 !important;
    overflow:hidden !important;
    background:transparent !important;
    position:relative !important;
  }

  body.home-page .hero .hero-card__media img,
  body.home-page .hero .hero-card__media .hero-image--desktop{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
    transform:scale(1.03) translate(1.5%,1.5%) !important;
    transform-origin:center center !important;
    display:block !important;
    border:none !important;
    border-radius:0 !important;
  }

  body.home-page .hero .hero-card__overlay{
    display:block !important;
    position:absolute !important;
    inset:0 !important;
    z-index:1 !important;
    background:
      linear-gradient(90deg, rgba(6,16,26,.72) 0%, rgba(6,16,26,.40) 34%, rgba(6,16,26,.12) 62%, rgba(6,16,26,.22) 100%) !important;
  }

  body.home-page .hero .hero-card__content,
  body.home-page .hero .hero-card__content--inside{
    grid-column:1 !important;
    grid-row:1 !important;
    align-self:start !important;
    position:relative !important;
    z-index:3 !important;
    padding:86px 72px 0 !important;
    margin:0 !important;
    max-width:760px !important;
    pointer-events:none !important;
  }

  body.home-page .hero .hero-card__content h1,
  body.home-page .hero .hero-card__content--inside h1{
    max-width:720px !important;
    font-size:54px !important;
    line-height:1.02 !important;
    margin:0 !important;
    text-shadow:0 2px 18px rgba(0,0,0,.38) !important;
  }

  body.home-page .hero .hero-card__content p,
  body.home-page .hero .hero-card__content--inside p{
    max-width:560px !important;
    margin:22px 0 0 !important;
    font-size:21px !important;
    line-height:1.5 !important;
    color:#d8dee6 !important;
    text-shadow:0 2px 18px rgba(0,0,0,.34) !important;
  }

  body.home-page .hero .hero-card__actions{
    grid-column:1 !important;
    grid-row:1 !important;
    align-self:end !important;
    position:relative !important;
    z-index:4 !important;
    display:flex !important;
    gap:14px !important;
    padding:0 72px 84px !important;
    margin:0 !important;
  }

  body.home-page .hero .hero-card__actions .btn{
    width:auto !important;
    min-height:56px !important;
  }

  body.home-page #services{
    margin-top:0 !important;
  }
}

@media (min-width:641px){
  body.home-page .hero{
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    overflow:visible !important;
    margin-bottom:0 !important;
  }

  body.home-page .hero .container,
  body.home-page .hero .hero-card,
  body.home-page .hero .hero-card__media{
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    overflow:visible !important;
  }

  body.home-page .hero .hero-card{
    min-height:720px !important;
    overflow:hidden !important;
  }

  body.home-page .hero .hero-card__media{
    min-height:720px !important;
    height:720px !important;
    overflow:hidden !important;
  }

  body.home-page .hero .hero-card__media img,
  body.home-page .hero .hero-card__media .hero-image--desktop{
    object-fit:cover !important;
    object-position:center center !important;
    transform:scale(1.00) translate(0,0) !important;
  }
}

/* ===== FINAL DESKTOP HOME OVERRIDE ===== */
@media (min-width:1101px){
  body.home-page .header .nav{
    gap:34px !important;
    font-size:15px !important;
    font-weight:700 !important;
  }

  body.home-page .hero .hero-card__content h1,
  body.home-page .hero .hero-card__content--inside h1{
    font-size:54px !important;
    line-height:1.05 !important;
    letter-spacing:0.04em !important;
    word-spacing:0.12em !important;
    max-width:760px !important;
  }

  body.home-page .hero .hero-card__media img,
  body.home-page .hero .hero-card__media .hero-image--desktop{
    object-fit:cover !important;
    object-position:center center !important;
    transform:scale(1.04) translate(2%, 5%) !important;
    transform-origin:center center !important;
  }
}

/* ===== DESKTOP HEADER LOGO TUNE ===== */
@media (min-width:1101px){
  body.home-page .header .container,
  body.home-page .header .header__inner{
    padding-left:28px !important;
    padding-right:28px !important;
  }

  body.home-page .header .header__inner{
    grid-template-columns:auto 1fr auto !important;
  }

  body.home-page .header .logo{
    margin-left:-8px !important;
  }

  body.home-page .header .logo__img{
    height:112px !important;
    max-width:640px !important;
  }
}

/* ===== REAL DESKTOP LOGO MOVE LEFT ===== */
@media (min-width:1101px){
  body.home-page .header .container{
    width:100% !important;
    max-width:100% !important;
    padding-left:40px !important;
    padding-right:40px !important;
  }

  body.home-page .header .header__inner{
    min-height:88px !important;
    gap:20px !important;
  }

  body.home-page .header .logo{
    margin-left:0 !important;
    transform:translateX(30px) !important;
  }

  body.home-page .header .logo__img{
    height:110px !important;
    max-width:560px !important;
  }
}

/* ===== CLEAN FINAL DESKTOP HEADER/LOGO ===== */
@media (min-width:1101px){
  body.home-page .header .container{
    width:min(var(--container), calc(100% - 48px)) !important;
    max-width:var(--container) !important;
    margin:0 auto !important;
    padding-left:0 !important;
    padding-right:0 !important;
  }

  body.home-page .header .header__inner{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    min-height:88px !important;
    gap:20px !important;
    padding-left:0 !important;
    padding-right:0 !important;
  }

  body.home-page .header .logo{
    margin-left:0 !important;
    transform:translateX(12px) !important;
  }

  body.home-page .header .logo__img{
    height:96px !important;
    max-width:560px !important;
    width:auto !important;
    object-fit:contain !important;
  }

  body.home-page .header .nav{
    gap:34px !important;
    font-size:15px !important;
    font-weight:700 !important;
  }

  body.home-page .header .phone{
    font-size:16px !important;
    font-weight:700 !important;
  }

  body.home-page .header .btn--small{
    min-height:44px !important;
    padding:0 18px !important;
    font-size:13px !important;
  }
}

/* ===== CLEAN HEADER HEIGHT + LOGO ===== */
@media (min-width:1101px){
  body.home-page .header{
    background:rgba(5,11,18,.88) !important;
    border-bottom:1px solid rgba(255,255,255,.06) !important;
  }

  body.home-page .header .container{
    width:min(var(--container), calc(100% - 48px)) !important;
    max-width:var(--container) !important;
    margin:0 auto !important;
    padding-left:0 !important;
    padding-right:0 !important;
  }

  body.home-page .header .header__inner{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    min-height:78px !important;
    height:78px !important;
    gap:20px !important;
    padding:0 !important;
  }

  body.home-page .header .logo{
    display:flex !important;
    align-items:center !important;
    margin:0 !important;
    transform:translateX(-64px) !important;
    flex:0 0 auto !important;
  }

  body.home-page .header .logo__img{
    display:block !important;
    width:auto !important;
    height:108px !important;
    max-width:680px !important;
    object-fit:contain !important;
  }

  body.home-page .header .nav{
    gap:34px !important;
    font-size:15px !important;
    font-weight:700 !important;
  }

  body.home-page .header .phone{
    font-size:15px !important;
    font-weight:700 !important;
  }

  body.home-page .header .header__right{
    gap:16px !important;
  }

  body.home-page .header .btn--small{
    min-height:42px !important;
    padding:0 18px !important;
    font-size:13px !important;
  }
}

/* ===== HARD FINAL LOGO POSITION FIX ===== */
@media (min-width:1101px){
  body.home-page .header .logo{
    position:relative !important;
    left:-82px !important;
    transform:none !important;
    margin:0 !important;
  }
}

.section--lead-offer{
  padding-top:18px;
}

.lead-offer{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(0, .9fr);
  gap:22px;
  padding:28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(9,18,30,.9), rgba(6,16,26,.95));
  box-shadow:0 22px 48px rgba(0,0,0,.18);
}

.lead-offer__lead{
  max-width:760px;
  margin:14px 0 0;
  color:#c5ced8;
  font-size:17px;
  line-height:1.7;
}

.lead-offer__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.lead-offer-card{
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
}

.lead-offer-card strong{
  display:block;
  margin:0 0 10px;
  color:#fff;
  font-size:16px;
  line-height:1.35;
}

.lead-offer-card p{
  margin:0;
  color:#bcc7d1;
  font-size:14px;
  line-height:1.6;
}

.contact-shortcuts{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.contact-shortcut{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:#eff3f8;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}

.contact-shortcut:hover{
  transform:translateY(-1px);
  border-color:rgba(224,173,67,.44);
  background:rgba(224,173,67,.08);
}

.contact-shortcut--gold{
  background:linear-gradient(135deg,#f0c45d,#d79d34);
  color:#06101a;
  border-color:rgba(240,196,93,.45);
}

.service-card--accent{
  position:relative;
  overflow:hidden;
}

.service-card--accent::after{
  content:"Сервис";
  position:absolute;
  top:14px;
  right:14px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(6,16,26,.72);
  color:#f0c45d;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.section--faq{
  padding-top:12px;
}

.faq-list{
  display:grid;
  gap:14px;
}

.faq-item{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(9,18,30,.86), rgba(6,16,26,.92));
  overflow:hidden;
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:22px 24px;
  color:#fff;
  font-size:18px;
  font-weight:800;
  line-height:1.45;
  position:relative;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:24px;
  top:20px;
  color:#f0c45d;
  font-size:28px;
  line-height:1;
}

.faq-item[open] summary::after{
  content:"–";
}

.faq-item__content{
  padding:0 24px 22px;
}

.faq-item__content p{
  margin:0;
  color:#c3ccd7;
  font-size:15px;
  line-height:1.7;
}

.faq-item__content a{
  color:#f0c45d;
}

.section--articles{
  padding-top:8px;
}

.article-preview-grid,
.resource-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.article-card,
.resource-card{
  display:grid;
  gap:14px;
  min-height:100%;
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(10,20,32,.92), rgba(7,14,24,.94));
  color:inherit;
  text-decoration:none;
  box-shadow:0 20px 42px rgba(0,0,0,.16);
}

.article-card__tag{
  display:inline-flex;
  width:max-content;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(224,173,67,.12);
  border:1px solid rgba(224,173,67,.24);
  color:#f0c45d;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.article-card h3,
.resource-card h3{
  margin:0;
  color:#fff;
  font-size:24px;
  line-height:1.2;
}

.article-card p,
.resource-card p{
  margin:0;
  color:#bfccd8;
  font-size:15px;
  line-height:1.65;
}

.article-preview__actions{
  margin-top:22px;
}

.cta-offer-box{
  margin:24px 0 22px;
  padding:20px 22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}

.cta-offer-box__head{
  display:grid;
  gap:6px;
}

.cta-offer-box__head strong{
  color:#fff;
  font-size:18px;
  line-height:1.35;
}

.cta-offer-box__head span{
  color:#c6ced8;
  font-size:14px;
  line-height:1.55;
}

.cta-offer-points{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:16px;
}

.cta-offer-points span{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.02);
  color:#f1f5f9;
  font-size:14px;
  line-height:1.55;
}

.cta-offer-points span::before{
  content:"";
  width:9px;
  height:9px;
  margin-top:6px;
  border-radius:50%;
  background:#f0c45d;
  flex:0 0 auto;
}

.contact-shortcuts--compact{
  margin-top:18px;
}

.page-intro{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(0, .95fr);
  gap:22px;
  align-items:stretch;
}

.page-intro__card,
.page-intro__aside,
.service-detail-card,
.service-cta-panel,
.article-layout__aside,
.article-rich-card{
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(9,18,30,.88), rgba(6,16,26,.94));
}

.page-intro__card{
  padding:30px;
}

.page-intro__card p,
.page-intro__aside p,
.service-detail-card p,
.service-cta-panel p,
.article-layout__body p,
.article-rich-card p{
  color:#c1ccd7;
  line-height:1.7;
}

.page-intro__aside{
  overflow:hidden;
}

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

.service-detail-grid,
.article-rich-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.service-detail-card,
.article-rich-card{
  padding:22px;
}

.service-detail-card h3,
.service-cta-panel h3,
.article-layout__aside h3,
.article-rich-card h3{
  margin:0 0 12px;
  color:#fff;
  font-size:22px;
  line-height:1.2;
}

.service-checklist,
.article-checklist{
  display:grid;
  gap:12px;
  padding:0;
  margin:0;
  list-style:none;
}

.service-checklist li,
.article-checklist li{
  display:flex;
  gap:10px;
  color:#eef2f8;
  line-height:1.6;
}

.service-checklist li::before,
.article-checklist li::before{
  content:"";
  width:9px;
  height:9px;
  margin-top:8px;
  border-radius:50%;
  background:#f0c45d;
  flex:0 0 auto;
}

.service-cta-panel,
.article-layout__aside{
  padding:24px;
}

.service-cta-panel .contact-shortcuts,
.article-layout__aside .contact-shortcuts{
  margin-top:16px;
}

.article-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(320px, .9fr);
  gap:22px;
}

.article-layout__body{
  padding:30px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(9,18,30,.88), rgba(6,16,26,.94));
}

.article-layout__body h2{
  margin:28px 0 14px;
  color:#fff;
  font-size:28px;
  line-height:1.2;
}

.article-layout__body p + p{
  margin-top:14px;
}

.article-links{
  display:grid;
  gap:12px;
}

.article-links a{
  display:block;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:#eef2f8;
  text-decoration:none;
  font-weight:700;
  line-height:1.55;
}

@media (max-width:1100px){
  .lead-offer,
  .page-intro,
  .article-layout{
    grid-template-columns:1fr;
  }

  .article-preview-grid,
  .resource-grid,
  .service-detail-grid,
  .article-rich-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:767px){
  .lead-offer{
    padding:20px;
  }

  .lead-offer__grid,
  .cta-offer-points,
  .article-preview-grid,
  .resource-grid,
  .service-detail-grid,
  .article-rich-grid{
    grid-template-columns:1fr;
  }

  .faq-item summary{
    padding:18px;
    font-size:16px;
  }

  .faq-item summary::after{
    right:18px;
    top:16px;
  }

  .faq-item__content{
    padding:0 18px 18px;
  }

  .article-card,
  .resource-card,
  .page-intro__card,
  .service-detail-card,
  .service-cta-panel,
  .article-layout__body,
  .article-layout__aside,
  .article-rich-card{
    padding:20px;
  }

  .article-card h3,
  .resource-card h3{
    font-size:22px;
  }
}
