/* Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Scheme - Orange/Purple theme (different from previous sites) */
  --primary-color: #ff7a00;
  --secondary-color: #8e24aa;
  --text-color: #292929;
  --text-light: #757575;
  --background: #ffffff;
  --background-alt: #f9f4ff;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --border-radius: 10px;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

@font-face {
  font-family: 'Poppins';
  font-display: swap;
  src: local('Poppins'), local('Segoe UI');
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background);
  overflow-x: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.75rem;
}

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

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

/* Button Styles */
.button {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
  color: var(--white);
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

/* Header & Navigation */
header {
  padding: 1rem 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

.logo h1 {
  color: var(--text-color);
  margin-bottom: 0;
}

nav {
  display: flex;
  align-items: center;
}

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

nav a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

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

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

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

#menu-toggle {
  display: none;
}

.menu-button {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.menu-button span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text-color);
  border-radius: 3px;
  transition: var(--transition);
}

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

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-content h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content h2 span {
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.abstract-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Abstract shapes animation */
.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, var(--primary-color), rgba(255, 122, 0, 0.4));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 8s infinite alternate;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, var(--secondary-color), rgba(142, 36, 170, 0.4));
  top: 30%;
  right: 10%;
  animation: float 7s infinite alternate;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff4081, rgba(255, 64, 129, 0.4));
  bottom: 20%;
  left: 20%;
  animation: float 5s infinite alternate-reverse;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* Overview Section */
.overview {
  background-color: var(--white);
}

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

.overview-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: var(--transition);
}

.overview-card:hover {
  transform: translateY(-10px);
}

.icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--primary-color);
}

/* Benefits Section */
.benefits {
  background-color: var(--background-alt);
}

.benefits-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-list {
  display: grid;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.check-icon {
  background-color: var(--primary-color);
  color: white;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-visual {
  position: relative;
  height: 400px;
}

.abstract-pattern {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.circle-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: conic-gradient(from 0deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

.circle-pattern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  height: 230px;
  background-color: var(--background-alt);
  border-radius: 50%;
}

@keyframes rotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Process Section */
.process {
  background-color: var(--white);
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-connector {
  height: 4px;
  width: 100px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  flex-shrink: 1;
  z-index: 0;
}

/* Testimonials */
.testimonials {
  background-color: var(--background-alt);
}

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

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--gray-300);
  line-height: 1;
  opacity: 0.5;
}

.quote {
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.author {
  font-weight: 600;
  color: var(--text-color);
}

/* Get Started Section */
.get-started {
  background: var(--gradient);
  color: var(--white);
  text-align: center;
}

.get-started h2 {
  color: var(--white);
}

.get-started p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

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

.get-started .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq {
  background-color: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--gray-100);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.faq-item p {
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: #292929;
  color: white;
  padding: 4rem 0 2rem;
  margin-top: auto;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-logo p {
  color: white;
  margin-bottom: 0;
}

.footer-links h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.footer-cta .button:hover {
  background: var(--secondary-color);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .benefits-container {
    grid-template-columns: 1fr;
  }
  
  .steps {
    flex-direction: column;
    gap: 2rem;
  }
  
  .step-connector {
    width: 4px;
    height: 50px;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    order: -1;
    height: 300px;
  }
  
  .benefits-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .menu-button {
    display: flex;
  }
  
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    gap: 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  #menu-toggle:checked ~ .nav-list {
    max-height: 300px;
  }
  
  nav li {
    width: 100%;
    text-align: center;
  }
  
  nav a {
    display: block;
    padding: 1rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .overview-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    align-items: center;
  }
}
