:root{
  --max: 1120px;
  --bg:#0b0f14;
  --card:#0f1620;
  --card2:#0c131c;
  --text:#e9eef5;
  --muted:#a9b4c2;
  --line:rgba(255,255,255,.10);
  --primary:#7c5cff;
  --primary2:#24d0b7;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 600px at 75% 0%, rgba(124,92,255,.25), transparent 55%),
    radial-gradient(900px 500px at 15% 10%, rgba(36,208,183,.20), transparent 55%),
    var(--bg);
  background-attachment: fixed, fixed, fixed;
  background-repeat: no-repeat;
  line-height:1.55;
}

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

.skip{
  position:absolute;
  left:-9999px;
  top:12px;
  padding:10px 12px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:12px;
}
.skip:focus{left:12px; z-index:1000}

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

.h1{font-size:clamp(34px, 4vw, 56px); line-height:1.05; margin:14px 0 14px}
.h2{font-size:clamp(26px, 2.5vw, 38px); line-height:1.15; margin:0}
.h2--modal{margin:0 0 8px}
.h3{font-size:18px; margin:0 0 8px}
.lead{font-size:18px; color:var(--muted); margin:0 0 22px; max-width:52ch}
.muted{color:var(--muted)}

.badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:#dbe4ff;
  font-weight:500;
  margin:0;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,15,20,.65);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px 0}

.brand{display:flex; align-items:center; gap:10px}
.brand__mark{
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(124,92,255,.95), rgba(36,208,183,.85));
  box-shadow:0 10px 24px rgba(124,92,255,.25);
  font-weight:800;
}
.brand__text{display:grid; line-height:1.05}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__sub{font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:2px}
.brand--footer .brand__sub{letter-spacing:1.6px}

.nav{display:flex; gap:16px; align-items:center}
.nav__link{color:var(--muted); font-weight:500; padding:10px 10px; border-radius:12px}
.nav__link:hover{color:var(--text); background:rgba(255,255,255,.04)}

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

.phone{color:#dbe4ff; font-weight:600}
.phone:hover{opacity:.9}
.phone--mobile{padding:8px 0}

.btn{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  border-radius:14px;
  padding:12px 14px;
  font-weight:650;
  cursor:pointer;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.06)}
.btn:active{transform: translateY(0px)}
.btn--primary{
  border-color: rgba(124,92,255,.45);
  background:linear-gradient(135deg, rgba(124,92,255,.95), rgba(36,208,183,.85));
  color:#081018;
}
.btn--ghost{background:transparent}
.btn--lg{padding:14px 16px; border-radius:16px}
.btn--full{width:100%}

.link{
  border:none;
  background:transparent;
  color:#dbe4ff;
  padding:0;
  font-weight:650;
  cursor:pointer;
}
.link:hover{text-decoration:underline}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  cursor:pointer;
}
.burger__bar{
  display:block;
  width:18px;
  height:2px;
  background:var(--text);
  margin:0 auto;
}
.burger__bar + .burger__bar{margin-top:6px; opacity:.7}

.mobile{
  display:none;
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(11,15,20,.75);
  backdrop-filter: blur(14px);
}
.mobile__inner{padding:12px 0 18px; display:grid; gap:8px}
.mobile__link{padding:12px 12px; border-radius:14px; color:var(--muted); font-weight:600}
.mobile__link:hover{background:rgba(255,255,255,.04); color:var(--text)}
.mobile__cta{display:grid; gap:10px; padding-top:8px}

.hero{padding:44px 0 18px}
.hero__grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:30px; align-items:center}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:0 0 22px}

.trust{display:flex; gap:18px; flex-wrap:wrap}
.trust__item{
  min-width:180px;
  padding:14px 14px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:16px;
}
.trust__num{font-size:20px; font-weight:800}
.trust__text{color:var(--muted); font-size:13px}

