*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0f1115;
  background-color: #fafafa;
  line-height: 1.5;
  --accent: #7501d9;
  --accent-light: #a347ff;
  --soft-gray: #f3f4f7;
  --card-radius: 24px;
  --shadow: 0 24px 60px rgba(15, 17, 21, 0.08);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #fff;
  color: inherit;
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
}

.hero,
.intro,
.split,
.services-detail,
.stats,
.packages,
.testimonials,
.site-footer,
footer {
  scroll-margin-top: 120px;
}

.announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: #f1f2f4;
  color: #0f1115;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pill-btn {
  border-radius: 999px;
  padding: 0.35rem 1.5rem;
  background: #fff;
  color: #0f1115;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 4vw;
  min-height: 80px;
  background: #000;
  color: #fff;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-logo {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-header .brand-logo {
  margin: -24px 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: inline-flex;
  box-shadow: 0 8px 20px rgba(117, 1, 217, 0.35);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  padding-bottom: 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
  border-color: currentColor;
}

.nav-links a.is-active {
  color: var(--accent);
  border-color: currentColor;
}

.menu-toggle {
  display: none;
  position: relative;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
  align-items: center;
  justify-content: center;
  z-index: 1202;
}

.menu-toggle .line {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle .line-top {
  transform: translateY(-6px);
}

.menu-toggle .line-middle {
  transform: translateY(0);
}

.menu-toggle .line-bottom {
  transform: translateY(6px);
}

.menu-toggle.is-active .line-top {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle.is-active .line-middle {
  opacity: 0;
}

.menu-toggle.is-active .line-bottom {
  transform: translateY(0) rotate(-45deg);
}

.nav-link-cta,
.mobile-only,
.nav-backdrop {
  display: none;
}

.nav-close {
  display: none;
}

.ghost-btn {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ghost-btn:hover {
  border-color: var(--accent);
  background: #fff;
  color: var(--accent);
}

main {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 3rem 4vw 6rem;
}

.hero {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  color: #fff;
  min-height: 70vh;
  padding: 4rem;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.55), rgba(15, 17, 21, 0.9));
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=80")
    center/cover no-repeat;
  z-index: -2;
  animation: slow-pan 26s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 17, 21, 0.95), rgba(15, 17, 21, 0.2));
  z-index: -1;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0.5rem 0 1.5rem;
}

.hero-headline span {
  display: block;
  animation: slide-up 1.2s ease forwards;
}

.hero-headline span:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-headline span:last-child {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}

.hero-subtitle {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  padding: 0.95rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: none;
  transition: transform 0.3s ease;
}

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

.video-btn {
  padding: 0.95rem 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.video-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.cred-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: -2rem auto 2rem;
  padding: 2rem;
  background: #0d0f14;
  color: #fff;
  border-radius: 32px;
  max-width: 1200px;
}

.cred-strip ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
}

.stars {
  color: #ffb703;
  letter-spacing: 0.15rem;
}

.intro,
.split,
.services-detail,
.stats,
.packages,
.testimonials,
.site-footer {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
  padding: 3rem;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

.intro-text {
  text-align: left;
}

.intro-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  margin-bottom: 1rem;
}

.intro-description {
  margin: 0 0 1.5rem;
  color: rgba(15, 17, 21, 0.7);
}

.intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.intro-badges span {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: var(--soft-gray);
  font-weight: 600;
  font-size: 0.85rem;
}

.intro-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.video-btn.outline {
  background: transparent;
  border-color: rgba(117, 1, 217, 0.3);
  color: var(--accent);
}

.video-btn.outline:hover {
  border-color: var(--accent);
  background: rgba(117, 1, 217, 0.08);
}

.intro-highlight {
  display: grid;
  gap: 1.25rem;
}

.intro-panel {
  border-radius: 28px;
  padding: 1.75rem;
  background: var(--soft-gray);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(15, 17, 21, 0.08);
}

.intro-panel .panel-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(15, 17, 21, 0.5);
  margin: 0 0 0.3rem;
}

.intro-panel .panel-value {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
}

.intro-panel .panel-text {
  margin: 0;
  color: rgba(15, 17, 21, 0.7);
}

.intro-panel.spotlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  box-shadow: 0 30px 50px rgba(117, 1, 217, 0.3);
}

.intro-panel.spotlight .panel-label {
  color: rgba(255, 255, 255, 0.6);
}

.intro-panel.spotlight .panel-text {
  color: rgba(255, 255, 255, 0.85);
}

.intro-panel.rating-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1rem;
  align-items: center;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -12px;
  box-shadow: 0 10px 20px rgba(15, 17, 21, 0.15);
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.tag {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.split-text ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.8rem;
}

.split-text ul li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.5rem;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-chips span {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--soft-gray);
  font-weight: 500;
}

.services-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  margin-top: -1rem;
  padding: 3rem;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

.services-info > p {
  color: rgba(15, 17, 21, 0.7);
}

