:root{
  --bg:#0b0c0f;
  --bg-2:#12151a;
  --bg-3:#171b21;
  --light:#f6f2ed;
  --light-2:#fbf8f3;
  --text:#f7f7f4;
  --text-soft:#bac0ca;
  --ink:#1a1b1d;
  --muted:#626874;
  --gold-1:#f9dcc0;
  --gold-2:#e7bb85;
  --gold-3:#c99054;
  --line:rgba(255,255,255,.08);
  --line-dark:rgba(20,20,20,.08);
  --shadow:0 24px 80px rgba(0,0,0,.24);
  --radius:12px;
  --radius-xl:30px;
  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:12px;
  --container:1280px;
  --z-lightbox:1300;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;}

body{
  margin:0;
  background:linear-gradient(180deg,#0a0b0e 0%,#11141a 100%);
  color:var(--text);
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

html,
body{
  overscroll-behavior-y: contain;
  touch-action: pan-y;
}
img{
  display:block;
  max-width:100%;
}


img[data-zoom]{ 
  cursor:zoom-in;
  transition: transform 0.2s ease;
  user-select: none;
}

img[data-zoom]:hover {
  transform: scale(1.02);
}

a{
  text-decoration:none;
  color:inherit;
}

button,
input,
textarea{
  font:inherit;
}

button{
  cursor:pointer;
}

.section{
  position:relative;
}

/* =========================================
   ZEBRA
========================================= */

.section--dark{
  background:linear-gradient(180deg,#0f1115 0%,#0c0d10 100%);
  color:#fff;
}

.section--light{
  background:linear-gradient(180deg,#f7f3ee 0%,#f2ece4 100%);
  color:var(--ink);
}

.section__head{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:28px;
}

.section__head--compact{
  margin-bottom:20px;
}

.section__head h2{
  margin:0;
  max-width:960px;
  font-size:clamp(28px,3vw,44px);
  line-height:1.08;
  letter-spacing:-0.04em;
}

.section__head--dark h2{
  color:#fff;
}

.eyebrow{
  display:inline-flex;
  width:fit-content;
  padding:9px 14px;
  border-radius:var(--radius);
  background:rgba(231,187,133,.32);
  color:var(--gold-1);
  border:1px solid rgba(231,187,133,.42);
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom: 10px;
}

.eyebrow--dark{
  background:rgba(201,144,84,.12);
  color:#d7a367;
  border-color:rgba(201,144,84,.22);
}

@media (max-width:320px) {
  .section__head h2, .section__head--dark h2{
  font-size: 0;   
  }
}
/* =========================================
   HEADER
========================================= */

.header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(9,10,12,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.header__inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
}

.brand__logo{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-size:14px;
  font-weight:900;
}

.brand__name{
  font-size:15px;
  font-weight:900;
  letter-spacing:.08em;
}

.brand__sub{
  margin-top:2px;
  font-size:11px;
  color:var(--text-soft);
}

@media (max-width:320px) {
.brand__name,
.brand__sub{
  display: none;
}
}

.nav{
  display:flex;
  gap:18px;
  color:rgba(255,255,255,.74);
  font-size:14px;
}

.nav a:hover,
.header__phone:hover{
  color:#fff;
}

.header__actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.header__phone{
  white-space:nowrap;
  font-weight:700;
}
.header__call{
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius:14px;
  border:1px solid rgba(231,187,133,.28);
  background:linear-gradient(190deg,var(--bg),var(--bg-2),var(--bg-3));
}

.header__call svg{
  width: 22px;
  height: 22px;
}

.header__cta{
  border:0;
  border-radius:999px;
  padding:12px 18px;
  font-weight:800;
  cursor:pointer;
  color:#21150d;
  background:linear-gradient(135deg,var(--gold-1),var(--gold-2),var(--gold-3));
  box-shadow:0 12px 26px rgba(201,144,84,.24);
  transition:.25s ease;
}

.header__cta:hover{
  transform:translateY(-1px);
}

/* =========================================
   HERO
========================================= */

.hero{
  position:relative;
  min-height:calc(70vh - 1px);
  overflow:hidden;
  color:#fff;
}

.hero__bg{
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index:0;
  pointer-events: none;
}

.hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  transform:scale(1.02);
  pointer-events: none;
}

.hero__overlay{
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, rgba(6,7,9,.92) 0%, rgba(6,7,9,.76) 32%, rgba(6,7,9,.26) 64%, rgba(6,7,9,.05) 100%),
    linear-gradient(180deg, rgba(6,7,9,.12), rgba(6,7,9,.32));
}

.hero__inner{
  position:relative;
  z-index:1;
  /*min-height:calc(100vh - 78px); */
  min-height: 80dvh;
  display:block;
  align-items:center;
  padding:14px 0;
}

.hero__copy{
  max-width:560px;
  border-radius: var(--radius);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px;
}

.hero__copy h1{
  margin:16px 0 0;
  font-size:clamp(40px,5.2vw,72px);
  line-height:.98;
  letter-spacing:-0.06em;
}

.hero__lead{
  margin:20px 0 0;
  max-width:34rem;
  font-size:clamp(16px,1.25vw,19px);
  line-height:1.65;
  color:rgba(255,255,255,.88);
}

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

.hero__feature{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.hero__feature-icon{
  flex:0 0 auto;
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  border:1px solid rgba(231,187,133,.28);
  background:rgba(231,187,133,.10);
  color:var(--gold-1);
  font-size:12px;
  font-weight:900;
  box-shadow:0 8px 18px rgba(0,0,0,.14);
}

.hero__feature strong{
  display:block;
  font-size:15px;
  line-height:1.35;
  margin-top:2px;
}

.hero__feature p{
  margin:4px 0 0;
  font-size:13px;
  line-height:1.4;
  color:rgba(255,255,255,.72);
}

.hero__price s{
  margin-top:26px;
  font-size:32px;
  color:rgba(255,255,255,.88);
  font-weight: 900;
}

.hero__price P{
  font-size:12px;
}

.hero__note{
  margin-top:10px;
  font-size:10px;
  color:rgba(255,255,255,.88);
}

.hero__price strong p{
  margin-top:6px;
  font-size:clamp(24px,4vw,28px);
  line-height:1;
  color:var(--gold-1);
}

.hero__price strong{
  display:block;
  font-size:clamp(34px,4vw,54px);
  line-height:1;
  color:var(--gold-1);
}

.hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}

/* =========================================
   BUTTONS
========================================= */

.btn{
  border:0;
  cursor:pointer;
  transition:.25s;
  border-radius:14px;
  padding:16px 22px;
  font-weight:800;
  letter-spacing:.01em;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn--ghost{
  color:#fff;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.14);
  font-size: 14px;
}

.btn--full{
  width:100%;
}

/* =========================================
   ADVANTAGES
========================================= */

.cards{
  display:grid;
  gap:18px;
}

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

.card{
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.94);
  border:1px solid rgba(20,20,20,.06);
  box-shadow:0 14px 30px rgba(29,20,8,.08);
}

.card--feature{
  padding:22px;
  min-height:184px;
}

.card__icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  background:linear-gradient(135deg,var(--gold-1),var(--gold-2));
  color:#1a120b;
  font-size:14px;
  font-weight:900;
}

.card h3{
  margin:0 0 10px;
  font-size:20px;
}

.card p{
  margin:0;
  color:#565d67;
  line-height:1.6;
}

/* =========================================
   CAROUSELS
========================================= */

.carousel{
  position:relative;
  width:100%;
}

.topshots{
  position:relative;
  width:100%;
}

.carousel__track,
.topshots__track{
  display:flex;
  gap:16px;
  min-width:100%;
  width:auto;
}

.carousel__slide,
.topshots__slide{
  scroll-snap-align:start;
  scroll-snap-stop:always;
  flex:0 0 100%;
  min-width:0;
  position:relative;
}

.carousel--moods .carousel__slide{
  flex-basis:100%;
}

.carousel--projects .carousel__slide{
  flex-basis:82%;
}

/* buttons */
.carousel-btn,
.topshots__btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:46px;
  height:46px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:#1b1b1d;
  font-size:26px;
  font-weight:900;
  box-shadow:0 12px 26px rgba(0,0,0,.18);
  cursor:pointer;
  transition:.2s ease;
}

