:root {
  --bg: #05070f;
  --bg-soft: #0d1222;
  --card: rgba(255, 255, 255, 0.06);
  --text: #e9eeff;
  --muted: #a6b0d1;
  --accent: #8ff7cb;
  --accent-2: #7eb2ff;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  display: block;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 15% 20%, #22305f 0%, transparent 45%),
    radial-gradient(circle at 85% 10%, #1f4f43 0%, transparent 38%),
    linear-gradient(180deg, #060913 0%, #04060d 100%);
  color: var(--text);
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  padding: 26px;
  position: relative;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.11;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  z-index: 1;
}

.topbar,
main {
  position: relative;
  z-index: 3;
}

.topbar {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  background: rgba(12, 17, 32, 0.55);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.topbar-note {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  text-align: right;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  padding-bottom: 40px;
}

section {
  border: 1px solid var(--line);
  background: rgba(7, 12, 24, 0.56);
  border-radius: 28px;
  backdrop-filter: blur(16px);
}

.hero {
  position: relative;
  padding: 52px 48px;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 8, 18, 0.35) 0%, rgba(3, 8, 18, 0.92) 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12px;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 6vw, 72px);
  line-height: 0.97;
  max-width: 900px;
  overflow-wrap: anywhere;
}

h1 span {
  color: var(--accent-2);
}

.lead {
  margin-top: 22px;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #07131d;
  background: linear-gradient(120deg, var(--accent), #c8ffd9);
  box-shadow: 0 16px 30px rgba(143, 247, 203, 0.22);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-metrics article {
  padding: 18px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metrics h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.hero-metrics p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.services,
.proof,
.packages,
.why-me,
.gallery,
.testimonials,
.faq,
.process,
.cta {
  padding: 36px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 46px);
}

.cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid article {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.proof-grid h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 42px);
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
}

.packages-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.package {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}

.package-featured {
  background: linear-gradient(160deg, rgba(143, 247, 203, 0.15), rgba(126, 178, 255, 0.16));
  border-color: rgba(143, 247, 203, 0.45);
  transform: translateY(-4px);
}

.badge {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  color: #061420;
  background: linear-gradient(120deg, #9bffd8, #79c8ff);
  border-radius: 999px;
  padding: 5px 10px;
}

.package h3 {
  margin: 0;
}

.price {
  margin: 8px 0 14px;
  font-size: 28px;
  font-weight: 800;
}

.package ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.why-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-grid article {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(126, 178, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.why-grid h3 {
  margin: 0 0 8px;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.gallery-controls {
  display: flex;
  gap: 8px;
}

.gallery-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

.gallery-track {
  width: 100%;
  margin-top: 18px;
}

.gallery-viewport {
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 14px;
  will-change: transform;
  transition: transform 0.45s ease;
  transform: translate3d(0, 0, 0);
}

.gallery-item {
  position: relative;
  flex: 0 0 calc((100% - 28px) / 3);
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 4 / 5;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(126, 178, 255, 0.08) 0%,
    rgba(0, 0, 0, 0.08) 65%,
    rgba(12, 18, 34, 0.2) 100%
  );
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.05) brightness(0.93);
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.steps {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.steps article {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.steps span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: #081621;
  background: linear-gradient(120deg, var(--accent-2), #d0dbff);
}

.steps h3 {
  margin: 0 0 8px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.testimonials-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quote-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(126, 178, 255, 0.14), rgba(255, 255, 255, 0.03));
}

.quote-card p {
  margin: 0 0 14px;
  line-height: 1.5;
}

.quote-meta {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.cases {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.case {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.case h3 {
  margin: 0 0 12px;
}

.case p {
  margin: 0 0 9px;
  color: var(--muted);
}

.faq-list {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 10px 0 2px;
  color: var(--muted);
}

.sticky-tg {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 8;
  text-decoration: none;
  color: #081621;
  background: linear-gradient(120deg, #79c8ff, #9bffd8);
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 40px rgba(121, 200, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse 2.8s infinite;
}

.sticky-tg:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 44px rgba(121, 200, 255, 0.44);
}

@keyframes pulse {
  0% {
    box-shadow: 0 20px 40px rgba(121, 200, 255, 0.28);
  }
  70% {
    box-shadow: 0 20px 48px rgba(155, 255, 216, 0.5);
  }
  100% {
    box-shadow: 0 20px 40px rgba(121, 200, 255, 0.28);
  }
}

.cta {
  text-align: center;
}

.cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
}

.cta p {
  margin: 14px auto 24px;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .hero-metrics,
  .proof-grid,
  .cards,
  .packages-grid,
  .why-grid,
  .testimonials-grid,
  .cases,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar {
    border-radius: 24px;
  }

  .hero {
    padding: 44px 34px;
  }
}

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
    gap: 6px 14px;
    justify-content: flex-start;
  }

  .topbar-note {
    width: 100%;
    text-align: left;
    font-size: 13px;
  }

  .gallery-track {
    gap: 12px;
  }

  .gallery-item {
    flex-basis: calc((100% - 12px) / 2);
  }
}

@media (max-width: 760px) {
  body {
    padding: 14px;
  }

  .hero {
    padding: 34px 20px;
    min-height: 580px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .services,
  .proof,
  .packages,
  .why-me,
  .gallery,
  .testimonials,
  .faq,
  .process,
  .cta {
    padding: 24px 20px;
  }

  .topbar {
    border-radius: 20px;
  }

  .hero-metrics,
  .proof-grid,
  .cards,
  .packages-grid,
  .why-grid,
  .testimonials-grid,
  .cases,
  .steps {
    grid-template-columns: 1fr;
  }

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-track {
    gap: 10px;
  }

  .gallery-item {
    flex-basis: 100%;
  }

  .sticky-tg {
    right: 12px;
    left: 12px;
    bottom: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand {
    white-space: normal;
    font-size: 14px;
  }

  .topbar-note {
    font-size: 12px;
  }

  .hero {
    min-height: 520px;
  }

  h1 {
    font-size: clamp(27px, 9vw, 40px);
    line-height: 1.02;
  }

  .section-head h2 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .gallery-track {
    gap: 8px;
  }
}