.service-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-option {
  border: 1px solid rgba(15, 17, 21, 0.12);
  border-radius: 24px;
  padding: 1rem 1.5rem;
  background: #fefefe;
  display: block;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  text-align: left;
}

.service-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.service-option h3 {
  margin: 0.35rem 0;
  font-size: 1.15rem;
}

.service-option p,
.service-body {
  margin: 0;
  color: rgba(15, 17, 21, 0.65);
}

.service-option.active,
.service-option:hover {
  border-color: var(--accent);
  background: #fff;
  transform: translateX(4px);
}

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0;
}

.service-option.active .service-body {
  max-height: 320px;
  margin-top: 0.35rem;
}

.toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(15, 17, 21, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 17, 21, 0.6);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.toggle-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.service-option.active .toggle-icon {
  border-color: var(--accent);
  color: var(--accent);
}

.service-option.active .toggle-icon::before {
  transform: rotate(45deg);
}

.services-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.services-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
  min-height: 360px;
}

.addons {
  text-align: center;
  padding: 1rem 4vw;
  margin-top: -2rem;
}

.addons p {
  margin: 0.5rem 0 0;
  color: rgba(15, 17, 21, 0.7);
}

.process {
  text-align: center;
  padding: 2rem 0;
}

.process-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.process-grid article {
  border-radius: 24px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.process-grid article span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft-gray);
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.stats strong {
  font-size: 2.5rem;
}

.packages {
  text-align: center;
}

.package-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.package-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  text-align: left;
}

.package-card ul li {
  position: relative;
  padding-left: 1.25rem;
}

.package-card ul li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.package-card.featured {
  border: 2px solid var(--accent);
  transform: translateY(-10px);
}

.package-card .primary-btn {
  width: 100%;
}

.testimonials {
  text-align: center;
}

.testimonials p + .primary-btn {
  margin-top: 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 1.8rem;
  text-align: left;
  box-shadow: var(--shadow);
}

.author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem;
  background: #f7f7fa;
  border-radius: 32px;
  margin: 2rem auto;
  max-width: 1200px;
  width: 100%;
}

.contact-details p {
  margin: 0.25rem 0;
}

.contact-details {
  margin-bottom: 1rem;
}

.contact-form .video-btn {
  margin-top: 1rem;
}

.form-wrapper {
  min-height: 540px;
}

.site-footer {
  background: #000;
  border-radius: 40px 40px 0 0;
  padding: 3rem 5vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  margin: 0.2rem 0;
}

.site-footer .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-weight: 600;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 17, 21, 0.5);
  margin-bottom: 0.5rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

[data-animate] {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.enable-animations [data-animate] {
  opacity: 0;
  transform: translateY(40px);
}

body.enable-animations .is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slow-pan {
  from {
    scale: 1;
    transform: translateY(0);
  }
  to {
    scale: 1.1;
    transform: translateY(-20px);
  }
}

@keyframes slide-up {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero {
    padding: 3rem;
  }
}

@media (min-width: 801px) {
  .nav-links {
    position: static;
    width: auto;
    flex-direction: row;
    background: transparent;
    padding: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    gap: 1.5rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-link-cta,
  .mobile-only {
    display: none;
  }

  .nav-backdrop {
    display: none;
  }

  .ghost-btn {
    display: inline-flex;
  }
}

@media (max-width: 800px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
  }

  main {
    padding: 2rem 5vw 4rem;
  }

  .hero {
    padding: 2.5rem;
    border-radius: 24px;
  }

  .hero-headline {
    font-size: clamp(3rem, 12vw, 4rem);
  }

  .services-detail {
    padding: 2rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(80vw, 320px);
    height: 100vh;
    flex-direction: column;
    background: #000;
    padding: 5rem 1.75rem 2rem;
    gap: 1rem;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.6);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    border-radius: 32px 0 0 32px;
  }

  .nav-links.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .ghost-btn {
    display: none;
  }

  .nav-link-cta,
  .mobile-only,
  .nav-close {
    display: block;
  }

  .nav-close {
    align-self: flex-end;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }

  .nav-link-cta {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    font-weight: 600;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 17, 21, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1000;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 600px) {
  .announcement {
    flex-direction: column;
    text-align: center;
  }

  .site-header {
    padding: 0.75rem 5vw;
  }

  .hero {
    padding: 2rem 1.5rem 3rem;
  }

  .cred-strip {
    margin: 1rem 5vw;
  }

  .intro {
    padding: 2rem 1.5rem;
  }

  .intro-highlight {
    grid-template-columns: 1fr;
  }

  .services-detail {
    padding: 1.5rem;
  }

  .service-option {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-text ul {
    grid-template-columns: 1fr;
  }

  .stats {
    padding: 1.25rem;
  }

  .package-card.featured {
    transform: none;
  }

  .testimonial-card {
    padding: 1.4rem;
  }
}
