.waitlist-page {
  background: #f9fafb;
}

/* Pricing Utilities */
.features-grid--align-start {
  align-items: start;
}

.section--muted {
  background: var(--gray-50);
  padding: 80px 0;
}

.container--narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.section-header--left {
  text-align: left;
  margin-bottom: 40px;
}

.text-readable {
  line-height: 1.9;
}

.mt-64 { margin-top: 64px; }
.mb-40 { margin-bottom: 40px; }
.pt-40 { padding-top: 40px; }

/* Container utilities */
.container--small {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.container--compact {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.container--wide {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Grid utilities */
.grid-280 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

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

/* Text helpers */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-gray-600 { color: var(--gray-600); }
.text-muted { color: var(--gray-500); }
.text-sm { font-size: 0.875rem; }
.text-4xl { font-size: 3rem; }
.text-20 { font-size: 1.25rem; }
.text-lg { font-size: 1.125rem; }

.link-primary {
  color: var(--primary-600);
  text-decoration: none;
}

.link-primary:hover {
  text-decoration: underline;
}

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.py-160 { padding: 160px 0; }
.p-48 { padding: 48px; }

.inline-block { display: inline-block; }
.hidden { display: none !important; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.icon-inline-32 {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 8px;
}

.icon-inline-20 {
  width: 20px;
  height: 20px;
  vertical-align: -3px;
  margin-right: 8px;
}

.icon-48 {
  width: 48px;
  height: 48px;
}

.icon-64 {
  width: 64px;
  height: 64px;
}

.button-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-tiles--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.loading--centered { margin: 0 auto; }

.referral-card-hidden { display: none; }
.referral-card-visible { display: block; }

.coming-soon-text {
  text-align: center;
  color: var(--gray-600);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cookie-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
  letter-spacing: -0.02em;
}

.cookie-icon {
  width: 20px;
  height: 20px;
}

.cookie-description {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.cookie-options {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  flex: 1;
  min-width: 200px;
}

.cookie-option input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cookie-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookie-label strong {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.cookie-label small {
  font-size: 12px;
  font-weight: 300;
  color: #666;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}

.cookie-btn-primary {
  background: #000;
  color: #fff;
  border-color: #000;
}

.cookie-btn-primary:hover {
  background: #333;
  border-color: #333;
}

.cookie-btn-secondary {
  background: #fff;
  color: #000;
  border-color: #000;
}

.cookie-btn-secondary:hover {
  background: #f5f5f5;
}

.cookie-btn-text {
  background: none;
  color: #666;
  border: none;
  padding: 12px 16px;
}

.cookie-btn-text:hover {
  color: #000;
}

.cookie-link {
  color: #2563eb;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-container {
    padding: 24px 16px;
  }

  .cookie-options {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-option {
    min-width: 100%;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

/* Beta banner */
.beta-banner {
  background: #000;
  color: #fff;
  border-bottom: 1px solid #333;
  position: relative;
  z-index: 1000;
  font-family: 'Inter', sans-serif;
  animation: beta-slide-down 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

@keyframes beta-slide-down {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.beta-banner--closing {
  opacity: 0;
  transform: translateY(-100%);
}

.beta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.beta-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.beta-badge {
  background: #fff;
  color: #000;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 2px;
}

.beta-text {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.beta-text strong {
  font-weight: 600;
}

.beta-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.beta-link:hover {
  opacity: 0.7;
}

.beta-close {
  background: none;
  border: 1px solid #666;
  color: #fff;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.beta-close:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

@media (max-width: 768px) {
  .beta-container {
    padding: 12px 16px;
    gap: 12px;
  }

  .beta-content {
    gap: 8px;
    font-size: 13px;
  }

  .beta-badge {
    font-size: 10px;
    padding: 3px 8px;
  }
}

.footer-credits {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-500);
}

.footer-credits-row {
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-credits-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-credits-link {
  color: var(--primary-600);
  text-decoration: none;
  font-weight: 600;
}

.footer-credits-link:hover {
  text-decoration: underline;
}

/* Homepage: Featured Skills */
.home-featured {
  padding: 80px 20px;
  background: #fafafa;
}

.home-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.home-section-title {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 16px;
}

.home-section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
}

.home-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.home-skill-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.home-skill-card:hover { transform: translateY(-2px); }

.home-skill-icon {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto 16px;
}

.home-skill-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.home-skill-stats {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.home-skill-cta {
  font-size: 14px;
  color: #2563eb;
  font-weight: 500;
}

.home-skills-footer { text-align: center; }

/* Stat variants */
.stat-number--blue {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-600);
}

.waitlist-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 4rem 2rem 6rem;
  text-align: center;
}

.waitlist-hero .hero-title {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.waitlist-hero .hero-icon {
  width: 56px;
  height: 56px;
}

.waitlist-hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.waitlist-social-proof {
  margin-top: 2rem;
  font-size: 1rem;
  opacity: 0.95;
}

.waitlist-container {
  max-width: 500px;
  margin: -3rem auto 4rem;
  padding: 0 1rem;
}

.waitlist-form-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1f2937;
  font-size: 0.875rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #2563eb;
}

.interest-select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.interest-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
}

.interest-checkbox:hover,
.interest-checkbox.selected {
  border-color: #2563eb;
  background: #eff6ff;
}

.interest-checkbox input {
  margin: 0;
}

.interest-icon {
  width: 40px;
  height: 40px;
}

.interest-label {
  font-weight: 500;
  color: #1f2937;
}

.waitlist-submit {
  width: 100%;
  padding: 1rem;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.waitlist-submit:hover {
  background: #1e40af;
}

.waitlist-submit:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.waitlist-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.waitlist-success.show {
  display: block;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.waitlist-badge {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  margin: 1rem 0;
}

.waitlist-note {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .waitlist-hero .hero-title {
    font-size: 2rem;
  }

  .interest-select {
    grid-template-columns: 1fr;
  }
}
/* JINBO Marketing Website - Conversion Optimized Styles */

/* Navigation */
.nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.nav-brand .brand-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.brand-name {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.brand-korean {
  font-size: var(--text-sm);
  color: var(--gray-500);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* Hero Section */
.hero {
  background: var(--gray-50);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--success-50);
  border: 1px solid var(--success-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
}

.badge {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--success-700);
}

.badge-text {
  font-size: var(--text-sm);
  color: var(--success-600);
}

.hero-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--gray-900);
  margin-bottom: var(--space-6);
}

.text-gradient {
  color: var(--gray-900);
}

.hero-subtitle {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--gray-600);
  margin-bottom: var(--space-8);
}

.hero-benefits {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.benefit {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--success-700);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.btn-subtitle {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  opacity: 0.8;
  margin-top: var(--space-1);
}

.hero-social-proof {
  text-align: center;
}

.social-proof-text {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-4);
}

.social-proof-logos {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.logo-placeholder {
  font-size: var(--text-sm);
  color: var(--gray-400);
  padding: var(--space-2) var(--space-4);
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

/* Features Section */
.features {
  padding: var(--space-16) 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-12);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  text-align: center;
  padding: var(--space-6);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 350px;
  margin: 0 auto;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-3);
  display: block;
}

.feature-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-3);
}

.feature-card p {
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

/* Newsletter Section */
.newsletter {
  background: var(--primary-600);
  color: white;
  padding: var(--space-16) 0;
  text-align: center;
}

.newsletter-content h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.newsletter-content p {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--space-8);
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: var(--space-3);
}

.newsletter-input {
  flex: 1;
  background: white;
  border: none;
}

.newsletter-note {
  font-size: var(--text-sm);
  opacity: 0.7;
  margin-top: var(--space-4);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: var(--space-12) 0 var(--space-6) 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
}

.footer-brand h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.footer-brand p {
  color: var(--gray-400);
}

.footer-links {
  display: flex;
  gap: var(--space-6);
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: var(--text-sm);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    gap: var(--space-4);
  }
  
  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .hero-benefits {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-6);
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

/* Feature Stats */
.feature-stats {
  margin-top: var(--space-3);
  padding: var(--space-2) var(--space-3);
  background: var(--success-50);
  color: var(--success-700);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
}

/* Advanced Features Section */
.advanced-features {
  padding: var(--space-16) 0;
  background: var(--gray-50);
}

.advanced-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 1000px;
  margin: 0 auto;
}

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

.advanced-feature {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: none;
}

.advanced-feature h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}

.advanced-feature ul {
  list-style: none;
  padding: 0;
  margin-top: var(--space-4);
}

.advanced-feature li {
  padding: var(--space-2) 0;
  color: var(--gray-600);
  position: relative;
  padding-left: var(--space-6);
}

.advanced-feature li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-500);
  font-weight: bold;
}

/* Skill Detail Pages */
.skill-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.skill-breadcrumb a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.skill-breadcrumb a:hover {
  color: var(--gray-900);
}

.skill-hero {
  padding: 120px 20px 80px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
  background: white;
}

.skill-hero .hero-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px auto;
  display: block;
}

.skill-hero-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.skill-tagline {
  font-size: 20px;
  color: var(--gray-500);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.skill-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.skill-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
}

.skill-stat-label {
  font-size: 14px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.skill-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  background: white;
}

.skill-section--alt {
  background: var(--gray-50);
}

.skill-section-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 0.05em;
}

.skill-section-description {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.8;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.skills-placeholder {
  text-align: center;
  color: #666;
}

.skill-card {
  border: 1px solid #e5e5e5;
  padding: 30px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.skill-card:hover {
  border-color: var(--gray-900);
}

.skill-level {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.skill-name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.skill-description {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.skill-cta {
  text-align: center;
  padding: 80px 20px;
  background: var(--gray-100);
}

.skill-cta-title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
}

.skill-cta-text {
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.skill-cta .btn {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .skill-hero {
    padding: 80px 16px 60px;
  }

  .skill-hero-title {
    font-size: 38px;
  }

  .skill-stats {
    gap: 24px;
  }
}

/* Icon Headings & Lists */
.text-center {
  text-align: center;
}

.heading-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.heading-with-icon .heading-icon {
  width: 32px;
  height: 32px;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.icon-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.icon-list .list-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Alert */
.alert-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-info .alert-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Demo Landing */
.demo-hero {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.demo-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.demo-hero .hero-heading {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.demo-hero .hero-icon {
  width: 64px;
  height: 64px;
}

.demo-hero > p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.demo-content {
  max-width: 900px;
  margin: -60px auto 0;
  padding: 0 20px 80px;
}

.demo-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  text-align: center;
}

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

.demo-card--details {
  text-align: left;
}

.demo-card-title {
  justify-content: center;
  margin-bottom: 24px;
  text-align: center;
}

.demo-card-text {
  color: var(--gray-500);
  margin-bottom: 30px;
}

.credential-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: grid;
  gap: 12px;
}

.demo-role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.demo-role-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid #bae6fd;
  border-radius: 12px;
  padding: 24px;
}

.demo-role-card .role-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px auto;
}

.demo-role-card h4 {
  font-size: 1.25rem;
  color: #0c4a6e;
  margin-bottom: 8px;
}

.demo-role-card p {
  color: #075985;
  font-size: 0.95rem;
}

.demo-card-note {
  text-align: center;
  color: #6b7280;
  margin-top: 16px;
}

.demo-card-subheading {
  text-align: center;
  color: #6b7280;
  margin-bottom: 30px;
}

.demo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.demo-list {
  color: var(--gray-900);
}

.demo-list--success li {
  color: #166534;
}

.demo-list--warning li {
  color: #991b1b;
}

.demo-heading--success {
  color: #22c55e;
  margin-bottom: 12px;
}

.demo-heading--warning {
  color: #ef4444;
  margin-bottom: 12px;
}

.demo-alert {
  margin-top: 24px;
}

.demo-card--cta {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.demo-card--cta p {
  opacity: 0.9;
}

.demo-card--cta .btn {
  color: #2563eb;
  background: white;
  border-color: white;
  margin-top: 16px;
}

.demo-card--cta .btn:hover {
  transform: translateY(-1px);
}

.demo-cta-note {
  margin-top: 24px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.demo-help-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.demo-card-subtitle {
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* Roadmap Page */
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.status-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: transform 0.2s ease;
}

.status-card:hover {
  transform: translateY(-5px);
}

.status-complete {
  border-color: #22c55e;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.status-future {
  border-color: #8b5cf6;
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.status-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.status-percentage {
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem 0;
  color: #22c55e;
}

.status-future .status-percentage {
  color: #8b5cf6;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 5rem;
}

.timeline-marker {
  position: absolute;
  left: 1rem;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: white;
  border: 3px solid #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-marker img {
  width: 20px;
  height: 20px;
}

.timeline-content h3 {
  color: #22c55e;
  margin-bottom: 0.5rem;
}

.timeline-date {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.timeline-content ul {
  margin-top: 1rem;
}

.timeline-content li {
  margin-bottom: 0.5rem;
}

.future .timeline-marker {
  border-color: #8b5cf6;
}

.future .timeline-content h3 {
  color: #8b5cf6;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-category {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
}

.tech-category h3 {
  color: #2563eb;
  margin-bottom: 1rem;
}

.tech-category ul {
  list-style: none;
  padding: 0;
}

.tech-category li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.tech-category li:before {
  content: '✓';
  color: #22c55e;
  font-weight: bold;
  margin-right: 0.5rem;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem auto;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #22c55e;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .timeline::before {
    left: 1rem;
  }

  .timeline-item {
    padding-left: 3rem;
  }

  .timeline-marker {
    left: 0.5rem;
  }
}
@media (max-width: 768px) {
  .demo-hero {
    padding: 60px 16px;
  }

  .demo-hero > p {
    font-size: 1.1rem;
  }

  .demo-card {
    padding: 24px;
  }
}

/* Marketplace Page */
.marketplace-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-50) 100%);
}

.marketplace-hero .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.marketplace-hero .hero-subtitle {
  font-size: 20px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.marketplace-hero .hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.categories-section {
  padding: 60px 0;
  background: white;
}

.categories-header {
  text-align: center;
  margin-bottom: 48px;
}

.categories-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.categories-header p {
  font-size: 18px;
  color: var(--gray-600);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card:hover {
  border-color: var(--primary-600);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.category-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.category-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.category-count {
  font-size: 13px;
  color: var(--gray-500);
}

.stats-section {
  background: var(--gray-50);
  padding: 60px 0;
  text-align: center;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  justify-items: start;
  align-items: start;
}

.stat-item {
  padding: 0;
  text-align: left;
}

.stat-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 500;
}

/* Stats grid variant: single-row with subtle dividers on desktop */
.stats-grid--row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .stats-grid--row {
    flex-wrap: nowrap;               /* keep all stats on one row on desktop */
    justify-content: space-between;  /* even distribution across width */
    align-items: flex-start;
  }

  .stats-grid--row .stat-item {
    flex: 1 1 0;                     /* equal columns */
    min-width: 0;                    /* allow shrink inside container */
    padding-left: 24px;
    margin-left: 24px;
    position: relative;
  }
  .stats-grid--row .stat-item:first-child {
    padding-left: 0;
    margin-left: 0;
  }
  .stats-grid--row .stat-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--gray-200);
  }
}

/* Prevent awkward wraps for large numbers like 2,200+ */
.stats-grid--row .stat-value { white-space: nowrap; }

.cta-section {
  background: var(--primary-600);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-section .btn-secondary {
  background: white;
  color: var(--primary-600);
}

@media (max-width: 768px) {
  .marketplace-hero .hero-title {
    font-size: 32px;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
  }

  .category-card {
    padding: 16px;
  }

  .category-icon {
    width: 60px;
    height: 60px;
  }
}

/* Roadmap Section */
.roadmap {
  padding: var(--space-16) 0;
  background: white;
}

.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .roadmap-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .roadmap-timeline {
    grid-template-columns: 1fr;
  }
}

.roadmap-phase {
  position: relative;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 2px solid var(--gray-200);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 280px;
}

.roadmap-phase.active {
  border-color: var(--primary-500);
  background: var(--primary-50);
  transform: translateY(-4px);
  box-shadow: none;
}

.roadmap-phase:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.phase-number {
  position: absolute;
  top: -15px;
  left: var(--space-6);
  width: 30px;
  height: 30px;
  background: var(--primary-600);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

.roadmap-phase.active .phase-number {
  background: var(--success-500);
}

.phase-content h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
  margin-top: var(--space-4);
}

.phase-status {
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.phase-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-4);
}

.phase-content li {
  padding: var(--space-1) 0;
  color: var(--gray-600);
  font-size: var(--text-sm);
}

.phase-timeline {
  background: var(--gray-200);
  color: var(--gray-700);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius);
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: center;
}

.roadmap-phase.active .phase-timeline {
  background: var(--success-200);
  color: var(--success-800);
}

/* Market Opportunity Section */
.market-opportunity {
  padding: var(--space-16) 0;
  background: var(--gray-900);
  color: white;
}

.market-opportunity .section-title {
  color: white;
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin: var(--space-8) 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .market-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .market-stats {
    grid-template-columns: 1fr;
  }
}

.market-stat {
  text-align: center;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.market-stat .stat-number {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--success-400);
  display: block;
  margin-bottom: var(--space-2);
}

.market-stat .stat-label {
  font-size: var(--text-sm);
  color: var(--gray-300);
}

.market-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .market-phases {
    grid-template-columns: 1fr;
  }
}

.market-phase {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.market-phase h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--primary-300);
}

