/* Base Styles */
:root {
  --primary: #FF5722;
  --secondary: #FF9800;
  --accent: #FFC107;
  --text: #333333;
  --light-text: #ffffff;
  --dark-bg: #1A1A1A;
  --light-bg: #f8f8f8;
  --card-bg: #ffffff;
  --border-radius: 8px;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

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

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

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

ul {
  list-style: none;
}

/* Header Styles */
header {
  background: #fff;
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-svg {
  margin-right: 0.75rem;
}

.logo span {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--text);
  font-weight: 500;
}

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

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--primary);
  height: 3px;
  width: 28px;
  border-radius: 2px;
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  bottom: 8px;
}

.nav-toggle-label span::after {
  top: 8px;
}

/* Banner Section */
.banner {
  padding: 7rem 2rem 5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light-text);
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.banner-text {
  flex: 1;
}

.banner-graphic {
  flex: 1;
  max-width: 500px;
}

.cta-button {
  display: inline-block;
  background: var(--light-text);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  margin-top: 1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: var(--accent);
  color: var(--light-text);
}

.cta-button.large {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Benefits Section */
.benefits {
  padding: 5rem 2rem;
  background: var(--light-bg);
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding-top: 1rem;
}

.benefit-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

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

.benefit-icon {
  margin-bottom: 1.5rem;
}

/* Process Section */
.process {
  padding: 5rem 2rem;
  background: var(--dark-bg);
  color: var(--light-text);
}

.process h2::after {
  background: var(--secondary);
}

.process-steps {
  max-width: 900px;
  margin: 3rem auto 0;
}

.process-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--secondary);
  color: var(--light-text);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.step-content {
  padding-top: 0.5rem;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 30px;
  width: 2px;
  height: calc(100% - 30px);
  background: rgba(255, 255, 255, 0.2);
}

/* Start Section */
.start {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--light-text);
  text-align: center;
}

.start-content {
  max-width: 800px;
  margin: 0 auto;
}

.start h2 {
  margin-bottom: 1rem;
}

.start h2::after {
  display: none;
}

.start p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: var(--dark-bg);
  color: var(--light-text);
  padding-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

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

.footer-logo span {
  font-size: 1.3rem;
  font-weight: bold;
  margin-left: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
}

.footer-section {
  margin-right: 4rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--light-text);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-section ul li {
  margin-bottom: 0.6rem;
}

.footer-section ul li a {
  color: #bbb;
}

.footer-section ul li a:hover {
  color: var(--light-text);
  padding-left: 5px;
}

.copyright {
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
}

.copyright p {
  margin: 0;
}

/* Mobile Responsive */
@media screen and (max-width: 992px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .banner-text {
    order: 1;
  }
  
  .banner-graphic {
    order: 2;
    max-width: 400px;
  }
  
  .benefit-card {
    padding: 2rem 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .nav-toggle-label {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-toggle:checked ~ nav {
    transform: scale(1, 1);
  }
  
  nav ul {
    flex-direction: column;
    padding: 1rem 0;
  }
  
  nav ul li {
    margin: 1rem 2rem;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto 1rem;
  }
  
  .process-step:not(:last-child)::after {
    left: 50%;
    top: 60px;
    width: 2px;
    height: 40px;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 576px) {
  .header-content, .banner-content, .benefits-grid, .process-steps, .footer-content {
    padding: 0 1rem;
  }
  
  .header-content {
    padding: 1rem;
  }
  
  .logo span {
    font-size: 1rem;
  }
  
  .footer-section {
    margin-right: 2rem;
  }
}