.carousel-btn:hover,
.topshots__btn:hover{
  transform:translateY(-50%) scale(1.04);
}

.carousel-btn--prev,
.topshots__btn--prev{
  left:-10px;
}

.carousel-btn--next,
.topshots__btn--next{
  right:-10px;
}

/* dots */
.carousel-dots,
.topshots__dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:14px;
  flex-wrap:wrap;
}

.carousel-dot,
.topshots__dot{
  width:10px;
  height:10px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.20);
  cursor:pointer;
  transition:.2s ease;
}

.section--light .carousel-dot,
.section--light .topshots__dot{
  background:rgba(0,0,0,.18);
}

.carousel-dot.is-active,
.topshots__dot.is-active{
  width:28px;
  background:linear-gradient(135deg,var(--gold-1),var(--gold-2));
}

/* =========================================
   TOPSHOTS
========================================= */

.topshots__slide{
  flex:0 0 calc((100% - 32px) / 3);
}

.topshots__frame{
  width:100%;
  aspect-ratio:4/3;
  border-radius:20px;
  overflow:hidden;
  display:flex;
  background:#111;
}

.topshots__frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  cursor:zoom-in;
}

.topshots.is-static .topshots__btn{
  display:none;
}

/* =========================================
   MOODS
========================================= */

