:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --secondary: #ea580c;
  --dark: #18181b;
  --darker: #0c0a09;
  --light: #faf5ff;
  --gray: #3f3f46;
  --light-gray: #a1a1aa;
  --shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
  --card-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --accent-gold: #eab308;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--darker);
  color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.hsp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hsp-section-padding {
  padding: 90px 0;
}

.hsp-text-center {
  text-align: center;
}

.hsp-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  text-align: center;
}
.hsp-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.4);
}

.hsp-button-secondary {
  display: inline-block;
  background: transparent;
  color: var(--light);
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--gray);
  cursor: pointer;
  transition: var(--transition);
}
.hsp-button-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hsp-section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hsp-section-subtitle {
  font-size: 18px;
  color: var(--light-gray);
  max-width: 700px;
  margin: 0 auto 50px;
}

.hsp-cookie-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  background: rgba(25, 25, 25, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 25px 30px;
  border: 1px solid var(--gray);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s ease-out;
  transition: var(--transition);
}

.hsp-cookie-notification.hsp-active {
  display: block;
}

.hsp-cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.hsp-cookie-icon {
  font-size: 28px;
  color: var(--primary);
  flex-shrink: 0;
}

.hsp-cookie-text {
  flex: 1;
}

.hsp-cookie-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--light);
}

.hsp-cookie-text p {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.6;
}

.hsp-cookie-text a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.hsp-cookie-text a:hover {
  color: #c4b5fd;
}

.hsp-cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 768px) {
  .hsp-cookie-notification {
    bottom: 15px;
    width: 95%;
    padding: 20px;
  }

  .hsp-cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hsp-cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .hsp-cookie-buttons .hsp-button,
  .hsp-cookie-buttons .hsp-button-secondary {
    width: 100%;
    text-align: center;
  }
}

header {
  background-color: rgba(18, 18, 18, 0.95);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--gray);
  backdrop-filter: blur(10px);
}
.hsp-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.hsp-logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hsp-logo span {
  color: white;
}
.hsp-nav-links {
  display: flex;
  gap: 35px;
}
.hsp-nav-links a {
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 5px 0;
}
.hsp-nav-links a:hover {
  color: var(--primary);
}

/* .hsp-nav-links a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        transition: width 0.3s ease;
      } */

.hsp-nav-links a:hover::after {
  width: 100%;
}

.hsp-nav-button {
  background-color: var(--primary);
  padding: 15px 25px !important;
  border-radius: 30px;
  font-weight: 700;
}

.hsp-nav-button:hover {
  color: #000 !important;
  text-decoration: none !important;
}
.hsp-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

.hsp-hero {
  padding: 160px 0 100px;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(124, 58, 237, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(234, 88, 12, 0.1) 0%,
      transparent 50%
    ),
    var(--darker);
  position: relative;
  overflow: hidden;
}
.hsp-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hsp-hero-text h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
}
.hsp-hero-text p {
  font-size: 18px;
  color: var(--light-gray);
  margin-bottom: 35px;
  max-width: 90%;
}
.hsp-hero-highlight {
  color: var(--primary);
  font-weight: 700;
}
.hsp-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hsp-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.hsp-hero-image img:hover {
  transform: scale(1.03);
}

