/* Base styles and variables */
:root {
  --primary: #FF4081;
  --secondary: #7C4DFF;
  --dark: #2D2D2D;
  --light: #F5F5F5;
  --gray: #757575;
  --gradient: linear-gradient(45deg, var(--primary), var(--secondary));
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@300;400;500&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #121212;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

h2:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

h3 {
  font-size: 1.3rem;
  margin: 1rem 0;
  color: white;
}

p {
  margin-bottom: 1rem;
  color: #bbb;
}

/* Header */
header {
  background-color: rgba(18, 18, 18, 0.95);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

nav ul {
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: white;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: white;
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  background-color: #1a1a1a;
  background-image: radial-gradient(at top right, #331133, transparent 70%),
                    radial-gradient(at bottom left, #1a237e, transparent 70%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 6rem 0 2rem;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #121212, transparent);
}

.hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #ddd;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.primary-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 64, 129, 0.6);
}

.secondary-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--primary);
}

.secondary-button:hover {
  background-color: rgba(255, 64, 129, 0.1);
  transform: translateY(-3px);
}

/* Benefits Section */
.benefits {
  background-color: #121212;
  padding: 5rem 0;
  position: relative;
}

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

.card {
  background: linear-gradient(145deg, #1e1e1e, #292929);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 64, 129, 0.3);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 64, 129, 0.1);
  border-radius: 50%;
}

/* Process Section */
.process {
  background-color: #1a1a1a;
  padding: 5rem 0;
  position: relative;
}

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

.step {
  background-color: #232323;
  border-radius: var(--radius);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.cta-center {
  text-align: center;
  margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
  background-color: #121212;
  padding: 5rem 0;
  overflow: hidden;
}

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

.testimonial {
  background: #1e1e1e;
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow);
}

.quote-mark {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 4rem;
  color: rgba(255, 64, 129, 0.2);
  font-family: Georgia, serif;
  line-height: 0;
}

.testimonial p {
  margin: 1rem 0;
  font-style: italic;
}

.user {
  color: #ddd;
  text-align: right;
  font-weight: 500;
}

/* Footer */
footer {
  background-color: #0f0f0f;
  color: white;
  padding: 4rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo p {
  margin-top: 1rem;
  color: #888;
}

.footer-links h4, .footer-legal h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links h4:after, .footer-legal h4:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--primary);
  bottom: -8px;
  left: 0;
}

.footer-links ul li, .footer-legal ul li {
  margin-bottom: 0.7rem;
}

.footer-links ul li a, .footer-legal ul li a {
  color: #888;
  transition: var(--transition);
}

.footer-links ul li a:hover, .footer-legal ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.3rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    min-height: 80vh;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  nav ul {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #121212;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 99;
  }
  
  nav ul.active {
    transform: translateY(0);
  }
  
  .cta-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero {
    padding-top: 5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .container {
    width: 95%;
  }
}