.market-phase p {
  color: var(--gray-300);
  margin-bottom: var(--space-4);
}

.revenue-projection {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--success-400);
  text-align: center;
  padding: var(--space-3);
  background: rgba(34, 197, 94, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Conversion Optimization */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  box-shadow: none;
}

.btn-primary:hover {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

.btn-secondary:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* ------------------------------------------------------------
 * Navigation (shared)
 * ------------------------------------------------------------ */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100000;
  position: relative;
}

.hamburger-menu span {
  width: 30px;
  height: 3px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 99999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.mobile-nav.is-active {
  display: flex;
  transform: translateY(0);
}

.mobile-nav-link {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-900);
  text-decoration: none;
  margin-bottom: 32px;
}

.mobile-nav-link.btn-primary {
  padding: 16px 32px;
  font-size: 20px;
}

.hamburger-menu.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-menu.is-active span:nth-child(2) { opacity: 0; }
.hamburger-menu.is-active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger-menu { display: flex; }
}

/* Analytics Event Tracking */
[onclick^="trackEvent"] {
  cursor: pointer;
}

/* ------------------------------------------------------------
 * Category Landing Pages
 * ------------------------------------------------------------ */
.category-page {
  --category-color: #4a90e2;
  --category-color-light: rgba(74, 144, 226, 0.1);
  --category-color-medium: rgba(74, 144, 226, 0.3);
  background: var(--white);
  color: var(--black);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.category-page .category-hero {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.category-page .hero-content .category-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--category-color);
  margin-bottom: 16px;
}