.moods-carousel{
  padding:0;
}

.mood-slide{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  aspect-ratio:16/10;
  background:#14161a;
}

.mood-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  cursor:zoom-in;
}

.mood-slide::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.6));
}

.mood-slide__content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:32px;
  max-width:680px;
}

.mood-slide__content h3{
  margin:0 0 10px;
  font-size:32px;
  line-height:1.12;
}

.mood-slide__content p{
  margin:0;
  color:rgba(255,255,255,.85);
  line-height:1.55;
}

/* =========================================
   PLAN
========================================= */

.plan-layout{
  display:grid;
  grid-template-columns:1.2fr 1fr .92fr;
  gap:16px;
}

.plan-card{
  border-radius:var(--radius-xl);
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(20,20,20,.06);
  box-shadow:0 12px 28px rgba(21,16,8,.06);
}

.plan-card__label{
  padding:18px 20px 0;
  font-size:13px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#8a5c34;
}

.plan-card--image img{
  width:100%;
  aspect-ratio:1.48;
  object-fit:cover;
  margin-top:14px;
  cursor:zoom-in;
}

.plan-card--list,
.plan-card--spec{
  padding-bottom:20px;
}

.plan-points{
  list-style:none;
  margin:0;
  padding:18px 20px 0;
  counter-reset:item;
  display:grid;
  gap:12px;
}

.plan-points li{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  padding:14px 14px;
  border-radius:16px;
  background:#f8f6f2;
  border:1px solid rgba(20,20,20,.05);
}

.plan-points li::before{
  counter-increment:item;
  content:counter(item);
  width:30px;
  height:30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:900;
  background:linear-gradient(135deg,var(--gold-1),var(--gold-2));
  color:#1a120b;
}

.plan-points strong{
  display:block;
  margin-bottom:4px;
}

.plan-points span{
  display:block;
  color:#5e6470;
  line-height:1.5;
  font-size:14px;
}

.spec-list{
  list-style:none;
  margin:0;
  padding:18px 20px 22px;
  display:grid;
  gap:10px;
}

.spec-list li{
  padding:13px 14px;
  border-radius:16px;
  background:#f8f6f2;
  border:1px solid rgba(20,20,20,.05);
}

.spec-list span{
  display:block;
  color:#6b7280;
  font-size:13px;
  margin-bottom:5px;
}

.spec-list strong{
  display:block;
  font-size:15px;
}

.spec-list--dark li{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.07);
}

.spec-list--dark span{
  color:#bfc5ce;
}

.spec-list--dark strong{
  color:#fff;
}

@media (max-width:768px) {
.plan-card--list,
.plan-card--spec{
  display: none;
}
}
/* =========================================
   BUNDLE
========================================= */

.bundle{
  position:relative;
  padding:clamp(18px,2vw,28px);
  border-radius:var(--radius-xl);
  overflow:hidden;
  border:1px solid rgba(231,187,133,.18);
  background:
    radial-gradient(circle at 0 0, rgba(231,187,133,.16), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(255,255,255,.06), transparent 26%),
    linear-gradient(180deg,#171a1f 0%,#0f1115 100%);
  color:#fff;
  box-shadow:var(--shadow);
}

.bundle::before{
  content:"";
  position:absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.06), transparent 18%, transparent 82%, rgba(255,255,255,.03));
  padding:1px;
  opacity:.5;
}

.bundle--premium{
  isolation:isolate;
}

.bundle__hero{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(320px,.88fr);
  gap:16px;
  align-items:stretch;
}

.bundle__story{
  padding:4px 0 0;
}

.bundle__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(231,187,133,.1);
  border:1px solid rgba(231,187,133,.2);
  color:#f4d1a7;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.bundle__story h3{
  margin:0;
  max-width:15ch;
  font-size:clamp(26px,3vw,44px);
  line-height:1.02;
  letter-spacing:-0.055em;
}

.bundle__story p{
  margin:14px 0 0;
  max-width:66ch;
  color:rgba(255,255,255,.78);
  line-height:1.72;
  font-size:16px;
}

.bundle__metrics{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:22px;
}

