/* Base Styles and Variables */
:root {
  --primary: #ff3366;
  --secondary: #5e17eb;
  --dark: #0a0a0a;
  --light: #f8f8f8;
  --gray: #777;
  --gray-dark: #333;
  --gray-light: #ddd;
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--light);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.accent-text {
  color: var(--primary);
  font-weight: bold;
}

/* Navigation */
.slide-nav {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gray-dark);
  margin: 5px 0;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--gray-dark);
  font-weight: 500;
  position: relative;
}

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

.nav-menu a:hover::after {
  width: 100%;
}

.cta-nav a {
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
}

.cta-nav a:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.cta-nav a::after {
  display: none;
}

/* Header Section */
header {
  padding-top: 80px;
  padding-bottom: 3rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #333 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.full-height {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.logo-mark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

.branding h1 {
  font-size: 2rem;
}

.branding h1 span {
  color: var(--primary);
}

.header-content {
  max-width: 600px;
}

.header-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.primary {
  background-color: var(--primary);
  color: white;
}

.primary:hover {
  background-color: var(--secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}

.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid var(--primary);
}

.secondary:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.glow {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px rgba(255, 51, 102, 0.5);
  }
  to {
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.8);
  }
}

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

.keywords span {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
}

.header-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.shape-1 {
  background: var(--primary);
  width: 300px;
  height: 300px;
  top: 20%;
  right: -100px;
}

.shape-2 {
  background: var(--secondary);
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: 20%;
}

.shape-3 {
  background: white;
  width: 150px;
  height: 150px;
  top: 10%;
  right: 30%;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header.light {
  color: white;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3rem;
  color: white;
  margin: 0 auto 1.5rem;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #333 100%);
  color: white;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 2rem;
}

.feature-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.feature-content h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--gray-light);
}

/* Process Steps */
.process-steps {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-marker {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
}

.step-details h3 {
  margin-bottom: 0.5rem;
}

/* Testimonial Section */
.testimonial-section {
  background-color: var(--light);
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 2rem;
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
  opacity: 0.3;
}

.testimonial-quote::before {
  left: 0;
  top: -20px;
}

.testimonial-quote::after {
  right: 0;
  bottom: -40px;
}

.testimonial-author {
  font-weight: bold;
  margin-bottom: 2rem;
}

.testimonial-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
}

.cta-section .btn {
  background-color: white;
  color: var(--primary);
}

.cta-section .btn:hover {
  background-color: var(--light);
  color: var(--primary);
}

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

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.footer-name {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.links-group h4 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.links-group h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--gray-light);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-disclaimer {
  margin-top: 2rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-disclaimer p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .header-content h2 {
    font-size: 2.5rem;
  }
  
  .feature-item {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .slide-nav {
    padding: 1rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
  }
  
  .slide-nav.active .nav-menu {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .slide-nav.active .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .slide-nav.active .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .slide-nav.active .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .header-content h2 {
    font-size: 2.2rem;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .feature-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .feature-number {
    font-size: 2.5rem;
  }
  
  .process-step {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .step-marker {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .header-content h2 {
    font-size: 1.8rem;
  }
  
  .testimonial-quote {
    font-size: 1.2rem;
  }
  
  .testimonial-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
  }
}
