:root {
  /* Modern emerald + purple accent (vibrant) */
  --color-primary: #10B981;
  --color-primary-hover: #059669;
  --color-primary-tint: #D1FAE5;

  --color-secondary: #8B5CF6;
  --color-secondary-hover: #7C3AED;
  --color-secondary-tint: #EDE9FE;

  --color-text: #111827;
  --color-text-muted: #6B7280;

  --color-bg: #F9FAFB;
  --color-surface: #FFFFFF;
  --color-card: #FFFFFF;
  --color-border: #E5E7EB;

  --color-dark: #0F172A;
  --color-dark-surface: #1E293B;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow-primary: 0 8px 32px rgba(16, 185, 129, 0.35);
  --shadow-glow-secondary: 0 8px 32px rgba(139, 92, 246, 0.35);

  --container: 1320px;
  --gutter: 24px;
}


.droip-s805-mc_main_nav{
	display: flex;
    align-items: center;
    box-shadow: rgba(255, 255, 255, 0.9) 1px 1px 2px inset, rgba(0, 0, 0, 0.05) -1px -1px 2px inset, rgba(0, 0, 0, 0.06) 0px 2px 8px;
    gap: 4px;
    background: linear-gradient(145deg, rgb(241, 245, 249) 0%, rgb(226, 232, 240) 100%);
    padding: 6px;
    border-radius: 999px;
}

.droip-s805-nav a {
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Shine effect on nav items */
.droip-s805-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.4s ease;
  pointer-events: none;
}

.droip-s805-nav a:hover::before {
  left: 100%;
}

.droip-s805-nav a:hover { 
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 
    0 4px 12px rgba(16, 185, 129, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.05);
}

