/* ═══════════════════════════════════════════════════════════════════
   NUTRENDZMEDIA — GLOBAL STYLES
   Brand Colors from Logo:
   Primary Blue:  #0062C6  (logo background)
   Accent Red:    #E8192C  (logo red)
   Light Blue BG: #EFF6FF
   Mid Blue:      #2563EB
   Dark Text:     #1E293B
   Neutral:       #64748B
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --blue:       #0062C6;
  --blue-mid:   #2563EB;
  --blue-light: #EFF6FF;
  --blue-pale:  #DBEAFE;
  --red:        #E8192C;
  --red-light:  #FFF0F0;
  --dark:       #1E293B;
  --neutral:    #64748B;
  --border:     #E2E8F0;
  --bg:         #F8FAFF;
  --white:      #FFFFFF;
  --green:      #16A34A;
  --purple:     #7C3AED;
  --orange:     #EA580C;
  --teal:       #0F766E;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

/* ── TYPOGRAPHY ─────────────────────────────────────────────────── */
.font-heading { font-family: 'Rajdhani', sans-serif; }

/* ── NAVIGATION ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,98,198,0.08);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.nav-brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0062C6;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.nav-brand-sub {
  font-size: 0.6rem;
  color: var(--neutral);
  font-weight: 700;
  letter-spacing: 0.15em;
}

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

.nav-link {
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #0062C6;
  background: var(--blue-light);
}

.btn-nav {
  padding: 0.5rem 1.125rem;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  color: #fff;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,98,198,0.3);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,98,198,0.35);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--dark);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  color: #fff;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(0,98,198,0.3);
  text-decoration: none;
}

.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,98,198,0.4);
}

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: transparent;
  color: #0062C6;
  border: 2px solid #0062C6;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-outline-lg:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

.btn-secondary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #F1F5F9;
  color: var(--dark);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-secondary-lg:hover { background: #E2E8F0; transform: translateY(-2px); }

.btn-white-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #fff;
  color: #0062C6;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-white-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-secondary-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background: #F1F5F9;
  color: var(--dark);
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary-sm:hover { background: #E2E8F0; }

.w-full { width: 100%; }

/* ── FORMS ──────────────────────────────────────────────────────── */
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 0.625rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.form-input:focus {
  border-color: #0062C6;
  box-shadow: 0 0 0 3px rgba(0,98,198,0.12);
}

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

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

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: #94A3B8;
  margin-top: 0.75rem;
}

/* ── LAYOUT UTILITIES ───────────────────────────────────────────── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  background: var(--blue-light);
  color: #0062C6;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border: 1px solid #BFDBFE;
}

.light-badge {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.white-title { color: #fff !important; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--neutral);
  max-width: 640px;
  margin: 0 auto;
}

/* ── HERO SECTION ───────────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #EDE9FE 100%);
  padding: 5rem 1.5rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(0,98,198,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(232,25,44,0.06) 0%, transparent 40%),
                    radial-gradient(circle at 60% 80%, rgba(124,58,237,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.125rem;
  background: rgba(0,98,198,0.1);
  color: #0062C6;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0,98,198,0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-highlight {
  background: linear-gradient(135deg, #0062C6, #E8192C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--neutral);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0062C6;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--neutral);
  font-weight: 500;
}

/* ── HERO VISUAL / DASHBOARD MOCKUP ────────────────────────────── */
.hero-visual { position: relative; z-index: 1; }

