/* Base Styles */
:root {
  --primary: #06b6d4; /* Cyan */
  --secondary: #9333ea; /* Purple */
  --dark: #0f172a;
  --light: #f8fafc;
  --text: #334155;
  --muted: #64748b;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --border-radius: 12px;
}

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

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

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

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

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
}

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

p {
  margin-bottom: 1rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: white;
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--secondary);
}

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

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.25rem;
}

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

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

.main-nav ul {
  display: flex;
  gap: 1.5rem;
}

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--dark);
  border-radius: 3px;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
  background-color: white;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content {
  flex: 1;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.disclaimer {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-visual {
  flex: 1;
  position: relative;
}

.hero-graphic {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.rating {
  position: absolute;
  bottom: 0;
  right: 10px;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 1.25rem;
  line-height: 1.2;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--light);
  position: relative;
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.feature-card h3 {
  color: var(--dark);
}

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

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background-color: white;
}

.steps {
  margin: 3rem 0;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateX(10px);
}

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

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: 2rem;
  box-shadow: var(--shadow-md);
}

.step-content {
  flex: 1;
}

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

/* Examples Section */
.examples {
  padding: 5rem 0;
  background-color: var(--light);
}

.example-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

.example-text {
  flex: 1;
}

.check-list {
  margin: 1.5rem 0;
}

.check-list li {
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
}

.example-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
}

.example-svg {
  max-width: 300px;
  width: 100%;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: white;
}

.faq-items {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--dark);
  position: relative;
}

.answer {
  margin-top: 1rem;
}

/* Footer */
footer {
  background: var(--gradient);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

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

.footer-logo img {
  margin-right: 0.75rem;
}

.footer-logo span {
  font-weight: 600;
  font-size: 1.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

.disclaimer {
  opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    order: 1;
  }
  
  .hero-cta {
    align-items: center;
  }
  
  .hero-visual {
    order: 0;
    margin-bottom: 2rem;
  }
  
  .example-content {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
  }
  
  .main-nav ul.active {
    display: flex;
  }
  
  .main-nav ul li {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top, .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
