:root{
  /* Palette */
  --bg-0:#050814;
  --bg-1:#070b18;
  --text:#eaf0ff;
  --muted: rgba(234,240,255,.72);
  --line: rgba(255,255,255,.10);

  --accent-a:#22c55e;
  --accent-b:#38bdf8;
  --accent-c:#a78bfa;

  --danger:#fb7185;

  /* UI */
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --shadow-soft: 0 12px 30px rgba(0,0,0,.32);

  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 15% 0%, rgba(56,189,248,.18), transparent 60%),
              radial-gradient(900px 600px at 85% 15%, rgba(34,197,94,.14), transparent 55%),
              radial-gradient(900px 600px at 55% 110%, rgba(167,139,250,.12), transparent 55%),
              linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

/* subtle texture */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  opacity:.10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.container{ max-width: var(--container); margin:0 auto; padding:0 18px; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,8,20,.62);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__row{
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 900;
  letter-spacing: .2px;
}
.logo__mark{
  width: 34px; height: 34px;
  display:grid; place-items:center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(56,189,248,.85));
  color: #07111f;
  box-shadow: var(--shadow-soft);
}
.logo__text{
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 16px;
}

.nav{
  display:flex;
  gap:14px;
  margin-left: 10px;
}
.nav a{
  color: rgba(234,240,255,.72);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.header__cta{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:12px;
}
.phone{
  font-weight: 900;
  letter-spacing: .2px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.burger{
  display:none;
  margin-left:auto;
  width:44px;height:40px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background: rgba(255,255,255,.04);
  color:var(--text);
}
.burger span{
  display:block;height:2px;background:var(--text);
  margin:6px 11px;border-radius:2px;opacity:.9;
}

.mobile-nav{
  border-top: 1px solid var(--line);
  padding: 10px 18px 14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .35s ease, opacity .22s ease, transform .22s ease;
}
.mobile-nav.is-open{
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav a{ color: rgba(234,240,255,.78); font-weight: 750; }
.mobile-nav a:hover{ text-decoration: underline; }
.mobile-nav__phone{
  margin-top: 2px;
  font-weight: 950;
  color: var(--text);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px 12px;
  border-radius: 14px;
}

/* Hero */
.hero{ padding: 34px 0 10px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 18px;
  align-items:start;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: rgba(234,240,255,.78);
  font-weight: 750;
  font-size: 13px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
}

h1{
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 44px;
  line-height: 1.06;
  margin: 14px 0 10px;
  letter-spacing: -0.6px;
}
.lead{
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 18px;
  font-size: 16px;
}

/* Discount banner */
.deal{
  margin: 14px 0 18px;
  padding: 12px 12px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 16px 44px rgba(0,0,0,.32);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.deal::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 200px at 10% 10%, rgba(34,197,94,.18), transparent 60%),
    radial-gradient(420px 200px at 95% 20%, rgba(56,189,248,.18), transparent 60%),
    radial-gradient(420px 200px at 60% 120%, rgba(167,139,250,.14), transparent 60%);
  opacity: .85;
  pointer-events:none;
}
.deal > *{ position: relative; }
.deal__left{ display:flex; align-items:center; gap: 12px; min-width: 0; }
.deal__badge{
  width: 56px; height: 44px;
  display:grid; place-items:center;
  border-radius: 16px;
  color:#06101f;
  font-weight: 1000;
  letter-spacing: .4px;
  background: linear-gradient(135deg, rgba(34,197,94,.98), rgba(56,189,248,.92), rgba(167,139,250,.88));
  box-shadow: 0 16px 44px rgba(56,189,248,.14);
}
.deal__text{ min-width: 0; }
.deal__title{
  font-weight: 950;
  font-family: Manrope, Inter, system-ui, sans-serif;
  letter-spacing: -.2px;
}
.deal__sub{
  color: rgba(234,240,255,.78);
  font-weight: 750;
  font-size: 13.5px;
}
#discountCountdown{
  color: var(--text);
  font-weight: 950;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  white-space: nowrap;
}
@keyframes tickPop{
  0%{ transform: translateY(0) scale(1); }
  40%{ transform: translateY(-1px) scale(1.03); }
  100%{ transform: translateY(0) scale(1); }
}
.deal.is-tick #discountCountdown{ animation: tickPop .22s ease; }

.hero__bullets{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 10px 0 18px;
}
.pill{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 750;
  font-size: 13px;
}

.hero__actions{ display:flex; gap:10px; margin:10px 0 18px; }

.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.trust__item{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  border-radius: 16px;
  padding: 10px 12px;
}
.trust__num{ font-weight: 950; letter-spacing: .2px; }
.trust__txt{ color: rgba(234,240,255,.70); font-size: 13px; }

/* Card / glass */
.card{
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Form card */
.form-card{ padding: 16px; position: relative; }
.form-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(500px 220px at 20% 0%, rgba(56,189,248,.18), transparent 60%),
              radial-gradient(420px 220px at 90% 10%, rgba(34,197,94,.18), transparent 60%),
              radial-gradient(420px 220px at 60% 110%, rgba(167,139,250,.14), transparent 60%);
  pointer-events:none;
  opacity:.9;
}
.form-card > *{ position: relative; }

.form-card__title{
  margin:0 0 6px;
  font-size: 20px;
  font-family: Manrope, Inter, system-ui, sans-serif;
  letter-spacing: -.2px;
}
.form-card__subtitle{
  margin:0 0 12px;
  color: rgba(234,240,255,.72);
  font-size: 14px;
}

.form{ display:flex; flex-direction:column; gap:10px; }
.field{ display:flex; flex-direction:column; gap:6px; }
.field span{ font-size: 13px; color: rgba(234,240,255,.70); font-weight: 800; }

input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(4,8,18,.55);
  color: var(--text);
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease, transform .05s ease;
}
input::placeholder, textarea::placeholder{ color: rgba(234,240,255,.42); }
input:focus, select:focus, textarea:focus{
  border-color: rgba(56,189,248,.55);
  box-shadow: 0 0 0 4px rgba(56,189,248,.14);
}
textarea{ resize: vertical; }

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

