/* Global styles */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f9fafb;
  color: #111;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Modern Header */
.header {
  background: linear-gradient(135deg, #111 0%, #1e1e1e 100%);
  color: white;
  padding: 2rem 1.5rem;
  text-align: center;
  border-bottom: 3px solid #ff4500;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.logo-img {
  width: 90px;
  object-fit: contain;
}


.brand-text {
  text-align: left;
}

.brand-name {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0;
}

.tagline {
  font-size: 1rem;
  font-weight: 400;
  color: #ddd;
  margin-top: 0.2rem;
}

/* Animation */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  width: 28px;
  height: 28px;
}


/* Hero */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 700px;
  margin: auto;
}
.hero h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.hero p {
  color: #4b5563;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #CC0605;
  color: white;
}
.btn-primary:hover {
  background: #CC0605;
  transform: translateY(-2px);
}
.btn-secondary {
  border: 2px solid #e5e7eb;
  color: #111;
}
.btn-secondary:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

/* Features */
.features {
  background: white;
  padding: 4rem 1rem;
  border-top: 1px solid #e5e7eb;
}
.features h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: auto;
}
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.feature-card h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: #CC0605;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: auto;
}

/* Screenshots Section */
.screenshots {
  padding: 0 4rem 4rem 2rem;
  text-align: center;
  background: #f9f9f9;
}

.screenshots h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.screenshot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.screenshot-card {
  max-width: 300px;
  text-align: center;
}

.screenshot-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.screenshot-img:hover {
  transform: scale(1.05);
}

.caption {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #555;
}



/* FAQ Section */
.faq {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
}

.faq h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #222;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* About Section */
.about {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about p:last-child {
  margin-bottom: 0;
}


/* Animations */
.opacity-0 { opacity: 0; }
.fade-in {
  opacity: 1;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateY(0);
}
.feature-card.opacity-0 { transform: translateY(20px); }

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.btn {
  position: relative;
  overflow: hidden;
}
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
