/* Base Styles */
:root {
  --primary: #fbbf24;
  --primary-hover: #f59e0b;
  --background: #000000;
  --foreground: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 0.5rem;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--foreground);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

/* Gradient Background */
.gradient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom right, #f9f9ff, #ffffff, #f0f8ff);
  overflow: hidden;
}

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.3), rgba(138, 43, 226, 0.1));
  animation: float 20s ease-in-out infinite alternate;
}

.blob-2 {
  top: 30%;
  right: -15%;
  width: 45%;
  height: 45%;
  background: radial-gradient(circle, rgba(100, 149, 237, 0.3), rgba(100, 149, 237, 0.1));
  animation: float 25s ease-in-out infinite alternate-reverse;
}

.blob-3 {
  bottom: -15%;
  left: 20%;
  width: 35%;
  height: 35%;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.2), rgba(255, 182, 193, 0.05));
  animation: float 18s ease-in-out infinite alternate;
}

.blob-4 {
  top: 40%;
  left: 30%;
  width: 25%;
  height: 25%;
  background: radial-gradient(circle, rgba(173, 216, 230, 0.2), rgba(173, 216, 230, 0.05));
  animation: float 22s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(5%, 5%) scale(1.05);
  }
  100% {
    transform: translate(-5%, -5%) scale(0.95);
  }
}

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

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

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

h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

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

p {
  margin-bottom: 1rem;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 1rem;
}

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

.primary-button:hover {
  background-color: var(--primary-hover);
  color: var(--background);
}

.section-header {
  text-align: center;
  margin: 2rem 1.5rem 3rem 1.5rem;
}

.subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
  margin-bottom: 0.75rem;
}

/* Navbar */
header {
  padding: 1.5rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  border-radius: var(--radius);
}

.nav-links {
  display: flex;
  gap: 2rem;
  color: var(--background);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

/* Hero Section */
.hero {
  padding: 4rem 1rem 2rem;
}

.hero-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-image {
  flex: 1;
}

.screenshot-container {
  background-color: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.screenshot-container img {
  width: 100%;
  height: auto;
  display: block;
}

.chrome-store-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 0.5rem;
  transition: transform 0.2s;
}

.chrome-store-button:hover {
  transform: translateY(-2px);
  background-color: var(--primary-hover);
}

.chrome-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--background);
}

.chrome-small {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 0.6875rem;
  margin: 0;
}

.chrome-large {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 0.875rem;
  margin: 0;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-icon {
  border-radius: var(--radius);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Screenshot Section */
.screenshot-section {
  padding: 2rem 1rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 4rem 0;
}

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

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.feature-icon {
  margin-bottom: 1rem;
  color: var(--primary);
}

.install-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #f9f9ff, #f0f8ff);
}

.install-card .button {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  gap: 0.5rem;
}

/* Pricing Section */
.pricing {
  padding: 4rem 0;
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  min-width: 250px;
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
  text-align: center;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
}

.price {
  margin: 1rem 0;
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.period {
  color: var(--muted);
}

.pricing-note {
  text-align: center;
  margin: 2rem 1.5rem;
  color: var(--muted);
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
}

.accordion {
  max-width: 48rem;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background-color: white;
  border: 1px solid var(--border);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.accordion-header:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.accordion-icon {
  transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

/* Contact Form Section */
.contact {
  padding: 4rem 0;
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-form-container {
  max-width: 36rem;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-info {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
}

/* About Us Section */
.about {
  padding: 4rem 0;
}

.about-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-info {
  max-width: 20rem;
}

.footer-info p {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-copyright {
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    padding: 0.25rem 1.25rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 2rem 0 1rem;
  }

  .form-row {
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--background);
    padding: 1rem;
    box-shadow: var(--shadow);
    z-index: 100;
  }

  .menu-toggle {
    display: block;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .screenshot-container {
    margin: 0;
  }

  .section-header {
    margin: 1.5rem 1.25rem 2.5rem 1.25rem;
  }

  .pricing-note {
    margin: 2rem 1.25rem;
  }

  .hero-icon {
    width: 36px;
    height: 36px;
  }

  .screenshot-section {
    padding: 1rem 1.25rem 2rem;
  }
}

