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

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: #18181b;
  line-height: 1.6;
  background: #fafaf9;
}

.theme-6 {
  --accent-color: #7c3aed;
  --accent-light: #8b5cf6;
  --text-dark: #18181b;
  --text-medium: #52525b;
  --bg-light: #fafaf9;
  --bg-white: #ffffff;
}

.inner-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.header-bar {
  background: var(--bg-white);
  border-bottom: 1px solid #e4e4e7;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav a {
  text-decoration: none;
  color: var(--text-medium);
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--accent-color);
}

.hero-banner {
  padding: 90px 0;
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.label-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-color);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-description {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 32px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-button {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  transition: all 0.3s;
}

.hero-button:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.stats-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-item {
  text-align: center;
}

.stat-fig {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 8px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.stat-text {
  font-size: 14px;
  color: var(--text-medium);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.divider {
  height: 1px;
  background: #e4e4e7;
}

.services-panel {
  padding: 80px 0;
  background: var(--bg-white);
}

.panel-heading {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  color: var(--text-dark);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  padding: 36px 28px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid #e4e4e7;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  background: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.service-card p {
  color: var(--text-medium);
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
}

.about-panel {
  padding: 80px 0;
  background: var(--bg-light);
}

.about-layout h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--text-dark);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.check-mark {
  width: 28px;
  height: 28px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 19px;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.feature-content p {
  color: var(--text-medium);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
}

.site-footer {
  background: var(--text-dark);
  color: white;
  padding: 28px 0;
  text-align: center;
}

.site-footer p {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-heading {
    font-size: 34px;
  }

  .header-nav {
    gap: 16px;
    font-size: 13px;
  }
}
