@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;500;600;700&display=swap');

:root {
  --black: #0a0a0a;
  --black-soft: #1a1a1a;
  --charcoal: #2d2d2d;
  --gray-warm: #4a4a4a;
  --gray-mid: #6a6a6a;
  --gray-light: #a8a8a8;
  --gray-pale: #d4d4d4;
  --beige: #f5f0eb;
  --beige-light: #faf8f5;
  --cream: #fdfcfa;
  --white: #ffffff;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #a68b4b;
  --rose: #d4a5a5;
  --rose-light: #f5e6e6;
  --success: #4a7c59;
  --success-light: #e8f0ea;
  --error: #8b3a3a;
  --warning: #8b6b3a;
  --radius: 6px;
  --radius-sm: 4px;
  --radius-lg: 12px;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-gold: 0 4px 20px rgba(201,169,98,0.15);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  color: var(--gold-dark);
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

::selection {
  background: var(--gold-light);
  color: var(--black);
}

button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.navbar {
  background: var(--white);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--beige);
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--black);
  letter-spacing: 0.02em;
}

.logo:hover {
  color: var(--gold-dark);
}

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

.nav-links a {
  color: var(--gray-warm);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold-dark);
}

.nav-close,
.nav-menu-header {
  display: none;
}

.nav-menu-links,
.nav-menu-buttons {
  display: contents;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-pale);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  z-index: 1002;
  transition: var(--transition);
}

.hamburger:hover {
  border-color: var(--gold);
}

.hamburger span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--black);
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 14px;
}

.hamburger span:nth-child(2) {
  top: 21px;
}

.hamburger span:nth-child(3) {
  top: 28px;
}

.hamburger.active span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.btn-admin {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-admin:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201,169,98,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: #ffffff !important;
}

a.btn-outline:hover {
  color: #ffffff !important;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1.125rem 2.75rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

.hero {
  background: var(--beige-light);
  color: var(--black);
  padding: 5rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(253,252,250,0.3) 0%, rgba(253,252,250,0.8) 100%);
  z-index: 1;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: var(--black);
  text-shadow: 0 2px 4px rgba(255,255,255,0.5);
}

.hero h1 span {
  color: var(--gold-dark);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.8;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-no-overlay::before {
  display: none;
}

.hero-dark::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-dark h1 {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-dark h1 span {
  color: var(--gold-light);
}

.hero-dark .hero-subtitle {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-dark .btn-outline {
  background: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.95);
  color: var(--black);
}

.hero-dark .btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
}

.features {
  padding: 5rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: var(--gold-light);
  background: linear-gradient(135deg, rgba(201,169,98,0.15) 0%, rgba(201,169,98,0.05) 100%);
  border-radius: 50px;
}

.features h2 {
  text-align: center;
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray-mid);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto;
}

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

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--beige-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--gray-mid);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.courses-preview, .courses-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--rose-light) 100%);
}

.courses-preview h2, .courses-section h2 {
  text-align: center;
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4rem;
}

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

.course-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  box-shadow: var(--shadow);
}

.course-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.course-icon {
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.course-card h3 {
  color: var(--black);
  margin-bottom: 0.75rem;
  font-size: 1.375rem;
}

.course-card p {
  color: var(--gray-mid);
  font-size: 0.9375rem;
}

.courses-grid-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.course-card-image {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.course-card-image:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  color: inherit;
}

.course-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.course-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.1));
}

.course-card-content {
  padding: 2rem;
}

.course-card-content h3 {
  color: var(--black);
  margin-bottom: 0.75rem;
  font-size: 1.375rem;
}

.course-card-content p {
  color: var(--gray-mid);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.course-card-content .course-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--gold-dark);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

.mt-4 {
  margin-top: 3rem;
}

.cta {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.cta h2 {
  font-size: 2.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.cta p {
  color: var(--gray-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.0625rem;
}

.cta .btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: var(--gold);
}

.cta .btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.page-header {
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--rose-light) 100%);
  color: var(--black);
  padding: 5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--beige);
  position: relative;
}

.page-header[style*="background-image"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139,115,85,0.6) 0%, rgba(180,150,120,0.5) 100%);
  z-index: 1;
}

.page-header[style*="background-image"] .container {
  position: relative;
  z-index: 2;
}

.page-header[style*="background-image"] h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-header[style*="background-image"] p {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--gray-mid);
  font-size: 1.125rem;
}

.page-header-no-overlay {
  position: relative;
  border-bottom: none;
}