.droip-s805-nav a.active, .droip-s805-nav .droip-active-link,
.droip-s805-nav a[aria-current="page"] {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0D9488 100%);
  color: #fff !important;
  box-shadow: 
    inset 0 2px 2px rgba(255, 255, 255, 0.3),
    0 4px 16px rgba(16, 185, 129, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.droip-s805-nav a.active:hover,
.droip-s805-nav a[aria-current="page"]:hover {
  transform: translateY(-2px);
  box-shadow: 
    inset 0 2px 2px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(16, 185, 129, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.1);
}

.mc_hero {
  background:
    radial-gradient(ellipse 120% 80% at 20% 120%, rgba(16, 185, 129, 0.35), transparent 50%),
    radial-gradient(ellipse 100% 70% at 80% -20%, rgba(147, 51, 234, 0.4), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(16, 185, 129, 0.12), transparent 70%),
    linear-gradient(135deg, #2E1065 0%, #134E4A 30%, #0D3D38 50%, #3B0764 70%, #4C1D95 100%);
  color: #fff;
}

.mc_hero { padding: 72px 0 88px; }
.mc_hero {
  background:
    radial-gradient(ellipse 120% 80% at 20% 120%, rgba(16, 185, 129, 0.35), transparent 50%),
    radial-gradient(ellipse 100% 70% at 80% -20%, rgba(147, 51, 234, 0.4), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(16, 185, 129, 0.12), transparent 70%),
    linear-gradient(135deg, #2E1065 0%, #134E4A 30%, #0D3D38 50%, #3B0764 70%, #4C1D95 100%);
  color: #fff;
}

.mc_hero .kicker,
.mc_hero .muted,
.mc_hero .hero-feature-meta {
  color: rgba(255, 255, 255, 0.7);
}

.mc_hero .mc_btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.mc_hero .mc_btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.mc_hero .hero-feature-cta {
  color: #fff;
}

.mc_hero .hero-feature-price {
  color: #fff;
}

/* Buttons */
.mc_btn, .droip-s804-mc_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
	text-decoration: none;
}

.mc_btn-primary, .droip-s804-mc_btn-primary {
  background: linear-gradient(180deg, #10B981 0%, #059669 100%);
  color: #fff;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    0 2px 4px rgba(16, 185, 129, 0.25),
    0 4px 8px rgba(16, 185, 129, 0.15);
}

.mc_btn-primary:hover { 
  transform: translateY(-2px);
	color: #fff !important;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    0 4px 8px rgba(16, 185, 129, 0.3),
    0 8px 16px rgba(16, 185, 129, 0.2);
}

.mc_btn-primary:active {
  transform: translateY(0);
  box-shadow: 
    inset 0 2px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(16, 185, 129, 0.2);
}

.mc_btn-outline {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    0 1px 3px rgba(0, 0, 0, 0.05);
}

.mc_btn-outline:hover { 
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    0 4px 8px rgba(16, 185, 129, 0.15);
}

.mc_btn-link {
  background: transparent;
  border-color: transparent;
  color: var(--color-text);
}

.mc_btn-link:hover { background: rgba(15, 138, 106, 0.06); }

.mc_input {
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  padding: 0 16px;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: all 0.2s ease;
}

.droip-s804-mc_input {
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  padding: 0 16px;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: all 0.2s ease;
}



/* DUMP FROM TEMP CSS */


/* ModusClass design handoff — tokens + components */


* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--color-text);
  background: #F8FAFC;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

[class*="-container"]
{
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

/* Typography */
.h1 { font-size: 44px; line-height: 52px; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.h2 { font-size: 32px; line-height: 40px; font-weight: 700; margin: 0; }
.h3 { font-size: 24px; line-height: 32px; font-weight: 700; margin: 0; }
.p { font-size: 16px; line-height: 24px; margin: 0; }
.small { font-size: 14px; line-height: 20px; }
.muted { color: var(--color-text-muted); }

[class*="-kicker"] {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--color-text-muted);
}

.mark-secondary { 
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
[class*="-site-header"] {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

[class*="-header-inner"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}


[class*="-brand"] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

[class*="-brand-logo"] {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Old text logo styles kept for reference but not used */
[class*="-brand-badge"] {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: linear-gradient(135deg, var(--color-secondary-tint), #fff);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--color-secondary);
}

[class*="-brand-name"] {
  font-weight: 800;
  letter-spacing: -0.01em;
}

[class*="-brand-name"] .accent { color: var(--color-primary); }

[class*="-nav"] {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(145deg, #F1F5F9 0%, #E2E8F0 100%);
  padding: 6px;
  border-radius: 999px;
  box-shadow: 
    inset 1px 1px 2px rgba(255, 255, 255, 0.9),
    inset -1px -1px 2px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.06);
}

[class*="-nav"] a {
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Shine effect on nav items */
[class*="-nav"] a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.4s ease;
  pointer-events: none;
}

[class*="-nav"] a:hover::before {
  left: 100%;
}

[class*="-nav"] a:hover { 
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 
    0 4px 12px rgba(16, 185, 129, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.05);
}

[class*="-nav"] a.active,
[class*="-nav"] a[aria-current="page"] {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0D9488 100%);
  color: #fff;
  box-shadow: 
    inset 0 2px 2px rgba(255, 255, 255, 0.3),
    0 4px 16px rgba(16, 185, 129, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

[class*="-nav"] .droip-active-link{
  background: linear-gradient(135deg, var(--color-primary) 0%, #0D9488 100%);
  color: #fff !important;
  box-shadow: 
    inset 0 2px 2px rgba(255, 255, 255, 0.3),
    0 4px 16px rgba(16, 185, 129, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

[class*="-nav"] a.active:hover,
[class*="-nav"] a[aria-current="page"]:hover {
  transform: translateY(-2px);
  box-shadow: 
    inset 0 2px 2px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(16, 185, 129, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.1);
}

[class*="-header-actions"] {
  display: flex;
  align-items: center;
  gap: 12px;
}

[class*="-btn"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

[class*="-btn-primary"] {
  background: linear-gradient(180deg, #10B981 0%, #059669 100%);
  color: #fff;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    0 2px 4px rgba(16, 185, 129, 0.25),
    0 4px 8px rgba(16, 185, 129, 0.15);
}

[class*="-btn-primary"]:hover { 
  transform: translateY(-2px);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    0 4px 8px rgba(16, 185, 129, 0.3),
    0 8px 16px rgba(16, 185, 129, 0.2);
}

[class*="-btn-primary"]:active {
  transform: translateY(0);
  box-shadow: 
    inset 0 2px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(16, 185, 129, 0.2);
}

[class*="-btn-outline"] {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    0 1px 3px rgba(0, 0, 0, 0.05);
}

[class*="-btn-outline"]:hover { 
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    0 4px 8px rgba(16, 185, 129, 0.15);
}

.btn-link {
  background: transparent;
  border-color: transparent;
  color: var(--color-text);
}

.btn-link:hover { background: rgba(15, 138, 106, 0.06); }

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* Mobile nav */
[class*="-nav-toggle"] {
  display: none;
  height: 44px;
  width: 44px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #F1F5F9;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s ease;
}

[class*="-nav-toggle"]:hover {
  background: #E2E8F0;
}

[class*="-nav-toggle"] svg path {
  stroke: var(--color-text);
}

[class*="-mobile-panel"] {
  display: none;
  border-top: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[class*="-mobile-panel"] .container {
  padding: 16px 0 24px;
}

[class*="-mobile-panel"] a {
  display: block;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 4px;
}

/* Gradient underline effect */
[class*="-mobile-panel"] a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 20px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), #2DD4BF);
  border-radius: 2px;
  transition: width 0.3s ease;
}

[class*="-mobile-panel"] a:hover::after {
  width: calc(100% - 40px);
}

[class*="-mobile-panel"] a:hover { 
  background: linear-gradient(145deg, #F1F5F9 0%, #E2E8F0 100%);
  color: var(--color-primary);
  transform: translateX(8px);
  box-shadow: 
    inset 2px 2px 4px rgba(255, 255, 255, 0.8),
    0 2px 8px rgba(16, 185, 129, 0.1);
}

[class*="-mobile-panel"] a.active,
[class*="-mobile-panel"] a[aria-current="page"] {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2DD4BF 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 
    0 4px 12px rgba(16, 185, 129, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[class*="-mobile-panel"] a.active::after,
[class*="-mobile-panel"] a[aria-current="page"]::after {
  display: none;
}

[class*="-mobile-panel"] .btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Sections */
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-surface { background: #fff; }

/* Homepage hero - dark impressive style */
.section-hero { padding: 72px 0 88px; }
.section-hero.section-surface {
  background:
    radial-gradient(ellipse 120% 80% at 20% 120%, rgba(16, 185, 129, 0.35), transparent 50%),
    radial-gradient(ellipse 100% 70% at 80% -20%, rgba(147, 51, 234, 0.4), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(16, 185, 129, 0.12), transparent 70%),
    linear-gradient(135deg, #2E1065 0%, #134E4A 30%, #0D3D38 50%, #3B0764 70%, #4C1D95 100%);
  color: #fff;
}

.section-hero .kicker,
.section-hero .muted,
.section-hero .hero-feature-meta {
  color: rgba(255, 255, 255, 0.7);
}

.section-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.section-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.section-hero .hero-feature-cta {
  color: #fff;
}

.section-hero .hero-feature-price {
  color: #fff;
}

/* Dark background utilities */
.cta-band .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.panel {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 
    /* 3D highlight effect */
    inset 1px 1px 2px rgba(255, 255, 255, 0.8),
    inset -1px -1px 2px rgba(0, 0, 0, 0.02),
    /* Depth shadows */
    0 1px 2px rgba(0, 0, 0, 0.02),
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(0, 0, 0, 0.03),
    0 8px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  position: relative;
}

/* 3D border for panels */
.panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.03) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.panel:hover {
  box-shadow: 
    inset 1px 1px 2px rgba(255, 255, 255, 0.8),
    inset -1px -1px 2px rgba(0, 0, 0, 0.02),
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.04),
    0 16px 32px rgba(0, 0, 0, 0.03);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.hero-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hero-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

.hero-feature {
  display: flex;
}

.hero-feature-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-feature-media {
  position: relative;
  height: clamp(220px, 34vh, 360px);
  overflow: hidden;
  padding: 0;
  background: transparent;
  border-bottom: 0;
}

.hero-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  background: transparent;
  border: 0;
}

.hero-feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border: none;
  box-shadow: var(--shadow-glow-primary);
}

.hero-feature-body {
  padding: 14px 0 0;
}

.hero-feature-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-feature-meta {
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.hero-feature-bottom {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-feature-price {
  font-size: 18px;
  font-weight: 900;
}

.hero-feature-cta {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-border);
  box-shadow: var(--shadow-card);
}

.stat {
  padding: 28px 24px;
  text-align: center;
  background: #fff;
  border-right: none;
}

.stat .num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat:last-child { border-right: none; }
.stat .num { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.stat .label { font-size: 13px; color: var(--color-text-muted); margin-top: 2px; }

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Category pills */
.pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--color-primary);
}

.pill .badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: #fff;
  border: none;
}

.pill .badge svg,
.pill .badge .icon {
  color: #fff;
  stroke: #fff;
}

.pill .title { font-weight: 700; }
.pill .subtitle { font-size: 13px; color: var(--color-text-muted); }

/* Creators Slider */
.mb-16 { margin-bottom: 16px; }

.slider-nav {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--color-text);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.slider-btn:hover {
  background: linear-gradient(180deg, var(--color-primary) 0%, #059669 100%);
  border-color: var(--color-primary);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 
    0 4px 12px rgba(16, 185, 129, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.creators-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
}

.creators-slider::-webkit-scrollbar {
  display: none;
}

.creator-card {
  scroll-snap-align: start;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(0, 0, 0, 0.03),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay */
.creator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.03) 0%, transparent 100%);
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}

.creator-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 8px 16px rgba(16, 185, 129, 0.1),
    0 20px 40px rgba(16, 185, 129, 0.08),
    0 4px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  border-color: rgba(16, 185, 129, 0.3);
}

.creator-avatar {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--color-primary-tint), var(--color-secondary-tint));
  border: 4px solid #fff;
  position: relative;
  box-shadow: 
    0 4px 12px rgba(16, 185, 129, 0.2),
    0 8px 24px rgba(139, 92, 246, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.5);
  transition: all 0.35s ease;
}

.creator-avatar::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), #2DD4BF, var(--color-secondary));
  z-index: -1;
  opacity: 0.9;
}

.creator-card:hover .creator-avatar {
  transform: scale(1.08);
  box-shadow: 
    0 6px 16px rgba(16, 185, 129, 0.3),
    0 12px 32px rgba(139, 92, 246, 0.15);
}

.creator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.creator-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.creator-role {
  font-size: 14px;
  color: var(--color-text-muted);
}

.creator-courses {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(45, 212, 191, 0.1) 100%);
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 12px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Cards / Course */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Shimmer animation */
@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(200%) rotate(25deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    /* 3D depth layers */
    inset 2px 2px 6px rgba(255, 255, 255, 1),
    inset -2px -2px 6px rgba(0, 0, 0, 0.03),
    /* Outer shadows for floating effect */
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(0, 0, 0, 0.03),
    0 8px 16px rgba(0, 0, 0, 0.04),
    0 16px 32px rgba(0, 0, 0, 0.04),
    0 32px 64px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* 3D border effect */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.4) 30%, rgba(0, 0, 0, 0.03) 70%, rgba(0, 0, 0, 0.08) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

/* Shimmer effect overlay */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: translateX(-100%) rotate(25deg);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 4;
}

.card:hover::after {
  animation: shimmer 1s ease forwards;
}

/* Glowing border on hover */
.card .glow-border {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-primary));
  background-size: 200% 200%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  filter: blur(8px);
}

.card:hover { 
  transform: translateY(-12px) scale(1.03) rotateX(2deg); 
  box-shadow: 
    inset 2px 2px 6px rgba(255, 255, 255, 1),
    inset -2px -2px 6px rgba(0, 0, 0, 0.02),
    0 8px 16px rgba(16, 185, 129, 0.15),
    0 16px 32px rgba(16, 185, 129, 0.12),
    0 32px 64px rgba(139, 92, 246, 0.1),
    0 0 60px rgba(16, 185, 129, 0.15);
}

img.card-media {
  height: 200px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  position: relative;
}

.card:hover img.card-media {
  transform: scale(1.1);
  filter: brightness(1.1);
}

div.card-media {
  height: 200px;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  position: relative;
  overflow: hidden;
}

div.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.03) 100%);
  z-index: 1;
  pointer-events: none;
}

.card-body { padding: 16px 16px 14px; }
.card-title { font-size: 16px; font-weight: 800; line-height: 1.25; margin: 0 0 6px; }
.card-meta { font-size: 13px; color: var(--color-text-muted); display: flex; gap: 10px; flex-wrap: wrap; }

.price-row {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.price {
  font-size: 18px;
  font-weight: 900;
}

.price .old {
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-right: 8px;
}

@keyframes pulse-button {
  0%, 100% { box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4), 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4), 0 0 0 8px rgba(16, 185, 129, 0); }
}

.card-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0D9488 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    inset 2px 2px 4px rgba(255, 255, 255, 0.3),
    inset -1px -1px 2px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(16, 185, 129, 0.4),
    0 8px 24px rgba(16, 185, 129, 0.2);
  position: relative;
  overflow: hidden;
}

