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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #07070c;
  color: #ffffff;
  line-height: 1.6;
}

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

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

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

.section {
  padding: 100px 0;
}

.section-dark {
  background: rgba(255, 255, 255, 0.03);
}

.section-label {
  margin-bottom: 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.30em;
  color: #d8b4fe;
}

.section-label.center,
.center {
  text-align: center;
}

.section h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  font-weight: 800;
}

.section-text {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.8;
}

.max-text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(7, 7, 12, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: auto;
  height: 110px;
  max-width: 320px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: 0.25s ease;
  backdrop-filter: blur(8px);
}

.site-nav a:hover {
  color: #ffffff;
  border-color: rgba(217, 70, 239, 0.45);
  background: rgba(217, 70, 239, 0.12);
  box-shadow: 0 0 0 1px rgba(217, 70, 239, 0.10), 0 8px 24px rgba(217, 70, 239, 0.18);
  transform: translateY(-1px);
}

.site-nav a.active {
  color: #ffffff;
  border-color: rgba(217, 70, 239, 0.60);
  background: linear-gradient(180deg, rgba(217, 70, 239, 0.22), rgba(217, 70, 239, 0.12));
  box-shadow: 0 0 0 1px rgba(217, 70, 239, 0.18), 0 10px 28px rgba(217, 70, 239, 0.22);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 7, 12, 0.92) 0%, rgba(7, 7, 12, 0.78) 45%, rgba(120, 45, 255, 0.45) 100%),
    url("https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding-top: 90px;
  padding-bottom: 110px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(232, 121, 249, 0.3);
  background: rgba(217, 70, 239, 0.10);
  color: #f5d0fe;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  max-width: 760px;
}

.hero p {
  margin-top: 24px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-meta a:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 18px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #d946ef;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(217, 70, 239, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
}

.btn-cyan {
  background: #22d3ee;
  color: #0f172a;
}

.full-width {
  width: 100%;
}

.hero-card {
  position: relative;
  max-width: 430px;
  width: 100%;
  margin-left: auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(88, 28, 135, 0.35);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.hero-card-text {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
}

.hero-card-text span {
  display: block;
  margin-bottom: 8px;
  color: #f5d0fe;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.hero-card-text strong {
  font-size: 22px;
  line-height: 1.4;
}

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

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

.reason-card,
.service-card,
.review-card,
.contact-form-box,
.pricing-card,
.extras-card {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.reason-card {
  padding: 24px;
  border-radius: 24px;
}

.reason-card span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 24px;
}

.reason-card p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  transition: 0.25s ease;
}

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

.service-icon {
  margin-bottom: 16px;
  font-size: 40px;
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background: url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.pricing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #15081f 0%, #26114a 50%, #09090f 100%);
}

.pricing-content {
  position: relative;
  z-index: 2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 28px;
  margin-top: 56px;
}

.pricing-card {
  padding: 32px;
  border-radius: 30px;
  backdrop-filter: blur(16px);
}

.pricing-card h3 {
  margin-top: 12px;
  font-size: 38px;
  line-height: 1.15;
}

.pricing-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.pricing-card .btn {
  margin-top: 28px;
}

.pricing-tag {
  color: #f5d0fe;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.30em;
}

.featured {
  border-color: rgba(232, 121, 249, 0.35);
  background: rgba(217, 70, 239, 0.10);
  box-shadow: 0 20px 50px rgba(88, 28, 135, 0.28);
}

.featured-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(232, 121, 249, 0.35);
  background: rgba(217, 70, 239, 0.20);
  color: #fdf4ff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.extras-card {
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.extras-head,
.extras-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
  padding: 18px 24px;
}

.extras-head {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: rgba(255, 255, 255, 0.70);
}

.extras-head div:last-child,
.extras-row strong {
  text-align: right;
}

.extras-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.extras-row:last-child {
  border-bottom: none;
}

.extras-row span {
  color: rgba(255, 255, 255, 0.85);
}

.extras-row strong {
  color: #67e8f9;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-note {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.55);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  padding: 32px;
  border-radius: 28px;
}

.quote {
  margin-bottom: 14px;
  font-size: 40px;
  color: #f5d0fe;
}

.review-card p {
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.9;
}

.review-card strong {
  display: block;
  margin-top: 22px;
  color: #f5d0fe;
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}

.contact-info {
  margin-top: 28px;
}

.contact-info p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}

.contact-info a {
  font-weight: 700;
  color: #ffffff;
}

.contact-info a:hover {
  color: #f0abfc;
}

.contact-form-box {
  padding: 32px;
  border-radius: 30px;
}

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

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.20);
  color: #ffffff;
  padding: 16px 18px;
  font-size: 16px;
  outline: none;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-grid textarea {
  min-height: 160px;
  resize: vertical;
  grid-column: 1 / -1;
}

.form-note {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
  color: rgba(255, 255, 255, 0.50);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-left: 0;
  }

  .services-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo img {
    height: 92px;
    max-width: 260px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    padding: 9px 14px;
    font-size: 14px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 76px;
  }

  .logo img {
    height: 64px;
    max-width: 200px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(7, 7, 12, 0.96);
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    font-size: 15px;
  }

  .site-nav.active {
    display: flex;
  }

  .services-grid,
  .gallery-grid,
  .reviews-grid,
  .reasons-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-card img {
    height: 420px;
  }

  .extras-head,
  .extras-row {
    grid-template-columns: 1fr;
  }

  .extras-head div:last-child,
  .extras-row strong {
    text-align: left;
  }

  .section {
    padding: 80px 0;
  }
}