:root {
  --bg: #070d1a;
  --bg-soft: #0e1730;
  --card: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.14);
  --text: #edf3ff;
  --muted: rgba(237, 243, 255, 0.72);
  --accent: #36d3c1;
  --gold: #f2c14a;
  --ok: #4ade80;
  --danger: #fb7185;
  --radius: 18px;
  --container: 1160px;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(.2, .9, .2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

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

img {
  display: block;
  width: 100%;
}

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

.section {
  padding: 46px 0;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .05);
  z-index: 100;
}

.progress>i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #6ee7f0, var(--gold));
  box-shadow: 0 0 20px rgba(54, 211, 193, .4);
}

header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(8, 12, 24, .86), rgba(8, 12, 24, .62));
  border-bottom: 1px solid var(--line);
}

.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 20%, #fff1bf 0, #f2c14a 35%, #2ecdbb 85%);
  box-shadow: 0 12px 30px rgba(242, 193, 74, .26), 0 12px 30px rgba(46, 205, 187, .26);
}

.brand b {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 11px;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

nav a {
  font-size: 12px;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .2s var(--ease);
}

nav a:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, .05);
}

.btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .07);
  color: var(--text);
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .1);
}

.btn.primary {
  background: linear-gradient(135deg, #35d5c2, #1ea395);
  color: #041015;
  border-color: rgba(53, 213, 194, .45);
  box-shadow: 0 16px 38px rgba(53, 213, 194, .28);
  font-weight: 700;
}

.btn.gold {
  background: linear-gradient(135deg, #f2c14a, #ce9f33);
  color: #1a1305;
  border-color: rgba(242, 193, 74, .45);
  font-weight: 700;
}

.hero {
  padding: 34px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-main {
  padding: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  padding: 7px 11px;
  margin-bottom: 12px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(54, 211, 193, .5);
}

h1 {
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.grad {
  background: linear-gradient(90deg, var(--accent), #7dd3fc, var(--gold));
  -webkit-background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
  max-width: 640px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.chip {
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  color: rgba(237, 243, 255, .86);
}

.hero-actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.hero-gallery {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 10px;
}

.shot {
  min-height: 170px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  cursor: pointer;
}

.shot img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform .45s var(--ease);
}

.shot:hover img {
  transform: scale(1.12);
}

.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0, rgba(5, 10, 20, .55) 100%);
}

.shot p {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  font-size: 11px;
  color: rgba(237, 243, 255, .88);
}

.shot-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.hero-form {
  padding: 18px;
}

.hero-form h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.hero-form .small {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.fields {
  display: grid;
  gap: 9px;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

label {
  display: block;
  font-size: 11px;
  color: rgba(237, 243, 255, .6);
  margin-bottom: 4px;
}

.input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(8, 13, 25, .5);
  color: var(--text);
  font-size: 13px;
  padding: 10px 11px;
  outline: none;
}

.input:focus {
  border-color: rgba(54, 211, 193, .5);
}

.fine {
  margin-top: 7px;
  font-size: 10px;
  color: rgba(237, 243, 255, .46);
}

.inline-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.sec-head {
  margin-bottom: 14px;
}

.kicker {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(237, 243, 255, .58);
  margin-bottom: 5px;
}

h2 {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.subhead {
  font-size: 13px;
  color: var(--muted);
  max-width: 760px;
}

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

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

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  padding: 14px;
}

.panel h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.panel p {
  font-size: 12px;
  color: var(--muted);
}

.list {
  list-style: none;
  display: grid;
  gap: 5px;
  margin-top: 8px;
}

.list li {
  font-size: 12px;
  color: rgba(237, 243, 255, .85);
}

.list li::before {
  content: "• ";
  color: var(--accent);
}

.blog-grid {
  margin-bottom: 14px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card h4 {
  font-size: 16px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 13px;
  color: var(--muted);
}

.blog-link {
  margin-top: auto;
  font-size: 12px;
  color: var(--accent2);
  text-decoration: none;
  border-bottom: 1px dashed rgba(244, 177, 90, .35);
  width: fit-content;
}

.blog-link:hover {
  color: #ffd08f;
  border-bottom-color: rgba(255, 208, 143, .65);
}

.seo-text {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  padding: 16px;
  margin-bottom: 10px;
}

.seo-text h3 {
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.seo-text p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.metric {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.gallery-big {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 180px 180px;
  gap: 10px;
}

.gallery-big .shot.big {
  grid-row: 1 / span 2;
}

.gallery-big .shot.wide {
  grid-column: 2 / span 2;
}

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

.step {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
}

.num {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(54, 211, 193, .17);
  border: 1px solid rgba(54, 211, 193, .35);
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}

.step b {
  font-size: 13px;
  display: block;
  margin-bottom: 4px;
}

.step p {
  font-size: 12px;
  color: var(--muted);
}

.case-img {
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 9px;
  border: 1px solid var(--line);
}

.case-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(237, 243, 255, .78);
}

.pill-mini {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

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

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  padding: 14px;
}

.price-card.featured {
  border-color: rgba(54, 211, 193, .45);
  box-shadow: 0 20px 45px rgba(54, 211, 193, .16);
}

.price-card h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.muted {
  color: rgba(237, 243, 255, .62);
  font-size: 11px;
}

.price {
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 4px 0 8px;
}

.strike {
  text-decoration: line-through;
  color: rgba(237, 243, 255, .46);
  font-size: 12px;
}

.note {
  font-size: 11px;
  color: rgba(237, 243, 255, .58);
  margin-top: 8px;
}

.faq {
  display: grid;
  gap: 8px;
}

.qa {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}

.q {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.a {
  display: none;
  padding: 0 12px 12px;
  font-size: 12px;
  color: var(--muted);
}

.qa.open .a {
  display: block;
}

footer {
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  color: rgba(237, 243, 255, .58);
  font-size: 11px;
}

.foot {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}

.nav-toggle.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.modal-wrap {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-wrap.show {
  display: flex;
}

.modal {
  width: min(900px, 96vw);
  max-height: 90vh;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(9, 14, 26, .94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .52);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.close {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  cursor: pointer;
}

.modal-body {
  padding: 12px;
}

.lightbox {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 10px;
}

.lb-main img {
  border-radius: 12px;
  border: 1px solid var(--line);
  height: 100%;
  object-fit: cover;
}

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

.thumbs img {
  height: 65px;
  object-fit: cover;
  border-radius: 9px;
  border: 1px solid var(--line);
  cursor: pointer;
  opacity: .84;
}

.thumbs img:hover {
  opacity: 1;
}

.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(9, 14, 26, .9);
  color: var(--text);
  font-size: 12px;
  display: none;
  z-index: 140;
}

.toast.show {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .head {
    align-items: center;
  }

  nav {
    position: fixed;
    inset: 54px 14px auto 14px;
    display: none;
    flex-direction: column;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(5, 10, 20, .96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
    z-index: 90;
  }

  nav.open {
    display: flex;
  }

  nav a {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .grid3,
  .steps,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-big {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 170px);
  }

  .gallery-big .shot.big,
  .gallery-big .shot.wide {
    grid-column: auto;
    grid-row: auto;
  }

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

  .lb-main img {
    max-height: 45vh;
  }
}

@media (max-width: 620px) {
  body {
    margin: 0 20px;
  }

  header {
    padding: 0 20px;
    border-radius: 22px;
  }

  .row2,
  .grid3,
  .grid2,
  .steps,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .shot-col {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .sticky {
    right: 10px;
    bottom: 10px;
  }

  .head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-main {
    padding: 18px 16px;
  }

  .section {
    padding: 34px 0;
  }

  .seo-text h3 {
    font-size: 18px;
  }
}