/* Inner glow ring */
.card-arrow::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

/* Shine effect */
.card-arrow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.card-arrow svg,
.card-arrow .icon {
  color: #fff;
  stroke: #fff;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 1;
}

.card:hover .card-arrow {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 
    inset 2px 2px 4px rgba(255, 255, 255, 0.3),
    inset -1px -1px 2px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(16, 185, 129, 0.5),
    0 16px 40px rgba(16, 185, 129, 0.3),
    0 0 40px rgba(16, 185, 129, 0.4);
  animation: pulse-button 1.5s ease infinite;
}

.card:hover .card-arrow svg {
  transform: translateX(3px);
}

/* CTA Section - Full width dark */
.section-cta {
  background: linear-gradient(135deg, #2E1065 0%, #134E4A 30%, #0D3D38 50%, #3B0764 70%, #4C1D95 100%);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.35), transparent 60%);
  pointer-events: none;
}

.section-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 40%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(147, 51, 234, 0.35), transparent 60%);
  pointer-events: none;
}

.section-cta .container {
  position: relative;
  z-index: 1;
}

.section-cta .cta-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  color: #fff;
}

.section-cta h2 {
  color: #fff;
}

.section-cta .muted {
  color: rgba(255, 255, 255, 0.7);
}

.section-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.section-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

