/* ============================================================
   TALAPRO — GLOBAL STYLES
   Light / Dark / Auto theme · Mobile-first · Purple + Gold
   ============================================================ */

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

/* ── LIGHT THEME (default) ── */
:root {
  --purple:        #5B2DA8;
  --purple-light:  #7B4DD8;
  --purple-dark:   #2A1054;
  --gold:          #C8A020;
  --gold-light:    #E8BE40;
  --gold-dark:     #9A7A10;

  --bg:            #FFFFFF;
  --bg-alt:        #F4F1FA;
  --bg-card:       #FFFFFF;
  --bg-input:      #FFFFFF;
  --bg-dark-sec:   #2A1054;

  --text:          #1A1030;
  --text-muted:    #6B7280;
  --text-nav:      #374151;
  --text-nav-hover:#5B2DA8;

  --border:        #E5E7EB;
  --border-focus:  #5B2DA8;

  --nav-bg:        rgba(255,255,255,0.94);
  --nav-border:    rgba(91,45,168,0.10);
  --nav-shadow:    0 4px 24px rgba(91,45,168,0.10);

  --shadow:        0 4px 24px rgba(91,45,168,0.10);
  --shadow-md:     0 8px 40px rgba(91,45,168,0.16);

  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.22s cubic-bezier(.4,0,.2,1);

  color-scheme: light;
}

/* ── DARK THEME ── */
[data-theme="dark"] {
  --bg:            #0F0A1E;
  --bg-alt:        #1A1030;
  --bg-card:       #1E1438;
  --bg-input:      #241848;
  --bg-dark-sec:   #0A0618;
  --text:          #F0ECF8;
  --text-muted:    #9B8EC4;
  --text-nav:      rgba(255,255,255,0.85);
  --text-nav-hover:#E8BE40;
  --border:        rgba(255,255,255,0.10);
  --border-focus:  #7B4DD8;
  --nav-bg:        rgba(15,10,30,0.96);
  --nav-border:    rgba(200,160,32,0.20);
  --nav-shadow:    0 4px 24px rgba(0,0,0,0.40);
  --shadow:        0 4px 24px rgba(0,0,0,0.30);
  --shadow-md:     0 8px 40px rgba(0,0,0,0.40);
  color-scheme: dark;
}

/* ── AUTO: respect OS preference ── */
@media (prefers-color-scheme: dark) {
  [data-theme="auto"] {
    --bg:            #0F0A1E;
    --bg-alt:        #1A1030;
    --bg-card:       #1E1438;
    --bg-input:      #241848;
    --bg-dark-sec:   #0A0618;
    --text:          #F0ECF8;
    --text-muted:    #9B8EC4;
    --text-nav:      rgba(255,255,255,0.85);
    --text-nav-hover:#E8BE40;
    --border:        rgba(255,255,255,0.10);
    --border-focus:  #7B4DD8;
    --nav-bg:        rgba(15,10,30,0.96);
    --nav-border:    rgba(200,160,32,0.20);
    --nav-shadow:    0 4px 24px rgba(0,0,0,0.40);
    --shadow:        0 4px 24px rgba(0,0,0,0.30);
    --shadow-md:     0 8px 40px rgba(0,0,0,0.40);
    color-scheme: dark;
  }
}

/* ============================================================
   BASE
   ============================================================ */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

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

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(1.85rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.45rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2vw, 1.22rem); font-weight: 700; }
p  { color: var(--text-muted); }
.gold { color: var(--gold); }

/* ============================================================
   THEME TOGGLE WIDGET
   ============================================================ */
.theme-toggle {
  display: flex; align-items: center;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 50px; padding: 3px; gap: 2px; flex-shrink: 0;
}
.theme-btn {
  background: none; border: none; cursor: pointer;
  padding: 5px 10px; border-radius: 50px;
  font-size: 0.76rem; font-weight: 600;
  color: var(--text-muted); font-family: 'DM Sans', sans-serif;
  transition: all var(--transition); white-space: nowrap;
}
.theme-btn.active { background: var(--purple); color: #fff; box-shadow: 0 2px 8px rgba(91,45,168,0.30); }
.theme-btn:hover:not(.active) { color: var(--text); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 1.5rem;
  background: var(--nav-bg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nav-border);
  transition: box-shadow var(--transition), background var(--transition);
  gap: 1rem;
}
.nav.scrolled { box-shadow: var(--nav-shadow); }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 54px; width: auto; object-fit: contain; }

.nav-right { display: flex; align-items: center; gap: 1rem; margin-left: auto; }

.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a { font-weight: 500; color: var(--text-nav); transition: color var(--transition); font-size: 0.92rem; }
.nav-links a:hover { color: var(--text-nav-hover); }