.page-header-no-overlay .container {
  position: relative;
  z-index: 2;
}

.page-header-no-overlay h1 {
  color: var(--black);
  text-shadow: 0 2px 4px rgba(255,255,255,0.5);
}

.page-header-no-overlay p {
  color: var(--charcoal);
  background: rgba(255,255,255,0.85);
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
}

.pricing-section {
  padding: 5rem 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
  box-shadow: 0 12px 40px rgba(201,169,98,0.25);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--beige);
}

.pricing-header h2 {
  color: var(--black);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price .amount {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--black);
}

.pricing-card.featured .price .amount {
  color: var(--gold-dark);
}

.price .currency {
  font-size: 1.25rem;
  color: var(--gray-mid);
}

.price-note {
  color: var(--gray-light);
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--charcoal);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--beige);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--success);
  margin-top: 2px;
}

.pricing-features li.disabled {
  color: var(--gray-light);
}

.pricing-features li.disabled svg {
  color: var(--gray-pale);
}

.faq {
  padding: 5rem 0;
  background: var(--beige-light);
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.faq-item {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--gray-mid);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.auth-section {
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--rose-light) 100%);
}

.auth-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}

.auth-card h1 {
  color: var(--black);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.auth-card > p {
  color: var(--gray-mid);
  margin-bottom: 2.5rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: var(--charcoal);
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-pale);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,98,0.1);
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  color: var(--gray-mid);
  font-size: 0.9375rem;
}

.auth-footer a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.alert-error {
  background: var(--rose-light);
  color: var(--error);
  border: 1px solid rgba(139, 58, 58, 0.2);
}

.dashboard-header {
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--rose-light) 100%);
  color: var(--black);
  padding: 4rem 0;
  border-bottom: 1px solid var(--beige);
  position: relative;
}

.dashboard-header[style*="background-image"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139,115,85,0.6) 0%, rgba(180,150,120,0.5) 100%);
  z-index: 1;
}

.dashboard-header[style*="background-image"] .container {
  position: relative;
  z-index: 2;
}

.dashboard-header[style*="background-image"] h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.dashboard-header[style*="background-image"] .tier-badge {
  background: rgba(255,255,255,0.95);
  color: var(--gold-dark);
}

.dashboard-header[style*="background-image"] .tier-info {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

.dashboard-header h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
}

.tier-badge.tier-online {
  background: var(--beige);
  color: var(--charcoal);
  border: 1px solid var(--gray-pale);
}

.tier-badge.tier-full {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.tier-badge.small {
  padding: 0.375rem 0.75rem;
  font-size: 0.6875rem;
}

.tier-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--gold-dark);
}

.dashboard-courses {
  padding: 4rem 0;
}

.dashboard-courses h2 {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.dashboard-course-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.dashboard-course-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-lg);
}

.course-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.course-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
}

.progress-text {
  color: var(--gold-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.progress-bar {
  height: 6px;
  background: var(--beige);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
}

.progress-percent {
  font-size: 0.8125rem;
  color: var(--gray-mid);
  margin-bottom: 1.25rem;
}

.inperson-section {
  padding: 0 0 4rem;
}

.inperson-section h2 {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2rem;
}

.inperson-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow);
}

.inperson-status {
  text-align: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border-radius: 50px;
}

.status-badge.pending {
  background: rgba(201,169,98,0.15);
  color: var(--gold-dark);
}

.status-badge.scheduled {
  background: var(--success-light);
  color: var(--success);
}

.location-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  color: var(--gray-mid);
}

.inperson-form {
  max-width: 400px;
}

.inperson-form .form-group {
  margin-bottom: 1.25rem;
}

.course-header-section {
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--rose-light) 100%);
  color: var(--black);
  padding: 4rem 0;
  border-bottom: 1px solid var(--beige);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.back-link:hover {
  color: var(--black);
}

.course-header-section h1 {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.course-header-section p {
  color: var(--gray-mid);
}

.steps-section {
  padding: 4rem 0;
}

.steps-section h2 {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2rem;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.step-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-lg);
}

.step-item.locked {
  opacity: 0.5;
}