/* CTA band (legacy/alternative) */
.cta-band {
  padding: 48px;
  border-radius: var(--radius-xl);
  border: none;
  background: linear-gradient(135deg, #2E1065 0%, #134E4A 30%, #0D3D38 50%, #3B0764 70%, #4C1D95 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  color: #fff;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.35), transparent 60%);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(147, 51, 234, 0.35), transparent 60%);
  pointer-events: none;
}

.cta-band > * { position: relative; z-index: 1; }
.cta-band .muted { color: rgba(255, 255, 255, 0.7); }

/* Page header */
.page-header {
  padding: 28px 0 10px;
}

/* Modern Page Hero - dark gradient header for inner pages */
.page-hero {
  background: linear-gradient(135deg, #2E1065 0%, #134E4A 30%, #0D3D38 50%, #3B0764 70%, #4C1D95 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0 50px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, rgba(16, 185, 129, 0.15) 40%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, rgba(126, 34, 206, 0.2) 40%, transparent 70%);
  pointer-events: none;
}

/* Third glow for more color */
.page-hero .container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.5);
}

.page-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.page-hero .breadcrumbs a:hover {
  color: #fff;
}

.page-hero .h1,
.page-hero .h2 {
  color: #fff;
}

.page-hero .muted {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .card-meta {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero .card-meta span {
  color: rgba(255, 255, 255, 0.6);
}

/* Page hero search/filter bar */
.page-hero-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.page-hero-bar .input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.page-hero-bar .input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.page-hero-bar .input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-primary);
}