.nav-cta {
  background: var(--purple) !important; color: #fff !important;
  padding: 0.48rem 1.2rem; border-radius: 50px;
  font-weight: 600 !important; font-size: 0.88rem !important;
  transition: background var(--transition), transform var(--transition) !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--purple-light) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.nav-hamburger span { width: 22px; height: 2px; background: var(--text-nav); border-radius: 2px; display: block; transition: var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.mobile-nav {
  display: none; position: fixed;
  top: 67px; left: 0; right: 0;
  background: var(--nav-bg); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nav-border);
  padding: 1rem 1.5rem 1.5rem; z-index: 99;
  flex-direction: column; gap: 0; box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 500; color: var(--text-nav);
  padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 1rem;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .nav-cta {
  text-align: center; margin-top: 0.75rem; display: block;
  padding: 0.8rem 1.5rem !important; border-radius: 50px;
}
.mobile-nav .theme-toggle { margin-top: 1rem; }

.nav-signup-hint { font-size: 0.87rem; color: var(--text-muted); white-space: nowrap; }
.nav-signup-hint a { color: var(--purple); font-weight: 600; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--purple); color: #fff;
  padding: 0.55rem 1.35rem; border-radius: 50px;
  font-weight: 600; font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary:hover { background: var(--purple-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91,45,168,0.30); }
.btn-primary.large { padding: 0.7rem 1.9rem; font-size: 0.95rem; }
.btn-primary:disabled { opacity: 0.6; pointer-events: none; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: transparent; color: var(--purple);
  padding: 0.55rem 1.35rem; border-radius: 50px;
  font-weight: 600; font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif; border: 2px solid var(--purple);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-ghost:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
.btn-ghost.small { padding: 0.4rem 1rem; font-size: 0.81rem; }

.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: 100%; padding: 0.82rem 1.5rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card); font-family: 'DM Sans', sans-serif;
  font-size: 0.94rem; font-weight: 600; color: var(--text); cursor: pointer;
  transition: all var(--transition);
}
.btn-google:hover { border-color: var(--purple); box-shadow: var(--shadow); transform: translateY(-1px); }