.bundle__metric{
  padding:18px 18px 17px;
  border-radius:22px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.bundle__metric strong{
  display:block;
  margin-bottom:7px;
  font-size:17px;
  line-height:1.2;
  letter-spacing:-0.02em;
}

.bundle__metric span{
  display:block;
  color:rgba(255,255,255,.74);
  line-height:1.55;
  font-size:14px;
}

.bundle__proof{
  display:grid;
  gap:12px;
}

.bundle__proof-card{
  padding:18px 18px 17px;
  border-radius:22px;
  background:rgba(255,255,255,.042);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.bundle__proof-card span{
  display:inline-grid;
  place-items:center;
  width:38px;
  height:38px;
  margin-bottom:12px;
  border-radius:13px;
  background:linear-gradient(135deg,var(--gold-1),var(--gold-2));
  color:#1b120b;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
}

.bundle__proof-card strong{
  display:block;
  margin-bottom:6px;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-0.03em;
}

.bundle__proof-card p{
  margin:0;
  color:rgba(255,255,255,.74);
  line-height:1.6;
  font-size:14px;
}

.bundle__grid{
  display:grid;
  grid-template-columns:repeat(1,minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}

.bundle-card{
  padding:22px 22px 20px;
  border-radius:24px;
  background:rgba(255,255,255,.046);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.bundle-card--accent{
  background:
    linear-gradient(180deg, rgba(231,187,133,.18), rgba(255,255,255,.05));
  border-color:rgba(231,187,133,.24);
}

.bundle-card__head{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:14px;
}

.bundle-card__head span{
  flex:0 0 auto;
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold-1),var(--gold-2));
  color:#1b120b;
  font-weight:900;
  font-size:13px;
  letter-spacing:.08em;
  box-shadow:0 10px 22px rgba(231,187,133,.14);
}

.bundle-card__head h3{
  margin:0;
  font-size:20px;
  line-height:1.18;
  letter-spacing:-0.03em;
}

.bundle-card__head p{
  margin:6px 0 0;
  color:rgba(255,255,255,.68);
  line-height:1.5;
  font-size:13px;
}

.bundle-card__desc{
  margin:0 0 14px;
  color:rgba(255,255,255,.76);
  line-height:1.64;
  font-size:14px;
}

.bundle-card ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.bundle-card li{
  position:relative;
  padding-left:22px;
  color:rgba(255,255,255,.86);
  line-height:1.55;
  font-size:14px;
}

.bundle-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:.6em;
  width:10px;
  height:10px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold-1),var(--gold-2));
  box-shadow:0 0 0 4px rgba(231,187,133,.12);
}

.bundle__footer{
  margin-top:16px;
  padding:22px 22px 21px;
  border-radius:24px;
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(270px,.75fr);
  gap:16px;
  align-items:center;
  background:rgba(255,255,255,.036);
  border:1px solid rgba(255,255,255,.08);
}

.bundle__footer-main strong{
  display:block;
  margin-bottom:8px;
  font-size:clamp(20px,2vw,29px);
  line-height:1.12;
  letter-spacing:-0.04em;
}

.bundle__footer-main p{
  margin:0;
  color:rgba(255,255,255,.76);
  line-height:1.66;
}

.bundle__footer-note{
  padding:16px 18px;
  border-radius:18px;
  background:rgba(11,12,15,.56);
  border:1px solid rgba(231,187,133,.16);
  color:#f4d1a7;
  line-height:1.62;
  font-size:14px;
}

@media (max-width: 1100px){
  .bundle__hero,
  .bundle__footer{
    grid-template-columns:1fr;
  }

  .bundle__story h3{
    max-width:none;
  }
}

@media (max-width: 720px){
  .bundle{
    padding:14px;
  }

  .bundle__metrics,
  .bundle__grid{
    grid-template-columns:1fr;
  }

  .bundle__metrics{
    gap:10px;
  }

  .bundle__metric,
  .bundle__proof-card,
  .bundle-card,
  .bundle__footer,
  .bundle__footer-note{
    border-radius:18px;
  }

  .bundle__story p{
    font-size:15px;
  }

  .bundle-card{
    padding:18px;
  }

  .bundle-card__head{
    gap:12px;
  }

  .bundle-card__head h3{
    font-size:18px;
  }

  .bundle__footer{
    padding:18px;
  }

  .bundle__footer-note{
    padding:15px 16px;
  }
}


/* =========================================
   COMPARISON
========================================= */

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

.compare-item{
  border-radius:24px;
  padding:18px;
  background:#fff;
  border:1px solid rgba(20,20,20,.06);
  box-shadow:0 12px 28px rgba(21,16,8,.06);
}

.compare-item__label{
  font-size:14px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#8a5c34;
  margin-bottom:14px;
}