.hsp-features {
  background-color: var(--dark);
}
.hsp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.hsp-feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 35px 30px;
  text-align: center;
  border: 1px solid var(--gray);
  transition: var(--transition);
}
.hsp-feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--card-shadow);
}
.hsp-feature-icon {
  font-size: 50px;
  margin-bottom: 25px;
  color: var(--primary);
}
.hsp-feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.hsp-testimonials {
  background-color: var(--darker);
}
.hsp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.hsp-testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 35px 30px;
  border-left: 5px solid var(--primary);
  transition: var(--transition);
}
.hsp-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow);
}
.hsp-testimonial-text {
  font-style: italic;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--light-gray);
}
.hsp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.hsp-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.hsp-author-info h4 {
  font-weight: 700;
  font-size: 18px;
}
.hsp-author-info p {
  font-size: 14px;
  color: var(--light-gray);
}
.hsp-social-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.hsp-rating {
  color: var(--accent-gold);
  font-size: 16px;
}
.hsp-proof-tag {
  color: var(--light-gray);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hsp-how-it-works {
  background-color: var(--dark);
}
.hsp-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
}
.hsp-step {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}
.hsp-step-number {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
  line-height: 70px;
  margin-bottom: 25px;
}
.hsp-step h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.hsp-cta-section {
  padding: 100px 0;
  background:
    radial-gradient(
      circle at center,
      rgba(124, 58, 237, 0.2) 0%,
      transparent 70%
    ),
    var(--darker);
  text-align: center;
}
.hsp-cta-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 25px;
}
.hsp-cta-subtitle {
  font-size: 20px;
  color: var(--light-gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hsp-cta-button {
  font-size: 20px;
  padding: 20px 50px;
}

footer {
  background-color: #000;
  color: white;
  padding: 70px 0 30px;
}
.hsp-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}
.hsp-footer-column h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: var(--primary);
}
.hsp-footer-column p {
  color: #aaa;
  margin-bottom: 20px;
  line-height: 1.7;
}
.hsp-footer-links li {
  margin-bottom: 12px;
}
.hsp-footer-links a {
  color: #ccc;
  display: inline-block;
  transition: var(--transition);
}
.hsp-footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}
.hsp-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.hsp-social-link i {
  font-size: 20px;
}
.hsp-age-restriction {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  margin-top: 15px;
}
.hsp-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #999;
  font-size: 14px;
}

@media (max-width: 992px) {
  .hsp-hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hsp-hero-text p {
    max-width: 100%;
  }
  .hsp-section-title {
    font-size: 36px;
  }
  .hsp-nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 25px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }
  .hsp-nav-links.hsp-active {
    transform: translateY(0);
    opacity: 1;
  }
  .hsp-mobile-menu-btn {
    display: block;
  }
}
@media (max-width: 768px) {
  .hsp-hero-text h1 {
    font-size: 40px;
  }
  .hsp-hero,
  .hsp-features,
  .hsp-testimonials,
  .hsp-how-it-works {
    padding: 80px 0;
  }
  .hsp-section-padding {
    padding: 70px 0;
  }
  .hsp-cta-title {
    font-size: 36px;
  }
  .hsp-testimonials-grid,
  .hsp-features-grid {
    grid-template-columns: 1fr;
  }
  .hsp-footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .hsp-hero-text h1 {
    font-size: 34px;
  }
  .hsp-button,
  .hsp-cta-button {
    padding: 14px 30px;
    font-size: 16px;
    width: 100%;
    display: block;
  }
  .hsp-hero-buttons a {
    margin-bottom: 15px;
  }
}

.hsp-faq {
  background: var(--dark);
}

.hsp-faq-wrapper {
  max-width: 900px;
  margin: 50px auto 0;
}

.hsp-faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gray);
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.hsp-faq-item:hover {
  border-color: var(--primary);
}

.hsp-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 22px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.hsp-faq-question span {
  font-size: 28px;
  color: var(--primary);
  transition: 0.3s;
}

.hsp-faq-answer {
  display: none;
  padding: 0 25px 22px;
}

.hsp-faq-answer p {
  color: var(--light-gray);
  line-height: 1.8;
}

.hsp-faq-item.active .hsp-faq-answer {
  display: block;
}

.hsp-faq-item.active .hsp-faq-question span {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .hsp-faq-question {
    font-size: 16px;
    padding: 18px;
  }

  .hsp-faq-answer {
    padding: 0 18px 18px;
  }
}

.hsp-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.hsp-about-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: var(--shadow);
}

.hsp-about-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.hsp-about-text p {
  color: var(--light-gray);
  margin-bottom: 18px;
  line-height: 1.8;
}

.hsp-about-list {
  margin: 30px 0;
}

.hsp-about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--light);
  font-size: 17px;
}

.hsp-about-list i {
  color: var(--primary);
  font-size: 18px;
}

@media (max-width: 992px) {
  .hsp-about-content {
    grid-template-columns: 1fr;
  }

  .hsp-about-image {
    order: 1;
  }

  .hsp-about-text {
    order: 2;
  }
}

.hsp-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.hsp-step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gray);
  border-radius: 18px;
  padding: 35px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.hsp-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--card-shadow);
}

.hsp-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
}

.hsp-step-number {
  display: inline-block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hsp-step-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.hsp-step-card p {
  color: var(--light-gray);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hsp-steps-grid {
    grid-template-columns: 1fr;
  }
}