.btn-icon {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 0.82rem; padding: 0.25rem 0.5rem;
  border-radius: 6px; transition: all var(--transition);
}
.btn-icon:hover { color: #EF4444; background: rgba(239,68,68,0.1); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  background: var(--bg-alt);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 5% 4rem; gap: 3rem;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(91,45,168,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,45,168,0.05) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 55vw; height: 55vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,160,32,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(200,160,32,0.12); border: 1px solid rgba(200,160,32,0.35);
  color: var(--gold-dark); padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero-badge::before { content: '●'; font-size: 0.56rem; color: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-title { margin-bottom: 1.1rem; color: var(--purple-dark); }
[data-theme="dark"] .hero-title, [data-theme="auto"] .hero-title { color: var(--text); }

.hero-subtitle {
  font-size: clamp(0.93rem, 2vw, 1.08rem);
  max-width: 520px; margin-bottom: 2rem;
  color: var(--text-muted); line-height: 1.7;
}
.hero-actions { display: flex; gap: 0.9rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 900; color: var(--purple); line-height: 1;
}
.stat-l { font-size: 0.76rem; color: var(--text-muted); font-weight: 500; margin-top: 0.15rem; }
.stat-divider { width: 1px; height: 34px; background: var(--border); }

.hero-visual {
  position: relative; display: flex;
  flex-direction: column; gap: 1rem; padding: 1.5rem;
}
.profile-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 1rem 1.2rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.9rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.profile-card:hover { transform: translateY(-4px); }
.profile-card:nth-child(2) { margin-left: 2.5rem; }
.profile-card:nth-child(3) { margin-left: 1.25rem; }

.floating { animation: float 4s ease-in-out infinite; }
.delay-1 { animation-delay: 1.3s; }
.delay-2 { animation-delay: 2.6s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.pc-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.pc-avatar.gold-av { background: var(--gold); }
.pc-avatar.purple-av { background: var(--purple-light); }
.pc-info { flex: 1; min-width: 0; }
.pc-info strong { display: block; font-size: 0.88rem; color: var(--text); }
.pc-info span { font-size: 0.74rem; color: var(--text-muted); }
.pc-skills { display: flex; gap: 0.3rem; flex-wrap: wrap; margin-top: 0.3rem; }
.pc-skills span {
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--purple); padding: 0.1rem 0.52rem;
  border-radius: 50px; font-size: 0.67rem; font-weight: 600;
}
.pc-badge { padding: 0.2rem 0.58rem; border-radius: 50px; font-size: 0.67rem; font-weight: 700; flex-shrink: 0; }
.pc-badge.verified { background: rgba(34,197,94,0.12); color: #16A34A; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(3rem, 8vw, 6rem) 5%; }
.section-dark { background: var(--bg-dark-sec); }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.section-label.light { color: var(--gold-light); }
.section-title { margin-bottom: 2.5rem; }
.section-title.light { color: #fff; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.step {
  padding: 1.65rem 1.2rem; background: var(--bg-card);
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: rgba(91,45,168,0.12); line-height: 1; margin-bottom: 0.55rem;
}
.step h3 { color: var(--purple-dark); margin-bottom: 0.35rem; font-size: 1rem; }
[data-theme="dark"] .step h3, [data-theme="auto"] .step h3 { color: var(--text); }
.step p { font-size: 0.86rem; }

.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.feature-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg); padding: 1.65rem;
  transition: background var(--transition), transform var(--transition);
}
.feature-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.feature-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.feature-card h3 { color: #fff; margin-bottom: 0.35rem; font-size: 1.02rem; }
.feature-card p { color: rgba(255,255,255,0.58); font-size: 0.86rem; }

.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  padding: clamp(3rem, 8vw, 5rem) 5%;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(200,160,32,0.15) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 0.7rem; }
.cta-banner p { color: rgba(255,255,255,0.72); font-size: 1rem; margin-bottom: 1.65rem; }

.footer { background: var(--bg-dark-sec); padding: clamp(2.5rem,6vw,4rem) 5% 0; }
.footer-inner {
  display: flex; justify-content: space-between; gap: 2.5rem;
  flex-wrap: wrap; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 260px; }
.footer-logo { height: 54px; margin-bottom: 0.65rem; }
.footer-brand p { color: rgba(255,255,255,0.42); font-size: 0.86rem; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-links > div { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links strong { color: #fff; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.2rem; }
.footer-links a { color: rgba(255,255,255,0.42); font-size: 0.86rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { padding: 1.2rem 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.22); font-size: 0.76rem; }

/* ============================================================
   SIGNUP PAGE
   ============================================================ */
.signup-body { background: var(--bg); }

.signup-main {
  display: grid; grid-template-columns: 270px 1fr;
  min-height: 100svh; padding-top: 67px;
}

.signup-sidebar {
  background: var(--purple-dark);
  padding: 2.25rem 1.65rem;
  display: flex; flex-direction: column; justify-content: space-between;
  position: sticky; top: 67px; height: calc(100svh - 67px); overflow-y: auto;
}
.sidebar-steps { display: flex; flex-direction: column; }
.sidebar-step { display: flex; align-items: center; gap: 0.8rem; opacity: 0.38; transition: opacity var(--transition); }
.sidebar-step.active { opacity: 1; }
.sidebar-step.completed { opacity: 0.62; }
.ss-dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3); flex-shrink: 0; transition: all var(--transition);
}
.sidebar-step.active .ss-dot { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,160,32,0.2); }
.sidebar-step.completed .ss-dot { background: #22C55E; border-color: #22C55E; }
.ss-label { display: flex; flex-direction: column; }
.ss-num { font-size: 0.65rem; color: rgba(255,255,255,0.38); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.ss-title { font-size: 0.86rem; color: #fff; font-weight: 600; }
.sidebar-connector { width: 2px; height: 22px; background: rgba(255,255,255,0.08); margin-left: 5px; }
.sidebar-quote {
  background: rgba(255,255,255,0.05); border-left: 3px solid var(--gold);
  padding: 0.85rem 1.05rem; border-radius: 0 var(--radius) var(--radius) 0; margin-top: 2rem;
}
.sidebar-quote p { color: rgba(255,255,255,0.76); font-style: italic; font-size: 0.82rem; margin-bottom: 0.38rem; }
.sidebar-quote span { color: rgba(255,255,255,0.38); font-size: 0.73rem; }

.signup-form-area {
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 5vw, 4rem);
  max-width: 780px; width: 100%;
}

.form-progress-bar {
  height: 4px; background: var(--border); border-radius: 2px;
  margin-bottom: 2rem; overflow: hidden;
}
.form-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 2px; width: 20%;
  transition: width 0.5s cubic-bezier(.4,0,.2,1);
}

/* Mobile step pill */
.mobile-step-indicator {
  display: none; align-items: center; justify-content: space-between;
  margin-bottom: 1.35rem; padding: 0.7rem 1rem;
  background: var(--bg-alt); border-radius: var(--radius); border: 1px solid var(--border);
}
.msi-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.msi-step { font-size: 0.92rem; font-weight: 700; color: var(--purple); }
.msi-dots { display: flex; gap: 5px; }
.msi-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); transition: background var(--transition); }
.msi-dot.active { background: var(--purple); }
.msi-dot.done { background: #22C55E; }

.form-step { display: none; animation: stepIn 0.28s ease; }
.form-step.active { display: block; }
@keyframes stepIn { from{opacity:0;transform:translateX(14px)} to{opacity:1;transform:translateX(0)} }

.step-header { margin-bottom: 1.65rem; }
.step-header h1 { font-size: clamp(1.45rem, 3vw, 1.88rem); color: var(--purple-dark); margin-bottom: 0.32rem; }
[data-theme="dark"] .step-header h1, [data-theme="auto"] .step-header h1 { color: var(--text); }
.step-header p { font-size: 0.9rem; }

.form-group { margin-bottom: 1.05rem; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text); margin-bottom: 0.38rem; }
.label-hint { font-weight: 400; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.7rem 0.92rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--text); background: var(--bg-input);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(91,45,168,0.12);
}
.form-group textarea { resize: vertical; }

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

.form-check { display: flex; align-items: flex-start; gap: 0.58rem; margin-bottom: 1.2rem; }
.form-check input[type="checkbox"] { width: auto; margin-top: 3px; accent-color: var(--purple); flex-shrink: 0; }
.form-check label { font-size: 0.85rem; color: var(--text-muted); cursor: pointer; }
.form-check a { color: var(--purple); text-decoration: underline; }

.divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.2rem 0; color: var(--text-muted); font-size: 0.82rem;
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.avatar-upload {
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 1.4rem; padding: 1rem;
  background: var(--bg-alt); border-radius: var(--radius);
  border: 1.5px dashed var(--border); flex-wrap: wrap;
}
.avatar-circle {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--purple); display: flex; align-items: center;
  justify-content: center; font-size: 1.45rem; color: #fff;
  font-weight: 700; overflow: hidden; flex-shrink: 0;
}
.avatar-circle img { width: 100%; height: 100%; object-fit: cover; }
.avatar-upload-info strong { display: block; margin-bottom: 0.12rem; font-size: 0.88rem; color: var(--text); }
.avatar-upload-info p { font-size: 0.78rem; margin-bottom: 0.5rem; }

.skill-input-wrap {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 0.42rem; background: var(--bg-input);
  min-height: 48px; display: flex; flex-wrap: wrap;
  gap: 0.32rem; align-items: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.skill-input-wrap:focus-within { border-color: var(--border-focus); box-shadow: 0 0 0 3px rgba(91,45,168,0.12); }
.skill-input-wrap input {
  border: none; outline: none; flex: 1; min-width: 110px;
  padding: 0.28rem 0.42rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; background: transparent; color: var(--text); box-shadow: none !important;
}
.skill-tag {
  background: rgba(91,45,168,0.12); color: var(--purple);
  border: 1px solid rgba(91,45,168,0.22);
  padding: 0.2rem 0.38rem 0.2rem 0.68rem; border-radius: 50px;
  font-size: 0.77rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.22rem;
}
.skill-tag button {
  background: none; border: none; cursor: pointer;
  color: var(--purple); font-size: 0.7rem; padding: 0 2px;
  opacity: 0.58; transition: opacity var(--transition);
}
.skill-tag button:hover { opacity: 1; }

.skill-suggestions { display: flex; flex-wrap: wrap; gap: 0.42rem; margin-top: 0.62rem; align-items: center; margin-bottom: 1.15rem; }
.ss-label-text { font-size: 0.74rem; color: var(--text-muted); font-weight: 600; }
.skill-suggest {
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--text-muted); padding: 0.26rem 0.72rem; border-radius: 50px;
  font-size: 0.77rem; font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: all var(--transition);
}
.skill-suggest:hover { background: var(--purple); color: #fff; border-color: var(--purple); }

.lang-list { display: flex; flex-direction: column; gap: 0.52rem; margin-bottom: 0.52rem; }
.lang-row { display: flex; gap: 0.52rem; align-items: center; }
.lang-row input { flex: 2; } .lang-row select { flex: 1; }

.work-entry {
  background: var(--bg-alt); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 0.95rem;
}
.work-entry-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.85rem; }
.work-entry-header strong { font-size: 0.9rem; color: var(--purple); }

.btn-add-work {
  width: 100%; padding: 0.85rem; border: 2px dashed var(--border);
  border-radius: var(--radius); background: transparent; color: var(--purple);
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition); margin-bottom: 1.65rem;
}
.btn-add-work:hover { border-color: var(--purple); background: rgba(91,45,168,0.05); }

.upload-zone {
  border: 2px dashed var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.5rem,4vw,2.5rem); text-align: center; background: var(--bg-card);
  transition: all var(--transition); cursor: pointer; margin-bottom: 1.2rem;
}
.upload-zone:hover { border-color: var(--purple); background: rgba(91,45,168,0.03); }
.upload-zone.drag-over { border-color: var(--gold); background: rgba(200,160,32,0.05); }
.uz-icon { font-size: 2.1rem; margin-bottom: 0.6rem; }
.upload-zone h3 { margin-bottom: 0.32rem; color: var(--text); }
.upload-zone p { font-size: 0.85rem; margin-bottom: 0.85rem; }
.uz-filename { margin-top: 0.85rem; font-size: 0.82rem; color: var(--purple); font-weight: 600; }

.video-section { margin-top: 0.5rem; }
.video-badge {
  display: inline-flex; align-items: center; gap: 0.28rem;
  background: rgba(200,160,32,0.12); color: var(--gold-dark);
  border: 1px solid rgba(200,160,32,0.3);
  padding: 0.26rem 0.82rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.48rem;
}
.video-btns { display: flex; gap: 0.62rem; justify-content: center; flex-wrap: wrap; }

.recorder-ui { margin-top: 0.95rem; }
.recorder-controls {
  display: flex; gap: 0.82rem; align-items: center;
  justify-content: center; margin-top: 0.82rem; flex-wrap: wrap;
}
.rec-timer { font-family: 'DM Sans', monospace; font-size: 1.02rem; font-weight: 700; color: var(--purple); }

.tips-card {
  background: var(--bg-alt); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.05rem 1.3rem; margin-bottom: 1.65rem;
}
.tips-card h4 { color: var(--text); margin-bottom: 0.6rem; font-size: 0.9rem; }
.tips-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.32rem; }
.tips-card li { font-size: 0.84rem; color: var(--text-muted); padding-left: 1.05rem; position: relative; }
.tips-card li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }

.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.3rem; border-top: 1px solid var(--border);
  margin-top: 1.65rem; gap: 0.85rem;
}

