:root {
  --bg: #111318;
  --bg-2: #191c22;
  --bg-3: #22262e;
  --card: rgba(255,255,255,0.06);
  --card-2: rgba(255,255,255,0.08);
  --text: #f7f8fb;
  --muted: #c3c8d4;
  --pink: #f4b6cd;
  --cyan: #74e0ff;
  --gold: #ffd36e;
  --violet: #c6b3ff;
  --mint: #80f2d3;
  --line: rgba(255,255,255,0.12);
  --line-soft: rgba(255,255,255,0.08);
  --shadow: 0 24px 60px rgba(0,0,0,0.35);
  --radius: 28px;
}

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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244,182,205,0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(116,224,255,0.12), transparent 22%),
    radial-gradient(circle at bottom left, rgba(198,179,255,0.1), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
}

body::before {
  top: -80px;
  left: -70px;
  background: rgba(244,182,205,0.32);
}

body::after {
  right: -60px;
  bottom: 8%;
  background: rgba(116,224,255,0.28);
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  background: #0d0f13;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.9rem;
}

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

.topbar-left,
.topbar-right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17,19,24,0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand h3 {
  margin: 0;
  font-size: 1.08rem;
}

.brand small {
  color: var(--muted);
}

.menu {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
}

.menu a:hover { color: var(--pink); }

.btn-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #121214;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn.pink { background: linear-gradient(135deg, var(--pink), #ffd8e5); }
.btn.cyan { background: linear-gradient(135deg, var(--cyan), #b7f0ff); }
.btn.gold { background: linear-gradient(135deg, var(--gold), #ffe8ad); }
.btn.violet { background: linear-gradient(135deg, var(--violet), #e0d6ff); }
.btn.dark {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.hero-banner {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(10,12,16,0.56), rgba(10,12,16,0.72)),
    url('images/image-94.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,12,16,0.72) 0%, rgba(10,12,16,0.42) 50%, rgba(10,12,16,0.75) 100%);
}

.hero-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 70px 0;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -1.8px;
}

.hero-copy p {
  margin: 0 0 24px;
  max-width: 640px;
  color: #e5e8ef;
  line-height: 1.85;
  font-size: 1.04rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--pink);
}

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

.hero-form-card {
  background: rgba(20,23,29,0.92);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-form-card h3 {
  margin-top: 0;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field,
select.field,
textarea.field {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  outline: none;
}

.field::placeholder { color: #aeb3c0; }
select.field option { color: #111318; }

.section {
  padding: 44px 0 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.section-title p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
}

.stats-strip-wrap {
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

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

.stat-box {
  background: rgba(20,23,29,0.92);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.stat-box span {
  color: var(--muted);
}

.theme-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.theme-service-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.theme-service-card:hover { transform: translateY(-6px); }

.service-media {
  height: 240px;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 24px;
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #121214;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, var(--pink), #ffd7e4);
}

.service-content h3 {
  margin: 0 0 10px;
}

.service-content p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.service-content a {
  color: var(--gold);
  font-weight: 700;
}

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

.price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card.featured {
  transform: translateY(-8px);
  border-color: rgba(244,182,205,0.34);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(244,182,205,0.07));
}

.tag {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #121214;
}

.price-card:nth-child(1) .tag { background: linear-gradient(135deg, var(--cyan), #b7f0ff); }
.price-card:nth-child(2) .tag { background: linear-gradient(135deg, var(--pink), #ffdbe7); }
.price-card:nth-child(3) .tag { background: linear-gradient(135deg, var(--gold), #ffe9b2); }

.price {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 12px 0;
}

.price-card p,
.price-card li {
  color: var(--muted);
  line-height: 1.7;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.price-card li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.theme-about {
  background: rgba(255,255,255,0.02);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 520px;
}

.about-large,
.about-small {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
}

.about-large {
  width: 82%;
  height: 460px;
}

.about-small {
  position: absolute;
  width: 48%;
  height: 250px;
  right: 0;
  bottom: 0;
}

.about-large img,
.about-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy h2 {
  margin: 16px 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.about-copy p {
  color: var(--muted);
  line-height: 1.85;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mint);
  font-weight: 700;
}

.dark-band {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
}

.band-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.band-grid h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.band-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.before-after-shell {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 22px;
}

.before-after-wrap {
  position: relative;
  height: 460px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: #0b0b0d;
}

.before-after-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-image {
  clip-path: inset(0 0 0 50%);
}

.divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: white;
}

.divider::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #121214;
  font-weight: 900;
}

.ba-label {
  position: absolute;
  top: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(18,18,20,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 700;
}

.ba-label.left { left: 18px; }
.ba-label.right { right: 18px; }

.ba-range {
  width: 100%;
  margin-top: 18px;
  accent-color: var(--pink);
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.filter-btn {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 700;
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--pink), #ffd8e5);
  color: #121214;
  border-color: transparent;
}

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

.gallery-item {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  transition: transform .25s ease;
}

.gallery-item:hover { transform: translateY(-6px); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.hidden { display: none; }

.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18,18,20,0.74);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
}

.video-theme {
  background: rgba(255,255,255,0.02);
}

.video-carousel-shell {
  position: relative;
}

.video-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32%);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.video-carousel::-webkit-scrollbar {
  height: 10px;
}

.video-carousel::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.16);
  border-radius: 999px;
}

.video-slide {
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-slide video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #000;
}

.video-slide .meta {
  padding: 14px 16px;
  color: var(--muted);
  line-height: 1.7;
}

.video-slide .meta strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.cta-banner {
  padding-top: 0;
}

.cta-inner {
  background: linear-gradient(135deg, rgba(244,182,205,0.2), rgba(116,224,255,0.12));
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-inner h2 {
  margin: 0 0 8px;
}

.cta-inner p {
  margin: 0;
  color: var(--muted);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-soft);
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.contact-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

footer {
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  padding: 24px 0 40px;
  text-align: center;
  background: rgba(255,255,255,0.03);
}

@media (max-width: 1100px) {
  .hero-banner-inner,
  .about-grid,
  .band-grid,
  .contact-box,
  .pricing,
  .theme-services-grid,
  .gallery-grid,
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .video-carousel {
    grid-auto-columns: minmax(280px, 60%);
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .nav-inner,
  .cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .menu { gap: 14px; }

  .hero-banner-inner,
  .stats-strip,
  .theme-services-grid,
  .about-grid,
  .band-grid,
  .gallery-grid,
  .pricing,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-banner { min-height: auto; }
  .hero-copy h1 { font-size: clamp(2.2rem, 10vw, 3.6rem); }
  .about-images { min-height: 420px; }
  .about-large { width: 100%; height: 320px; }
  .about-small { width: 52%; height: 180px; }
  .before-after-wrap { height: 320px; }
  .video-carousel { grid-auto-columns: 88%; }
}

footer {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrapper {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-center {
  text-align: center;
  color: #d8d8e2;
  font-size: 15px;
  line-height: 1.4;
}

.footer-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-right img {
  width: 120px;
  height: auto;
  display: block;
}

.footer-right span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 14px;
    min-height: auto;
  }

  .footer-right {
    position: static;
    transform: none;
    justify-content: center;
  }
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 1s ease-in-out;
}

.splash-screen.hide {
  transform: translateY(-100%);
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.powered-by-text {
  font-size: 28px;
  color: #111;
  margin-bottom: 12px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.powered-by-logo {
  width: 300px;
  max-width: 80vw;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.powered-by-text.show,
.powered-by-logo.show {
  opacity: 1;
}