.hero__visual{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:flex-start;
  min-height:420px;
}
.heroCard{
  position:relative;
  margin-top: 28px;
  order:2;
  flex: 1 1 100%;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
}
.heroCard__top{display:flex; align-items:center; justify-content:space-between; padding:14px 14px}
.heroCard__pill{
  font-size:12px;
  color:#081018;
  background:linear-gradient(135deg, rgba(36,208,183,.95), rgba(124,92,255,.85));
  padding:8px 10px;
  border-radius:999px;
  font-weight:800;
}
.heroCard__dot{width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.7)}
.heroCard__img{
  height:280px;
  background:
    radial-gradient(600px 340px at 20% 20%, rgba(124,92,255,.35), transparent 55%),
    radial-gradient(550px 320px at 80% 20%, rgba(36,208,183,.30), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  position:relative;
}
.heroCard__img:before{
  content:"";
  position:absolute;
  inset:28px;
  border-radius:20px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.22)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='800'%3E%3Cdefs%3E%3CradialGradient id='g' cx='30%25' cy='20%25'%3E%3Cstop stop-color='%23ffffff' stop-opacity='.10'/%3E%3Cstop offset='1' stop-color='%23ffffff' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='1200' height='800' fill='%230a0f15'/%3E%3Crect x='90' y='120' width='1020' height='520' rx='34' fill='%230f1620' stroke='%23ffffff' stroke-opacity='.10'/%3E%3Crect x='150' y='180' width='360' height='180' rx='22' fill='%231b2532'/%3E%3Crect x='540' y='180' width='510' height='40' rx='20' fill='%231b2532'/%3E%3Crect x='540' y='240' width='460' height='40' rx='20' fill='%231b2532'/%3E%3Crect x='540' y='300' width='420' height='40' rx='20' fill='%231b2532'/%3E%3Crect x='150' y='392' width='900' height='170' rx='24' fill='%231b2532'/%3E%3Crect width='1200' height='800' fill='url(%23g)'/%3E%3C/svg%3E") center/cover no-repeat;
  border:1px solid rgba(255,255,255,.08);
}
.heroCard__bottom{padding:14px 14px}
.heroCard__title{font-weight:800}
.heroCard__meta{color:var(--muted); font-size:13px; margin-top:4px}

.float{
  order:1;
  position:static;
  padding:10px 12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  font-weight:700;
  color:#dbe4ff;
  backdrop-filter: blur(10px);
  pointer-events:none;
}
.float--a{margin-right:auto}
.float--b{opacity:.92}
.float--c{margin-left:auto}

.section{padding:64px 0}
.section--alt{background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06)}
.section__head{display:grid; gap:10px; margin-bottom:22px}

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

.card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  overflow:hidden;
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
}
.card:hover{transform: translateY(-3px); border-color: rgba(124,92,255,.35); background:rgba(255,255,255,.04)}
.card__img{height:140px}
.card__body{padding:14px}
.card__img--kitchen{background:linear-gradient(135deg, rgba(124,92,255,.35), rgba(255,255,255,.02))}
.card__img--wardrobe{background:linear-gradient(135deg, rgba(36,208,183,.28), rgba(255,255,255,.02))}
.card__img--sofa{background:linear-gradient(135deg, rgba(255,178,72,.25), rgba(255,255,255,.02))}
.card__img--bed{background:linear-gradient(135deg, rgba(255,88,155,.22), rgba(255,255,255,.02))}

.banner{
  margin-top:18px;
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  padding:18px;
  background:linear-gradient(135deg, rgba(124,92,255,.18), rgba(36,208,183,.14));
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
}

.perks{grid-template-columns: repeat(3, minmax(0,1fr))}
.perk{display:flex; gap:12px; padding:16px; border:1px solid rgba(255,255,255,.08); border-radius:22px; background:rgba(255,255,255,.03)}
.perk__icon{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:14px;
  background:rgba(124,92,255,.18);
  border:1px solid rgba(124,92,255,.30);
  font-weight:900;
}

.products{grid-template-columns: repeat(3, minmax(0,1fr))}
.product{border:1px solid rgba(255,255,255,.08); border-radius:22px; overflow:hidden; background:rgba(255,255,255,.03)}
.product__img{height:170px}
.product__img--nord{background:linear-gradient(135deg, rgba(124,92,255,.28), rgba(36,208,183,.12))}
.product__img--line{background:linear-gradient(135deg, rgba(36,208,183,.22), rgba(255,255,255,.02))}
.product__img--soft{background:linear-gradient(135deg, rgba(255,178,72,.20), rgba(255,255,255,.02))}
.product__body{padding:14px}
.product__row{display:flex; align-items:center; justify-content:space-between; gap:12px}

.tag{font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.04); color:var(--muted); font-weight:700}
.price{font-weight:900; letter-spacing:.2px}