.success-screen {
  text-align: center; padding: clamp(2rem,8vw,4rem) 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.85rem;
}
.success-icon { font-size: 3.4rem; animation: popIn 0.5s cubic-bezier(.4,0,.2,1); }
@keyframes popIn { from{transform:scale(0)} to{transform:scale(1)} }
.success-screen h1 { color: var(--purple-dark); }
[data-theme="dark"] .success-screen h1, [data-theme="auto"] .success-screen h1 { color: var(--text); }
.success-screen p { max-width: 430px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 6rem 5% 3.5rem; }
  .hero-visual { display: none; }
  .features { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .signup-main { grid-template-columns: 230px 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0.45rem 1rem; }
  .nav-logo img { height: 44px; }
  .nav-links { display: none; }
  .nav-right .nav-cta { display: none; }
  .nav-right .theme-toggle { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; padding: 5.5rem 1.25rem 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { gap: 0.85rem; }
  .stat-divider { display: none; }

  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .signup-main { grid-template-columns: 1fr; }
  .signup-sidebar { display: none; }
  .signup-form-area { padding: 1.4rem 1.05rem; }
  .mobile-step-indicator { display: flex; }

  .form-nav { flex-wrap: wrap; }
  .form-nav .btn-primary,
  .form-nav .btn-ghost { flex: 1; min-width: 120px; justify-content: center; }

  .footer-inner { flex-direction: column; gap: 1.75rem; }
  .footer-links { gap: 1.5rem; }
  .footer-brand { max-width: 100%; }
  .avatar-upload { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  h1 { font-size: 1.72rem; }
  .theme-btn { padding: 4px 7px; font-size: 0.7rem; }
  .hero-badge { font-size: 0.7rem; padding: 0.3rem 0.8rem; }
  .btn-primary, .btn-ghost { padding: 0.68rem 1.3rem; font-size: 0.9rem; }
}

/* ============================================================
   ADDITIONAL PAGES — How It Works, FAQ, Contact, Legal
   ============================================================ */

/* Page hero (inner pages) */
.page-hero {
  background: var(--bg-alt);
  padding: 8rem 5% 3.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -30%; right: -5%;
  width: 40vw; height: 40vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,160,32,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 0.5rem; color: var(--purple-dark); }
[data-theme="dark"] .page-hero h1,
[data-theme="auto"] .page-hero h1 { color: var(--text); }
.page-hero p { font-size: 1.05rem; }

/* Nav active link */
.nav-active { color: var(--purple) !important; font-weight: 600 !important; }
[data-theme="dark"] .nav-active,
[data-theme="auto"] .nav-active { color: var(--gold-light) !important; }

/* Section alt background */
.section-alt { background: var(--bg-alt); }

/* ── INDEX PAGE ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.two-col-text p { line-height: 1.8; font-size: 1rem; }
.value-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.value-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.vc-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.value-card h3 { font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--purple-dark); }
[data-theme="dark"] .value-card h3,
[data-theme="auto"] .value-card h3 { color: var(--text); }
.value-card p { font-size: 0.83rem; }

/* Hero graphic (replaces fake profile cards) */
.hero-visual { display: flex; align-items: center; justify-content: center; padding: 2rem; }
.hero-graphic {
  position: relative; width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.hg-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(91,45,168,0.15);
  width: 280px; height: 280px;
  animation: spinSlow 20s linear infinite;
}
.hg-ring-2 {
  width: 200px; height: 200px;
  border-color: rgba(200,160,32,0.15);
  animation-direction: reverse; animation-duration: 14s;
}
@keyframes spinSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.hg-center {
  width: 130px; height: 130px;
  background: var(--bg-card);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: var(--shadow-md);
  border: 1px solid var(--border); z-index: 2;
  padding: 12px;
}
.hg-center img { width: 100%; height: auto; object-fit: contain; }
.hg-node {
  position: absolute; width: 44px; height: 44px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem;
  box-shadow: var(--shadow); z-index: 2;
}
.hg-node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.hg-node-2 { right: 0; top: 50%; transform: translateY(-50%); }
.hg-node-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.hg-node-4 { left: 0; top: 50%; transform: translateY(-50%); }

/* Two portal grid */
.two-portal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.portal-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg); padding: 2rem;
}
.portal-icon { font-size: 2rem; margin-bottom: 1rem; }
.portal-card h3 { color: #fff; margin-bottom: 0.5rem; }
.portal-card > p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 1.25rem; }
.portal-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.portal-list li { font-size: 0.88rem; color: rgba(255,255,255,0.7); padding-left: 1.2rem; position: relative; }
.portal-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-ghost-light {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: transparent; color: #fff;
  padding: 0.72rem 1.7rem; border-radius: 50px;
  font-weight: 600; font-size: 0.94rem;
  font-family: 'DM Sans', sans-serif;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-ghost-light.large { padding: 0.92rem 2.3rem; font-size: 1.02rem; }

/* ── HOW IT WORKS ── */
.journey-steps { display: flex; flex-direction: column; gap: 0; }
.journey-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.journey-step:last-child { border-bottom: none; }
.js-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: rgba(91,45,168,0.18); line-height: 1;
  flex-shrink: 0; width: 52px; text-align: right;
  margin-top: 2px;
}
.js-content h3 { color: var(--purple-dark); margin-bottom: 0.4rem; font-size: 1.05rem; }
[data-theme="dark"] .js-content h3,
[data-theme="auto"] .js-content h3 { color: var(--text); }
.js-content p { font-size: 0.92rem; line-height: 1.75; }
.badge-rec {
  display: inline-block; background: rgba(200,160,32,0.15);
  color: var(--gold-dark); border: 1px solid rgba(200,160,32,0.3);
  font-size: 0.68rem; font-weight: 700; padding: 0.15rem 0.6rem;
  border-radius: 50px; vertical-align: middle;
  text-transform: uppercase; letter-spacing: 0.05em; margin-left: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}

