/* Base Styles */
:root {
  --primary-color: #4a00e0;
  --secondary-color: #8e2de2;
  --accent-color: #ff6b6b;
  --text-color: #333;
  --light-text: #666;
  --lighter-text: #888;
  --background-color: #fff;
  --light-bg: #f8f9fa;
  --border-color: #e5e7eb;
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: white;
}

.btn-cta {
  background: linear-gradient(135deg, var(--accent-color), #ff9f43);
  color: white;
  font-size: 1.1rem;
  padding: 16px 32px;
  box-shadow: var(--shadow);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.logo-link:hover {
  color: inherit;
  transform: translateY(-2px);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-icon {
  height: 28px;
  margin-right: 8px;
}

.premium-badge {
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  color: #333;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  margin-left: 8px;
  letter-spacing: 0.5px;
}

.free-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: -5px;
  margin-left: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links .download-btn {
  color: white;
}

.nav-links .download-btn:hover {
  color: white;
}

.download-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.download-btn:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%234a00e0" opacity="0.03"/></svg>');
  opacity: 0.3;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.25rem;
  color: var(--light-text);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.chrome-icon {
  height: 20px;
  margin-right: 8px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.browser-mockup {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.browser-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Features Section */
.features {
  background-color: var(--background-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--light-text);
}

/* Valuation Breakdown Section */
.valuation-breakdown {
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.valuation-breakdown .container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.valuation-content {
  flex: 1;
}

.valuation-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.chart-image {
  max-width: 100%;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}

.valuation-list {
  list-style: none;
  margin: 2rem 0;
}

.valuation-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.valuation-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.highlight {
  font-weight: 600;
  color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
  background-color: var(--background-color);
  text-align: center;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 4rem 0;
}

.step {
  flex: 1;
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -50px;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  z-index: 0;
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-center {
  margin-top: 4rem;
}

/* FAQ Section */
.faq {
  background-color: var(--light-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--light-text);
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.final-cta h2 {
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 5rem 0 3rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-logo {
  max-width: 300px;
}

.footer-logo .logo {
  margin-bottom: 1.5rem;
  color: white;
}

.footer-logo .logo-link:hover {
  transform: none;
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.developer {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.developer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition);
}

.developer a:hover {
  color: white;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-column a:hover {
  color: white;
}

.chrome-store-badge {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.chrome-store-badge p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.chrome-store-badge img {
  height: 50px;
}

/* Legal Pages Styles */
.legal-content {
  padding: 5rem 0;
  background-color: var(--light-bg);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  text-align: center;
}

.effective-date {
  text-align: center;
  color: var(--light-text);
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-section {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.75rem;
  color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.legal-section h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.legal-section p, .legal-section li {
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-section ul, .legal-section ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: var(--primary-color);
  text-decoration: underline;
}

.legal-section a:hover {
  color: var(--secondary-color);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero .container,
  .valuation-breakdown .container {
    flex-direction: column;
    gap: 3rem;
  }

  .steps {
    flex-direction: column;
    gap: 3rem;
  }

  .step::after {
    transform: rotate(90deg);
    top: auto;
    bottom: -40px;
    right: auto;
    left: 50%;
    margin-left: -50px;
  }

  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .features-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .legal-section {
    padding: 1.5rem;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  section {
    padding: 3rem 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .legal-section {
    padding: 1rem;
  }
} 