/* ===== HEADER ===== */
.header {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  padding: 1rem;
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

.header-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.header-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.header-logo:hover {
  opacity: 0.9;
}

.header-link {
  background: rgba(255,255,255,0.15);
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.2);
}

.header-link:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  padding: 2.5rem 1rem 3.5rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== STATS ===== */
.stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: -2rem;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}

.stat-card {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
  border: 1px solid var(--gray-100);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--purple);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ===== TRUST BADGES ===== */
.trust-section {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 0 1rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.badge-icon {
  width: 24px;
  height: 24px;
  background: var(--purple-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* ===== MAIN CONTAINER ===== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 1rem 4rem;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--gray-50);
  padding: 4rem 1rem;
  border-top: 1px solid var(--gray-200);
}

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

.why-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.why-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===== SEO SECTIONS ===== */
.seo-section {
  padding: 4rem 1rem;
  border-top: 1px solid var(--gray-200);
}

.seo-faq-section {
  background: var(--gray-50);
  padding: 4rem 1rem;
  border-top: 1px solid var(--gray-200);
}

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

.seo-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.seo-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.seo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.seo-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.seo-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gray-400);
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 3rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-contact-link {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-contact-link:hover {
  color: var(--white);
}

.footer-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--purple);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  margin-bottom: 1.5rem;
}

.footer-link:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-500);
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-800);
}

.admin-link {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.75rem;
  cursor: pointer;
  transition: color 0.2s;
}

.admin-link:hover { color: var(--gray-400); }