/* CLM grid */
.acd-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.acd-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.acd-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.acd-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--purple); line-height: 1; margin-bottom: 0.5rem;
}
.acd-card h3 { margin-bottom: 0.5rem; color: var(--purple-dark); }
[data-theme="dark"] .acd-card h3,
[data-theme="auto"] .acd-card h3 { color: var(--text); }
.acd-card p { font-size: 0.88rem; }

/* ── FAQ ── */
.faq-container { max-width: 800px; }
.faq-group { margin-bottom: 2.5rem; }
.faq-group-title {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.1rem 0; font-family: 'DM Sans', sans-serif;
  font-size: 0.96rem; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--purple); }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--purple); flex-shrink: 0; transition: transform var(--transition); }
.faq-q[aria-expanded="true"] { color: var(--purple); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 1.1rem; }
.faq-a.open { display: block; }
.faq-a p { font-size: 0.92rem; line-height: 1.75; margin-bottom: 0.5rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--purple); text-decoration: underline; }

.faq-cta {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin-top: 2rem;
}
.faq-cta h3 { margin-bottom: 0.5rem; }
.faq-cta p { margin-bottom: 1.25rem; }

/* ── CONTACT ── */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h2 { margin-bottom: 0.75rem; font-size: 1.6rem; }
.contact-info > p { margin-bottom: 1.75rem; line-height: 1.75; }
.contact-reasons { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-reason { display: flex; gap: 0.85rem; align-items: flex-start; }
.cr-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-reason strong { display: block; font-size: 0.92rem; color: var(--text); margin-bottom: 0.2rem; }
.contact-reason p { font-size: 0.85rem; }
.contact-form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-card);
}
.contact-form-card h3 { margin-bottom: 1.25rem; font-size: 1.2rem; }
.contact-success {
  margin-top: 1rem; padding: 0.85rem 1rem;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius); color: #16A34A;
  font-size: 0.88rem; font-weight: 600; text-align: center;
}

/* ── LEGAL PAGES ── */
.legal-container { max-width: 820px; }
.legal-notice {
  background: rgba(200,160,32,0.08); border: 1px solid rgba(200,160,32,0.3);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem; margin-bottom: 2rem;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
}
.legal-notice a { color: var(--purple); text-decoration: underline; }
.legal-toc {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2.5rem;
}
.legal-toc h3 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; font-family: 'DM Sans', sans-serif; }
.legal-toc ol { padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.38rem; }
.legal-toc li { font-size: 0.85rem; }
.legal-toc a { color: var(--purple); }
.legal-toc a:hover { text-decoration: underline; }
.legal-body { display: flex; flex-direction: column; gap: 0.5rem; }
.legal-section { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: 1.15rem; font-weight: 700; color: var(--purple-dark);
  margin-bottom: 0.85rem; font-family: 'DM Sans', sans-serif;
}
[data-theme="dark"] .legal-section h2,
[data-theme="auto"] .legal-section h2 { color: var(--text); }
.legal-section h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--text);
  margin: 1rem 0 0.5rem; font-family: 'DM Sans', sans-serif;
}
.legal-section p { font-size: 0.92rem; line-height: 1.8; margin-bottom: 0.75rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 0.75rem; }
.legal-section li { font-size: 0.91rem; line-height: 1.7; color: var(--text-muted); }
.legal-section a { color: var(--purple); text-decoration: underline; }

/* ============================================================
   RESPONSIVE — NEW PAGES
   ============================================================ */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; }
  .two-portal-grid { grid-template-columns: 1fr; }
  .acd-grid { grid-template-columns: repeat(2,1fr); }
  .contact-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-visual { display: none; }
  .value-cards { grid-template-columns: 1fr; }
  .acd-grid { grid-template-columns: 1fr; }
  .journey-step { flex-direction: column; gap: 0.5rem; }
  .js-number { text-align: left; font-size: 1.5rem; }
  .portal-card { padding: 1.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .legal-container { max-width: 100%; }
  .faq-container { max-width: 100%; }
}

/* ============================================================
   NEW ELEMENTS — Dual CTA, Setup Step, Financial Deferred
   ============================================================ */

/* ── DUAL NAV BUTTONS ── */
.btn-nav-talent {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: #1A1030;
  padding: 0.48rem 1.15rem; border-radius: 50px;
  font-weight: 700; font-size: 0.86rem;
  font-family: 'DM Sans', sans-serif; border: none; cursor: pointer;
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-nav-talent:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(252,209,22,0.35); }

