:root {
  --pv-bg: #050514;
  --pv-bg-alt: #0c0c21;
  --pv-surface: #151531;
  --pv-surface-soft: #1e1e3d;
  --pv-primary: #ff3b7f;
  --pv-primary-soft: rgba(255, 59, 127, 0.2);
  --pv-accent: #5b8dff;
  --pv-accent-soft: rgba(91, 141, 255, 0.25);
  --pv-text: #f9f9ff;
  --pv-text-muted: #c0c0d9;
  --pv-border: rgba(255, 255, 255, 0.08);
  --pv-radius-lg: 18px;
  --pv-radius-md: 12px;
  --pv-radius-pill: 999px;
  --pv-shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.65);
  --pv-shadow-subtle: 0 14px 40px rgba(0, 0, 0, 0.45);
  --pv-gradient-hero: radial-gradient(circle at top left, #ff3b7f 0, transparent 55%),
                      radial-gradient(circle at bottom right, #5b8dff 0, transparent 55%),
                      linear-gradient(135deg, #050514 0, #050515 45%, #050514 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #17172f 0, #050514 45%, #010108 100%);
  color: var(--pv-text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  scroll-margin-top: 80px;
}

.pv-container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER & NAV */
.pv-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(
      to bottom,
      rgba(5, 5, 20, 0.95),
      rgba(5, 5, 20, 0.75),
      transparent
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pv-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
}

.pv-logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.pv-logo span {
  color: var(--pv-primary);
}

.pv-nav nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.pv-nav nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pv-text-muted);
  position: relative;
}

.pv-nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pv-primary), var(--pv-accent));
  border-radius: 999px;
  transition: width 0.2s ease-out;
}

.pv-nav nav a:hover {
  color: var(--pv-text);
}

.pv-nav nav a:hover::after {
  width: 100%;
}

/* BUTTONS */
.pv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: var(--pv-radius-pill);
  background: linear-gradient(135deg, var(--pv-primary), #ff7fa8);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  box-shadow: 0 12px 30px rgba(255, 59, 127, 0.4);
  cursor: pointer;
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out,
    background 0.15s ease-out;
  white-space: nowrap;
}

.pv-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(255, 59, 127, 0.55);
}

.pv-btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
}

.pv-btn-outline {
  background: transparent;
  border: 1px solid var(--pv-border);
  color: var(--pv-text);
  box-shadow: none;
}

.pv-btn-outline:hover {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--pv-shadow-subtle);
}

.pv-btn-full {
  width: 100%;
  margin-top: 0.25rem;
}

/* HERO */
.pv-hero {
  position: relative;
  min-height: 90vh;
  padding: 5rem 0 4rem;
  background: var(--pv-gradient-hero);
  overflow: hidden;
}

.pv-hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top left, rgba(255, 59, 127, 0.2), transparent 50%),
    radial-gradient(circle at bottom right, rgba(91, 141, 255, 0.18), transparent 50%);
  pointer-events: none;
}

.pv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(circle at top, rgba(255, 255, 255, 0.06) 0, transparent 50%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 18px
    );
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.pv-hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.5rem;
  align-items: center;
}

.pv-hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.pv-hero-text h1 span {
  background: linear-gradient(120deg, #ff7fab, #ffdf7f, #5b8dff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pv-hero-text p {
  margin: 0 0 1.8rem;
  color: var(--pv-text-muted);
  max-width: 520px;
}

.pv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.pv-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.pv-hero-stats h3 {
  margin: 0;
  font-size: 1.6rem;
}

.pv-hero-stats span {
  font-size: 0.85rem;
  color: var(--pv-text-muted);
}

.pv-hero-card {
  position: relative;
  background: radial-gradient(circle at top right, rgba(255, 59, 127, 0.18), transparent 55%),
    linear-gradient(145deg, rgba(10, 10, 32, 0.95), rgba(10, 10, 32, 0.9));
  border-radius: 26px;
  padding: 1.8rem 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--pv-shadow-soft);
  backdrop-filter: blur(22px);
}

