/* Landing page (index.html) */

/* Notification ticker */

.notification-ticker {
  max-width: 440px;
  margin: 0 auto;
  padding: 16px 20px 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  justify-content: center;
  
}

.notification-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: notification-pulse 2s ease-in-out infinite;
}

@keyframes notification-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

.notification-text {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  transition: opacity 0.35s ease;
}

.notification-text.is-fading {
  opacity: 0;
}

/* Main Card */
.offer-card {
  background: white;
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.header-icon-image {
  width: 142px;
}

.offer-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-top: 26px;
  margin-bottom: 10px;
}

.offer-subtitle {
  font-size: 14px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.offer-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 26px;
  font-weight: 400;
}

/* Offer Terms Section */
.offer-terms-section {
  background: #e2f0ff;
  border: 1px solid #0066cc;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
}

.offer-terms-title {
  font-size: 18px;
  font-weight: 700;
  color: #0066cc;
}

.offer-terms-text {
  font-size: 14px;
  color: #0066cc;
  font-weight: 400;
}

/* Benefits Section */
.benefits-section {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: left;
}

.benefit-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.check-icon {
  background: #10b981;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-text {
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
}

/* Steps Section */
.steps-section {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.steps-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
}

.step {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
  font-weight: 500;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  background: #0066cc;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-text {
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.5;
  text-align: left;
}

.cta-button {
  margin-bottom: 16px;
}

.disclaimer-text {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

/* FAQ Section */
.faq-section {
  margin-top: 24px;
}

.faq-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  text-align: center;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-header {
  padding: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  color: #1a1a1a;
  user-select: none;
  transition: background-color 0.2s ease;
}

.faq-header:hover {
  background-color: #f9f9f9;
}

.faq-toggle {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: #666;
  padding-left: 20px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
  max-height: 500px;
}

.faq-text {
  padding: 0 16px 16px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .container {
    padding: 16px;
  }

  .offer-card {
    padding: 32px 20px;
  }
}