.compare-item__values{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.compare-item__values > div{
  padding:16px;
  border-radius:18px;
  background:#f8f6f2;
  border:1px solid rgba(20,20,20,.05);
}

.compare-item__values span{
  display:block;
  color:#6b7280;
  font-size:13px;
  margin-bottom:6px;
}

.compare-item__values strong{
  display:block;
  color:#171717;
  line-height:1.45;
  font-size:15px;
}

/* =========================================
   PROJECTS
========================================= */

.projects-carousel{
  position:relative;
}

.project-card{
  overflow:hidden;
  border-radius:var(--radius-xl);
  background:#14161a;
  box-shadow:0 12px 28px rgba(21,16,8,.08);
  border:1px solid rgba(20,20,20,.08);
}

.project-card img{
  width:100%;
  height:420px;
  object-fit:cover;
  cursor:zoom-in;
}

.project-card__body{
  padding:18px 18px 20px;
  background:#fff;
}

.project-card__body h3{
  margin:0 0 6px;
  font-size:18px;
  line-height:1.25;
  color:#171717;
}

.project-card__body p{
  margin:0;
  color:#6a707b;
  line-height:1.5;
  font-size:14px;
}

/* =========================================
   CONTACTS
========================================= */

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
}

.contact-card{
  border-radius:var(--radius-xl);
  background:#fff;
  color:#1a1b1d;
  border:1px solid rgba(20,20,20,.06);
  box-shadow:0 12px 28px rgba(21,16,8,.06);
  padding:24px;
}

.contact-card h3{
  margin:0 0 16px;
  font-size:28px;
  color:#171717;
}

.contact-card p{
  margin:0 0 10px;
  color:#444b57;
  line-height:1.6;
}

.map-wrap{
  overflow:hidden;
  min-height:420px;
  border-radius:var(--radius-xl);
  border:1px solid rgba(20,20,20,.06);
  box-shadow:0 12px 28px rgba(21,16,8,.06);
  background:#fff;
}

.map-wrap iframe,
.map-wrap .lazy-iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}

/* =========================================
   FOOTER
========================================= */

.footer{
  padding:26px 0 44px;
  background:rgba(10,11,14,.92);
  border-top:1px solid rgba(255,255,255,.08);
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.footer__title{
  font-size:20px;
  font-weight:900;
}

.footer__sub{
  margin-top:6px;
  color:var(--text-soft);
}

/* =========================================
   MODALS
========================================= */

.modal{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 200;
  pointer-events: none;
}

.modal.is-open{
  display: block;
  pointer-events: auto;
}

.modal__backdrop{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,.72);
}

.modal__dialog{
  position:relative;
  z-index:1;
  width: 92vw;
  max-width: 560px;
  margin:40px auto;
  padding:28px;
  border-radius:28px;
  background:linear-gradient(180deg,#171a1f 0%,#101215 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}

.modal__intro{
  padding-right:42px;
}

.modal__dialog h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.05;
  letter-spacing:-0.05em;
}

.modal__dialog p{
  margin:0 0 20px;
  color:rgba(255,255,255,.76);
  line-height:1.6;
}

.modal__close{
  position:absolute;
  right:14px;
  top:12px;
  width:42px;
  height:42px;
  border-radius:12px;
  border:0;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

.form{
  display:grid;
  gap:14px;
}

.form label{
  display:grid;
  gap:8px;
  font-size:14px;
  color:rgba(255,255,255,.82);
}

.form input,
.form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
  border-radius:14px;
  padding:14px 16px;
  outline:none;
  transition:.2s ease;
}

.form input:focus,
.form textarea:focus{
  border-color:rgba(231,187,133,.68);
  box-shadow:0 0 0 4px rgba(231,187,133,.12);
}

.form textarea{
  resize:vertical;
}


/* =========================================
   LIGHTBOX
========================================= */


.lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index:var(--z-lightbox);
  pointer-events: none;
}

.lightbox img{
  max-width:90%;
  max-height:85vh;
  object-fit:contain;
  border-radius:16px;
}

.lightbox.is-open{
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events: auto;
}

.lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.84);
  border:0;
}

.lightbox__panel{
  position:relative;
  z-index:1;
  margin:auto;
  width:min(92vw,1100px);
  max-height:88vh;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:stretch;
}

.lightbox__panel img{
  width:100%;
  max-height:82vh;
  object-fit:contain;
  background:#0b0c0f;
  border-radius:22px;
  box-shadow:var(--shadow);
}

.lightbox__caption{
  color:#fff;
  text-align:center;
  font-size:14px;
  opacity:.88;
}

.lightbox__close{
  position:absolute;
  right:10px;
  top:-52px;
  width:42px;
  height:42px;
  border:0;
  border-radius:12px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:28px;
  cursor:pointer;
  pointer-events: none;
}

/* =========================================
   MOBILE CTA + REVEAL
========================================= */

.mobile-cta{
  display:none;
  position:fixed;
  padding:12px 16px;
  right: 20px;
  bottom: 20px;
  z-index:150;
}
.mobile-cta .btn {
  width: 64px;
  height: 64px;
  padding: 0;

  border-radius: 15%;
  
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 10px;

  transition: transform .2s ease, opacity .2s ease;
}

.mobile-cta .btn::after {

  max-width: 48px;
  text-align: center;
  line-height: 1.1;
}

