:root {
  --primary: #1e40af;
  --primary-bright: #2563eb;
  --accent: #38bdf8;
  --bg: #ffffff;
  --bg-dark: #001233;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.18);
  --header-height: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════
   GLOBAL COMPONENTS - BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  gap: 8px;
  white-space: nowrap;
  outline: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--primary-bright);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: #475569;
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  background: #f8fafc;
  color: var(--text);
  border-color: #cbd5e1;
}



body {
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Auth Views Extensions */
.user-type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.type-card {
  background: #f8fafc;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.type-card:hover {
  border-color: var(--primary-bright);
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.05);
}

.type-card.active {
  background: white;
  border-color: var(--primary-bright);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.type-card-icon {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  border: 1px solid #f1f5f9;
  transition: all 0.2s;
}

.type-card.active .type-card-icon {
  background: var(--primary-bright);
  color: white;
  border-color: var(--primary-bright);
}

.type-card-text {
  display: flex;
  flex-direction: column;
}

.type-card-text strong {
  font-size: 0.9rem;
  color: #0f172a;
}

.type-card-text span {
  font-size: 0.75rem;
  color: #94a3b8;
}

.hidden { display: none !important; }

/* Dashboard Styles */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  padding-bottom: 60px;
}

.stats-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}

.stat-card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon.blue { background: #eff6ff; color: #2563eb; }
.stat-icon.green { background: #f0fdf4; color: #16a34a; }
.stat-icon.orange { background: #fff7ed; color: #ea580c; }

.stat-data { display: flex; flex-direction: column; }
.stat-value { font-size: 1.5rem; font-weight: 800; color: #0f172a; }
.stat-label { font-size: 0.85rem; color: #64748b; font-weight: 600; }

.stat-progress {
  height: 6px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--primary-bright);
  border-radius: 3px;
}

.dashboard-card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  margin-bottom: 24px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-header h3 i { color: var(--primary-bright); }

/* Timeline */
.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 20px;
  padding-bottom: 24px;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: #f1f5f9;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8fafc;
  border: 2px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #94a3b8;
  z-index: 1;
}

.step-item.done .step-circle {
  background: #f0fdf4;
  border-color: #16a34a;
  color: #16a34a;
}

.step-item.active .step-circle {
  background: var(--primary-bright);
  border-color: var(--primary-bright);
  color: white;
  box-shadow: 0 0 0 4px #eff6ff;
}

.step-content { display: flex; flex-direction: column; padding-top: 2px; }
.step-content strong { font-size: 1rem; color: #0f172a; }
.step-content span { font-size: 0.85rem; color: #64748b; }

/* Agenda */
.agenda-list { display: flex; flex-direction: column; gap: 16px; }

.agenda-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
}

.agenda-date {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f5f9;
}

.agenda-date .day { font-size: 1.2rem; font-weight: 800; color: #0f172a; line-height: 1; }
.agenda-date .month { font-size: 0.65rem; font-weight: 700; color: #64748b; text-transform: uppercase; }

.agenda-info { flex: 1; display: flex; flex-direction: column; }
.agenda-info strong { font-size: 0.95rem; color: #0f172a; }
.agenda-info span { font-size: 0.8rem; color: #64748b; }

.agenda-status {
  padding: 6px 12px;
  background: #f0fdf4;
  color: #16a34a;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
}

/* Sidebar */
.profile-summary { text-align: center; }
.ps-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-bright);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.profile-summary h4 { font-size: 1.1rem; color: #0f172a; margin-bottom: 4px; }
.profile-summary p { font-size: 0.85rem; color: #64748b; }

.quick-docs h4 { font-size: 1rem; color: #0f172a; margin-bottom: 16px; }
.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 8px;
  cursor: pointer;
}

.doc-item i { color: #64748b; width: 18px; }
.doc-item span { flex: 1; font-size: 0.85rem; color: #475569; font-weight: 500; }
.dl-icon { color: var(--primary-bright) !important; opacity: 0.6; }

@media (max-width: 992px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.main-header {
  height: var(--header-height);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.header-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper { cursor: pointer; flex-shrink: 0; }

.main-logo {
  height: 44px;
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  gap: 28px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.desktop-nav a:hover { color: var(--primary-bright); }

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

.btn-login-header {
  background: white;
  border: 1.5px solid var(--border);
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.2s;
}
.btn-login-header:hover { border-color: #94a3b8; }

.btn-primary-header {
  background: var(--primary-bright);
  color: white;
  border: none;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary-header:hover { background: var(--primary); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* ══════════════════════════════════════
   APP CONTAINER
   ══════════════════════════════════════ */
.app-container {
  padding-top: var(--header-height);
}

/* ══════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 18, 51, 0.98) 0%,
    rgba(0, 18, 51, 0.92) 32%,
    rgba(0, 18, 51, 0.55) 58%,
    rgba(0, 18, 51, 0.08) 100%
  );
}

.hero-container-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 48px;
  position: relative;
  z-index: 2;
}

.hero-main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-text-block {
  max-width: 800px;
  width: 100%;
}

.hero-text-block h1 {
  font-size: 3.4rem;
  font-weight: 800;
  color: white;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.highlight-blue { color: var(--accent); }

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Tabs */
.hero-tabs-new {
  display: flex;
  gap: 0;
  margin-bottom: 0;
}

.tab-btn-new {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.5);
  padding: 10px 20px 12px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.tab-btn-new.active {
  color: white;
  border-bottom: 2px solid var(--primary-bright);
}

.tab-btn-new i { width: 15px; height: 15px; }

/* Search Card */
.hero-search-card {
  background: white;
  border-radius: 0 16px 16px 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.search-fields-row {
  display: flex;
  align-items: stretch;
  padding: 16px 16px 16px 0;
  gap: 10px;
}

.search-input-group {
  flex: 1;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-left: 20px;
  background: white;
  transition: border-color 0.2s;
}

.search-input-group:focus-within {
  border-color: var(--primary-bright);
}

.search-input-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.input-with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-with-icon i {
  color: #94a3b8;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.input-with-icon input,
.input-with-icon select {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.input-with-icon input::placeholder { color: #94a3b8; font-weight: 400; }

.btn-find {
  background: var(--primary-bright);
  color: white;
  border: none;
  padding: 18px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
  align-self: stretch;
}
.btn-find:hover { background: var(--primary); }

/* Search Footer */
.search-card-footer {
  background: #f8fafc;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  gap: 16px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.mini-avatars { display: flex; }
.mav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.6rem;
}
.mav:first-child { margin-left: 0; }

.footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-text { font-weight: 700; color: var(--text); }

.stars-row {
  display: flex;
  gap: 2px;
  background: #00b67a;
  padding: 4px 8px;
  border-radius: 4px;
}
.stars-row i { width: 13px; height: 13px; fill: white; color: white; stroke: white; }

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

.trustpilot-tag {
  font-weight: 700;
  color: #00b67a;
  display: flex;
  align-items: center;
  gap: 4px;
}
.trustpilot-tag i { width: 14px; fill: #00b67a; color: #00b67a; }

/* ══════════════════════════════════════
   VALUE PROPS
   ══════════════════════════════════════ */
.value-props-section {
  padding: 64px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.container-props {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.prop-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.p-icon-circle {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-bright);
  flex-shrink: 0;
}
.p-icon-circle i { width: 22px; height: 22px; }

.p-content h4 { font-size: 0.92rem; margin-bottom: 6px; font-weight: 700; }
.p-content p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════ */
.how-it-works {
  padding: 96px 0;
}

.container-how {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

.how-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.how-header p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.steps-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.steps-flow::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 56px;
  right: 56px;
  height: 1px;
  background: var(--border);
}

.flow-step {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-circle {
  width: 72px;
  height: 72px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-bright);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.step-circle i { width: 28px; height: 28px; }

.step-number-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: var(--primary-bright);
  color: white;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.flow-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.flow-step p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; max-width: 150px; }

.flow-connector { display: none; }
.step-index { display: none; }

.how-footer { margin-top: 0; padding-top: 28px; }

.btn-outline-alt {
  background: transparent;
  border: 1.5px solid var(--border);
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-alt:hover { border-color: #94a3b8; background: #f8fafc; }

/* ══════════════════════════════════════
   PARA ALUNOS SECTION
   ══════════════════════════════════════ */
.students-section {
  background: var(--primary);
  padding: 80px 0;
  overflow: hidden;
}

.container-students-props {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.white-prop-card {
  background: white;
  padding: 32px 24px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s;
}

.white-prop-card:hover {
  transform: translateY(-8px);
}

.wpc-icon {
  width: 56px;
  height: 56px;
  background: #eff6ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-bright);
  margin-bottom: 20px;
}

.wpc-icon i {
  width: 28px;
  height: 28px;
}

.white-prop-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.white-prop-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .container-students-props {
    flex-wrap: wrap;
  }
  .white-prop-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .container-students-props {
    padding: 0 24px;
  }
  .white-prop-card {
    min-width: 100%;
  }
}


/* Legality Section (White) */
.legality-section {
  background: white;
  padding: 100px 0;
}

.container-legality {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.legality-left h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 24px;
}

.legality-left h2 span {
  color: var(--primary-bright);
}

.legality-main-text {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
}

.legality-sub-text {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

.legality-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lc-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lc-item i {
  width: 24px;
  height: 24px;
  color: var(--primary-bright);
  flex-shrink: 0;
}

.lc-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
}

@media (max-width: 900px) {
  .container-legality {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .legality-left h2 { font-size: 2.2rem; }
  .lc-item { text-align: left; }
}

.students-visual {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
}

.phone-mockup {
  background: white;
  border-radius: 24px;
  padding: 20px 16px;
  width: 200px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.35);
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}

.phone-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.phone-nav i { width: 14px; color: var(--text-muted); }

.phone-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 14px;
}

.phone-month {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}

.phone-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.cal-header {
  text-align: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px 0;
}

.cal-day {
  text-align: center;
  font-size: 0.62rem;
  padding: 5px 2px;
  border-radius: 4px;
  color: var(--text);
  font-weight: 500;
}

.cal-day.active {
  background: var(--primary-bright);
  color: white;
  font-weight: 700;
  border-radius: 6px;
}

.cal-day.muted { color: #cbd5e1; }

.next-class-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  width: 180px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  margin-top: 40px;
}

.next-class-label {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.next-class-icon {
  width: 34px;
  height: 34px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-bright);
  margin-bottom: 12px;
}
.next-class-icon i { width: 16px; }

.next-class-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.next-class-time {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

/* ══════════════════════════════════════
   BOTTOM NAV (mobile only)
   ══════════════════════════════════════ */
.bottom-nav { display: none; }

/* ══════════════════════════════════════
   INTERNAL VIEWS
   ══════════════════════════════════════ */
.internal-view { min-height: 100vh; background: #f8fafc; padding-bottom: 80px; }
.internal-container { max-width: 1000px; margin: 0 auto; padding: 48px 24px; }

/* Internal Header */
.internal-header {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}
.internal-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-icon-circle {
  width: 64px;
  height: 64px;
  background: #eff6ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-bright);
  margin-bottom: 20px;
}
.header-icon-circle i { width: 32px; height: 32px; }
.internal-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.internal-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* Empty State V2 */
.empty-state-v2 {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.empty-state-v2 i { width: 48px; height: 48px; color: #cbd5e1; margin-bottom: 16px; }
.empty-state-v2 h3 { margin-bottom: 8px; font-weight: 700; }
.empty-state-v2 p { color: var(--text-muted); margin-bottom: 24px; }

/* Profile Card Mock */
.profile-card-mock {
  background: white;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  max-width: 500px;
  margin: 0 auto;
}
.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.profile-avatar-large {
  width: 80px;
  height: 80px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #94a3b8;
}
.profile-info h3 { font-size: 1.4rem; font-weight: 700; }
.profile-info p { color: var(--text-muted); }

/* Packages Grid */
.packages-grid-mock {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.package-card-mini {
  background: white;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.package-card-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.package-card-mini.highlighted { border: 2px solid var(--primary-bright); }
.badge-pop {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary-bright);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.package-card-mini h4 { margin-bottom: 8px; font-weight: 700; }
.package-card-mini .price { font-size: 1.8rem; font-weight: 800; color: var(--text); display: block; margin-bottom: 8px; }
.package-card-mini p { color: var(--text-muted); font-size: 0.9rem; }

/* FAQ & Safety */
.faq-mock, .safety-props { display: flex; flex-direction: column; gap: 16px; }
.faq-item, .safety-item { background: white; padding: 24px; border-radius: 16px; border: 1px solid var(--border); }
.safety-item i { width: 32px; height: 32px; color: var(--primary-bright); margin-bottom: 12px; }
.safety-item h4 { margin-bottom: 4px; font-weight: 700; }
.safety-item p { color: var(--text-muted); font-size: 0.9rem; }

/* SPA Views */
.view { 
  display: none; 
  min-height: calc(100vh - var(--header-height));
}
.view.active { 
  display: block; 
}

/* ══════════════════════════════════════
   RESPONSIVE (base)
   ══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-text-block h1 { font-size: 3rem; }
  .container-how { grid-template-columns: 1fr; gap: 48px; }
  .steps-flow::before { display: none; }
  .steps-flow { flex-wrap: wrap; gap: 28px; justify-content: center; }
}

@media (max-width: 900px) {
  .header-container { padding: 0 24px; }
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-container-inner { padding: 40px 24px; }
  .hero-text-block h1 { font-size: 2.5rem; }
  .container-props { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .container-how { padding: 0 24px; }
  .container-students { grid-template-columns: 1fr; padding: 0 24px; gap: 40px; }
  .search-fields-row { flex-direction: column; }
  .search-input-group { border-right: none; border-bottom: 1px solid var(--border); }
  .search-input-group:last-of-type { border-bottom: none; }
  .btn-find { margin: 16px; width: calc(100% - 32px); align-self: stretch; }
}

@media (max-width: 600px) {
  .container-props { grid-template-columns: 1fr; }
  .hero-text-block h1 { font-size: 2.2rem; }
  .bottom-nav { display: flex; position: fixed; bottom: 0; left: 0; right: 0; background: white; border-top: 1px solid var(--border); padding: 8px 0 12px; justify-content: space-around; z-index: 999; }
  body { padding-bottom: 72px; }
  .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 0.65rem; color: var(--text-muted); text-decoration: none; font-weight: 500; }
  .nav-item.active { color: var(--primary-bright); }
  .nav-item i { width: 20px; }
}

/* ══════════════════════════════════════
   GUIA CNH VIEW
   ══════════════════════════════════════ */

/* Breadcrumb */
.guide-breadcrumb {
  background: white;
  border-bottom: 1px solid var(--border);
}
.guide-breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 48px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.guide-breadcrumb-inner span { cursor: default; }
.guide-breadcrumb-inner span:first-child { cursor: pointer; }
.guide-breadcrumb-inner span:first-child:hover { color: var(--primary-bright); }
.guide-breadcrumb-inner span.active { color: var(--text); font-weight: 600; }
.guide-breadcrumb-inner i { width: 14px; height: 14px; color: #cbd5e1; }

/* Layout wrapper */
.guide-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Top Header */
.guide-top-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.guide-title-block h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}
.guide-title-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.guide-meta {
  display: flex;
  gap: 20px;
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 500;
}
.guide-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.guide-meta i { width: 14px; }

.guide-novas-regras {
  background: white;
  border: 1.5px solid #bfdbfe;
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 340px;
  flex-shrink: 0;
}
.guide-novas-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-bright);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.guide-novas-title i { width: 14px; }
.guide-novas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  font-size: 0.83rem;
  color: var(--text);
  font-weight: 500;
}
.guide-novas-grid div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.guide-novas-grid i { width: 14px; color: var(--primary-bright); }

/* Phase Progress Bar */
.guide-phases-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 32px;
  overflow-x: auto;
}
.guide-phase {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 10px;
  transition: background 0.15s;
}
.guide-phase:hover { background: #f1f5f9; }
.phase-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.2s;
}
.phase-circle.active {
  background: var(--primary-bright);
  color: white;
  border-color: var(--primary-bright);
}
.phase-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.phase-label strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.phase-label span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.phase-connector {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 8px;
  min-width: 20px;
}

/* Main 2-col area */
.guide-main {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: start;
}

/* Sidebar */
.guide-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.sidebar-phase {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.sidebar-phase-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.15s;
}
.sidebar-phase-header:hover { background: #f8fafc; }
.sidebar-phase-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar-phase-icon i { width: 16px; }
.sidebar-phase-title { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.sidebar-phase-sub { font-size: 0.72rem; color: var(--text-muted); }
.sidebar-chevron { width: 16px; margin-left: auto; color: #94a3b8; flex-shrink: 0; transition: transform 0.2s; }

.sidebar-steps { padding: 0 0 8px; }
.sidebar-steps.collapsed { display: none; }

.sidebar-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 20px;
  font-size: 0.83rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent;
  font-weight: 500;
}
.sidebar-step:hover { background: #f8fafc; color: var(--text); }
.sidebar-step.active {
  color: var(--primary-bright);
  background: #eff6ff;
  border-left-color: var(--primary-bright);
  font-weight: 600;
}
.sidebar-step-num {
  width: 20px;
  height: 20px;
  background: #e2e8f0;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
}
.sidebar-step.active .sidebar-step-num {
  background: var(--primary-bright);
  color: white;
}

.sidebar-support {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.sidebar-support-icon {
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.sidebar-support-icon i { width: 18px; }
.sidebar-support-title { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.sidebar-support-sub { font-size: 0.78rem; color: var(--text-muted); }
.sidebar-support-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s;
  gap: 8px;
}
.sidebar-support-btn:hover { background: #f1f5f9; }
.sidebar-support-btn i { width: 14px; }

/* Content Panel */
.guide-content-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  min-height: 500px;
}
.step-tag {
  display: inline-flex;
  align-items: center;
  background: #eff6ff;
  color: var(--primary-bright);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.guide-content-panel h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.guide-content-panel > p,
.step-description {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Download card */
.step-download-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.step-download-icon { color: var(--primary-bright); }
.step-download-icon i { width: 28px; height: 28px; }
.step-download-text { flex: 1; }
.step-download-text strong { font-size: 0.93rem; font-weight: 700; display: block; margin-bottom: 3px; }
.step-download-text span { font-size: 0.8rem; color: var(--text-muted); }
.step-download-btns { display: flex; gap: 10px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #1a1a2e;
  color: white;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.store-btn:hover { opacity: 0.85; }
.store-btn i { width: 16px; }

/* Checklist */
.step-checklist-title { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.step-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.step-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}
.step-check-item i { width: 16px; color: var(--primary-bright); flex-shrink: 0; }

/* Tip card */
.step-tip-card {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.83rem;
  color: #78350f;
  line-height: 1.55;
}
.step-tip-card strong {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
  font-weight: 700;
}
.step-tip-card i { width: 14px; color: #f59e0b; }

/* Stats row */
.step-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 28px;
}
.step-stat {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-stat-icon { color: var(--primary-bright); }
.step-stat-icon i { width: 18px; }
.step-stat-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; margin-bottom: 3px; }
.step-stat-value { font-size: 0.93rem; font-weight: 800; color: var(--text); }

/* Navigation buttons */
.step-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.step-nav-prev {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  transition: color 0.15s;
}
.step-nav-prev:hover { color: var(--text); }
.step-nav-prev i { width: 16px; }
.step-nav-next {
  background: var(--primary-bright);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.step-nav-next:hover { background: var(--primary); }
.step-nav-next i { width: 16px; }

/* Two-col step content */
.step-two-col {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  margin-bottom: 24px;
}

/* Trust banner */
.guide-trust-banner {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.guide-trust-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-bright);
  flex-shrink: 0;
}
.guide-trust-icon i { width: 24px; }
.guide-trust-banner strong { font-size: 0.95rem; font-weight: 700; display: block; margin-bottom: 4px; }
.guide-trust-banner p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }
.guide-trust-btn {
  margin-left: auto;
  flex-shrink: 0;
  background: white;
  border: 1.5px solid #bfdbfe;
  color: var(--primary-bright);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background 0.15s;
}
.guide-trust-btn:hover { background: #dbeafe; }
.guide-trust-btn i { width: 14px; }

/* CTA Bottom */
.guide-cta-bottom {
  background: var(--primary);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}
.guide-cta-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.guide-cta-text p {
  color: rgba(255,255,255,0.72);
  font-size: 0.93rem;
  line-height: 1.55;
  margin-bottom: 24px;
}
.guide-cta-visual { margin-left: auto; flex-shrink: 0; }
.guide-cta-phone {
  background: white;
  border-radius: 16px;
  padding: 20px;
  width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.gcta-phone-title { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.gcta-next { background: #f8fafc; border-radius: 10px; padding: 14px; }
.gcta-next-label { font-size: 0.65rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.gcta-next-date { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2px; }
.gcta-next-time { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.gcta-instructor { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.gcta-instructor i { width: 13px; }

/* Footer note */
.guide-footer-note {
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Guide responsive ── */
@media (max-width: 1100px) {
  .guide-top-header { flex-direction: column; }
  .guide-novas-regras { min-width: unset; width: 100%; }
}
@media (max-width: 900px) {
  .guide-layout { padding: 24px 24px 60px; gap: 24px; }
  .guide-main { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; }
  .guide-cta-bottom { flex-direction: column; padding: 32px 24px; }
  .guide-cta-visual { margin-left: 0; }
  .guide-trust-banner { flex-wrap: wrap; }
  .guide-trust-btn { margin-left: 0; }
  .guide-breadcrumb-inner { padding: 10px 24px; }
  .step-two-col { grid-template-columns: 1fr; }
  .step-stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .guide-title-block h1 { font-size: 1.9rem; }
  .guide-phases-bar { padding: 16px; gap: 0; }
  .phase-label { display: none; }
  .phase-connector { min-width: 12px; }
  .guide-content-panel { padding: 20px; }
  .guide-content-panel h2 { font-size: 1.5rem; }
  .step-download-card { flex-direction: column; align-items: flex-start; }
  .step-download-btns { flex-direction: column; width: 100%; }
  .step-stats-row { grid-template-columns: 1fr; }
}
/* ══════════════════════════════════════
   AUTH PAGES (Login & Registration)
   ══════════════════════════════════════ */

.auth-page {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  padding: 40px 20px;
}

.auth-container {
  max-width: 1000px;
  width: 100%;
  background: white;
  border-radius: 24px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Visual Side */
.auth-visual {
  flex: 1;
  background: var(--bg-dark);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.auth-visual::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--primary-bright);
  filter: blur(120px);
  opacity: 0.2;
  border-radius: 50%;
}

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

.auth-visual-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.auth-visual h1 {
  color: white;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.auth-visual p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.auth-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
}

.auth-feat i {
  color: var(--accent);
  width: 20px;
  height: 20px;
}

/* Form Side */
.auth-form-side {
  flex: 1.2;
  padding: 60px;
  background: white;
}

.auth-form-inner {
  max-width: 400px;
  margin: 0 auto;
}

.auth-form-header {
  margin-bottom: 32px;
}

.auth-form-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.auth-form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* User Type Selector */
.user-type-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  background: #f1f5f9;
  padding: 6px;
  border-radius: 12px;
}

.type-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.type-btn i { width: 16px; height: 16px; }

.type-btn.active {
  background: white;
  color: var(--primary-bright);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper > i,
.input-wrapper > svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  width: 18px;
  height: 18px;
  pointer-events: none;
}



.input-wrapper input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
  outline: none;
}

.input-wrapper input:focus {
  border-color: var(--primary-bright);
  background: #f8fafc;
}

.toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: color 0.2s;
}

.toggle-password:hover { color: var(--primary-bright); }

.toggle-password svg {
  pointer-events: none;
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  height: 20px;
  width: 20px;
  background-color: #f1f5f9;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  margin-right: 10px;
  transition: all 0.2s;
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--primary-bright);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-bright);
  border-color: var(--primary-bright);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.cb-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cb-label a {
  color: var(--primary-bright);
  text-decoration: none;
  font-weight: 600;
}

.forgot-link {
  font-size: 0.88rem;
  color: var(--primary-bright);
  text-decoration: none;
  font-weight: 600;
}

/* Buttons */
.btn-auth {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  margin-bottom: 24px;
  background: var(--primary-bright);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-auth:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.auth-divider {
  text-align: center;
  position: relative;
  margin-bottom: 24px;
}

.auth-divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.auth-divider span {
  position: relative;
  z-index: 1;
  background: white;
  padding: 0 16px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.social-auth {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-social:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.auth-footer {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--primary-bright);
  text-decoration: none;
  font-weight: 700;
}

/* Registration Visual Overrides */
.reg-visual {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
}

/* Responsive Auth */
@media (max-width: 900px) {
  .auth-container {
    flex-direction: column;
    max-width: 500px;
  }
  .auth-visual {
    padding: 40px;
  }
  .auth-visual h1 { font-size: 1.8rem; }
  .auth-visual p { margin-bottom: 20px; }
  .auth-features { display: none; }
  .auth-form-side { padding: 40px; }
}

@media (max-width: 500px) {
  .auth-page { padding: 0; background: white; }
  .auth-container { border-radius: 0; box-shadow: none; }
  .auth-visual { display: none; }
  .auth-form-side { padding: 32px 24px; }
}

/* User Menu Header */
.user-menu-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f1f5f9;
  padding: 6px 6px 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.user-name-header {
  font-size: 0.88rem;
  color: var(--text);
}

.btn-logout {
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ef4444;
  transition: all 0.2s;
}

.btn-logout:hover {
  background: #fef2f2;
  border-color: #fca5a5;
  transform: scale(1.05);
}

.btn-logout i { width: 14px; height: 14px; }

/* Google Reviews Identity */
.google-reviews {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: 24px;
  width: fit-content;
}

.google-logo {
  display: flex;
  align-items: center;
}

.google-reviews .stars {
  display: flex;
  gap: 2px;
}

.google-reviews .stars svg {
  width: 14px;
  height: 14px;
}

.google-reviews span {
  font-size: 0.85rem;
  color: var(--text);
}

.google-vibe {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.google-stars {
  display: flex;
  gap: 2px;
}

.google-stars svg {
  width: 14px;
  height: 14px;
}


.google-text-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #64748b;
}

.score-google {
  font-weight: 700;
  color: var(--text);
}

.reviews-count {
  opacity: 0.8;
}

/* Instructors Search View */
#view-instrutores {
  background: #f8fafc;
  min-height: 100vh;
}

.search-hero {
  background: white;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.instructors-search-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.search-header h1 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.search-header p {
  color: #64748b;
  margin-bottom: 32px;
}

.search-controls {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.search-bar-wrapper {
  position: relative;
  flex: 1;
  min-width: 300px;
}

.search-bar-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  width: 20px;
}

.search-bar-wrapper input {
  width: 100%;
  padding: 14px 14px 14px 48px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s;
}

.search-bar-wrapper input:focus {
  border-color: var(--primary-bright);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.btn-radius-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  background: #f1f5f9;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-radius-filter:hover { background: #e2e8f0; }

.filter-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 8px 16px;
  background: #f1f5f9;
  border: none;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-pill:hover { background: #e2e8f0; }

.filter-pill.active {
  background: var(--primary);
  color: white;
}

/* Results Section */
.results-section {
  padding: 60px 0;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.empty-state {
  text-align: center;
  padding: 100px 20px;
  background: white;
  border-radius: 24px;
  border: 2px dashed var(--border);
}

.empty-icon {
  width: 80px;
  height: 80px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #94a3b8;
}

.empty-icon i { width: 32px; height: 32px; }

.empty-state h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 12px;
}

.empty-state p {
  color: #64748b;
}

/* Premium Instructor Card */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.instructor-card-premium {
  background: white;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.instructor-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: var(--primary-bright);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: #f1f5f9;
  color: #64748b;
  text-transform: uppercase;
}

.card-badge.verified {
  background: #dcfce7;
  color: #166534;
}

.card-header-main {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.avatar-mock {
  width: 56px;
  height: 56px;
  background: var(--primary-bright);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.card-meta h4 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: #64748b;
}

.location i { width: 14px; height: 14px; }

.card-stats-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 20px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.stat i { width: 16px; height: 16px; }

.card-footer-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-profile {
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-profile:hover { background: #f1f5f9; }


#view-instrutores {
  background: #f8fafc;
  min-height: 100vh;
}

/* Google Trust Card - Premium Badge */
.google-trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  width: fit-content;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gtc-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.gtc-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gtc-stars {
  display: flex;
  gap: 2px;
}

.gtc-stars svg {
  width: 14px;
  height: 14px;
}

.gtc-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gtc-score {
  font-weight: 800;
  color: var(--text);
  font-size: 0.95rem;
}

.gtc-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.gtc-verified {
  color: #10b981;
  display: flex;
  align-items: center;
  margin-left: 4px;
}

.gtc-verified svg { width: 18px; height: 18px; }

/* Instructor Dashboard */
.instructor-dashboard-mock { display: flex; flex-direction: column; gap: 32px; width: 100%; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.stat-card { background: white; padding: 24px; border-radius: 16px; border: 1px solid var(--border); text-align: center; }
.stat-label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 600; }
.stat-value { font-size: 1.8rem; font-weight: 800; color: var(--primary-bright); }
.upcoming-classes-mini h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.mini-class-item { background: white; padding: 16px; border-radius: 12px; border: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.class-time { font-weight: 700; color: var(--text); }
.class-student { font-size: 0.9rem; color: var(--text-muted); }


.nice-card p { color: var(--text-muted); line-height: 1.6; }

/* Filter Section */
.filter-controls { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }

/* ═══════════════════════════════════════════
   MODAL BASE
   ═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  width: 100vw !important; height: 100vh !important;
  background: rgba(15, 23, 42, 0.55) !important;
  backdrop-filter: blur(6px) !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  margin: 0 !important;
}
.modal-overlay.hidden { display: none !important; }

.modal-content {
  background: white !important;
  border-radius: 20px !important;
  width: 100% !important;
  max-width: 620px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  position: relative !important;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22) !important;
  border: none !important;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}
.modal-content::-webkit-scrollbar { width: 4px; }
.modal-content::-webkit-scrollbar-track { background: transparent; }
.modal-content::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }

body.modal-open { overflow: hidden !important; }

/* ═══════════════════════════════════════════
   PREMIUM MODAL — HERO HEADER
   ═══════════════════════════════════════════ */
.pm-hero {
  position: relative;
  padding: 36px 28px 28px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.pm-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0ea5e9 100%);
  z-index: 0;
}
.pm-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.pm-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pm-avatar {
  width: 72px;
  height: 72px;
  min-width: 72px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  backdrop-filter: blur(8px);
}
.pm-hero-info { flex: 1; min-width: 0; }
.pm-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.pm-name-row h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin: 0;
}
.pm-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #6ee7b7;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.pm-verified-badge i { width: 12px; height: 12px; }
.pm-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.pm-location i { width: 14px; height: 14px; }
.pm-meta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pm-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.pm-meta-chip i { width: 12px; height: 12px; }
.pm-rating-chip { background: rgba(251, 191, 36, 0.2); border-color: rgba(251, 191, 36, 0.4); }

/* Close button inside hero */
.pm-close {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  z-index: 10 !important;
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 10px !important;
  color: white !important;
  width: 34px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  backdrop-filter: blur(4px);
}
.pm-close:hover {
  background: rgba(255,255,255,0.28) !important;
  transform: scale(1.08) !important;
}
.pm-close i { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════
   MODAL BODY
   ═══════════════════════════════════════════ */
.pm-body { padding: 24px 28px; }
.pm-section { margin-bottom: 8px; }
.pm-divider { height: 1px; background: #f1f5f9; margin: 20px 0; }

.pm-section-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.pm-section-title i { width: 14px; height: 14px; color: #94a3b8; }

/* Specialties */
.pm-specialties { display: flex; flex-wrap: wrap; gap: 8px; }
.specialty-badge {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
}

/* Tech Grid */
.pm-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.pm-tech-item {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pm-tech-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pm-tech-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e293b;
}

/* Bio */
.pm-bio {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* Location Card */
.pm-location-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
}
.pm-location-main {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.pm-location-main i { width: 18px; height: 18px; color: #2563eb; flex-shrink: 0; }
.pm-location-main strong { display: block; font-size: 0.92rem; color: #1e293b; margin-bottom: 2px; }
.pm-location-main span { font-size: 0.8rem; color: #64748b; }
.pm-location-zones { display: flex; gap: 8px; flex-wrap: wrap; }
.pm-zone-chip {
  background: white;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Schedule Days */
.pm-schedule-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}
.sched-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 4px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.sched-day-name {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sched-day-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.day-on {
  background: #eff6ff;
  border-color: #bfdbfe;
}
.day-on .sched-day-name { color: #1d4ed8; }
.day-on .sched-day-dot { background: #2563eb; }
.day-off {
  background: #f8fafc;
  border-color: #f1f5f9;
}
.day-off .sched-day-name { color: #cbd5e1; }
.day-off .sched-day-dot { background: #e2e8f0; }

.pm-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}
.legend-on, .legend-off {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.legend-on { background: #2563eb; }
.legend-off { background: #e2e8f0; }

/* Time Slots */
.pm-time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.time-slot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
}
.time-slot i { width: 14px; height: 14px; flex-shrink: 0; }
.time-slot span:last-child { margin-left: auto; }
.slot-label { font-size: 0.72rem; font-weight: 700; }
.slot-free {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.slot-free i { color: #16a34a; }
.slot-free .slot-label { color: #16a34a; }
.slot-busy {
  background: #fafafa;
  border: 1px solid #e2e8f0;
  color: #94a3b8;
}
.slot-busy i { color: #cbd5e1; }
.slot-busy .slot-label { color: #cbd5e1; }

/* Vehicle Card */
.pm-vehicle-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pm-vehicle-main {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pm-vehicle-icon {
  width: 44px;
  height: 44px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}
.pm-vehicle-icon i { width: 20px; height: 20px; }
.pm-vehicle-main strong { display: block; font-size: 0.95rem; color: #1e293b; margin-bottom: 2px; }
.pm-vehicle-main span { font-size: 0.8rem; color: #64748b; }

.pm-vehicle-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.veh-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
}
.veh-feature i { width: 13px; height: 13px; color: #64748b; flex-shrink: 0; }

/* Dual Pedal — Safety Highlight */
.pm-dual-pedal-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: 10px;
  padding: 12px 14px;
}
.pm-dual-pedal-badge > i {
  width: 20px;
  height: 20px;
  color: #34d399;
  flex-shrink: 0;
}
.pm-dual-pedal-badge strong {
  display: block;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 2px;
}
.pm-dual-pedal-badge span {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.4;
}

/* Pricing Bar */
.pm-pricing-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.pm-price-left { display: flex; flex-direction: column; gap: 2px; }
.pm-price-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pm-price-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #38bdf8;
  line-height: 1.1;
}
.pm-price-unit {
  font-size: 0.82rem;
  font-weight: 400;
  color: #64748b;
}
.pm-price-badges { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.pm-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
}
.pm-price-badge i { width: 12px; height: 12px; color: #34d399; }

/* Modal Footer */
.pm-modal-footer {
  padding: 16px 28px !important;
  border-top: 1px solid #f1f5f9 !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  background: white !important;
  position: sticky;
  bottom: 0;
  z-index: 2;
  border-radius: 0 0 20px 20px;
}
.pm-book-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 0.95rem !important;
  padding: 12px 28px !important;
  background: var(--primary-bright) !important;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2) !important;
}

.pm-book-btn:hover {
  background: var(--primary) !important;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3) !important;
}

.pm-book-btn i { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════
   MODAL STEPS & INDICATOR
   ═══════════════════════════════════════════ */
.pm-steps-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.pm-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
  cursor: pointer;
}
.pm-step span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.pm-step.active { color: white; }
.pm-step.active span { background: var(--primary-bright); border-color: var(--primary-bright); box-shadow: 0 0 10px rgba(37, 99, 235, 0.5); }

.pm-step.completed { color: #34d399; }
.pm-step.completed i { width: 14px; height: 14px; color: #34d399; }

.pm-step-line {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.pm-step-line.active { background: #34d399; }

/* Mini Hero */
.pm-hero.mini {
  padding: 24px 28px 48px;
}
.pm-hero.mini h2 { font-size: 1.2rem; }

/* Mini Components */
.pm-vehicle-card-mini {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
}
.pm-vehicle-card-mini strong { display: block; font-size: 0.88rem; color: #1e293b; margin-bottom: 8px; }

.pm-pricing-bar-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0f172a;
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 16px;
}
.pm-pricing-bar-mini .pm-price-value { color: #38bdf8; font-size: 1.2rem; font-weight: 800; }
.pm-pricing-bar-mini .pm-price-unit { color: #64748b; font-size: 0.75rem; font-weight: 400; margin-left: 4px; }
.pm-pricing-bar-mini .pm-price-badge { color: #34d399; font-size: 0.7rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* Smooth body transition */
#modal-body-content {
  animation: fadeIn 0.3s ease-out;
}

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

/* Hero Premium (Step 1) */
.pm-hero.premium {
  padding: 40px 28px 48px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  position: relative;
}

.pm-hero-top-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Modal Body Data Sections */
.pm-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.pm-section-title i {
  width: 16px;
  height: 16px;
  color: #2563eb;
}

.pm-data-grid-white {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pm-data-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s;
}

.pm-data-card:hover {
  border-color: #dbeafe;
  background: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.05);
}

.pm-data-label {
  font-size: 0.6rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

.pm-data-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}

.pm-highlights-white {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.h-badge-light {
  background: #f1f5f9;
  color: #475569;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.h-badge-light:hover {
  background: #eff6ff;
  color: #2563eb;
  border-color: #dbeafe;
}

.h-badge-light i {
  width: 16px;
  height: 16px;
}

/* Responsiveness for Data Grids */
@media (max-width: 480px) {
  .pm-data-grid-white {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Filter Section */
.filter-controls { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }

.btn-filter-main { background: white; border: 1px solid var(--border); padding: 10px 20px; border-radius: 12px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; cursor: pointer; transition: all 0.2s; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.btn-filter-main:hover { border-color: var(--primary-bright); background: #f8fafc; }
.btn-filter-main i { width: 18px; height: 18px; }

.filter-panel { background: #f8fafc; border: 1px solid var(--border); border-radius: 20px; padding: 24px; margin-bottom: 32px; display: flex; flex-direction: column; gap: 20px; transition: all 0.3s ease-in-out; overflow: hidden; max-height: 500px; }
.filter-panel.collapsed { max-height: 0; padding-top: 0; padding-bottom: 0; margin-bottom: 0; border-color: transparent; opacity: 0; pointer-events: none; }

.filter-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.filter-row { display: flex; gap: 8px; align-items: center; }
.filter-row.scrollable { overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.filter-row.scrollable::-webkit-scrollbar { display: none; }

.chip { background: white; border: 1px solid var(--border); padding: 8px 16px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; color: var(--text); cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.chip.active { background: var(--primary-bright); border-color: var(--primary-bright); color: white; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2); }
.chip:hover:not(.active) { border-color: var(--primary-bright); color: var(--primary-bright); }

/* Instructor Grid & Cards */
.instructor-results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.instructor-search-card { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 20px; transition: all 0.3s; cursor: pointer; position: relative; }
.instructor-search-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); border-color: var(--primary-bright); }
.card-header-flex { display: flex; gap: 16px; margin-bottom: 16px; }
.avatar-large { width: 64px; height: 64px; border-radius: 16px; background: #eff6ff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: var(--primary-bright); }
.card-main-info h4 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.card-main-info p { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.card-stats-row-flex { display: flex; gap: 16px; margin-bottom: 16px; padding: 12px 0; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; }
.stat-flex { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 600; }
.stat-flex i { width: 16px; height: 16px; }
.card-footer-flex { display: flex; justify-content: space-between; align-items: center; }
.price-tag { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.price-tag span { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.btn-book-card { background: var(--primary-bright); color: white; border: none; padding: 10px 20px; border-radius: 10px; font-weight: 700; cursor: pointer; }

/* Testimonials Section */
.testimonials-section {
  background: #f8fafc;
  padding: 100px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.testimonials-header p {
  font-size: 1.1rem;
  color: #64748b;
}

.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #f1f5f9;
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: #e2e8f0;
}

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

.testi-name {
  display: block;
  font-weight: 700;
  color: #1e293b;
  font-size: 0.95rem;
}

.testi-stars {
  color: #10b981;
  font-size: 0.8rem;
  margin-top: 4px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  font-style: italic;
}

/* CTA Section */
.cta-section {
  background: white;
  padding: 80px 0;
}

.container-cta {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.cta-box {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  border-radius: 32px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: white;
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.2);
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 450px;
}

.btn-cta {
  background: white;
  color: #1d4ed8;
  padding: 18px 36px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  background: #f8fafc;
}

/* Main Footer */
/* Main Footer - Premium Redesign */
.main-footer {
  background: white;
  padding: 100px 0 40px;
  border-top: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.container-footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo-premium {
  height: 48px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-logo-premium img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.footer-logo-premium:hover {
  transform: translateY(-2px);
}

.brand-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 320px;
}

.footer-social-premium {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

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

.social-icon:hover {
  background: white;
  color: var(--primary-bright);
  border-color: #e2e8f0;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.footer-links-col a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  width: fit-content;
}

.footer-links-col a:hover {
  color: var(--primary-bright);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #64748b;
  font-size: 0.95rem;
}

.footer-contact-item i {
  width: 18px;
  height: 18px;
  color: var(--primary-bright);
}

.footer-bottom-premium {
  padding-top: 40px;
  border-top: 1px solid #f1f5f9;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-inner p {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-extra-info {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ══════════════════════════════════════
   MOBILE RESPONSIVENESS OVERRIDES
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .header-container { padding: 0 20px; }
  .desktop-nav, .header-actions { display: none; }
  .mobile-menu-btn { display: block; background: transparent; border: none; cursor: pointer; color: var(--text); padding: 8px; }
  .main-logo { height: 32px; }

  /* Mobile Nav Overlay State (Toggled via JS) */
  .desktop-nav.mobile-active {
    display: flex !important;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: white;
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    z-index: 999;
    animation: fadeIn 0.3s ease;
  }
  .desktop-nav.mobile-active a {
    font-size: 1.1rem;
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    width: 100%;
  }

  /* Hero Section */
  .hero-section { 
    height: auto; 
    padding: 30px 0 50px; 
    min-height: unset; 
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  }
  .hero-bg img { display: none; }
  .hero-bg {
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.2), transparent),
                radial-gradient(circle at bottom left, rgba(29, 78, 216, 0.1), transparent);
  }
  .hero-container-inner { padding: 0 20px; position: relative; z-index: 2; }
  .hero-text-block h1 { font-size: 2rem; line-height: 1.2; text-align: center; color: white; }
  .hero-description { text-align: center; font-size: 0.95rem; margin-bottom: 24px; color: rgba(255,255,255,0.8); }
  .hero-tabs-new { justify-content: center; width: 100%; }
  .tab-btn-new { flex: 1; justify-content: center; font-size: 0.85rem; padding: 12px; }
  
  /* Search Card */
  .hero-search-card { border-radius: 16px; width: 100%; }
  .search-fields-row { flex-direction: column; padding: 16px; gap: 12px; }
  .search-input-group { border-radius: 12px; }
  .btn-search-hero { 
    width: 100%; 
    border-radius: 12px !important; 
    margin-top: 4px; 
    padding: 18px !important; 
    justify-content: center;
  }

  /* Internal Pages */
  .internal-header { padding: 80px 20px 40px; }
  .internal-header h1 { font-size: 1.8rem; }
  .internal-container { padding: 20px; }
  
  /* Dashboard */
  .dashboard-grid { grid-template-columns: 1fr; gap: 20px; }
  .stats-row { grid-template-columns: 1fr; gap: 12px; }
  .stat-card { padding: 20px; }
  .dashboard-sidebar { order: -1; } /* Profile summary first on mobile */
  
  /* Auth Views */
  .auth-page { padding: 40px 20px; min-height: unset; }
  .auth-container { flex-direction: column; box-shadow: none; background: transparent; }
  .auth-visual { display: none; }
  .auth-form-side { width: 100%; padding: 0; }
  .auth-form-inner { background: white; padding: 32px 20px; border-radius: 24px; border: 1px solid #f1f5f9; }
  .user-type-cards { grid-template-columns: 1fr; }
  
  /* Modal adjustments */
  .modal-content.profile-modal { width: 100%; height: 100%; max-height: 100%; border-radius: 0; }
  .pm-hero.premium { padding: 60px 20px 40px; }
  .pm-avatar { width: 60px; height: 60px; min-width: 60px; }
  .pm-data-grid-white { grid-template-columns: 1fr; }

  /* Mobile Auth Links */
  .mobile-auth-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
  }
  .mobile-auth-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px !important;
    border-radius: 12px;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    border: 1.5px solid #f1f5f9 !important;
    color: #0f172a !important;
    text-decoration: none;
  }
  .mobile-auth-btn.primary {
    background: var(--primary-bright);
    color: white !important;
    border: none !important;
  }

  /* CTA Home Responsive Fix */
  .container-cta { padding: 0 20px; }
  .cta-box { 
    flex-direction: column; 
    padding: 40px 24px; 
    text-align: center; 
    gap: 32px; 
    border-radius: 24px;
    margin: 0;
    width: 100%;
  }
  .btn-cta { width: 100%; justify-content: center; padding: 18px !important; border-radius: 12px !important; }
}

/* Global Fix to prevent horizontal scroll leaks */
html, body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .main-footer {
    padding: 60px 0 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .brand-description {
    max-width: 100%;
  }
}

/* Standalone Search Bar */
.search-bar-standalone { margin-bottom: 32px; width: 100%; }
.search-input-wrapper { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 12px 20px; display: flex; align-items: center; gap: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: all 0.2s; }
.search-input-wrapper:focus-within { border-color: var(--primary-bright); box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1); }
.search-input-wrapper i { color: #94a3b8; width: 20px; height: 20px; }
.search-input-wrapper input { border: none; outline: none; width: 100%; font-size: 1rem; color: var(--text); }
.search-input-wrapper input::placeholder { color: #cbd5e1; }

