* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #7c3aed;
  --secondary: #ec4899;
  --accent: #fbbf24;
  --bg: #0f0a1a;
  --bg-light: #1a1428;
  --bg-lighter: #251f3a;
  --bg-darker: #0a0515;
  --text: #f0f0f0;
  --text-muted: rgba(240, 240, 240, 0.7);
  --text-light: rgba(240, 240, 240, 0.6);
  --border: #2d1f4a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--bg) 0%, #1a0a2e 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(26, 20, 40, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar h2 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar div {
  display: flex;
  gap: 2rem;
}

.navbar a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar a:hover {
  color: var(--primary);
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .navbar h2 {
    font-size: 1.4rem;
  }

  .navbar div {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .navbar a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.95rem;
  }
}

/* ===== GRADIENT TEXT ===== */
.gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
  border-bottom: 1px solid var(--border);
  margin-bottom: 4rem;
  animation: fadeInDown 0.8s ease-out;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 2rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--primary);
  animation: fadeInUp 0.6s ease-out;
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title .gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 700px;
  line-height: 1.8;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 4rem 2rem;
  margin-bottom: 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  border: 1.5px solid var(--border);
  border-radius: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease-out;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-weight: 600;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(124, 58, 237, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.5);
}

/* ===== CARDS ===== */
.card {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  border: 1.5px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease-out;
}

.card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
  transform: translateY(-6px);
}

.card h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.card p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ===== ZODIAC SECTION ===== */
.zodiac-section {
  margin: 3rem 0;
}

.zodiac-card {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 3rem 2rem;
  transition: all 0.3s ease;
}

.zodiac-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
}

.zodiac-header {
  text-align: center;
  margin-bottom: 3rem;
}

.zodiac-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.zodiac-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ===== ZODIAC SECTION ===== */
.zodiac-section {
  padding: 4rem 2rem;
  margin-bottom: 4rem;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.zodiac-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.05));
  border: 2px solid var(--border);
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  gap: 0.5rem;
  text-align: center;
}

.zodiac-symbol {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.zodiac-item span {
  color: var(--text);
  font-weight: 600;
}

.zodiac-item small {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.zodiac-item:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.15));
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 4rem 2rem;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  border: 1.5px solid var(--border);
  border-radius: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease-out;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
}

.testimonial-stars {
  font-size: 1rem;
  color: var(--accent);
}

.testimonial-text {
  color: var(--text-light);
  line-height: 1.8;
  flex-grow: 1;
}

.testimonial-author {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-location {
  color: var(--text-light);
  font-size: 0.9rem;
}

.zodiac-item:nth-child(1)::before {
  content: '♈';
  font-size: 2rem;
}

.zodiac-item:nth-child(2)::before {
  content: '♉';
  font-size: 2rem;
}

.zodiac-item:nth-child(3)::before {
  content: '♊';
  font-size: 2rem;
}

.zodiac-item:nth-child(4)::before {
  content: '♋';
  font-size: 2rem;
}

.zodiac-item:nth-child(5)::before {
  content: '♌';
  font-size: 2rem;
}

.zodiac-item:nth-child(6)::before {
  content: '♍';
  font-size: 2rem;
}

.zodiac-item:nth-child(7)::before {
  content: '♎';
  font-size: 2rem;
}

.zodiac-item:nth-child(8)::before {
  content: '♏';
  font-size: 2rem;
}

.zodiac-item:nth-child(9)::before {
  content: '♐';
  font-size: 2rem;
}

.zodiac-item:nth-child(10)::before {
  content: '♑';
  font-size: 2rem;
}

.zodiac-item:nth-child(11)::before {
  content: '♒';
  font-size: 2rem;
}

.zodiac-item:nth-child(12)::before {
  content: '♓';
  font-size: 2rem;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* ===== FORM ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

input[type="text"],
input[type="email"],
textarea,
select {
  padding: 0.875rem 1rem;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
  background: var(--bg-lighter);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

/* ===== FEATURES SECTION ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  border: 1.5px solid var(--border);
  border-radius: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
}

.stars {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-author small {
  color: var(--text-muted);
  display: block;
  margin-top: 0.5rem;
  font-weight: normal;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-darker) 100%);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  margin-top: 4rem;
  text-align: center;
  color: var(--text-muted);
}

footer p {
  margin: 0.5rem 0;
}

footer a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.gap-2 {
  gap: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 3rem 1.5rem;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .card {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .zodiac-grid {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .zodiac-item {
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 0.875rem;
  }

  .grid,
  .features,
  .testimonials {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .btn-group {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }

  input[type="text"],
  input[type="email"],
  textarea,
  select {
    padding: 0.75rem 1rem;
  }

  footer {
    padding: 2rem 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .navbar {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .navbar h2 {
    font-size: 1.2rem;
  }

  .navbar div {
    gap: 0.25rem;
  }

  .navbar a {
    font-size: 0.85rem;
  }

  .hero {
    padding: 2rem 1rem;
    min-height: 300px;
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .card {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .card h2 {
    font-size: 1.5rem;
  }

  .card h3 {
    font-size: 1.125rem;
  }

  .zodiac-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.75rem;
  }

  .zodiac-item {
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
  }

  .grid,
  .features,
  .testimonials {
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }

  /* ===== NEWSLETTER SECTION ===== */
  .newsletter-section {
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
  }

  .newsletter-section .container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .newsletter-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--text);
  }

  .newsletter-section>p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
  }

  .newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1.25rem;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 0.75rem;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-lighter);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
  }

  .newsletter-form input::placeholder {
    color: var(--text-light);
  }

  .newsletter-form .btn-primary {
    white-space: nowrap;
  }

  .newsletter-benefits {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.95rem;
  }

  /* ===== STATS SECTION ===== */
  .stats-section {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }

  .stat-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    border: 1.5px solid var(--border);
    border-radius: 1.25rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
  }

  footer {
    text-align: center;
    padding: 2.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    background: rgba(26, 20, 40, 0.5);
  }

  .footer-links {
    gap: 0.5rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}