.mobile-cta .btn:hover {
  transform: scale(1.05);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:1180px){
  .nav{display:none}
  .hero__copy{max-width:640px}
  .cards--6{grid-template-columns:repeat(2,minmax(0,1fr))}
  .plan-layout,
  .split,
  .bundle__hero,
  .bundle__footer{
    grid-template-columns:1fr;
  }
  .bundle__grid{
    grid-template-columns:1fr;
  }
  .carousel--projects .carousel__slide{
    flex-basis:88%;
  }
  .carousel-btn,
  .topshots__btn{
    top:auto;
    bottom:-18px;
    transform:none;
  }
  .carousel-btn:hover,
  .topshots__btn:hover{
    transform:scale(1.04);
  }
  .carousel-btn--prev,
  .topshots__btn--prev{left:10px}
  .carousel-btn--next,
  .topshots__btn--next{right:10px}
}

@media (max-width:768px){
  .section{padding:64px 0}
  .header__cta{display:none}
  .header__inner{min-height:70px}

  .header__call {
    display: flex;
  }
 .split__column {
    display: block;
    overflow: hidden;
  }
  .header__phone {
    display: none;
  }

  .hero{min-height:0}
  .hero__inner{
    min-height:0;
    padding:10px 0 24px;
  }
  .hero__overlay{
    background:
      linear-gradient(180deg, rgba(6,7,9,.90) 0%, rgba(6,7,9,.70) 46%, rgba(6,7,9,.20) 100%);
  }
  .hero .eyebrow{
    padding:8px 10px;
    font-size:10px;
    line-height:1.25;
    letter-spacing:.08em;
  }
  .hero__copy{
    max-width:100%;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 12px 14px 14px;
  }
  .hero__copy h1{
    margin-top:10px;
    font-size:clamp(30px,8.8vw,38px);
    line-height:1.02;
    letter-spacing:0;
  }
  .hero__lead{
    margin-top:12px;
    font-size:15px;
    line-height:1.45;
  }
  .hero__features{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    margin-top:16px;
  }
  .hero__feature{
    gap:8px;
    align-items:center;
  }
  .hero__feature-icon{
    width:32px;
    height:32px;
    border-radius:10px;
    font-size:11px;
  }
  .hero__feature strong{
    font-size:13px;
    line-height:1.2;
  }
  .hero__feature p{
    display:none;
  }
  .cards--6{
    grid-template-columns:1fr;
    overflow: hidden;
  }
  .hero__actions{
    flex-direction:column;
    gap:10px;
    margin-top:16px;
  }
  .hero__actions .btn{
    width:100%;
  }
  .hero__price strong{
    font-size:clamp(28px,8vw,36px);
  }
  .hero__price strong p{
    font-size:20px;
    margin:4px 0 0;
  }
  .hero__price s{
    display:block;
    margin-top:16px;
    font-size:24px;
  }
  .hero__price > p{
    margin:6px 0 0;
  }
  .hero__note{
    margin-top:6px;
    line-height:1.35;
  }

  .carousel--moods .carousel__slide,
  .carousel--projects .carousel__slide,
  .topshots__slide{
    flex-basis:100%;
  }

  .topshots__frame{
    aspect-ratio:4/3;
  }

  .mood-slide{
    aspect-ratio:4/3;
  }

  .mood-slide__content{
    padding:22px;
  }

  .mood-slide__content h3{
    font-size:24px;
  }

  .plan-card--image img,
  .project-card img{
    aspect-ratio:4/3;
    height:auto;
  }

  .compare-item__values{
    grid-template-columns:1fr;
  }
  .compare-item__values > div{
    padding:14px;
  }

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

  .mobile-cta{
    display:block;
  }

  .modal__dialog{
    width: calc(100% - 20px);
    margin: 10px auto;
    padding: 22px;
  }

  .lightbox__panel{
    width: calc(100% - 20px);
  }

  .modal__intro{
    padding-right:36px;
  }

  .lightbox__panel img{
    max-height:72vh;
    border-radius:18px;
  }
  .lightbox__close{
    top:-48px;
    right:0;
  }

  .topshots__btn{
    top:auto;
    bottom:-20px;
    transform:none;
  }
  .topshots__btn--prev{left:10px}
  .topshots__btn--next{right:10px}
}

img{display:block;width:100%}

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

.section{padding:64px 0}

/* ================= HERO (ПРОДАЮЩИЙ) ================= */

.hero h1{
  font-size:clamp(32px,6vw,56px);
  line-height:1;
  margin-bottom:16px;
}

.hero__lead{
  font-size:18px;
  color:var(--text-soft);
  margin-bottom:24px;
}

/* УСИЛЕННАЯ ЦЕНА */
.hero__price{
  margin-top:20px;
}