.step-item.completed {
  border-left: 4px solid var(--success);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--black);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-item.completed .step-number {
  background: linear-gradient(135deg, var(--success) 0%, #3a6347 100%);
  color: var(--white);
}

.step-item.locked .step-number {
  background: var(--beige);
  color: var(--gray-light);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--black);
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.step-content p {
  color: var(--gray-mid);
  font-size: 0.9375rem;
}

.quiz-score {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 50px;
}

.quiz-score.passed {
  background: var(--success-light);
  color: var(--success);
}

.quiz-score.failed {
  background: var(--rose-light);
  color: var(--error);
}

.step-action {
  flex-shrink: 0;
}

.locked-text {
  color: var(--gray-light);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.step-header {
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--rose-light) 100%);
  color: var(--black);
  padding: 3rem 0;
  border-bottom: 1px solid var(--beige);
}

.step-progress-indicator {
  font-size: 0.8125rem;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.step-header h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.video-section {
  padding: 3rem 0;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--black);
  box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.quiz-section {
  padding: 3rem 0 5rem;
}

.quiz-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-lg);
}

.quiz-card h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.quiz-info {
  color: var(--gray-mid);
  margin-bottom: 2.5rem;
}

.quiz-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.quiz-question h4 {
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--beige-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.quiz-option:hover {
  border-color: var(--gold-light);
  background: var(--white);
}

.quiz-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold-dark);
}

.option-text {
  color: var(--charcoal);
}

.quiz-completed, .quiz-result-container {
  margin-top: 1rem;
}

.quiz-result {
  text-align: center;
  padding: 3rem;
  border-radius: var(--radius-lg);
}

.quiz-result.success {
  background: linear-gradient(135deg, var(--success-light) 0%, rgba(74,124,89,0.05) 100%);
}

.quiz-result.success svg {
  color: var(--success);
}

.quiz-result.failed {
  background: linear-gradient(135deg, var(--rose-light) 0%, rgba(139,58,58,0.05) 100%);
}

.quiz-result.failed svg {
  color: var(--error);
}

.quiz-result h3 {
  color: var(--black);
  margin: 1.5rem 0 0.5rem;
  font-size: 1.5rem;
}

.quiz-result p {
  color: var(--gray-mid);
  margin-bottom: 0.5rem;
}

.quiz-result .btn {
  margin-top: 1.5rem;
}

.checkout-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--rose-light) 100%);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.checkout-form-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-lg);
}

.checkout-form-card h1 {
  color: var(--black);
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkout-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--success);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.checkout-summary {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
  position: sticky;
  top: 120px;
  box-shadow: var(--shadow-gold);
}

.checkout-summary h2 {
  color: var(--black);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--beige);
}

.summary-item {
  color: var(--gray-mid);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.summary-tier {
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.summary-features {
  list-style: none;
  padding: 1.25rem 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  margin-bottom: 1.25rem;
}

.summary-features li {
  padding: 0.375rem 0;
  color: var(--gray-mid);
  font-size: 0.875rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.total-price {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 2rem;
}

.success-section, .error-section {
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--rose-light) 100%);
}

.success-card, .error-card {
  background: var(--white);
  padding: 4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  text-align: center;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
}

.success-icon svg {
  color: var(--success);
}

.error-icon svg {
  color: var(--warning);
}

.success-card h1, .error-card h1 {
  color: var(--black);
  margin: 2rem 0 0.75rem;
  font-size: 2rem;
}

.success-card > p, .error-card > p {
  color: var(--gray-mid);
  margin-bottom: 2rem;
}

.success-details {
  background: linear-gradient(135deg, rgba(201,169,98,0.1) 0%, rgba(201,169,98,0.05) 100%);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  text-align: left;
  border-left: 4px solid var(--gold);
}

.success-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
}

.success-details p {
  color: var(--gray-mid);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.admin-header {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: 3rem 0;
}

.admin-header h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.admin-header p {
  color: var(--gray-light);
}

.admin-section {
  padding: 3rem 0;
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.875rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-pale);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.tab-btn:hover {
  border-color: var(--gold);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: var(--gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.admin-table {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid var(--beige);
  box-shadow: var(--shadow);
}

.admin-table th,
.admin-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--beige);
}

.admin-table th {
  background: var(--beige-light);
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-table td {
  font-size: 0.9375rem;
}

.role-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
}

.role-badge.admin {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
}

.role-badge.user {
  background: var(--beige);
  color: var(--charcoal);
}

.inline-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.inline-form input,
.inline-form select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gray-pale);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: var(--font-sans);
}

.text-muted {
  color: var(--gray-light);
}

.footer {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: 4rem 0;
  margin-top: auto;
}

.footer-content {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
}

.footer p {
  color: var(--gray-mid);
  font-size: 0.875rem;
}

.footer-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--gold-light);
}