.reviews{grid-template-columns: repeat(3, minmax(0,1fr))}
.review{margin:0; padding:18px; border-radius:22px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08)}
.review blockquote{margin:0 0 12px; color:#dbe4ff; font-weight:600}
.review__name{font-weight:900}
.review__meta{display:block; color:var(--muted); font-size:13px; margin-top:2px}

.cta{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.faq{display:grid; gap:10px}
.faq__item{border:1px solid rgba(255,255,255,.08); border-radius:18px; background:rgba(255,255,255,.03); overflow:hidden}
.faq__item summary{cursor:pointer; padding:14px 14px; font-weight:800}
.faq__content{padding:0 14px 14px; color:var(--muted)}

.contact{grid-template-columns: .9fr 1.1fr; align-items:stretch}
.contact__card{padding:18px; border-radius:22px; border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.03); display:grid; gap:12px}
.contact__row{display:flex; justify-content:space-between; gap:12px; border-bottom:1px dashed rgba(255,255,255,.10); padding-bottom:10px}
.contact__row:last-of-type{border-bottom:none; padding-bottom:0}
.contact__label{color:var(--muted)}
.contact__value{font-weight:800}
.contact__actions{display:grid; gap:10px; margin-top:6px}

.map{border-radius:22px; border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.02); overflow:hidden}
.map__inner{height:100%; min-height:320px; display:grid; place-items:center; padding:18px}
.map__badge{padding:10px 12px; border-radius:999px; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.04); color:var(--muted); font-weight:650; text-align:center}

.footer{padding:34px 0; border-top:1px solid rgba(255,255,255,.06)}
.footer__inner{display:flex; justify-content:space-between; gap:16px; align-items:center}
.footer__meta{font-size:13px; margin-top:8px}
.footer__right{display:flex; gap:14px}
.footer__link{color:var(--muted)}
.footer__link:hover{color:var(--text)}

/* Modal */
.modal{position:fixed; inset:0; display:none; z-index:100}
.modal.is-open{display:block}
.modal__backdrop{position:absolute; inset:0; background:rgba(0,0,0,.55)}
.modal__dialog{
  position:relative;
  width:min(560px, calc(100% - 40px));
  margin: 5vh auto;
  border-radius:22px;
  background:rgba(15,22,32,.95);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  padding:18px;
  backdrop-filter: blur(12px);
}
.modal__close{
  position:absolute;
  right:12px;
  top:10px;
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
  font-size:20px;
}

.form{display:grid; gap:12px; margin-top:12px}
.field{display:grid; gap:6px}
.field__label{font-size:13px; color:var(--muted); font-weight:650}
.input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
.input:focus{border-color: rgba(124,92,255,.55)}
.input--area{resize:vertical; min-height:92px}
.form__note{font-size:12px}
.form__ok{margin-top:10px; padding:12px; border-radius:16px; border:1px solid rgba(36,208,183,.35); background:rgba(36,208,183,.10)}
.form__okTitle{font-weight:900; margin-bottom:4px}

@media (max-width: 980px){
  .cards{grid-template-columns: repeat(2, minmax(0,1fr))}
  .perks{grid-template-columns: repeat(2, minmax(0,1fr))}
  .products{grid-template-columns: 1fr}
  .reviews{grid-template-columns: 1fr}
  .hero__grid{grid-template-columns: 1fr;}
  .hero__visual{min-height:360px}
  .contact{grid-template-columns: 1fr}
}

@media (max-width: 760px){
  .nav{display:none}
  .burger{display:inline-grid; place-items:center}
  .phone{display:none}
  .mobile.is-open{display:block}
  .banner{flex-direction:column; align-items:flex-start}
  .cta{flex-direction:column; align-items:flex-start}
  .trust__item{min-width: 150px}
  .float--b{display:none}
  .float--c{display:none}
}

/* === DEMO SITE watermark (auto) === */
body::before {
  content: "DEMO SITE";
  position: fixed;
  left: clamp(12px, calc((100vw - min(var(--max), (100vw - 2.5rem))) / 4), 96px);
  top: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-weight: 800;
  letter-spacing: 0.28em;
  font-size: 45px;
  text-transform: uppercase;
  opacity: 0.2;
  color: rgba(255, 255, 255, 0.9);
  mix-blend-mode: difference;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  user-select: none;
  z-index: 90;
}