.dashboard-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,98,198,0.15), 0 4px 20px rgba(0,0,0,0.08);
  padding: 1.5rem;
  border: 1px solid rgba(0,98,198,0.1);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dash-dot.red { background: #E8192C; }
.dash-dot.yellow { background: #F59E0B; }
.dash-dot.green { background: #16A34A; }

.dash-title {
  font-size: 0.8rem;
  color: var(--neutral);
  margin-left: 0.5rem;
  font-weight: 600;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.dash-stat-item {
  background: var(--bg);
  border-radius: 0.75rem;
  padding: 0.875rem;
  text-align: center;
  border: 1px solid var(--border);
}

.dash-stat-val { font-size: 1.1rem; font-weight: 800; }
.dash-stat-val.blue { color: #0062C6; }
.dash-stat-val.green { color: #16A34A; }
.dash-stat-val.purple { color: #7C3AED; }
.dash-stat-lbl { font-size: 0.7rem; color: var(--neutral); margin-top: 0.2rem; }

.dash-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.flow-node {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.flow-node.blue-node { background: linear-gradient(135deg, #0062C6, #2563EB); }
.flow-node.red-node  { background: linear-gradient(135deg, #E8192C, #DC2626); }
.flow-node.green-node { background: linear-gradient(135deg, #16A34A, #15803D); }

.flow-arrow {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #CBD5E1, #94A3B8);
  position: relative;
  max-width: 40px;
}

.flow-arrow::after {
  content: '▶';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: #94A3B8;
}

.dash-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--neutral);
  margin-bottom: 1rem;
  font-weight: 500;
}

.dash-agents {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.agent-pill {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.active-pill {
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
}
.active-pill .fa-circle { font-size: 0.5rem; }

.idle-pill {
  background: #F8FAFC;
  color: #94A3B8;
  border: 1px solid var(--border);
}

/* ── PAIN POINTS ────────────────────────────────────────────────── */
.pain-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}

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

.pain-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,98,198,0.1);
  border-color: #BFDBFE;
}

.pain-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.pain-icon.red-icon    { background: linear-gradient(135deg, #E8192C, #DC2626); }
.pain-icon.purple-icon { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.pain-icon.green-icon  { background: linear-gradient(135deg, #16A34A, #15803D); }
.pain-icon.orange-icon { background: linear-gradient(135deg, #EA580C, #C2410C); }
.pain-icon.teal-icon   { background: linear-gradient(135deg, #0F766E, #0D9488); }

.pain-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.625rem;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--neutral);
  line-height: 1.65;
}

/* ── SERVICES PREVIEW ───────────────────────────────────────────── */
.services-preview {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #F8FAFF 0%, #EFF6FF 100%);
}

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

.service-preview-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.service-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,98,198,0.12);
}

.svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}

.blue-wrap   { background: linear-gradient(135deg, #0062C6, #2563EB); }
.red-wrap    { background: linear-gradient(135deg, #E8192C, #DC2626); }
.purple-wrap { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.green-wrap  { background: linear-gradient(135deg, #16A34A, #15803D); }
.orange-wrap { background: linear-gradient(135deg, #EA580C, #C2410C); }
.teal-wrap   { background: linear-gradient(135deg, #0F766E, #0D9488); }

.service-preview-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-preview-card p {
  font-size: 0.875rem;
  color: var(--neutral);
  margin-bottom: 0.875rem;
  line-height: 1.6;
}

.svc-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0062C6;
}

/* ── HOW IT WORKS ───────────────────────────────────────────────── */
.how-section {
  padding: 5rem 1.5rem;
  background: #fff;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 200px;
  background: var(--bg);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  text-align: center;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: #BFDBFE;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--neutral);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  font-size: 1.25rem;
  padding-top: 3rem;
  flex-shrink: 0;
}

/* ── ACADEMY TEASER ─────────────────────────────────────────────── */
.academy-teaser {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #0062C6 0%, #1D4ED8 50%, #4F46E5 100%);
}

.academy-teaser-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.academy-teaser-text { color: #fff; }

.academy-levels {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.level-pill {
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.green-pill  { background: rgba(22,163,74,0.2); color: #4ADE80; border: 1px solid rgba(74,222,128,0.3); }
.blue-pill   { background: rgba(96,165,250,0.2); color: #93C5FD; border: 1px solid rgba(147,197,253,0.3); }
.purple-pill { background: rgba(167,139,250,0.2); color: #C4B5FD; border: 1px solid rgba(196,181,253,0.3); }

.academy-teaser-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.course-teaser-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255,255,255,0.12);
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.course-level-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.green-dot { background: #4ADE80; }
.blue-dot  { background: #60A5FA; }
.purple-dot{ background: #A78BFA; }

.course-teaser-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.course-teaser-info p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials-section {
  padding: 5rem 1.5rem;
  background: var(--bg);
}

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

.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 0.875rem;
  letter-spacing: 0.1em;
}

.quote {
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name { font-weight: 700; color: var(--dark); font-size: 0.9rem; }
.author-title { font-size: 0.8rem; color: var(--neutral); }

/* ── CTA SECTION ────────────────────────────────────────────────── */
.cta-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

/* ── PAGE HERO ──────────────────────────────────────────────────── */
.page-hero {
  padding: 4rem 1.5rem 3rem;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border-bottom: 1px solid #BFDBFE;
}

.page-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--neutral);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SERVICES DETAIL ────────────────────────────────────────────── */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.service-detail-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,98,198,0.12);
}

.svc-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.svc-detail-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
}

.svc-detail-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.375rem; }

.svc-cat-badge {
  padding: 0.2rem 0.625rem;
  background: var(--blue-light);
  color: #0062C6;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.svc-popular-badge {
  padding: 0.2rem 0.625rem;
  background: #FFF7ED;
  color: #EA580C;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.svc-popular-badge.hidden { display: none; }

.svc-detail-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.625rem;
}

.svc-detail-desc {
  font-size: 0.875rem;
  color: var(--neutral);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.svc-detail-info {
  background: var(--bg);
  border-radius: 0.625rem;
  padding: 0.875rem;
  margin-bottom: 1rem;
}

.svc-info-row {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--dark);
  margin-bottom: 0.375rem;
}

.svc-info-row:last-child { margin-bottom: 0; }

.svc-pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.svc-one-time, .svc-monthly {
  background: var(--bg);
  border-radius: 0.625rem;
  padding: 0.875rem;
  text-align: center;
  border: 1px solid var(--border);
}

.price-label { font-size: 0.7rem; color: var(--neutral); font-weight: 600; margin-bottom: 0.25rem; }
.price-val { font-size: 1rem; font-weight: 800; color: #0062C6; }

.svc-actions { display: flex; gap: 0.625rem; }

.btn-svc-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  color: #fff;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-svc-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-svc-secondary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  background: var(--bg);
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-svc-secondary:hover { background: var(--border); }

/* ── AGENTS STORE ───────────────────────────────────────────────── */
.agent-guide-banner {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border-top: 3px solid #0062C6;
  border-bottom: 3px solid #0062C6;
  padding: 1.5rem;
}

.guide-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.guide-banner-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.guide-banner-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.guide-banner-text p { font-size: 0.875rem; color: var(--neutral); }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  background: #fff;
  color: var(--neutral);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  background: #0062C6;
  color: #fff;
  border-color: #0062C6;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.agent-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,98,198,0.12);
}

.agent-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.agent-badge-row { display: flex; align-items: center; gap: 0.5rem; }

.agent-cat-badge {
  padding: 0.2rem 0.5rem;
  background: var(--blue-light);
  color: #0062C6;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.agent-popular-badge {
  padding: 0.2rem 0.5rem;
  background: #FFF7ED;
  color: #EA580C;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.agent-complexity {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.complexity-easy { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; }
.complexity-setup { background: #FFF7ED; color: #EA580C; border: 1px solid #FED7AA; }

.agent-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.agent-desc {
  font-size: 0.85rem;
  color: var(--neutral);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  flex: 1;
}

.agent-tools {
  font-size: 0.78rem;
  color: var(--neutral);
  margin-bottom: 0.375rem;
}

.agent-setup-time {
  font-size: 0.78rem;
  color: #94A3B8;
  margin-bottom: 1rem;
}

.agent-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.agent-price { font-size: 1.5rem; font-weight: 800; color: #0062C6; }
.agent-price-period { font-size: 0.8rem; color: var(--neutral); }

.agent-actions { display: flex; gap: 0.5rem; }

.btn-trial {
  padding: 0.5rem 0.875rem;
  background: var(--bg);
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-trial:hover { background: var(--border); }

.btn-agent-buy {
  padding: 0.5rem 0.875rem;
  background: linear-gradient(135deg, #E8192C, #DC2626);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-agent-buy:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── PLATFORMS / IMPLEMENTATION ─────────────────────────────────── */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.platform-card {
  background: var(--bg);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.platform-logo {
  width: 52px;
  height: 52px;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.platform-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.625rem; }
.platform-desc { font-size: 0.85rem; color: var(--neutral); line-height: 1.65; margin-bottom: 0.875rem; }
.platform-examples { font-size: 0.8rem; color: var(--dark); margin-bottom: 0.875rem; }

.platform-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0062C6;
  text-decoration: none;
}

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

.impl-section { background: var(--bg); border-radius: 1rem; padding: 2rem; }

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

.impl-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.impl-step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.impl-step-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.impl-step-content p  { font-size: 0.85rem; color: var(--neutral); }

/* ── ACADEMY ────────────────────────────────────────────────────── */
.academy-hero {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #EDE9FE 100%);
}

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

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

.academy-stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0062C6;
}

.academy-stat-lbl {
  display: block;
  font-size: 0.875rem;
  color: var(--neutral);
}

.level-tabs-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 68px;
  z-index: 50;
}

.level-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.level-tab {
  padding: 1rem 1.5rem;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.level-tab.active { color: #0062C6; border-bottom-color: #0062C6; }
.level-tab.green-tab.active { color: #16A34A; border-bottom-color: #16A34A; }
.level-tab.blue-tab.active { color: #2563EB; border-bottom-color: #2563EB; }
.level-tab.purple-tab.active { color: #7C3AED; border-bottom-color: #7C3AED; }

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

.level-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.level-header-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #16A34A, #15803D);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.blue-icon  { background: linear-gradient(135deg, #2563EB, #1D4ED8) !important; }
.purple-icon { background: linear-gradient(135deg, #7C3AED, #6D28D9) !important; }

.level-header-title { font-size: 1.25rem; font-weight: 700; color: var(--dark); }
.level-header-desc  { font-size: 0.875rem; color: var(--neutral); margin-top: 0.25rem; }

.level-header-badge {
  margin-left: auto;
  flex-shrink: 0;
  padding: 0.375rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.green-level-badge  { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; }
.blue-level-badge   { background: #EFF6FF; color: #2563EB; border: 1px solid #BFDBFE; }
.purple-level-badge { background: #F5F3FF; color: #7C3AED; border: 1px solid #DDD6FE; }

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

.course-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.course-card-header {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.course-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.375rem; }

.course-level-badge {
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.course-free-badge {
  padding: 0.2rem 0.625rem;
  background: #F0FDF4;
  color: #16A34A;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid #BBF7D0;
}

.course-paid-badge {
  padding: 0.2rem 0.625rem;
  background: #EFF6FF;
  color: #0062C6;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid #BFDBFE;
}

.course-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.course-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.course-desc {
  font-size: 0.85rem;
  color: var(--neutral);
  line-height: 1.6;
  margin-bottom: 0.875rem;
  flex: 1;
}

.course-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--neutral);
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}

.course-topics { margin-bottom: 1rem; }

.topics-toggle {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0062C6;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  background: var(--blue-light);
}

.topics-list {
  list-style: none;
  padding: 0.75rem;
  background: var(--bg);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.topics-list li {
  font-size: 0.8rem;
  color: var(--dark);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border);
}

.topics-list li:last-child { border-bottom: none; }

.course-cta { margin-top: auto; }

.btn-course-start {
  width: 100%;
  padding: 0.75rem;
  color: #fff;
  border: none;
  border-radius: 0.625rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-course-start:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── TOOLS / RESOURCES ──────────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.tool-item {
  background: #fff;
  border-radius: 0.875rem;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.tool-item:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }

.tool-logo {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin: 0 auto 0.75rem;
}

.tool-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.tool-item p  { font-size: 0.75rem; color: var(--neutral); }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.resource-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg);
  border-radius: 0.875rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #BFDBFE;
}

.resource-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.resource-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.resource-info p  { font-size: 0.8rem; color: var(--neutral); line-height: 1.55; margin-bottom: 0.5rem; }
.resource-source  { font-size: 0.8rem; font-weight: 700; color: #0062C6; }

/* ── SOLUTION FINDER ────────────────────────────────────────────── */
.quiz-container {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,98,198,0.08);
}

.quiz-progress-bar {
  height: 6px;
  background: var(--blue-pale);
  border-radius: 999px;
  margin-bottom: 0.875rem;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0062C6, #2563EB);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.quiz-step-label {
  font-size: 0.85rem;
  color: var(--neutral);
  font-weight: 600;
  margin-bottom: 2rem;
}

.quiz-step { display: none; }
.active-step { display: block; }

.quiz-question {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

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

.quiz-opt {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.2s;
}

.quiz-opt:hover { border-color: #93C5FD; background: var(--blue-light); }
.quiz-opt.selected { border-color: #0062C6; background: var(--blue-light); color: #0062C6; font-weight: 700; }

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.btn-quiz-next {
  padding: 0.75rem 2rem;
  background: #CBD5E1;
  color: #fff;
  border: none;
  border-radius: 0.625rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-quiz-back {
  padding: 0.75rem 1.5rem;
  background: var(--bg);
  color: var(--neutral);
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-quiz-back.hidden { display: none; }

.results-header { text-align: center; margin-bottom: 1.5rem; }

.results-plan {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-pale));
  border: 2px solid #BFDBFE;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.results-plan-name { font-size: 0.875rem; font-weight: 700; color: #0062C6; margin-bottom: 0.25rem; }
.results-plan-price { font-size: 2rem; font-weight: 800; color: var(--dark); }
.results-plan-desc { font-size: 0.9rem; color: var(--neutral); margin-top: 0.375rem; }

.results-recs { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }

.result-rec-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-radius: 0.625rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.results-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── PRICING ────────────────────────────────────────────────────── */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.toggle-label { font-size: 0.95rem; font-weight: 600; color: var(--neutral); }
.toggle-label.active-label { color: var(--dark); }

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--blue-pale);
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  border: 2px solid #BFDBFE;
  transition: background 0.3s;
}

.toggle-knob {
  width: 20px;
  height: 20px;
  background: #0062C6;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
}

.save-badge {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  background: #F0FDF4;
  color: #16A34A;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1.5px solid var(--border);
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,98,198,0.12);
}

.featured-plan {
  border-color: #0062C6;
  box-shadow: 0 8px 32px rgba(0,98,198,0.15);
}

.plan-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0062C6, #2563EB);
  color: #fff;
  padding: 0.25rem 1.25rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card-header { margin-bottom: 1.25rem; }
.plan-name { font-size: 1.25rem; font-weight: 800; color: var(--dark); margin-bottom: 0.25rem; }
.plan-desc { font-size: 0.85rem; color: var(--neutral); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.price-currency { font-size: 1.5rem; font-weight: 700; color: #0062C6; }
.price-num { font-size: 3rem; font-weight: 900; color: #0062C6; line-height: 1; }
.price-period { font-size: 1rem; color: var(--neutral); }

.plan-billed { font-size: 0.8rem; color: var(--neutral); margin-bottom: 1.5rem; }

.plan-features { margin-bottom: 1.5rem; }

.plan-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--dark);
  padding: 0.375rem 0;
  border-bottom: 1px solid #F1F5F9;
}

.plan-feature:last-child { border-bottom: none; }
.plan-feature.muted { color: #CBD5E1; }

.plan-feature i.fa-check { color: #16A34A; width: 16px; flex-shrink: 0; }
.plan-feature i.fa-times { color: #CBD5E1; width: 16px; flex-shrink: 0; }

.btn-plan-outline {
  display: block;
  text-align: center;
  padding: 0.875rem;
  border: 2px solid #0062C6;
  color: #0062C6;
  border-radius: 0.75rem;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-plan-outline:hover { background: var(--blue-light); }

.btn-plan-featured {
  display: block;
  text-align: center;
  padding: 0.875rem;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  color: #fff;
  border-radius: 0.75rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,98,198,0.3);
  text-decoration: none;
}

.btn-plan-featured:hover { opacity: 0.9; transform: translateY(-1px); }

.consult-options { margin-bottom: 3rem; }

.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.consult-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1.5px solid var(--border);
  position: relative;
}

.paid-consult { border-color: #0062C6; }

.consult-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #F59E0B;
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.consult-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  color: #0062C6;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.paid-icon { background: #EFF6FF; }

.consult-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.consult-price { font-size: 2rem; font-weight: 900; margin-bottom: 0.75rem; }
.free-price { color: #16A34A; }
.paid-price { color: #0062C6; }

.consult-card p { font-size: 0.875rem; color: var(--neutral); line-height: 1.65; margin-bottom: 1rem; }

.consult-includes { list-style: none; margin-bottom: 0.5rem; }
.consult-includes li { font-size: 0.85rem; color: var(--dark); padding: 0.25rem 0; display: flex; align-items: center; }
.consult-includes li i { color: #16A34A; width: 20px; flex-shrink: 0; }

.project-table-section { margin-bottom: 3rem; overflow-x: auto; }

.table-wrap { overflow-x: auto; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.pricing-table thead { background: linear-gradient(135deg, #0062C6, #2563EB); }
.pricing-table thead th { padding: 1rem 1.25rem; text-align: left; color: #fff; font-weight: 700; font-size: 0.875rem; }
.pricing-table tbody tr { border-top: 1px solid var(--border); }
.pricing-table tbody tr:hover { background: var(--bg); }
.pricing-table tbody td { padding: 0.875rem 1.25rem; color: var(--dark); }

.faq-section { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.faq-question:hover { background: var(--bg); }

.faq-icon { color: #0062C6; transition: transform 0.3s; }

.faq-answer {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.875rem;
  color: var(--neutral);
  line-height: 1.7;
}

/* ── CONTACT PAGE ───────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

.consult-type-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  background: var(--bg);
  border-radius: 0.75rem;
  padding: 0.25rem;
}

.consult-tab {
  flex: 1;
  padding: 0.625rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--neutral);
  background: transparent;
  transition: all 0.2s;
  text-align: center;
}

.consult-tab.active-consult-tab {
  background: #fff;
  color: #0062C6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.consult-info-box {
  background: var(--blue-light);
  border: 1px solid #BFDBFE;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: #1E40AF;
  margin-bottom: 1.5rem;
}

.paid-info-box {
  background: #FFF7ED;
  border-color: #FED7AA;
  color: #92400E;
}

.contact-form { margin-top: 0; }

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-benefits { display: flex; flex-direction: column; gap: 0.75rem; }

.sidebar-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.sidebar-benefit i { flex-shrink: 0; margin-top: 0.1rem; }
.sidebar-benefit p { font-size: 0.875rem; color: var(--neutral); }

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

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--dark);
  cursor: pointer;
}

.checkbox-item input { width: auto; accent-color: #0062C6; }

.quote-result {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border: 1px solid #BFDBFE;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  margin-top: 0.75rem;
}

.quote-total-label { font-size: 0.75rem; color: #0062C6; font-weight: 600; }
.quote-total-val { font-size: 1.5rem; font-weight: 800; color: var(--dark); }
.quote-monthly { font-size: 0.85rem; color: var(--neutral); }

.contact-info-card {}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.contact-info-item:last-child { border-bottom: none; }
.contact-info-label { font-size: 0.75rem; color: var(--neutral); font-weight: 600; }
.contact-info-item i { margin-top: 0.2rem; }

/* ── MODAL ──────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.modal-overlay.hidden { display: none !important; }

.modal-box {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--neutral);
  font-size: 1rem;
  transition: all 0.2s;
}

.modal-close:hover { background: var(--border); }

.modal-header { text-align: center; margin-bottom: 1.5rem; }

.modal-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E8192C, #DC2626);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.375rem;
}

.modal-subtitle { font-size: 0.875rem; color: var(--neutral); }

.modal-price {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: #0062C6;
  margin-bottom: 1.5rem;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
  color: #CBD5E1;
  padding: 4rem 1.5rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 0.625rem;
}

.footer-tagline { font-size: 0.875rem; color: #94A3B8; margin-bottom: 1.25rem; line-height: 1.65; }

.footer-social { display: flex; gap: 0.625rem; }

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.social-icon:hover { background: #0062C6; color: #fff; }

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links a, .footer-links p {
  display: block;
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: #60A5FA; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #64748B;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── HIDDEN UTILITY ─────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-container { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .academy-teaser-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: none;
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .nav-link, .btn-nav { width: 100%; text-align: center; }

  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { font-size: 2.25rem; }
  .hero-visual { display: none; }

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

  .steps-row { flex-direction: column; }
  .step-arrow { display: none; }

  .contact-layout { grid-template-columns: 1fr; }
  .consult-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

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

  .quiz-question { font-size: 1.2rem; }
  .quiz-container { padding: 1.5rem; }

  .pricing-cards { grid-template-columns: 1fr; }
  .level-header { flex-wrap: wrap; }
  .level-header-badge { margin-left: 0; }
}

@media (max-width: 480px) {
  .footer-container { grid-template-columns: 1fr; }
  .hero-stats { justify-content: center; }
  .hero-actions { flex-direction: column; }
  .results-actions { flex-direction: column; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   NUTRENDZMEDIA — ADDITIONAL COMPONENTS
   Cart, Checkout, Dashboard, Contact, Agent Store, Trust Bar, etc.
   ══════════════════════════════════════════════════════════════════ */

/* ── TRUST BAR ───────────────────────────────────────────────────── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 1.5rem;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neutral);
}

.trust-item i { color: #0062C6; font-size: 0.9rem; }

.trust-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
}

/* ── CART SIDEBAR ─────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 299;
  backdrop-filter: blur(2px);
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}

.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.cart-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--neutral);
  font-size: 1rem;
  transition: all 0.2s;
}

.cart-close:hover { background: var(--border); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: var(--neutral);
  text-align: center;
  gap: 0.75rem;
}

.cart-empty i { font-size: 3rem; color: #CBD5E1; }
.cart-empty p { font-size: 0.95rem; }

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem;
  background: var(--bg);
  border-radius: 0.75rem;
  margin-bottom: 0.625rem;
  border: 1px solid var(--border);
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-type { font-size: 0.75rem; color: var(--neutral); }

.cart-item-right {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.cart-item-price { font-size: 0.95rem; font-weight: 800; color: #0062C6; }

.cart-item-remove {
  width: 28px;
  height: 28px;
  border-radius: 0.375rem;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #E8192C;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  transition: all 0.2s;
}

.cart-item-remove:hover { background: #E8192C; color: #fff; }

.cart-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.cart-total-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0062C6;
}

.cart-note {
  font-size: 0.75rem;
  color: var(--neutral);
  margin-bottom: 0.875rem;
}

.btn-checkout {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0.625rem;
  box-shadow: 0 4px 16px rgba(0,98,198,0.3);
}

.btn-checkout:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-continue-shopping {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  color: var(--neutral);
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-continue-shopping:hover { background: var(--bg); }

/* ── CART COUNT BADGE ─────────────────────────────────────────────── */
.nav-cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 0.625rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--neutral);
  font-size: 1rem;
  transition: all 0.2s;
  flex-shrink: 0;
}

.nav-cart-btn:hover { background: var(--blue-light); color: #0062C6; border-color: #BFDBFE; }

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #E8192C;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  align-items: center;
  justify-content: center;
}

/* ── NAV USER AREA ────────────────────────────────────────────────── */
.nav-user-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem 0.625rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.nav-user-btn:hover { background: var(--bg); }

.nav-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 220px;
  background: #fff;
  border-radius: 0.875rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  overflow: hidden;
  z-index: 200;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--dark);
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
  text-decoration: none;
}

.dropdown-item:hover { background: var(--bg); }

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.25rem 0;
}

/* ── TOAST NOTIFICATION ───────────────────────────────────────────── */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1E293B;
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: 0.875rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.toast-msg.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── HOME AGENT STORE CARDS ───────────────────────────────────────── */
.agent-store-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.agent-store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,98,198,0.12);
}

.featured-agent-card {
  border-color: #E8192C;
  box-shadow: 0 4px 16px rgba(232,25,44,0.1);
}

.asc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.asc-badge {
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.asc-badge.best { background: #FFF7ED; color: #EA580C; border: 1px solid #FED7AA; }
.asc-badge.hot  { background: #FFF0F0; color: #E8192C; border: 1px solid #FCA5A5; }
.asc-badge.popular { background: #F5F3FF; color: #7C3AED; border: 1px solid #DDD6FE; }

.asc-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0062C6;
}

.asc-period { font-size: 0.8rem; color: var(--neutral); font-weight: 400; }

.asc-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
}

.red-asc-icon   { background: linear-gradient(135deg, #E8192C, #DC2626) !important; }
.purple-asc-icon { background: linear-gradient(135deg, #7C3AED, #6D28D9) !important; }

.agent-store-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.agent-store-card p {
  font-size: 0.875rem;
  color: var(--neutral);
  line-height: 1.6;
  margin-bottom: 0.875rem;
  flex: 1;
}

.asc-tools {
  font-size: 0.78rem;
  color: var(--neutral);
  margin-bottom: 1rem;
}

.asc-actions { display: flex; gap: 0.625rem; margin-top: auto; }

.btn-add-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.875rem;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-add-cart:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-view-more {
  padding: 0.625rem 1rem;
  background: var(--bg);
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.btn-view-more:hover { background: var(--border); }

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.125rem;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  color: #fff;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary-sm:hover { opacity: 0.9; }

/* ── CHECKOUT PAGE ────────────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.5rem;
  align-items: flex-start;
}

.checkout-summary { display: flex; flex-direction: column; gap: 1rem; }

.checkout-box {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.checkout-box-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

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

.checkout-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}

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

.checkout-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.checkout-item-info { flex: 1; min-width: 0; }

.checkout-item-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.checkout-item-type { font-size: 0.75rem; color: var(--neutral); }

.checkout-item-price {
  font-size: 1rem;
  font-weight: 800;
  color: #0062C6;
  flex-shrink: 0;
}

.checkout-divider {
  height: 1px;
  background: var(--border);
  margin: 0.875rem 0;
}

.checkout-totals { display: flex; flex-direction: column; gap: 0.5rem; }

.checkout-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--neutral);
}

.discount-row { color: #16A34A; }

.total-row {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  padding-top: 0.625rem;
  border-top: 2px solid var(--border);
  margin-top: 0.25rem;
}

.payment-options { display: flex; flex-direction: column; gap: 0.5rem; }

.payment-opt {
  display: flex;
  align-items: center;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.625rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral);
  transition: all 0.2s;
  gap: 0.5rem;
  position: relative;
}

.payment-opt:hover { border-color: #93C5FD; background: var(--blue-light); }
.payment-opt.active { border-color: #0062C6; background: var(--blue-light); color: #0062C6; }

.payment-opt-badge {
  margin-left: auto;
  padding: 0.15rem 0.5rem;
  background: #F1F5F9;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--neutral);
}

/* ── USER DASHBOARD ───────────────────────────────────────────────── */
.dash-user-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,98,198,0.06);
}

.dash-user-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

.dash-welcome {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.dash-email { font-size: 0.875rem; color: var(--neutral); }

.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dash-stat-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.dsc-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.blue-dsc   { background: linear-gradient(135deg, #0062C6, #2563EB); }
.purple-dsc { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.green-dsc  { background: linear-gradient(135deg, #16A34A, #15803D); }
.orange-dsc { background: linear-gradient(135deg, #EA580C, #C2410C); }

.dsc-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.dsc-lbl { font-size: 0.78rem; color: var(--neutral); font-weight: 600; }

.db-tabs {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 0.875rem 0.875rem 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  overflow: hidden;
  margin-bottom: 0;
}

.db-tab {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.db-tab:hover { color: #0062C6; background: var(--blue-light); }
.db-tab.active { color: #0062C6; border-bottom-color: #0062C6; background: var(--blue-light); }

.db-panel {
  background: #fff;
  border-radius: 0 0 1rem 1rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.db-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--border);
}

.db-panel-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
}

.db-empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--neutral);
}

.db-empty-state i { font-size: 2.5rem; color: #CBD5E1; margin-bottom: 0.75rem; display: block; }
.db-empty-state p { margin-bottom: 1rem; font-size: 0.95rem; }

/* ── ORDER CARDS ──────────────────────────────────────────────────── */
.order-card {
  background: var(--bg);
  border-radius: 0.875rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.order-id {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--dark);
  font-family: monospace;
}

.order-date { font-size: 0.78rem; color: var(--neutral); margin-top: 0.2rem; }

.order-status {
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: capitalize;
}

.order-status-pending  { background: #FFF7ED; color: #EA580C; border: 1px solid #FED7AA; }
.order-status-active   { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; }
.order-status-complete { background: #EFF6FF; color: #0062C6; border: 1px solid #BFDBFE; }
.order-status-cancelled { background: #FEF2F2; color: #E8192C; border: 1px solid #FCA5A5; }

.order-items { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 0.75rem; }

.order-item-tag {
  padding: 0.2rem 0.625rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.75rem;
  color: var(--dark);
  font-weight: 500;
}

.order-total { font-size: 0.875rem; color: var(--neutral); }

/* ── ENROLLED COURSE CARDS ────────────────────────────────────────── */
.enrolled-course-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg);
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.enrolled-course-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.enrolled-course-info { flex: 1; min-width: 0; }

.enrolled-course-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.enrolled-course-meta { font-size: 0.78rem; color: var(--neutral); }

/* ── CONTACT PAGE ─────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.contact-form-col { display: flex; flex-direction: column; gap: 0; }
.contact-info-col { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card { background: #fff; border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); }

.contact-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  background: var(--bg);
  border-radius: 0.875rem;
  padding: 0.375rem;
}

.ctab {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--neutral);
  background: transparent;
  transition: all 0.2s;
  text-align: center;
}

.ctab:hover { background: rgba(255,255,255,0.7); color: var(--dark); }

.ctab-active {
  background: #fff;
  color: #0062C6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-form-box { background: #fff; border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); }

.contact-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-step:last-child { border-bottom: none; }

.c-step-num {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0062C6, #2563EB);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.contact-step strong { font-size: 0.9rem; color: var(--dark); display: block; margin-bottom: 0.2rem; }
.contact-step p { font-size: 0.8rem; color: var(--neutral); line-height: 1.5; margin: 0; }

/* ── INLINE UTILITY ───────────────────────────────────────────────── */
.inline-block { display: inline-block; }

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

.mt-3 { margin-top: 0.75rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }

.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }

/* FA color utils */
.text-blue-400 { color: #60A5FA; }
.text-blue-500 { color: #3B82F6; }
.text-green-500 { color: #22C55E; }
.text-red-500 { color: #EF4444; }
.text-orange-500 { color: #F97316; }
.text-purple-500 { color: #A855F7; }
.text-yellow-500 { color: #EAB308; }
.text-gray-400 { color: #9CA3AF; }

/* ── RESPONSIVE ADD-ONS ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .dash-stats-row { grid-template-columns: 1fr 1fr; }
  .db-tabs { overflow-x: auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .dash-user-header { flex-wrap: wrap; }
  .agent-store-card { flex-direction: column; }
  .cart-sidebar { width: 100vw; }
}

@media (max-width: 480px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .asc-header { flex-direction: column; align-items: flex-start; gap: 0.375rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   NEW FEATURES — Community, Feedback, Customize, Insights, Support
   ═══════════════════════════════════════════════════════════════════ */

/* ── Community Forum ─────────────────────────────────────────────── */
.community-stats-row { display:flex; gap:2rem; justify-content:center; flex-wrap:wrap; margin-top:2rem; }
.comm-stat { text-align:center; }
.comm-stat-num { display:block; font-size:2rem; font-weight:800; color:#fff; }
.comm-stat-lbl { display:block; font-size:0.82rem; color:rgba(255,255,255,0.75); }

.community-layout { display:grid; grid-template-columns:1fr 300px; gap:2rem; align-items:start; }
.community-main { min-width:0; }
.community-sidebar { position:sticky; top:5rem; }

.community-toolbar { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:1.25rem; flex-wrap:wrap; }
.comm-filter-tabs { display:flex; gap:0.375rem; flex-wrap:wrap; }
.comm-tab { padding:0.375rem 0.875rem; border-radius:2rem; border:1.5px solid #E2E8F0; background:#fff; color:#64748B; font-size:0.8rem; font-weight:600; cursor:pointer; transition:all 0.2s; font-family:inherit; }
.comm-tab:hover { border-color:#0062C6; color:#0062C6; }
.comm-tab.active { background:#0062C6; border-color:#0062C6; color:#fff; }

.comm-post-card { background:#fff; border-radius:1rem; padding:1.5rem; border:1px solid #E2E8F0; margin-bottom:1rem; cursor:pointer; transition:all 0.2s; }
.comm-post-card:hover { border-color:#0062C6; box-shadow:0 4px 20px rgba(0,98,198,0.08); transform:translateY(-1px); }
.comm-post-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:0.875rem; flex-wrap:wrap; gap:0.5rem; }
.comm-post-title { font-size:1rem; font-weight:700; color:#1E293B; margin-bottom:0.5rem; line-height:1.4; }
.comm-post-excerpt { font-size:0.875rem; color:#64748B; line-height:1.6; margin-bottom:0.875rem; }
.comm-post-footer { display:flex; align-items:center; justify-content:space-between; }

.comm-sidebar-card { background:#fff; border-radius:1rem; padding:1.25rem; border:1px solid #E2E8F0; }
.comm-sidebar-title { font-size:0.9rem; font-weight:700; color:#1E293B; margin-bottom:1rem; padding-bottom:0.625rem; border-bottom:1px solid #F1F5F9; }

/* ── Feedback Page ───────────────────────────────────────────────── */
.feedback-layout { display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:start; }
.feedback-form-col { }
.feedback-reviews-col { }
.star-btn:hover { transform:scale(1.2); }

/* ── Customize Page ──────────────────────────────────────────────── */
.customize-layout { display:grid; grid-template-columns:1fr 320px; gap:2rem; align-items:start; }
.cust-step-card { background:#fff; border-radius:1.25rem; padding:1.75rem; border:1px solid #E2E8F0; margin-bottom:1.5rem; }
.cust-step-header { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1.5rem; }
.cust-step-num { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,#0062C6,#2563EB); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.1rem; font-weight:800; flex-shrink:0; }
.cust-step-title { font-size:1.1rem; font-weight:700; color:#1E293B; margin-bottom:0.25rem; }
.cust-step-desc { font-size:0.85rem; color:#64748B; }

.cust-item-card { background:#F8FAFF; border-radius:0.875rem; border:1.5px solid #E2E8F0; padding:1rem; cursor:pointer; transition:all 0.2s; position:relative; display:block; }
.cust-item-card:hover { border-color:#0062C6; background:#EFF6FF; }
.cust-item-card.selected { border-color:#0062C6; background:#EFF6FF; }
.cust-item-card input[type="checkbox"] { position:absolute; opacity:0; }
.cust-item-inner { }
.cust-check-icon { position:absolute; top:0.625rem; right:0.625rem; width:22px; height:22px; border-radius:50%; background:#E2E8F0; color:#CBD5E1; display:flex; align-items:center; justify-content:center; font-size:0.75rem; transition:all 0.2s; }
.cust-item-card.selected .cust-check-icon { background:#0062C6; color:#fff; }

.cust-summary-panel { background:#fff; border-radius:1.25rem; padding:1.5rem; border:2px solid #0062C6; position:sticky; top:5rem; }
.cust-summary-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.25rem; }
.cust-summary-header h3 { font-size:1rem; font-weight:700; color:#1E293B; }
.cust-badge { background:#EFF6FF; color:#0062C6; border-radius:2rem; padding:0.2rem 0.625rem; font-size:0.75rem; font-weight:700; }
.cust-total-row { display:flex; justify-content:space-between; align-items:center; padding:0.875rem 0; border-top:1px solid #E2E8F0; border-bottom:1px solid #E2E8F0; margin-bottom:1rem; font-size:0.9rem; font-weight:600; color:#374151; }

/* ── Insights / Market Research Page ────────────────────────────── */
.insights-stats-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.25rem; }
.insights-stat-card { background:#fff; border-radius:1rem; padding:1.5rem; border:1px solid #E2E8F0; text-align:center; }
.insights-stat-icon { width:52px; height:52px; border-radius:0.875rem; display:flex; align-items:center; justify-content:center; font-size:1.25rem; margin:0 auto 0.875rem; }
.insights-stat-val { font-size:1.75rem; font-weight:800; margin-bottom:0.375rem; }
.insights-stat-lbl { font-size:0.8rem; color:#64748B; line-height:1.4; }

.insights-layout { display:grid; grid-template-columns:1fr 300px; gap:2rem; align-items:start; }
.insights-main { min-width:0; }
.insights-sidebar { position:sticky; top:5rem; }

.insights-article-card { background:#fff; border-radius:1rem; padding:1.5rem; border:1px solid #E2E8F0; margin-bottom:1.25rem; transition:all 0.2s; }
.insights-article-card:hover { border-color:#0062C6; box-shadow:0 4px 20px rgba(0,98,198,0.08); }
.insights-article-meta { display:flex; align-items:center; gap:0.5rem; margin-bottom:0.875rem; flex-wrap:wrap; }
.insights-article-title { font-size:1.05rem; font-weight:700; color:#1E293B; margin-bottom:0.5rem; line-height:1.4; }
.insights-article-desc { font-size:0.875rem; color:#64748B; line-height:1.6; }

/* ── Support / Knowledge Base Page ──────────────────────────────── */
.kb-layout { display:grid; grid-template-columns:1fr 280px; gap:2rem; align-items:start; }
.kb-main { min-width:0; }
.kb-sidebar { position:sticky; top:5rem; }

.kb-section { background:#fff; border-radius:1rem; border:1px solid #E2E8F0; margin-bottom:1rem; overflow:hidden; }
.kb-section-header { display:flex; align-items:center; justify-content:space-between; padding:1.25rem 1.5rem; cursor:pointer; transition:background 0.2s; }
.kb-section-header:hover { background:#F8FAFF; }
.kb-section-body { padding:0 1.5rem 1rem; display:none; }
.kb-item { border-top:1px solid #F1F5F9; }
.kb-question { display:flex; align-items:center; justify-content:space-between; width:100%; padding:0.875rem 0; background:none; border:none; text-align:left; font-size:0.9rem; font-weight:600; color:#1E293B; cursor:pointer; gap:0.75rem; font-family:inherit; }
.kb-question:hover { color:#0062C6; }
.kb-answer { padding:0 0 0.875rem; font-size:0.875rem; color:#64748B; line-height:1.7; }

/* ── Upsell Cart Widget ──────────────────────────────────────────── */
#cart-upsell { animation:fadeSlideIn 0.3s ease; }
@keyframes fadeSlideIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }

/* ── Responsive Adjustments ─────────────────────────────────────── */
@media (max-width:900px) {
  .community-layout,
  .feedback-layout,
  .customize-layout,
  .insights-layout,
  .kb-layout { grid-template-columns:1fr; }
  .community-sidebar,
  .insights-sidebar,
  .kb-sidebar { position:static; }
  .cust-summary-panel { position:static; margin-top:1.5rem; }
}
@media (max-width:640px) {
  .community-toolbar { flex-direction:column; align-items:flex-start; }
  .comm-filter-tabs { overflow-x:auto; flex-wrap:nowrap; width:100%; padding-bottom:0.5rem; }
  .insights-stats-grid { grid-template-columns:1fr 1fr; }
  #ai-chat-widget { bottom:1rem; right:1rem; }
  #ai-chat-window { width:calc(100vw - 2rem); right:0; }
}