.page-hero-bar select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
}

/* Fix dropdown options visibility on dark backgrounds */
.page-hero-bar select.input option {
  background: #1E293B;
  color: #fff;
  padding: 10px;
}

/* Content section with subtle gradient */
.section-content {
  background: linear-gradient(180deg, #F1F5F9 0%, #F9FAFB 100%);
  padding: 48px 0;
}

/* Registration Options */
.reg-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.reg-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 
    /* 3D inner highlights */
    inset 2px 2px 4px rgba(255, 255, 255, 0.9),
    inset -1px -1px 3px rgba(0, 0, 0, 0.02),
    /* Depth shadows */
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(0, 0, 0, 0.03),
    0 8px 16px rgba(0, 0, 0, 0.03),
    0 16px 32px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* 3D border effect for reg-card */
.reg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.04) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.reg-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    inset 2px 2px 4px rgba(255, 255, 255, 0.9),
    inset -1px -1px 3px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(0, 0, 0, 0.03),
    0 8px 16px rgba(16, 185, 129, 0.08),
    0 16px 32px rgba(16, 185, 129, 0.1),
    0 24px 48px rgba(0, 0, 0, 0.04);
}

.reg-card-featured {
  box-shadow: 
    inset 2px 2px 4px rgba(255, 255, 255, 0.9),
    inset -1px -1px 3px rgba(0, 0, 0, 0.02),
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(139, 92, 246, 0.08),
    0 8px 16px rgba(139, 92, 246, 0.1),
    0 16px 32px rgba(139, 92, 246, 0.06);
}