.hero__price strong{
  font-size:clamp(32px,6vw,48px);
  color:var(--gold-1);
}

/* CTA — ГЛАВНЫЙ ТРИГГЕР */

.btn--primary{
  background:linear-gradient(135deg,var(--gold-1),var(--gold-3));
  color:#000;
  box-shadow:0 10px 30px rgba(201,144,84,.4);
  font-size: 14px;
}

.btn--primary:hover{
  transform:scale(1.03);
}

.btn--ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
}

/* ================= КАРУСЕЛИ СТАБИЛЬНЫЕ ================= */

.carousel__viewport,
.topshots__viewport{
  display:flex;
  overflow-x:auto;
  gap:12px;
  scroll-snap-type:x mandatory;
  overflow-y:hidden;
}

.carousel__viewport,
.topshots__viewport{
  scroll-behavior:smooth;
  scrollbar-width:none;
  -ms-overflow-style:none;
  border-radius:var(--radius-xl);
 
}


.carousel__viewport::-webkit-scrollbar,
.topshots__viewport::-webkit-scrollbar{
  display:none;
}

.carousel__slide,
.topshots__slide{
  flex:0 0 100%;
  scroll-snap-align:start;
}

/* ================= TOPSHOTS (СТАБИЛЬНО) ================= */

.topshots__slide{
  flex:0 0 calc((100% - 24px)/3);
}

.topshots__frame{
  aspect-ratio:4/3;
  overflow:hidden;
  border-radius:var(--radius);
}

.topshots__frame img{
  object-fit:cover;
}

/* ================= MOODS (ФИКС РАСТЯЖЕНИЯ) ================= */

.mood-slide{
  aspect-ratio:16/10;
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
}

.mood-slide img{
  object-fit:cover;
}

.mood-slide::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.6));
}

.mood-slide::after {
  pointer-events: none;
}
/* ================= PROJECTS ================= */

.project-card img{
  aspect-ratio:16/9;
  object-fit:cover;
}

/* ================= DOTS ================= */

.carousel-dots,
.topshots__dots{
  display:flex;
  justify-content:center;
  gap:6px;
  margin-top:12px;
}

.carousel-dot,
.topshots__dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:rgba(255,255,255,.3);
}

.carousel-dot.is-active,
.topshots__dot.is-active{
  width:22px;
  border-radius:10px;
  background:var(--gold-2);
}

/* ================= PLAN (ПО ОЧЕРЕДИ) ================= */

.reveal{
  opacity:1;
  transform:translateY(20px);
  transition:.5s ease;
}

.reveal.active{
  opacity:1;
  transform:none;
}

.plan-layout > .reveal:nth-child(1){transition-delay:.1s}
.plan-layout > .reveal:nth-child(2){transition-delay:.25s}
.plan-layout > .reveal:nth-child(3){transition-delay:.4s}

/* ================= LIGHTBOX ================= */


/* ================= MOBILE ================= */

@media(max-width:768px){

  .section{padding:48px 0}

  .hero h1{
    font-size:32px;
  }

  .hero__lead{
    font-size:16px;
  }

  .carousel__slide,
  .topshots__slide{
    flex:0 0 100%;
  }

  .topshots__frame{
    aspect-ratio:4/3;
  }

  .mood-slide{
    aspect-ratio:4/3;
  }

  .project-card img{
    aspect-ratio:4/3;
  }
}

/* Карточка */
.variant-card {
  background: #12151a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
 /* display: flex;*/
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}

.variant-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
}

/* фото */
.variant-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* планировка */
.variant-card__plan {
  padding: 12px;
  background: #0f1115;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.variant-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f1115;
  position: relative;
}

.variant-card__plan img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* текст */
.variant-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.variant-card__body h3 {
  font-size: 18px;
  margin: 0;
  color: #fff;
}

.variant-card__text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* цена */
.variant-card__price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
}

.variant-card__price span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.variant-card__price strong S {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.variant-card__price strong {
  font-size: 16px;
  color: #fff;
}

.section__lead {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.section__lead--dark {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
}

.gallery-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 24px;
}

.gallery-proof__item {
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.gallery-proof__item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: #fff;
}

.gallery-proof__item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .gallery-proof {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallery-proof__item {display: none;}

  .section__lead {
    font-size: 14px;
    padding: 0 10px;
  }

  .section__lead--dark {
    font-size: 14px;
    padding: 0 10px;
  }
}

.advantages-note {
  margin-top: 32px;
  text-align: center;
  font-size: 15px;
  color: rgba(0,0,0,0.6);
}
.atmosphere-note {
  margin-top: 32px;
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

.bundle__intro {
  margin: 14px 0 10px;
  max-width: 760px;
}

.bundle__intro h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.bundle__intro p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 6px;
  color: rgba(255,255,255,.65);
}

.bundle-card--highlight {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.bundle__flow-hint {
  margin: 10px 0 0;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: rgba(255,255,255,.45);
  display:inline-flex;
}

.bundle__grid {
  position: relative;
}

.bundle__grid::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(231,187,133,.4),
    rgba(231,187,133,.05)
  );
}