.pv-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255, 59, 127, 0.7), rgba(91, 141, 255, 0.9))
    border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.19;
  pointer-events: none;
}

.pv-hero-card h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.pv-hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.pv-hero-card li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 15, 40, 0.8);
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--pv-text-muted);
}

.pv-hero-card li i {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #ff7fab, #ff3b7f);
  color: #050514;
  font-size: 0.8rem;
}

.pv-hero-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--pv-text-muted);
  opacity: 0.85;
}

/* SECTION GENERIC */
.pv-section {
  padding: 4.5rem 0;
}

.pv-section-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.pv-section-header h2 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.pv-section-header p {
  margin: 0;
  color: var(--pv-text-muted);
}

/* SERVICES */
.pv-services {
  background: radial-gradient(circle at top, rgba(255, 59, 127, 0.18), transparent 60%),
    radial-gradient(circle at bottom, rgba(91, 141, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #050514 0, #050518 100%);
}

.pv-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.pv-service-card {
  background: linear-gradient(145deg, rgba(10, 10, 32, 0.95), rgba(12, 12, 40, 0.98));
  border-radius: var(--pv-radius-lg);
  padding: 1.5rem 1.2rem;
  border: 1px solid var(--pv-border);
  box-shadow: var(--pv-shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pv-service-icon {
  width: 42px;
  height: 42px;
  border-radius: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 0.2rem;
}

.pv-service-icon.primary {
  background: radial-gradient(circle at top, #ff7fab, #ff3b7f);
}

.pv-service-icon.accent {
  background: radial-gradient(circle at top, #a9c7ff, #5b8dff);
}

.pv-service-icon.warm {
  background: radial-gradient(circle at top, #ffd4a8, #ff9c60);
}

.pv-service-icon.cool {
  background: radial-gradient(circle at top, #7ef2ff, #24b1ff);
}

.pv-service-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.pv-service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--pv-text-muted);
}

.pv-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pv-service-card ul li {
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--pv-text-muted);
}

/* TESTIMONIALS */
.pv-testimonials {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 60%),
    linear-gradient(180deg, #050518 0, #050514 100%);
}

.pv-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.pv-testimonial-card {
  background: radial-gradient(circle at top left, rgba(255, 59, 127, 0.18), transparent 60%),
    linear-gradient(145deg, rgba(9, 9, 32, 0.96), rgba(10, 10, 34, 0.98));
  border-radius: var(--pv-radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--pv-border);
  box-shadow: var(--pv-shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.3rem;
}

.pv-testimonial-quote {
  font-size: 0.95rem;
  color: var(--pv-text-muted);
}

.pv-testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #050514;
  background: radial-gradient(circle at top, #ff7fab, #ffdf7f);
}

.avatar-2 {
  background: radial-gradient(circle at top, #5b8dff, #a9c7ff);
}

.avatar-3 {
  background: radial-gradient(circle at top, #7ef2ff, #24b1ff);
}

.pv-testimonial-user h4 {
  margin: 0;
  font-size: 0.95rem;
}

.pv-testimonial-user span {
  font-size: 0.8rem;
  color: var(--pv-text-muted);
}

/* GALLERY */
.pv-gallery {
  background: radial-gradient(circle at top, rgba(255, 59, 127, 0.2), transparent 60%),
    radial-gradient(circle at bottom, rgba(91, 141, 255, 0.15), transparent 60%),
    linear-gradient(180deg, #050514 0, #050518 100%);
}

.pv-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.pv-slider-track {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #050514;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--pv-shadow-soft);
}

.pv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(6%);
  transition: opacity 0.45s ease, transform 0.45s ease;
  display: flex;
  flex-direction: column;
}

.pv-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.pv-slide-img {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

/* Gradient placeholders instead of real photos */
.pv-slide-1 {
  background-image: linear-gradient(135deg, #ff3b7f, #5b8dff);
}

.pv-slide-2 {
  background-image: linear-gradient(135deg, #ffdf7f, #ff7fab);
}

.pv-slide-3 {
  background-image: linear-gradient(135deg, #5b8dff, #7ef2ff);
}

.pv-slide-4 {
  background-image: linear-gradient(135deg, #ff9c60, #ff3b7f);
}

.pv-slide-caption {
  padding: 0.9rem 1.2rem 1.1rem;
  font-size: 0.9rem;
  color: var(--pv-text-muted);
  background: linear-gradient(180deg, rgba(5, 5, 20, 0.96), rgba(5, 5, 20, 1));
}

.pv-slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--pv-border);
  background: rgba(5, 5, 20, 0.85);
  color: var(--pv-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--pv-shadow-subtle);
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.pv-slider-btn:hover {
  background: rgba(10, 10, 40, 1);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
}

.pv-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.3rem;
}

.pv-slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  padding: 0;
  cursor: pointer;
  transition: width 0.18s ease, background 0.18s ease;
}

.pv-slider-dots button.active {
  width: 22px;
  background: linear-gradient(90deg, var(--pv-primary), var(--pv-accent));
}

/* CONTACT */
.pv-contact {
  background: linear-gradient(180deg, #050518 0, #050514 100%);
}

.pv-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.pv-contact-info h2 {
  margin: 0 0 0.8rem;
  font-size: 2rem;
}

.pv-contact-info p {
  margin: 0 0 1.4rem;
  color: var(--pv-text-muted);
  max-width: 420px;
}

.pv-contact-details {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}

.pv-contact-details > div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.pv-contact-details i {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #ff7fab, #5b8dff);
  color: #050514;
}

.pv-contact-details span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pv-text-muted);
}

.pv-contact-details p {
  margin: 0;
}

.pv-contact-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pv-contact-tags li {
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--pv-text-muted);
}

.pv-contact-form-wrapper {
  background: linear-gradient(145deg, rgba(10, 10, 32, 0.96), rgba(10, 10, 36, 0.98));
  padding: 1.6rem 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--pv-border);
  box-shadow: var(--pv-shadow-soft);
}

.pv-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pv-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pv-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pv-form-field label {
  font-size: 0.8rem;
  color: var(--pv-text-muted);
}

.pv-form-field input,
.pv-form-field select,
.pv-form-field textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 20, 0.8);
  color: var(--pv-text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.pv-form-field input::placeholder,
.pv-form-field textarea::placeholder {
  color: rgba(192, 192, 217, 0.7);
}

.pv-form-field input:focus,
.pv-form-field select:focus,
.pv-form-field textarea:focus {
  border-color: rgba(255, 59, 127, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 59, 127, 0.5);
  background: rgba(5, 5, 24, 0.95);
}

.pv-form-success {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #7ef2ff;
}

/* FOOTER */
.pv-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050515;
  padding: 1.2rem 0 1.4rem;
}

.pv-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--pv-text-muted);
}

.pv-footer-social {
  display: flex;
  gap: 0.7rem;
}

.pv-footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--pv-text-muted);
  transition: background 0.15s ease, transform 0.12s ease, color 0.15s ease;
}

.pv-footer-social a:hover {
  background: linear-gradient(135deg, #ff7fab, #5b8dff);
  color: #050514;
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .pv-hero-content {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .pv-hero-card {
    max-width: 380px;
    margin: 1rem auto 0;
  }

  .pv-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pv-testimonial-grid {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .pv-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pv-slider {
    grid-template-columns: minmax(0, 1fr);
  }

  .pv-slider-btn {
    display: none;
  }
}

@media (max-width: 720px) {
  .pv-nav nav ul {
    display: none;
  }

  .pv-header {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .pv-hero {
    padding-top: 4.3rem;
  }

  .pv-hero-text h1 {
    font-size: 2.1rem;
  }

  .pv-hero-stats {
    gap: 1.8rem;
  }

  .pv-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pv-form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .pv-contact-form-wrapper {
    padding: 1.3rem 1.1rem;
  }

  .pv-footer-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .pv-nav {
    padding-inline: 1rem;
  }

  .pv-container {
    padding-inline: 1.1rem;
  }

  .pv-hero-card {
    padding: 1.4rem 1.2rem;
  }

  .pv-service-card {
    padding-inline: 1.1rem;
  }
}