/* Colored glow border for featured */
.reg-card-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #A78BFA 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.reg-card-featured:hover {
  box-shadow: 
    inset 2px 2px 4px rgba(255, 255, 255, 0.9),
    inset -1px -1px 3px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(0, 0, 0, 0.03),
    0 8px 16px rgba(139, 92, 246, 0.15),
    0 16px 32px rgba(139, 92, 246, 0.18),
    0 24px 48px rgba(139, 92, 246, 0.08);
}

.reg-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reg-card:hover .reg-icon {
  transform: scale(1.1);
}

.reg-icon-user {
  background: linear-gradient(135deg, var(--color-primary) 0%, #059669 100%);
  box-shadow: 
    inset 2px 2px 4px rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(16, 185, 129, 0.4),
    0 8px 20px rgba(16, 185, 129, 0.25);
}

.reg-icon-creator {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #7C3AED 100%);
  box-shadow: 
    inset 2px 2px 4px rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(139, 92, 246, 0.4),
    0 8px 20px rgba(139, 92, 246, 0.25);
}

.reg-content {
  flex: 1;
}

.reg-content .h3 {
  margin-bottom: 8px;
}

.reg-content .muted {
  margin-bottom: 12px;
}

.reg-list {
  margin: 0 0 16px 0;
  padding-left: 18px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.reg-footer {
  text-align: center;
  margin-top: 24px;
}

@media (max-width: 760px) {
  .reg-options {
    grid-template-columns: 1fr;
  }
  
  .reg-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .reg-icon {
    margin: 0 auto;
  }
  
  .reg-list {
    text-align: left;
    display: inline-block;
  }
  
  .reg-content .btn {
    width: 100%;
  }
}

.breadcrumbs {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  align-items: start;
}

.sidebar-card { padding: 16px; }

.list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  color: var(--color-text);
}

.bullet {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border: none;
  flex: 0 0 auto;
  margin-top: 2px;
}

.tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: #F1F5F9;
  border: none;
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}

.tab {
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab:hover {
  color: var(--color-text);
  transform: translateY(-1px);
}

.tab:hover::before {
  opacity: 1;
}

.tab[aria-current='page'],
.tab.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2DD4BF 100%);
  color: #fff;
  border: none;
  box-shadow: 
    0 4px 12px rgba(16, 185, 129, 0.35),
    0 2px 4px rgba(16, 185, 129, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.tab[aria-current='page']::before,
.tab.active::before {
  opacity: 0;
}

/* Lesson player */
.player-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
}

.video {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  border: none;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  position: relative;
  box-shadow: var(--shadow-elevated);
}

