@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

:root {
  --primary: #E8390E;
  --primary-dark: #C02D08;
  --primary-light: #FF5733;
  --secondary: #1A1A2E;
  --secondary-light: #16213E;
  --accent: #F5A623;
  --accent-dark: #D4891A;
  --surface: #0F0F1A;
  --surface-light: #1E1E30;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0C8;
  --text-muted: #6B6B8A;
  --border: #2E2E4A;
  --success: #2ECC71;
  --warning: #F39C12;
  --error: #E74C3C;
  --gradient-fire: linear-gradient(135deg, #E8390E 0%, #F5A623 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #0F0F1A 100%);
  --gradient-hero: linear-gradient(135deg, #0F0F1A 0%, #1A1A2E 50%, #2E1A0E 100%);
  --shadow-fire: 0 4px 20px rgba(232, 57, 14, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 16px 48px rgba(232, 57, 14, 0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--surface);
  color: var(--text-primary);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* ===== HEADER ===== */
#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  transition: all var(--transition-med);
}

#main-header.scrolled {
  background: rgba(15, 15, 26, 0.99);
  box-shadow: 0 4px 32px rgba(232, 57, 14, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  transition: opacity var(--transition-fast);
}

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

.logo-link span {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-link img {
  height: 40px;
  width: auto;
}

/* ===== NAVIGATION ===== */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-fire);
  border-radius: 2px;
  transition: width var(--transition-med);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text-primary);
  background: rgba(232, 57, 14, 0.1);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 60%;
}

.nav-cta {
  background: var(--gradient-fire) !important;
  color: var(--text-primary) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-fire);
  transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232, 57, 14, 0.45) !important;
}

.nav-cta::after {
  display: none !important;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.4rem;
  transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(232, 57, 14, 0.1);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--text-primary);
  background: rgba(232, 57, 14, 0.1);
  padding-left: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

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

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-fire);
  color: #fff;
  box-shadow: var(--shadow-fire);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 57, 14, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-secondary:hover {
  background: var(--primary);
  box-shadow: var(--shadow-fire);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--secondary);
  font-weight: 800;
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

/* ===== CARDS ===== */
.card {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-fire);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.card:hover {
  border-color: rgba(232, 57, 14, 0.3);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

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

.card-dark {
  background: var(--secondary);
  border-color: var(--border);
}

.card-fire {
  background: linear-gradient(135deg, rgba(232, 57, 14, 0.15) 0%, rgba(245, 166, 35, 0.05) 100%);
  border-color: rgba(232, 57, 14, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--gradient-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-fire);
  flex-shrink: 0;
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--surface-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
  font-family: inherit;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  border-color: var(--primary);
  background: rgba(232, 57, 14, 0.05);
  box-shadow: 0 0 0 3px rgba(232, 57, 14, 0.15);
}

.form-control:hover:not(:focus) {
  border-color: var(--text-muted);
}

.form-control.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.form-control.success {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%23B0B0C8'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.form-success-msg {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-card {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

/* ===== ACCORDION ===== */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item:hover {
  border-color: rgba(232, 57, 14, 0.3);
}

.accordion-item.active {
  border-color: var(--primary);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--surface-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.accordion-header:hover {
  background: rgba(232, 57, 14, 0.08);
  color: var(--primary-light);
}

.accordion-item.active .accordion-header {
  background: rgba(232, 57, 14, 0.12);
  color: var(--primary-light);
}

.accordion-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform var(--transition-med);
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.02);
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 90vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232, 57, 14, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite reverse;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 57, 14, 0.15);
  border: 1px solid rgba(232, 57, 14, 0.4);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* ===== SECTION TITLES ===== */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: var(--gradient-fire);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.title-underline.centered {
  margin: 1rem auto 1.5rem;
}

/* ===== PRICE / MEMBERSHIP CARDS ===== */
.price-card {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(232, 57, 14, 0.1) 0%, var(--surface-light) 100%);
  box-shadow: var(--shadow-hover);
}

.price-badge {
  position: absolute;
  top: 1.25rem;
  right: -2rem;
  background: var(--gradient-fire);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 2.5rem;
  letter-spacing: 1px;
  transform: rotate(35deg);
  text-transform: uppercase;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
  color: var(--primary);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-feature:last-of-type {
  border-bottom: none;
}

.price-feature i {
  color: var(--success);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.price-feature.disabled {
  opacity: 0.4;
}

.price-feature.disabled i {
  color: var(--text-muted);
}

/* ===== TRAINER CARDS ===== */
.trainer-card {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-med);
}

.trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(232, 57, 14, 0.3);
}

.trainer-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.trainer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trainer-card:hover .trainer-img-wrap img {
  transform: scale(1.05);
}

.trainer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,26,0.9) 0%, transparent 60%);
}

.trainer-info {
  padding: 1.5rem;
}

.trainer-specialty {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.trainer-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

/* ===== SCHEDULE / TIMETABLE ===== */
.schedule-header {
  background: var(--gradient-fire);
  color: white;
  font-weight: 700;
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.schedule-cell {
  padding: 0.6rem 0.5rem;
  text-align: center;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.schedule-cell.active {
  background: rgba(232, 57, 14, 0.15);
  border-color: rgba(232, 57, 14, 0.3);
  color: var(--text-primary);
}

.schedule-pill {
  display: inline-block;
  background: var(--gradient-fire);
  color: white;
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 57, 14, 0.7);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-med);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: white;
}

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-med);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(232, 57, 14, 0.25);
}

.blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-body {
  padding: 1.5rem;
}

.blog-tag {
  display: inline-block;
  background: rgba(232, 57, 14, 0.15);
  border: 1px solid rgba(232, 57, 14, 0.3);
  color: var(--primary-light);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-title {
  color: var(--primary-light);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: rgba(232, 57, 14, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gradient-fire);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
}

.cta-banner-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-banner-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ===== STAT / COUNTER BOXES ===== */
.stat-box {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 900;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.5rem;
}

/* ===== FEATURE LIST ===== */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon-sm {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(232, 57, 14, 0.15);
  border: 1px solid rgba(232, 57, 14, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== BADGE / TAG ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 100px;
  padding: 0.25rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: rgba(232, 57, 14, 0.15);
  border: 1px solid rgba(232, 57, 14, 0.35);
  color: var(--primary-light);
}

.badge-success {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: var(--success);
}

.badge-accent {
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: var(--accent);
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 3rem 0;
}

.divider-fire {
  height: 2px;
  background: var(--gradient-fire);
  width: 80px;
  border-radius: 2px;
  margin: 1.5rem 0;
}

/* ===== SECTION BACKGROUNDS ===== */
.section-dark {
  background: var(--surface);
}

.section-darker {
  background: linear-gradient(180deg, #0A0A15 0%, var(--surface) 100%);
}

.section-card-bg {
  background: var(--surface-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-fire-subtle {
  background: linear-gradient(135deg, rgba(232, 57, 14, 0.05) 0%, var(--surface) 50%, rgba(245, 166, 35, 0.03) 100%);
}

/* ===== LOADING SPINNER ===== */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}

#cookie-banner p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}

#cookie-banner a {
  color: var(--primary-light);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

#cookie-banner a:hover {
  color: var(--accent);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

#cookie-accept {
  background: var(--gradient-fire);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
}

#cookie-accept:hover {
  box-shadow: var(--shadow-fire);
  transform: translateY(-1px);
}

#cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
}

#cookie-decline:hover {
  color: var(--text-secondary);
  border-color: var(--text-muted);
}

/* ===== FOOTER ===== */
footer {
  background: var(--secondary);
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.footer-logo span {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  display: inline-block;
  padding: 0.2rem 0;
}

.footer-link:hover {
  color: var(--primary-light);
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--gradient-fire);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-fire);
}

/* ===== PAGE HERO / BREADCRUMB ===== */
.page-hero {
  background: var(--gradient-hero);
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 57, 14, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--primary-light);
}

.breadcrumb-sep {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ===== ALERT / NOTICE ===== */
.alert {
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
}

.alert-info {
  background: rgba(6, 174, 213, 0.1);
  border-color: rgba(6, 174, 213, 0.3);
  color: #7FE9F9;
}

.alert-success {
  background: rgba(46, 204, 113, 0.1);
  border-color: rgba(46, 204, 113, 0.3);
  color: var(--success);
}

.alert-warning {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.3);
  color: var(--accent);
}

.alert-error {
  background: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.3);
  color: var(--error);
}

/* ===== TABS ===== */
.tabs-nav {
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 0.75rem 1.25rem;
  border: none;
  background: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.tab-btn:hover {
  color: var(--text-secondary);
}

.tab-btn.active {
  color: var(--primary-light);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
}

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

/* ===== PROGRESS BARS ===== */
.progress-bar-wrap {
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 100%;
  border-radius: 100px;
  background: var(--gradient-fire);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-right {
  animation: fadeInRight 0.6s ease forwards;
}

.animate-scale {
  animation: scaleIn 0.5s ease forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

.shimmer-text {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-primary-color { color: var(--primary); }
.text-accent-color { color: var(--accent); }
.text-muted-color { color: var(--text-muted); }
.text-secondary-color { color: var(--text-secondary); }

.bg-surface { background-color: var(--surface); }
.bg-surface-light { background-color: var(--surface-light); }
.bg-secondary-dark { background-color: var(--secondary); }

.border-fire { border-color: var(--primary) !important; }
.border-subtle { border-color: var(--border) !important; }

.shadow-fire { box-shadow: var(--shadow-fire); }
.shadow-card { box-shadow: var(--shadow-card); }

.rounded-fire { border-radius: var(--radius-md); }
.rounded-fire-lg { border-radius: var(--radius-lg); }
.rounded-fire-xl { border-radius: var(--radius-xl); }

.transition-all-med { transition: all var(--transition-med); }

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 1024px) {
  .header-inner {
    padding: 0 1.25rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    display: none;
  }

  #cookie-banner {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
  }

  #cookie-accept, #cookie-decline {
    flex: 1;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  .cta-banner {
    padding: 2.5rem 1.5rem;
  }

  .price-card {
    padding: 1.75rem;
  }

  .form-card {
    padding: 1.75rem;
  }
}

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

  .section-title {
    font-size: 1.75rem;
  }

  .btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
  }

  .header-inner {
    height: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}