.btn-nav-client {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--purple); color: #fff;
  padding: 0.48rem 1.15rem; border-radius: 50px;
  font-weight: 600; font-size: 0.86rem;
  font-family: 'DM Sans', sans-serif; border: none; cursor: pointer;
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-nav-client:hover { background: var(--purple-light); transform: translateY(-1px); }
/* ── NAV DROPDOWNS ── */
.nav-dropdown { position: relative; }
.nav-chevron { font-size: 0.6rem; margin-left: 3px; display: inline-block; transition: transform var(--transition); }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.nav-dd-menu {
  display: none; flex-direction: column;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--nav-bg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--nav-border); border-radius: 12px;
  box-shadow: var(--shadow-md); min-width: 172px; padding: 6px; z-index: 200;
}
.nav-dd-menu::before {
  content: ''; position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.nav-dropdown:hover .nav-dd-menu { display: flex; }
.nav-dd-menu a {
  padding: 0.52rem 0.85rem; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500; color: var(--text-nav);
  white-space: nowrap; font-family: 'DM Sans', sans-serif;
  transition: background var(--transition), color var(--transition);
}
.nav-dd-menu a:hover { background: var(--bg-alt); color: var(--purple); }

/* ── MOBILE NAV GROUPS ── */
.mobile-nav-group { padding: 0.35rem 0; border-bottom: 1px solid var(--border); }
.mobile-nav-group-label {
  display: block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--text-muted); padding: 0.25rem 0.5rem 0.1rem;
}
.mobile-nav-sub {
  display: block; padding: 0.5rem 0.75rem; border-radius: 8px;
  font-size: 0.93rem; font-weight: 500; color: var(--text-nav);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-sub:hover { background: var(--bg-alt); color: var(--purple); }

/* Hero CTA buttons */
.btn-hero-talent {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: var(--gold); color: #1A1030;
  padding: 0.82rem 1.9rem; border-radius: 50px;
  font-weight: 700; font-size: 0.98rem;
  font-family: 'DM Sans', sans-serif; border: none; cursor: pointer;
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-hero-talent:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(252,209,22,0.35); }
.btn-hero-talent.large { padding: 0.95rem 2.4rem; font-size: 1.05rem; }

.btn-hero-client {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--purple); color: #fff;
  padding: 0.82rem 1.9rem; border-radius: 50px;
  font-weight: 600; font-size: 0.98rem;
  font-family: 'DM Sans', sans-serif; border: none; cursor: pointer;
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-hero-client:hover { background: var(--purple-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(91,45,168,0.30); }
.btn-hero-client.large { padding: 0.95rem 2.4rem; font-size: 1.05rem; }

.hero-cta-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; }

/* Mobile CTA row */
.mobile-cta-row { display: flex; gap: 0.65rem; flex-wrap: wrap; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.mobile-cta-row .btn-nav-talent,
.mobile-cta-row .btn-nav-client { flex: 1; justify-content: center; }

/* Portal tags */
.portal-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.7rem; border-radius: 50px;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 0.5rem; font-family: 'DM Sans', sans-serif;
}
.talent-tag { background: rgba(252,209,22,0.15); color: #C8A020; border: 1px solid rgba(252,209,22,0.3); }
.client-tag { background: rgba(91,45,168,0.15); color: #A78BFA; border: 1px solid rgba(91,45,168,0.3); }
.portal-talent { border-top: 3px solid var(--gold); }
.portal-client { border-top: 3px solid var(--purple-light); }

/* Steps teaser (homepage) */
.steps-teaser { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
.step-t { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.25rem; transition: box-shadow var(--transition), transform var(--transition); }
.step-t:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-t-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: rgba(91,45,168,0.12); line-height: 1; margin-bottom: 0.5rem; }
.step-t h3 { font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--purple-dark); }
[data-theme="dark"] .step-t h3, [data-theme="auto"] .step-t h3 { color: var(--text); }
.step-t p { font-size: 0.83rem; }
.step-t-arrow { font-size: 1.3rem; color: var(--gold); align-self: center; padding: 0 0.5rem; }

/* ── SETUP STEP (Step 5) ── */
.setup-section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.4rem; border-bottom: 1px solid var(--border);
}
.setup-note {
  background: var(--bg-alt); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 0.75rem 1rem;
  font-size: 0.84rem; color: var(--text-muted); margin: 0.5rem 0 1rem;
  line-height: 1.6;
}
.setup-note strong { color: var(--text); }

/* ── FINANCIAL DEFERRED NOTE ── */
.financial-deferred-note {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(91,45,168,0.06);
  border: 1px solid rgba(91,45,168,0.18);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.fdn-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.financial-deferred-note strong { display: block; font-size: 0.9rem; color: var(--purple); margin-bottom: 0.25rem; }
.financial-deferred-note p { font-size: 0.84rem; line-height: 1.65; }

/* ── SIDEBAR FINANCIAL NOTE ── */
.sidebar-financial-note {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 0.85rem 1rem;
  margin-top: 2rem; display: flex; gap: 0.65rem; align-items: flex-start;
}
.sfn-icon { font-size: 1.1rem; flex-shrink: 0; }
.sidebar-financial-note p { color: rgba(255,255,255,0.5); font-size: 0.78rem; line-height: 1.55; }

/* ── VIDEO ERROR ── */
.uz-error { color: #EF4444; font-size: 0.83rem; margin-top: 0.6rem; font-weight: 500; }

/* ── PAYMENT METHOD TAGS (FAQ) ── */
.payment-methods { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }
.pm-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.3rem 0.85rem;
  font-size: 0.82rem; font-weight: 600; color: var(--text);
}

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 1024px) {
  .steps-teaser { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .step-t-arrow { display: none; }
}
@media (max-width: 768px) {
  .steps-teaser { grid-template-columns: 1fr; }
  .nav-right .nav-dropdown { display: none; }
  .hero-cta-hint { font-size: 0.74rem; }
}

/* ============================================================
   SESSION 2 — Auth Flow Styles
   Login page · Form alerts · Field errors
   ============================================================ */

/* ── FORM ALERTS ─────────────────────────────────────────────*/
.form-alert {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  display: none;
}
.form-alert-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  color: #DC2626;
}
.form-alert-info {
  background: rgba(91,45,168,0.08);
  border: 1px solid rgba(91,45,168,0.22);
  color: var(--purple);
}
.form-alert-success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  color: #16A34A;
}

