/* ============================================
   WORKCONNECT — DARK LUXURY DESIGN SYSTEM
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0A0A0F;
  --surface:  #12121A;
  --surface2: #1A1A28;
  --surface3: #1E1E2E;
  --gold:     #C9A84C;
  --gold-l:   #E8C96A;
  --gold-d:   #A07830;
  --text:     #E8E8F0;
  --text-sub: #8888A8;
  --border:   rgba(201,168,76,0.15);
  --blue:     #4C7AC9;
  --radius:   12px;
  --radius-lg:20px;
  --transition-theme: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] {
  --bg:       #FAF9F6;
  --surface:  #FFFFFF;
  --surface2: #F4F2EC;
  --surface3: #EDE9DF;
  --gold:     #A8843A;
  --gold-l:   #C9A84C;
  --gold-d:   #8A6B2E;
  --text:     #1A1A22;
  --text-sub: #6B6B7A;
  --border:   rgba(168,132,58,0.2);
  --blue:     #3A5FA0;
}

* { transition: var(--transition-theme); }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; }

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { line-height: 1.7; color: var(--text-sub); }
em { font-style: normal; color: var(--gold); }

a { text-decoration: none; color: inherit; }

/* ====== UTILS ====== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ====== BUTTONS ====== */
.btn-gold {
  background: var(--gold);
  color: #000;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: 'Syne', sans-serif;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-gold:hover { background: var(--gold-l); transform: translateY(-1px); }

.btn-ghost {
  color: var(--text-sub);
  padding: 9px 16px;
  font-size: 0.88rem;
  font-family: 'Syne', sans-serif;
  border-radius: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

.btn-gold-lg {
  background: var(--gold);
  color: #000;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Syne', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-gold-lg:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

.btn-outline-lg {
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Syne', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-lg:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }

.btn-submit {
  background: var(--gold);
  color: #000;
  padding: 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Syne', sans-serif;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { background: var(--gold-l); transform: translateY(-1px); }

/* ====== NAVBAR ====== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; gap: 32px;
}
.logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--text); }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 24px; margin-right: auto; }
.nav-links a { font-size: 0.88rem; color: var(--text-sub); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.hamburger {
  display: none; background: none; border: none; color: var(--text);
  font-size: 1.6rem; cursor: pointer;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--surface); border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 24px; font-size: 0.95rem; color: var(--text-sub);
  border-bottom: 1px solid var(--border);
}

/* ====== HERO ====== */
.hero {
  padding: 140px 24px 80px;
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative;
}
.hero-bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; color: var(--gold);
  margin-bottom: 24px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-sub {
  font-size: 1.05rem; line-height: 1.75; margin: 20px 0 32px;
  color: var(--text-sub); max-width: 480px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.hero-trust span {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--text-sub);
}
.hero-trust i { color: var(--gold); }

/* FLOATING CARDS */
.hero-visual {
  position: relative; height: 340px;
}
.card-float {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(8px);
  animation: float 4s ease-in-out infinite;
}
.card-float.card-1 { top: 30px; left: 0; animation-delay: 0s; }
.card-float.card-2 { top: 150px; right: 0; animation-delay: 1.5s; }
.card-float.card-3 {
  bottom: 30px; left: 50%; transform: translateX(-50%);
  animation-delay: 0.75s;
  font-size: 0.85rem; font-weight: 600; color: var(--gold);
  gap: 8px;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.card-3 { animation: float3 4s ease-in-out infinite; }
@keyframes float3 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
.cf-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem; color: #000;
  flex-shrink: 0;
}
.cf-avatar.emp {
  background: linear-gradient(135deg, #2a4a8a, var(--blue));
  color: #fff;
}
.cf-info { display: flex; flex-direction: column; gap: 2px; }
.cf-info strong { font-size: 0.9rem; font-family: 'Syne', sans-serif; }
.cf-info span { font-size: 0.75rem; color: var(--text-sub); }
.cf-badge {
  display: inline-block; padding: 2px 8px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 600; margin-top: 4px;
}
.cf-badge.gold { background: rgba(201,168,76,0.15); color: var(--gold); }
.cf-badge.blue { background: rgba(76,122,201,0.15); color: var(--blue); }

/* ====== HOW IT WORKS ====== */
.section-how {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-how h2 { margin-bottom: 36px; }
.how-tabs { display: flex; gap: 0; margin-bottom: 48px; background: var(--surface2); border-radius: 10px; padding: 4px; width: fit-content; }
.tab-btn {
  background: transparent; border: none; cursor: pointer;
  padding: 10px 24px; border-radius: 8px;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.88rem;
  color: var(--text-sub); transition: all 0.2s;
}
.tab-btn.active { background: var(--gold); color: #000; }
.how-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 16px; align-items: center;
}
.step {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step-arrow { font-size: 1.5rem; color: var(--border); }

/* ====== STATS ====== */
.section-stats { padding: 80px 0; }
.stats-grid {
  display: flex; align-items: center; justify-content: space-around;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.stat-item { text-align: center; display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--text-sub); }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* ====== SECTORS ====== */
.section-sectors { padding: 80px 0; }
.section-sectors h2 { margin-bottom: 40px; }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.sector-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.sector-card i { font-size: 1.6rem; color: var(--gold); }
.sector-card span { font-size: 0.88rem; font-weight: 500; }

/* ====== CTA FINAL ====== */
.section-cta-final { padding: 80px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--surface2), var(--surface3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
}
.cta-box h2 { margin-bottom: 12px; }
.cta-box p { margin-bottom: 32px; font-size: 1rem; }
.cta-box-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ====== FOOTER ====== */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  background: var(--surface);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 0.88rem; margin-top: 12px; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4 {
  font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.footer-links a { font-size: 0.85rem; color: var(--text-sub); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  font-size: 0.8rem; color: var(--text-sub);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-credits { color: var(--text-sub); }
.footer-credits a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-credits a:hover { color: var(--gold-l); text-decoration: underline; }

/* ====== TEAM ====== */
.section-team { padding: 80px 0; }
.section-team h2 { margin-bottom: 40px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 640px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem;
  color: #000;
  margin: 0 auto 16px;
}
.team-card h3 { margin-bottom: 4px; }
.team-role { display: block; font-size: 0.82rem; color: var(--text-sub); margin-bottom: 18px; }
.team-contact {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25D366;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  transition: background 0.2s;
}
.team-contact:hover { background: rgba(37,211,102,0.2); }
.team-contact i { font-size: 1rem; }
.section-faq { padding: 80px 0; }
.section-faq h2 { margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.faq-question i {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 240px;
  padding: 0 22px 20px;
}
.faq-answer p { font-size: 0.88rem; line-height: 1.65; }

/* ====== FORM PAGES ====== */
.form-page {
  min-height: 100vh;
  display: flex; align-items: stretch;
}
.form-side {
  flex: 1; max-width: 560px;
  padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--surface);
  border-right: 1px solid var(--border);
}
.form-deco {
  flex: 1;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 48px;
}
.form-deco-content { text-align: center; position: relative; z-index: 1; }
.form-deco-icon {
  font-size: 5rem; color: var(--gold); opacity: 0.15;
  margin-bottom: 24px;
}
.form-deco h3 { font-size: 1.6rem; margin-bottom: 12px; }
.form-deco p { font-size: 0.9rem; max-width: 300px; margin: 0 auto; }
.deco-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
}
.deco-orb-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.deco-orb-2 { width: 300px; height: 300px; bottom: -80px; left: -80px; }

.form-header { margin-bottom: 36px; }
.form-header .back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--text-sub); margin-bottom: 28px;
  transition: color 0.2s;
}
.form-header .back-link:hover { color: var(--gold); }
.form-header h2 { margin-bottom: 6px; }
.form-header p { font-size: 0.88rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text); margin-bottom: 7px;
  font-family: 'Syne', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-sub); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.skills-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.skill-tag {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.78rem; color: var(--gold);
  cursor: pointer; transition: background 0.2s;
}
.skill-tag:hover { background: rgba(201,168,76,0.2); }

.form-divider {
  text-align: center; margin: 24px 0;
  position: relative; font-size: 0.78rem; color: var(--text-sub);
}
.form-divider::before, .form-divider::after {
  content: ''; position: absolute; top: 50%;
  width: calc(50% - 40px); height: 1px;
  background: var(--border);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

.form-note { font-size: 0.78rem; color: var(--text-sub); margin-top: 16px; text-align: center; }
.form-note a { color: var(--gold); }

/* ====== DASHBOARD ====== */
.dashboard { display: flex; min-height: 100vh; padding-top: 64px; }
.sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 32px 0;
  position: fixed; left: 0; top: 64px; bottom: 0; overflow-y: auto;
}
.sidebar-section { margin-bottom: 8px; }
.sidebar-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-sub);
  padding: 8px 20px; display: block;
}
.sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 0.88rem; color: var(--text-sub);
  transition: all 0.2s; border-left: 2px solid transparent;
}
.sidebar-link:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.sidebar-link.active { color: var(--gold); border-left-color: var(--gold); background: rgba(201,168,76,0.05); }
.sidebar-link i { font-size: 1.1rem; }

.main-content {
  flex: 1; margin-left: 240px;
  padding: 40px;
  min-height: calc(100vh - 64px);
}

.page-header { margin-bottom: 32px; }
.page-header h2 { margin-bottom: 6px; }

/* FILTERS */
.filters-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 28px;
}
.filter-group { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 140px; }
.filter-group label {
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-sub); font-family: 'Syne', sans-serif;
  letter-spacing: 0.05em;
}
.filter-group select,
.filter-group input {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; color: var(--text);
  outline: none; transition: border-color 0.2s;
}
.filter-group select:focus,
.filter-group input:focus { border-color: var(--gold); }
.btn-search {
  background: var(--gold); color: #000;
  padding: 9px 20px; border-radius: 8px;
  font-weight: 700; font-size: 0.88rem;
  font-family: 'Syne', sans-serif;
  border: none; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: background 0.2s;
  align-self: flex-end;
}
.btn-search:hover { background: var(--gold-l); }

/* RESULTS */
.results-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.results-meta span { font-size: 0.85rem; color: var(--text-sub); }
.results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.worker-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.worker-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.wc-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.wc-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 700; color: #000;
  font-size: 0.9rem; flex-shrink: 0;
}
.wc-info { flex: 1; }
.wc-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; }
.wc-role { font-size: 0.8rem; color: var(--text-sub); }
.wc-status {
  font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 100px;
}
.wc-status.dispo { background: rgba(34,197,94,0.12); color: #4ade80; }
.wc-status.occupe { background: rgba(239,68,68,0.12); color: #f87171; }
.wc-meta { display: flex; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.wc-meta span {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.78rem; color: var(--text-sub);
}
.wc-meta i { color: var(--gold); font-size: 0.85rem; }
.wc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.wc-tag {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 10px;
  font-size: 0.72rem; color: var(--gold);
}
.wc-actions { display: flex; gap: 8px; }
.btn-contact {
  flex: 1; background: var(--gold); color: #000;
  padding: 9px; border-radius: 8px;
  font-weight: 700; font-size: 0.82rem;
  font-family: 'Syne', sans-serif; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 0.2s;
}
.btn-contact:hover { background: var(--gold-l); }
.btn-save {
  background: var(--surface2); color: var(--text-sub);
  padding: 9px 12px; border-radius: 8px; border: 1px solid var(--border);
  cursor: pointer; font-size: 1rem; transition: all 0.2s;
}
.btn-save:hover { border-color: var(--gold); color: var(--gold); }

/* MODAL */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 460px; width: 100%;
  transform: translateY(20px); transition: transform 0.2s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal h3 { margin-bottom: 6px; }
.modal p { font-size: 0.88rem; margin-bottom: 24px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--text-sub);
  font-size: 1.4rem; cursor: pointer;
}

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s, transform 0.5s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ====== SUCCESS PAGE ====== */
.success-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
}
.success-box {
  text-align: center; max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
}
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(201,168,76,0.1); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold);
  margin: 0 auto 24px;
}
.success-box h2 { margin-bottom: 12px; }
.success-box p { margin-bottom: 32px; }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); }
  .footer-top { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { flex-wrap: wrap; gap: 32px; }
  .stat-divider { display: none; }
  .form-page { flex-direction: column; }
  .form-side { max-width: 100%; padding: 100px 24px 48px; }
  .form-deco { display: none; }
  .dashboard { flex-direction: column; }
  .sidebar { position: relative; width: 100%; top: 0; border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .main-content { margin-left: 0; padding: 24px 16px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .cta-box { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}