/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  margin-top: 70px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/pattern.svg');
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Features */
.features {
  background: var(--bg-white);
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

/* Info Section */
.info-section {
  background: var(--bg-light);
}

.info-content {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-content h3 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border-color);
}

.info-content h3:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.info-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.info-content li {
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}

/* Important Info Box */
.important-box {
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}

.important-box h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  border: none;
  margin-top: 0;
  padding-top: 0;
}

.important-box ul {
  list-style: none;
  margin-left: 0;
}

.important-box li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

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

/* Legal Alert */
.legal-alert {
  background: #fef9c3;
  border-left: 6px solid var(--warning);
  border-radius: 8px;
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.legal-alert strong {
  display: block;
  color: #92400e;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.legal-alert p {
  color: #78350f;
  font-size: 1rem;
  margin: 0;
}

/* Keywords Section */
.keywords {
  background: var(--bg-white);
  padding: 3rem 0;
}

.keywords-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.keyword-tag {
  background: linear-gradient(135deg, #e0e7ff, #f0f9ff);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.keyword-tag:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-company {
  font-size: 0.75rem;
  line-height: 1.4;
  opacity: 0.5;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-company p {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Policy Pages */
.policy-page {
  margin-top: 90px;
  padding: 4rem 0;
  background: var(--bg-white);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 2rem;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.policy-content p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.75rem;
  color: var(--text-gray);
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .info-content {
    padding: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