.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.check input{
  width:18px; height:18px;
  margin-top: 3px;
  accent-color: var(--accent-b);
}
.check span{ color: rgba(234,240,255,.72); font-size: 13px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 950;
  cursor:pointer;
  transform: translateZ(0);
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.btn:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  border-color: transparent;
  color: #06101f;
  background: linear-gradient(135deg, rgba(34,197,94,.98), rgba(56,189,248,.92), rgba(167,139,250,.88));
  box-shadow: 0 18px 50px rgba(56,189,248,.16);
  position: relative;
  overflow: hidden;
}
.btn--primary::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 35%);
  transform: translateX(-30%);
  opacity:.55;
  transition: transform .35s ease;
}
.btn--primary:hover::after{ transform: translateX(10%); }

.btn--ghost{ background: rgba(255,255,255,.04); }
.btn--full{ width:100%; }

.form-note{ margin:0; color: rgba(234,240,255,.58); font-size: 12px; }
.form-status{ min-height:18px; font-weight: 950; font-size: 13px; }
.form-status.ok{ color: var(--accent-a); }
.form-status.err{ color: var(--danger); }
.hp{ position:absolute; left:-9999px; opacity:0; }

/* Sections */
.section{ padding: 44px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.section__head{ margin-bottom: 16px; }
.section__head h2{
  margin:0 0 6px;
  font-size: 30px;
  font-family: Manrope, Inter, system-ui, sans-serif;
  letter-spacing: -.3px;
}
.section__head p{ margin:0; color: var(--muted); }

.cards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.cards--3{ grid-template-columns: repeat(3, 1fr); }

.card h3{
  margin:0 0 8px;
  padding: 16px 16px 0;
  font-family: Manrope, Inter, system-ui, sans-serif;
  letter-spacing: -.2px;
}
.card p{ margin:0; padding: 0 16px 16px; color: var(--muted); }

.list{
  margin:0;
  padding: 0 20px 18px 38px;
  color: rgba(234,240,255,.72);
}
.list li{ margin: 6px 0; }

/* Price table */
.table{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: rgba(255,255,255,.03);
}
.table__row{
  display:grid;
  grid-template-columns: 1.4fr .6fr .6fr;
  gap:10px;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(234,240,255,.72);
}
.table__head{
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-weight: 950;
}
.table__row:last-child{ border-bottom:none; }

.note{ padding: 16px; margin-top: 12px; }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.step{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 14px;
  background: rgba(255,255,255,.03);
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.step__num{
  width: 36px; height: 36px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(56,189,248,.14);
  border: 1px solid rgba(56,189,248,.22);
  font-weight: 950;
}

/* FAQ */
.faq{ display:grid; gap: 10px; }
.faq__item{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  padding: 10px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight: 950;
  list-style: none;
  position: relative;
  padding-right: 26px;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item summary::after{
  content:"▾";
  position:absolute;
  right: 6px;
  top: 0;
  opacity:.75;
  transition: transform .18s ease;
}
details[open] summary::after{ transform: rotate(180deg); }
.faq__item p{ margin: 8px 0 0; color: var(--muted); }

/* CTA row */
.cta{
  margin-top: 14px;
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.cta h3{ padding:0; margin:0; }
.cta p{ padding:0; margin:4px 0 0; }

/* Contacts */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-line{ padding: 0 16px 10px; }
.muted{ color: var(--muted); }

.map-placeholder{
  margin: 0 16px 16px;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 14px;
  color: rgba(234,240,255,.70);
  background: rgba(0,0,0,.14);
}

.footer{ margin-top: 14px; padding: 12px 0 24px; }
.footer__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.footer__links{ display:flex; gap: 12px; }
.footer__links a{
  color: rgba(234,240,255,.72);
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 12px;
}
.footer__links a:hover{ background: rgba(255,255,255,.05); color: var(--text); }

/* Floating call */
@keyframes callPulse{
  0%   { box-shadow: var(--shadow); }
  50%  { box-shadow: 0 22px 70px rgba(56,189,248,.18); }
  100% { box-shadow: var(--shadow); }
}
.floating-call{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(34,197,94,.98), rgba(56,189,248,.92), rgba(167,139,250,.88));
  color: #06101f;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 22px;
  animation: callPulse 2.6s ease-in-out infinite;
}

/* Reveal animations */
.js .reveal{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.2,.9,.2,1),
    filter .65s ease;
  will-change: opacity, transform, filter;
}
.js .reveal.reveal--scale{ transform: translateY(14px) scale(.985); }
.js .reveal.is-visible{ opacity: 1; transform: none; filter: blur(0); }

/* Card hover lift */
@media (hover:hover) and (pointer:fine){
  .cards > .card,
  .steps > .step,
  .faq > .faq__item,
  .contact-grid > .card,
  .note.card,
  .cta.card{
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
  }
  .cards > .card:hover,
  .steps > .step:hover,
  .faq > .faq__item:hover,
  .contact-grid > .card:hover,
  .note.card:hover,
  .cta.card:hover{
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.16);
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  }

  .pill{
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
  }
  .pill:hover{
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.055);
  }
}