/* ── FIELD ERRORS ────────────────────────────────────────────*/
.field-error {
  display: none;
  font-size: 0.78rem;
  color: #DC2626;
  margin-top: 0.3rem;
  font-weight: 500;
}

/* ── LOGIN PAGE ──────────────────────────────────────────────*/
.login-main {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.25rem 2rem;
  background: var(--bg-alt);
}

.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 5vw, 2.5rem);
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-md);
}

.login-header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.login-header h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--purple-dark);
  margin-bottom: 0.35rem;
}
[data-theme="dark"] .login-header h1,
[data-theme="auto"] .login-header h1 { color: var(--text); }
.login-header p { font-size: 0.92rem; }

/* Forgot password link */
.forgot-link {
  float: right;
  font-size: 0.78rem;
  color: var(--purple);
  font-weight: 500;
  text-decoration: underline;
}
.forgot-link:hover { opacity: 0.75; }

/* Password visibility toggle */
.password-wrap {
  position: relative;
}
.password-wrap input {
  padding-right: 2.75rem;
}
.pw-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
  line-height: 1;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.pw-toggle:hover { opacity: 1; }

.login-footer-note {
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
}
.login-footer-note a {
  color: var(--purple);
  font-weight: 600;
}

/* ── RESPONSIVE ──────────────────────────────────────────────*/
@media (max-width: 480px) {
  .login-card {
    border-radius: var(--radius);
    box-shadow: none;
    border: none;
    background: transparent;
  }
  .forgot-link { font-size: 0.72rem; }
}

/* ============================================================
   SESSION 5 — Dashboard Styles
   ============================================================ */

.dashboard-header {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 2rem; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.dash-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; font-weight: 700; flex-shrink: 0;
  overflow: hidden;
}
.dash-status-badge {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  border: 1px solid; border-radius: 50px;
  padding: 0.2rem 0.75rem; margin-top: 0.5rem;
}
.dash-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.dash-progress-bar {
  height: 8px; background: var(--border); border-radius: 4px;
  overflow: hidden;
}
.dash-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 4px; transition: width 0.6s cubic-bezier(.4,0,.2,1);
}
.dash-checklist {
  display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.25rem;
}
.dash-check-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.88rem; color: var(--text-muted);
  padding: 0.6rem 0.9rem; border-radius: var(--radius);
  background: var(--bg-alt); border: 1px solid var(--border);
}
.dash-check-item.done { color: var(--text); }
.dash-check-icon {
  font-size: 0.85rem; font-weight: 700; flex-shrink: 0;
  color: var(--text-muted);
}
.dash-check-item.done .dash-check-icon { color: #16A34A; }
.dash-actions { margin-top: 1.75rem; }
.dash-info-box {
  background: rgba(91,45,168,0.06);
  border: 1px solid rgba(91,45,168,0.18);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
}
.dash-info-box.success {
  background: rgba(34,197,94,0.06);
  border-color: rgba(34,197,94,0.25);
}
.dash-info-box strong { display: block; margin-bottom: 0.4rem; color: var(--text); }
.dash-info-box p { font-size: 0.88rem; line-height: 1.65; }

@media (max-width: 480px) {
  .dashboard-header { flex-direction: column; text-align: center; }
  .dash-avatar { margin: 0 auto; }
}

/* ── VERIFIED BADGE ─────────────────────────────── */
.verified-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: linear-gradient(135deg, #5B2D8E 0%, #3D1A6B 100%);
  color: #FCD116; border-radius: 50px;
  padding: 0.2rem 0.65rem 0.2rem 0.25rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  box-shadow: 0 2px 8px rgba(91,45,142,0.3);
  white-space: nowrap;
}
.verified-badge .badge-icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: #FCD116; color: #3D1A6B;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 900; flex-shrink: 0;
}
.unverified-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(251,191,36,0.12);
  color: #b45309; border: 1px solid rgba(251,191,36,0.3);
  border-radius: 50px; padding: 0.2rem 0.65rem;
  font-size: 0.72rem; font-weight: 600; white-space: nowrap;
}