.video .placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.playlist {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.playlist-header {
  padding: 14px 14px 10px;
  border-bottom: 1px solid var(--color-border);
}

.playlist-items {
  max-height: 420px;
  overflow: auto;
}

.lesson {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.2s ease;
}

.lesson:last-child { border-bottom: none; }

.lesson:hover { background: rgba(0, 0, 0, 0.02); }

.lesson .name { font-weight: 600; font-size: 14px; }
.lesson .meta { font-size: 12px; color: var(--color-text-muted); }

.lesson[aria-current='true'] {
  background: var(--color-secondary-tint);
}

.pill-status {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: none;
  background: var(--color-primary-tint);
  color: var(--color-primary-hover);
  height: fit-content;
  font-weight: 600;
}

.pill-status.current {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

/* Footer */
.site-footer {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, #F1F5F9 0%, #E2E8F0 100%);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 18px;
}

.footer-title { font-weight: 900; margin: 0 0 10px; }
.footer-links a {
  display: block;
  padding: 8px 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.footer-links a:hover { color: var(--color-secondary-hover); }

.newsletter {
  display: grid;
  gap: 10px;
}

.input {
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  padding: 0 16px;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: all 0.2s ease;
}

.input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
  background: #fff;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Utilities */
.stack-10 { display: grid; gap: 10px; }
.stack-12 { display: grid; gap: 12px; }
.stack-14 { display: grid; gap: 14px; }
.stack-18 { display: grid; gap: 18px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-22 { margin-top: 22px; }
.mt-28 { margin-top: 28px; }

.split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .pills { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .player-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .h1 { font-size: 28px; line-height: 36px; }
  .h2 { font-size: 24px; line-height: 32px; }
  .h3 { font-size: 20px; line-height: 28px; }
  .section { padding: 44px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }

  .nav { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }

  .brand-logo { height: 40px; max-width: 150px; }

  .mobile-panel[data-open='true'] { display: block; }

  .stats { grid-template-columns: 1fr; gap: 1px; }
  .stat { border-bottom: none; }
  .stat:last-child { border-bottom: none; }

  .cta-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .profile-header { flex-direction: column; text-align: center; }
  .profile-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .profile-actions { justify-content: center; flex-wrap: wrap; }
  .card-horizontal { flex-direction: column; }
  .card-media-sm { width: 100%; height: 160px; }
  
  /* Page hero mobile */
  .page-hero { padding: 40px 0 30px; }
  .page-hero .h1 { font-size: 26px; line-height: 34px; }
  
  /* Container padding */
  .container { width: calc(100% - 32px); }
  
  /* Hero section mobile */
  .hero { gap: 24px; }
  .hero-card { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-feature-card { padding: 12px; }
  .hero-feature-media { height: 200px; }
  
  /* Split layout mobile */
  .split { flex-direction: column; gap: 16px; text-align: center; }
  .split .btn { width: 100%; }
  
  /* Button mobile - don't force full width on all */
  .btn { padding: 12px 20px; font-size: 14px; }
  .hero-actions .btn,
  .panel .btn { width: 100%; text-align: center; }
  .btn-outline { width: auto; }
  
  /* Panel cards mobile - stack vertically */
  .panel { padding: 20px !important; }
  
  /* Registration cards mobile */
  .section-content .grid-2 .panel {
    flex-direction: column !important;
    text-align: center;
  }
  .section-content .grid-2 .panel > div:first-child {
    margin: 0 auto 16px !important;
  }
  .section-content .grid-2 .panel ul {
    text-align: left;
    display: inline-block;
  }
  
  /* Creators slider mobile */
  .creators-slider { gap: 12px; }
  .creator-card { min-width: 160px; }
  
  /* Section content mobile */
  .section-content { padding: 32px 0; }
  
  /* Card mobile */
  .card-body { padding: 16px; }
  .card-title { font-size: 16px; }
}

/* ============================================
   Profile Page Styles
   ============================================ */

.profile-header {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
}

.profile-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  flex: 1;
}

.profile-title {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

.profile-stats {
  display: flex;
  gap: 32px;
  margin-top: 20px;
}

.profile-stat {
  display: flex;
  flex-direction: column;
}

.profile-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.profile-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.profile-actions {
  display: flex;
  gap: 12px;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Profile Tags */
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* Horizontal Card */
.card-horizontal {
  display: flex;
  gap: 20px;
  background: var(--color-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
}

.card-horizontal:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.card-media-sm {
  width: 200px;
  height: 140px;
  object-fit: cover;
  flex-shrink: 0;
}

.card-horizontal .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

/* Review Card */
.review-card {
  background: #F8FAFC;
  border-radius: var(--radius-md);
  padding: 20px;
}

.review-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.review-name {
  font-weight: 700;
}

.review-date {
  font-size: 13px;
  color: var(--color-text-muted);
}

.review-rating {
  margin-left: auto;
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-text {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Info List */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-label {
  color: var(--color-text-muted);
  font-size: 14px;
}

.info-value {
  font-weight: 600;
  font-size: 14px;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #F8FAFC;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--color-primary-tint);
  color: var(--color-primary);
}

.social-link .icon {
  width: 20px;
  height: 20px;
}

/* Gradient Panel */
.panel-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

/* Additional utility classes */
.h4 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin: 0;
}

.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
