/* Base Variables */
:root {
  --primary: #FF6B35;
  --secondary: #004E89;
  --accent: #00A5CF;
  --dark: #2B2D42;
  --light: #FFFFFF;
  --gray: #8D99AE;
  --light-bg: #F8F9FA;
  --gradient: linear-gradient(135deg, #FF6B35 0%, #F7C59F 100%);
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  --radius: 10px;
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  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(--dark);
  background-color: var(--light);
}

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

ul {
  list-style: none;
}

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

.highlight {
  color: var(--primary);
}

/* Header Styles */
header {
  background-color: var(--light);
  padding: 15px 0;
  box-shadow: var(--shadow);
  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: 10px;
}

.logo-text {
  font-weight: bold;
  font-size: 18px;
  color: var(--dark);
}

/* Navigation Styles */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  width: 30px;
  height: 21px;
  position: relative;
  cursor: pointer;
  z-index: 10;
}

.menu-icon span, 
.menu-icon span:before, 
.menu-icon span:after {
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  position: absolute;
  transition: var(--transition);
}

.menu-icon span {
  top: 9px;
}

.menu-icon span:before {
  content: '';
  top: -9px;
}

.menu-icon span:after {
  content: '';
  top: 9px;
}

nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

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

nav a:not(.cta-button-small):after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

nav a:not(.cta-button-small):hover:after {
  width: 100%;
}

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

.cta-button-small {
  background-color: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
}

.cta-button-small:hover {
  background-color: #e45a25;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

.cta-button {
  background: var(--gradient);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-button.large {
  padding: 16px 40px;
  font-size: 1.2rem;
}

.secondary-button {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

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

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-graphic {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-circle {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.8;
  animation: pulse 3s infinite alternate;
}

.ai-text {
  font-size: 100px;
  font-weight: 900;
  color: white;
  position: relative;
  z-index: 2;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ai-lines {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  animation: rotate 20s linear infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Create Section */
.create-section {
  padding: 100px 0;
  background-color: var(--light-bg);
  text-align: center;
}

.create-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.step {
  max-width: 250px;
  text-align: center;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  color: white;
  font-size: 30px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.create-cta {
  margin-top: 40px;
}

/* Features Section */
.features {
  padding: 100px 0;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature {
  background-color: var(--light);
  border-radius: var(--radius);
  padding: 30px 20px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.feature-icon {
  margin: 0 auto 20px;
  width: 70px;
  height: 70px;
}

.feature h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

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

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: var(--light-bg);
  text-align: center;
}

.faq h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: var(--radius);
  padding: 30px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

.faq-item p {
  color: var(--gray);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--gradient);
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.cta-section .cta-button:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  padding: 70px 0 30px;
  background-color: var(--dark);
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

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

.footer-logo p {
  opacity: 0.7;
}

.footer-links h4 {
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content p {
    margin: 0 auto 30px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding-top: 80px;
    transition: 0.4s;
  }
  
  nav ul {
    flex-direction: column;
    gap: 20px;
    padding: 0 30px;
  }
  
  .menu-toggle:checked ~ nav {
    right: 0;
  }
  
  .menu-toggle:checked ~ .menu-icon span {
    background-color: transparent;
  }
  
  .menu-toggle:checked ~ .menu-icon span:before {
    transform: rotate(45deg);
    top: 0;
  }
  
  .menu-toggle:checked ~ .menu-icon span:after {
    transform: rotate(-45deg);
    top: 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-button, .secondary-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
