:root {
  --primary-color: #ff3366;
  --secondary-color: #00d4ff;
  --accent-color: #ffcc00;
  --text-color: #333333;
  --light-color: #f9f9f9;
  --dark-color: #222222;
  --gradient-bg: linear-gradient(135deg, #ff3366 0%, #ff6b3d 100%);
  --box-shadow: 0 10px 30px rgba(255, 51, 102, 0.15);
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

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

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: var(--dark-color);
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

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

.logo img {
  height: 40px;
  width: auto;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem;
  border-radius: 4px;
}

nav a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  background: var(--gradient-bg);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.5);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--light-color);
  clip-path: ellipse(50% 50% at 50% 100%);
}

/* Features Section */
.features {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

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

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 51, 102, 0.2);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(255, 51, 102, 0.1);
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Process Section */
.process {
  padding: 6rem 0;
  background: #f5f5f5;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  counter-reset: step-counter;
}

.process-step {
  flex: 0 0 calc(33.333% - 2rem);
  min-width: 280px;
  margin: 1rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  position: relative;
  counter-increment: step-counter;
}

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

.process-step h3 {
  margin: 1rem 0;
  color: var(--primary-color);
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background: var(--gradient-bg);
  color: white;
  text-align: center;
}

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

.cta p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--light-color);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 0.8rem;
}

.footer-logo img {
  height: 35px;
  width: auto;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-contact p {
  margin-bottom: 0.7rem;
  color: #bbb;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #bbb;
  transition: color 0.3s;
}

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

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

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .process-step {
    flex: 0 0 calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-color);
    padding: 1rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }
  
  nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .process-step {
    flex: 0 0 100%;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 8rem 0 5rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
}