.variant-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.variant-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.variant-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
}

#variants .variants-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

#variants .variant-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #12151a;
  border: 1px solid rgba(20,20,20,.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(29,20,8,.08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  
}

#variants .variant-card:hover {
  transform: translateY(-6px);
  border-color: rgba(231,187,133,.22);
  box-shadow: 0 18px 40px rgba(29,20,8,.14);
}


#variants .variant-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#variants .variant-card__plan {
  aspect-ratio: 16 / 9;
  padding: 12px;
  background: #0f1115;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}

#variants .variant-card__plan img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

#variants .variant-card__bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#variants .variant-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(231,187,133,.12);
  border: 1px solid rgba(231,187,133,.22);
  color: var(--gold-1);
}

#variants .variant-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.03em;
}

#variants .variant-card__text {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

#variants .variant-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

#variants .variant-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.72);
}

#variants .variant-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
}

#variants .variant-card__price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
}

#variants .variant-card__price span {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

#variants .variant-card__price strong {
  font-size: 18px;
  color: var(--gold-1);
  letter-spacing: -0.02em;
}

#variants .variant-card .btn--full {
  margin-top: 2px;
}

@media (max-width: 1024px) {
  #variants .variants-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #variants .variant-card__body {
    padding: 16px;
  }

  #variants .variant-card__plan {
    aspect-ratio: 4 / 3;
  }
}

#variants .variant-card__plan {
  position: relative;   /* важно */
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 12px;
  background: #0f1115;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
.variant-card__plan-overlay {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 110px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 20px rgba(0,0,0,.3);
}

.variant-card__plan-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#variants .variant-card__body {
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 12px;
  flex: 1; /* можно вернуть сюда */
}
 
@media (max-width: 768px) {
  .variant-card__plan-overlay {
    width: 72px;
    right: 10px;
    bottom: 10px;
    opacity: 0.85;
    box-shadow: 0 6px 14px rgba(0,0,0,.35);
  }
}

.projects-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
  text-align: center;
}

.projects-proof__item strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.projects-cta {
  margin-top: 40px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
}

@media (max-width: 768px) {

 .projects-cta ,.projects-proof {
display: block;
} 
.projects-proof__item {
  margin-bottom: 5px; 
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 5px;
}

}
.video-block {
  display: grid;
  gap: 20px;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.video-frame iframe,
.video-frame .lazy-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.lazy-iframe{
  background:#0f1115;
}

.lazy-iframe iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.lazy-iframe__placeholder{
  width:100%;
  height:100%;
  min-height:inherit;
  display:grid;
  place-items:center;
  padding:20px;
  color:rgba(255,255,255,.72);
  text-align:center;
  background:linear-gradient(180deg,#11141a,#0a0b0e);
}

.video-caption {
  max-width: 700px;
  padding-bottom: 16px;
}

.video-caption strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-proof {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.contact-proof__item strong {
  display: block;
  font-size: 16px;
}

.contacts-cta {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
}

.contacts-cta h3 {
  margin-bottom: 6px;
}
/*burger*/
.header__burger{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:rgba(255,255,255,.06);
  border-radius:12px;
  position:relative;
  cursor:pointer;
}

.header__burger span{
  position:absolute;
  left:10px;
  right:10px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:.25s ease;
}

.header__burger span:nth-child(1){top:14px;}
.header__burger span:nth-child(2){top:21px;}
.header__burger span:nth-child(3){top:28px;}

@media (max-width: 1180px){
  .nav{
    display:none;
  }

  .header__burger{
    display:block;
  }
}
.header__burger.active span:nth-child(1){
  transform:rotate(45deg);
  top:21px;
}

.header__burger.active span:nth-child(2){
  opacity:0;
}

.header__burger.active span:nth-child(3){
  transform:rotate(-45deg);
  top:21px;
}

.nav--mobile.is-open{
  transform: translateX(0); 
  display: flex;
}


.nav--mobile{
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 70dvh;
  background: rgba(10,11,14,.98);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  gap: 18px;
  transform: translateX(100%);
  transition: .3s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 1100; 
  background: rgba(10,11,14,.98);
}

.nav--mobile a {
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/*Умная кнопка*/

.fab {
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* показываем */
.fab.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* скрываем */
.fab.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.after_hero{
  position:relative;
  min-height: 2dvh;
  overflow:hidden;
  color:#000000; 
  background: linear-gradient(to bottom, #030303, #ffffff);
}