.category-page .hero-content h1 {
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.category-page .hero-content p {
  font-size: 20px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 32px;
}

.category-page .hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.category-page .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-page .hero-visual svg,
.category-page .hero-visual img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.category-page .skills-section {
  background: var(--gray-50);
  padding: 80px 24px;
}

.category-page .skills-container {
  max-width: 1200px;
  margin: 0 auto;
}

.category-page .skills-container h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-align: center;
}

.category-page .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.category-page .skill-card {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-page .skill-card:hover {
  border-color: var(--category-color);
  transform: translateY(-4px);
}

.category-page .skill-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.category-page .skill-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.6;
}

.category-page .how-it-works {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

.category-page .how-it-works h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-align: center;
}

.category-page .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}

.category-page .step {
  text-align: center;
}

.category-page .step-number {
  width: 64px;
  height: 64px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.category-page .step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.category-page .step p {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.6;
}

.category-page .cta-section {
  background: var(--black);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.category-page .cta-section h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
}

.category-page .cta-section p {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 32px;
}

.category-page .cta-section .btn {
  display: inline-block;
  min-width: 220px;
}

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

  .category-page .hero-content h1 {
    font-size: 36px;
  }

  .category-page .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .category-page .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
}

.category-academic { --category-color: #27ae60; }
.category-alternative-medicine { --category-color: #27ae60; }
.category-animal-training { --category-color: #d35400; }
.category-automotive { --category-color: #95a5a6; }
.category-business { --category-color: #2c3e50; }
.category-cooking { --category-color: #f39c12; }
.category-crafts { --category-color: #d35400; }
.category-cycling { --category-color: #2ecc71; }
.category-data-science { --category-color: #3498db; }
.category-dance { --category-color: #e91e63; }
.category-design { --category-color: #9b59b6; }
.category-digital-arts { --category-color: #8e44ad; }
.category-extreme-sports { --category-color: #c0392b; }
.category-finance { --category-color: #2c3e50; }
.category-fitness { --category-color: #e74c3c; }
.category-games { --category-color: #e67e22; }
.category-gaming { --category-color: #8e44ad; }
.category-health { --category-color: #e74c3c; }
.category-home-garden { --category-color: #27ae60; }
.category-languages { --category-color: #27ae60; }
.category-marketing { --category-color: #e67e22; }
.category-martial-arts { --category-color: #34495e; }
.category-music { --category-color: #e67e22; }
.category-parenting { --category-color: #f39c12; }
.category-performing-arts { --category-color: #e91e63; }
.category-photography { --category-color: #95a5a6; }
.category-professional-dev { --category-color: #34495e; }
.category-programming { --category-color: #6b5b95; }
.category-racquet-sports { --category-color: #16a085; }
.category-running { --category-color: #e74c3c; }
.category-social-skills { --category-color: #e91e63; }
.category-team-sports { --category-color: #d35400; }
.category-tech-skills { --category-color: #2c3e50; }
.category-test-prep { --category-color: #f39c12; }
.category-unique-skills { --category-color: #9b59b6; }
.category-visual-arts { --category-color: #9b59b6; }
.category-water-sports { --category-color: #4a90e2; }
.category-wellness { --category-color: #16a085; }
.category-winter-sports { --category-color: #3498db; }
.category-writing { --category-color: #34495e; }

.category-page .cta-section .btn-secondary {
  background: var(--white);
  color: var(--black);
}

.category-page .cta-section .btn-secondary:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Category Page: Swimming (scoped) */
.category-swimming .skill-hero {
  background: var(--white);
  border-bottom: 2px solid var(--black);
  padding: 80px 24px 60px;
}

.category-swimming .skill-hero .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.category-swimming .hero-text h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.category-swimming .hero-text .category {
  font-size: 14px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.category-swimming .hero-text .description {
  font-size: 20px;
  color: var(--gray-600);
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.category-swimming .hero-text .bilingual {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.category-swimming .hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.category-swimming .hero-cta { display: flex; gap: 16px; }

.category-swimming .hero-visual { display: flex; justify-content: center; align-items: center; }
.category-swimming .hero-visual img { max-width: 100%; height: auto; }

/* Category sections */
.category-swimming .skills-section,
.category-swimming .achievements-section { max-width: 1200px; margin: 0 auto; padding: 80px 24px; }

.category-swimming .skills-section h2,
.category-swimming .achievements-section h2,
.category-swimming .coaches-section h2,
.category-swimming .pricing-section h2,
.category-swimming .cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  text-align: center;
}

.category-swimming .skills-section .subtitle,
.category-swimming .achievements-section .subtitle { font-size: 18px; color: var(--gray-600); margin: 0 0 48px 0; text-align: center; }

.category-swimming .skills-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.category-swimming .skill-card { background: var(--white); border: 2px solid var(--gray-200); padding: 24px; transition: all 0.2s; }
.category-swimming .skill-card:hover { border-color: var(--black); transform: translateY(-2px); }
.category-swimming .skill-card h3 { font-size: 20px; font-weight: 600; color: var(--black); margin: 0 0 12px 0; }
.category-swimming .skill-card .description { font-size: 14px; color: var(--gray-600); margin: 0 0 16px 0; line-height: 1.5; }
.category-swimming .skill-card .level { font-size: 12px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.05em; }

.category-swimming .coaches-section { background: var(--gray-50); border-top: 2px solid var(--black); border-bottom: 2px solid var(--black); padding: 80px 24px; }
.category-swimming .coaches-container { max-width: 1200px; margin: 0 auto; }
.category-swimming .coaches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.category-swimming .coach-card { background: var(--white); border: 2px solid var(--black); padding: 24px; text-align: center; transition: all 0.2s; text-decoration: none; color: inherit; display: block; }
.category-swimming .coach-card:hover { transform: translateY(-4px); }
.category-swimming .coach-avatar { width: 80px; height: 80px; background: var(--gray-200); border: 2px solid var(--black); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; }
.category-swimming .coach-card h3 { font-size: 18px; font-weight: 600; color: var(--black); margin: 0 0 8px 0; }
.category-swimming .coach-card .specialty { font-size: 14px; color: var(--gray-600); margin: 0 0 16px 0; }
.category-swimming .coach-card .stats { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; font-size: 12px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.05em; }
.category-swimming .coach-card .rating { font-size: 14px; color: var(--black); font-weight: 600; }

.category-swimming .achievements-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.category-swimming .achievement-card { background: var(--white); border: 2px solid var(--gray-200); padding: 24px; text-align: center; transition: all 0.2s; }
.category-swimming .achievement-card:hover { border-color: var(--black); }
.category-swimming .achievement-icon { font-size: 48px; margin-bottom: 16px; }
.category-swimming .achievement-card .rarity { font-size: 12px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.05em; }

.category-swimming .pricing-section { background: var(--gray-50); border-top: 2px solid var(--black); padding: 80px 24px; }
.category-swimming .pricing-container { max-width: 1200px; margin: 0 auto; }
.category-swimming .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.category-swimming .pricing-card { background: var(--white); border: 2px solid var(--black); padding: 32px; }
.category-swimming .pricing-card.featured { background: var(--black); color: var(--white); }
.category-swimming .pricing-card .period { font-size: 14px; color: var(--gray-600); }
.category-swimming .pricing-card.featured .period { color: var(--gray-200); }
.category-swimming .pricing-card ul { list-style: none; padding: 0; margin: 24px 0; }
.category-swimming .pricing-card li { padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--gray-200); }
.category-swimming .pricing-card.featured li { border-bottom-color: var(--gray-600); }
.category-swimming .pricing-card .btn { width: 100%; text-align: center; display: block; }

.category-swimming .cta-section { max-width: 800px; margin: 0 auto; padding: 80px 24px; text-align: center; }
.category-swimming .cta-section p { font-size: 18px; color: var(--gray-600); margin: 0 0 32px 0; }

@media (max-width: 768px) {
  .category-swimming .skill-hero .hero-content { grid-template-columns: 1fr; }
  .category-swimming .hero-text h1 { font-size: 36px; }
  .category-swimming .hero-cta { flex-direction: column; }
  .category-swimming .btn { width: 100%; text-align: center; }
}