/* Logo glow */
@keyframes logoGlow{
  0% { filter: saturate(1) brightness(1); }
  50% { filter: saturate(1.15) brightness(1.08); }
  100% { filter: saturate(1) brightness(1); }
}
.logo__mark{ animation: logoGlow 3.2s ease-in-out infinite; }

/* Responsive */
@media (max-width: 980px){
  h1{ font-size: 36px; }
  .hero__grid{ grid-template-columns: 1fr; }
  .header__cta{ display:none; }
  .nav{ display:none; }
  .burger{ display:inline-block; }
  .cards{ grid-template-columns: 1fr; }
  .cards--3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .deal{ flex-direction: column; align-items: stretch; }
  .deal__right{ display:flex; }
  .deal__btn{ width:100%; }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ transition: none !important; }
  .floating-call, .logo__mark{ animation: none !important; }
}


/* =========================
   About / Gallery / Modals
   ========================= */

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.g-item{ overflow: hidden; }
.g-btn{
  display:block;
  width:100%;
  padding:0;
  border:0;
  background: transparent;
  cursor:pointer;
}
.g-btn img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.g-item figcaption{
  padding: 12px 14px 14px;
  color: rgba(234,240,255,.78);
  font-weight: 800;
  font-size: 13.5px;
}
@media (max-width: 980px){
  .gallery{ grid-template-columns: 1fr; }
  .g-btn img{ height: 210px; }
}

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  z-index: 100;
  display:grid;
  place-items:center;
  padding: 16px;
}
.modal[hidden]{ display:none; }
.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
}
.modal__panel{
  position: relative;
  width: min(560px, 100%);
  padding: 16px;
  border-radius: 22px;
}
.modal__panel--wide{
  width: min(980px, 100%);
  padding: 12px;
}
.modal__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor:pointer;
}
.modal__title{
  margin: 6px 0 6px;
  font-family: Manrope, Inter, system-ui, sans-serif;
  letter-spacing: -.3px;
}
.modal__text{
  margin: 0 0 12px;
  color: var(--muted);
}
.modal__call{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 12px;
  margin: 10px 0 12px;
}
.modal__callText{
  color: rgba(234,240,255,.78);
  font-weight: 800;
  font-size: 13.5px;
  margin-bottom: 10px;
}
.modal__note{ margin: 10px 0 0; font-size: 12px; }

/* Lightbox */
.lightbox__wrap{ display:grid; gap: 10px; }
.lightbox__img{
  width:100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.lightbox__caption{
  padding: 0 6px 6px;
  color: rgba(234,240,255,.82);
  font-weight: 850;
}


/* gallery hover zoom */
@media (hover:hover) and (pointer:fine){
  .g-btn img{
    transition: transform .22s ease, filter .22s ease;
    will-change: transform;
  }
  .g-btn:hover img{
    transform: scale(1.05);
    filter: saturate(1.06) contrast(1.02);
  }
}