.courses-grid-large {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.course-card-large-image {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.course-card-large-image:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  color: inherit;
}

.course-image-large {
  height: 100%;
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.course-info-large {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.course-info-large h3 {
  color: var(--black);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.course-info-large p {
  color: var(--gray-mid);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.course-details {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-dark);
  font-size: 0.875rem;
  font-weight: 500;
}

.detail-item svg {
  color: var(--gold);
}

.courses-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold-light);
  box-shadow: var(--shadow-gold);
}

.courses-cta h3 {
  color: var(--black);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.courses-cta p {
  color: var(--gray-mid);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.instructor-section {
  padding: 5rem 0;
  background: var(--white);
}

.instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.instructor-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.instructor-content h2 {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.instructor-content p {
  color: var(--gray-mid);
  font-size: 1.0625rem;
  line-height: 1.9;
  margin-bottom: 3rem;
}

.instructor-stats {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.instructor-stats li {
  text-align: left;
}

.instructor-stats li strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.instructor-stats li {
  color: var(--gray-mid);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.testimonials {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--rose-light) 100%);
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4rem;
}

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

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content p {
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-author strong {
  display: block;
  color: var(--black);
  font-size: 0.9375rem;
}

.testimonial-author span {
  color: var(--gold-dark);
  font-size: 0.8125rem;
}

.included-courses {
  padding: 8rem 0;
  background: var(--white);
}

.included-courses h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.included-item {
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.included-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.included-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
}

.included-overlay h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.included-overlay p {
  font-size: 0.875rem;
  opacity: 0.8;
}

.no-plan-section {
  padding: 4rem 0;
}

.no-plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  padding: 4rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.no-plan-icon {
  color: var(--gold);
  margin-bottom: 2rem;
}

.no-plan-card h2 {
  color: var(--black);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.no-plan-card > p {
  color: var(--gray-mid);
  font-size: 1.0625rem;
  max-width: 500px;
  margin: 0 auto 3rem;
}

.plan-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.plan-option {
  background: var(--beige-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: left;
  position: relative;
  border: 1px solid transparent;
  transition: var(--transition);
}

.plan-option:hover {
  border-color: var(--gold-light);
}

.plan-option.featured {
  background: var(--white);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 0.375rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
}

.plan-option h3 {
  color: var(--black);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.plan-price {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.plan-option ul {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-option ul li {
  padding: 0.5rem 0;
  color: var(--gray-warm);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-option ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.course-preview {
  border-top: 1px solid var(--beige);
  padding-top: 3rem;
}

.course-preview h3 {
  color: var(--black);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.preview-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
}

.preview-item span {
  font-size: 0.875rem;
  color: var(--gray-mid);
}

.actions-cell {
  min-width: 220px;
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.tier-select {
  padding: 0.375rem 0.5rem;
  border: 1px solid var(--gray-pale);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-family: var(--font-sans);
}

.btn-danger {
  background: var(--error);
  color: var(--white);
  border: 1px solid var(--error);
}

.btn-danger:hover {
  background: #6b2a2a;
  border-color: #6b2a2a;
  color: var(--white);
}

.payment-methods {
  margin-bottom: 1.5rem;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 2px solid var(--gray-pale);
  border-radius: var(--radius);
  cursor: pointer;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.payment-method:hover {
  border-color: var(--gold);
}

.payment-method.selected {
  border-color: var(--gold);
  background: rgba(201,169,98,0.05);
}

.payment-method input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold-dark);
}

.payment-method span {
  font-size: 0.9375rem;
  color: var(--charcoal);
}

.watch-confirm-section {
  padding: 2rem 0;
}

.watch-confirm-btn {
  margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .instructor-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .instructor-image img {
    height: 400px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    background: var(--beige-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    border-radius: 50%;
    transition: all 0.2s ease;
  }
  
  .nav-close:hover,
  .nav-close:active {
    background: var(--beige);
    color: var(--gold-dark);
  }
  
  .nav-menu-header {
    display: none;
  }
  
  .nav-menu-links {
    padding: 5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .nav-menu-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--black);
    letter-spacing: 0.02em;
    text-transform: none;
    border-bottom: 1px solid var(--beige);
    transition: all 0.2s ease;
  }
  
  .nav-menu-links a:first-child {
    border-top: 1px solid var(--beige);
  }
  
  .nav-menu-links a:hover,
  .nav-menu-links a:active {
    color: var(--gold-dark);
  }
  
  .nav-menu-buttons {
    padding: 1.5rem;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: center;
  }
  
  .nav-btn-outline {
    background: transparent;
    border: 1.5px solid var(--gray-mid);
    color: var(--black);
  }
  
  .nav-btn-outline:hover,
  .nav-btn-outline:active {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
  }
  
  .nav-btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    color: var(--white);
  }
  
  .nav-btn-primary:hover,
  .nav-btn-primary:active {
    opacity: 0.9;
  }
  
  .nav-links .btn,
  .nav-links .btn-outline,
  .nav-links .btn-primary,
  .nav-links .btn-admin,
  .nav-links .btn-sm {
    display: none;
  }
  
  
  section,
  .features,
  .courses-preview,
  .courses-section,
  .testimonials,
  .pricing-section,
  .instructor-section,
  .inperson-section,
  .steps-section,
  .quiz-section,
  .video-section,
  .admin-section,
  .auth-section,
  .checkout-section,
  .success-section,
  .error-section,
  .no-plan-section,
  .watch-confirm-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .features-grid,
  .courses-grid,
  .testimonials-grid,
  .faq-grid {
    gap: 1.25rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
  }
  
  .pricing-card {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .pricing-card.featured {
    order: -1;
  }
  
  .pricing-badge {
    top: -10px;
    padding: 0.4rem 1rem;
    font-size: 0.625rem;
  }
  
  .pricing-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }
  
  .pricing-header h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .price .amount {
    font-size: 2.5rem;
  }
  
  .price .currency {
    font-size: 1rem;
  }
  
  .price-note {
    font-size: 0.75rem;
  }
  
  .pricing-features {
    margin-bottom: 1.5rem;
  }
  
  .pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    gap: 0.5rem;
  }
  
  .pricing-features li svg {
    width: 16px;
    height: 16px;
  }
  
  .included-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
  }
  
  .included-item {
    height: 120px;
    border-radius: 12px;
  }
  
  .included-overlay h3 {
    font-size: 1rem;
  }
  
  .included-overlay p {
    font-size: 0.75rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-item {
    padding: 1.25rem;
  }
  
  .faq-item h3 {
    font-size: 1rem;
  }
  
  .faq-item p {
    font-size: 0.875rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero {
    padding: 3rem 0 4rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-summary {
    position: static;
    order: -1;
  }
  
  .courses-grid.large {
    grid-template-columns: 1fr;
  }
  
  .course-card-large-image {
    grid-template-columns: 1fr;
  }
  
  .course-image-large {
    height: 200px;
  }
  
  .step-item {
    flex-wrap: wrap;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .admin-table {
    font-size: 0.875rem;
  }
  
  .admin-table th,
  .admin-table td {
    padding: 0.75rem 0.5rem;
  }
  
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .instructor-stats {
    justify-content: flex-start;
    gap: 2rem;
  }
  
  .features h2,
  .courses-preview h2,
  .testimonials h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .included-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-options {
    grid-template-columns: 1fr;
  }
  
  section,
  .features,
  .courses-preview,
  .courses-section,
  .testimonials,
  .pricing-section,
  .instructor-section,
  .inperson-section,
  .steps-section,
  .quiz-section,
  .video-section,
  .admin-section,
  .auth-section,
  .checkout-section,
  .success-section,
  .error-section,
  .no-plan-section,
  .watch-confirm-section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  
  .section-header {
    margin-bottom: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 2.5rem 0 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease-out, 
              transform 0.35s ease-out;
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(15px);
}

.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  animation: heroFadeIn 0.5s ease-out forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  opacity: 0;
  animation: slideUp 0.4s ease-out forwards;
}

.hero .hero-subtitle {
  opacity: 0;
  animation: slideUp 0.4s ease-out 0.1s forwards;
}

.hero .hero-buttons {
  opacity: 0;
  animation: slideUp 0.4s ease-out 0.2s forwards;
}

.feature-card,
.course-card-image,
.course-card-large-image,
.pricing-card,
.testimonial-card,
.faq-item,
.included-item {
  transition: opacity 0.3s ease-out,
              transform 0.3s ease-out,
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}

.progress-fill {
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.navbar {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.page-header,
.dashboard-header,
.course-header-section,
.step-header {
  position: relative;
  overflow: hidden;
}

.page-header h1,
.dashboard-header h1 {
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.page-header p,
.dashboard-header .tier-badge {
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-animate,
  .animate-fade-up,
  .hero-content,
  .hero h1,
  .hero-subtitle,
  .hero-buttons,
  .page-header h1,
  .page-header p {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}