/* =====================
   FACECAIRO — MAIN CSS
   ===================== */

:root {
  --blue: #2B6BF3;
  --blue-light: #E6F1FB;
  --blue-dark: #185FA5;
  --blue-border: #B5D4F4;
  --black: #111111;
  --gray: #666666;
  --gray-light: #F4F6FB;
  --gray-border: #D0D9F0;
  --white: #ffffff;
  --gold: #BA7517;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow: 0 1px 4px rgba(43,107,243,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  line-height: 1.6;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 0.5px solid var(--gray-border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--black);
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--blue); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}
.nav-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-outline {
  padding: 8px 20px;
  border: 1.5px solid var(--black);
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--gray-light); }
.btn-solid {
  padding: 8px 20px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--black);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-solid:hover { background: var(--blue); }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
  color: var(--black);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 32px 20px;
  gap: 14px;
  border-top: 0.5px solid var(--gray-border);
}
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
}
.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hero-blob-1 {
  width: 280px; height: 280px;
  background: var(--blue-light);
  top: -80px; left: -80px;
  opacity: 0.7;
}
.hero-blob-2 {
  width: 180px; height: 180px;
  background: var(--blue);
  bottom: -60px; right: -40px;
  opacity: 0.12;
}
.hero-left { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-left h1 {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 18px;
}
.hero-left h1 span { color: var(--blue); font-style: italic; }
.hero-left p {
  font-size: 16px;
  color: var(--gray);
  max-width: 380px;
  margin-bottom: 32px;
}
.btn-hero {
  display: inline-block;
  padding: 14px 32px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-hero:hover { background: var(--blue); transform: translateY(-2px); }
.hero-dots { display: flex; gap: 8px; margin-top: 28px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-border);
}
.dot.active { background: var(--blue); width: 24px; border-radius: 4px; }
.hero-right {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 130px);
  gap: 16px;
}
.collage-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px -20px rgba(17,30,60,.5);
}
.tile-magnify { grid-column: 1; grid-row: 1 / span 2; }
.tile-checklist { grid-column: 2; grid-row: 1; }
.tile-hex { grid-column: 1; grid-row: 3; }
.tile-digital { grid-column: 2; grid-row: 2; }
.tile-coins { grid-column: 2; grid-row: 3; }
.tile-scene {
  width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
}
.scene-money { background: linear-gradient(135deg,#f4d35e 0%,#e9c46a 45%,#d4a017 100%); }
.scene-light { background: linear-gradient(135deg,#eaf2fb,#d7e6f7); }
.scene-teal  { background: linear-gradient(140deg,#1b3a4b,#2a6f7f); }
.scene-dark  { background: radial-gradient(circle at 60% 35%,#15324a,#0a1622); }
.scene-soft  { background: linear-gradient(135deg,#f3d9d2,#e9c2b8); }
.tile-ic { font-size: 40px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.2)); }
.tile-bills { font-size: 26px; position: absolute; bottom: 14px; right: 16px; opacity: .85; }
.tile-tax {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 26px;
  color: #1b3a4b; letter-spacing: 1px;
}
.tile-tax.light { color: #cfeaf2; }
.tile-dice {
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px;
  background: #fff; color: #b5462f; padding: 4px 8px; border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,.15); letter-spacing: 2px;
}

/* ---- FEATURES ---- */
.features {
  background: var(--white);
  padding: 72px 32px 56px;
  max-width: 1200px;
  margin: 0 auto;
}
.features h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--black);
  text-align: center;
  margin-bottom: 36px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--gray-light);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.feature-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 500;
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feature-icon { font-size: 28px; margin-bottom: 10px; }
.feature-card h3 { font-size: 15px; font-weight: 500; color: var(--black); margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* ---- HOW IT WORKS ---- */
.how-it-works {
  background: var(--gray-light);
  padding: 72px 32px;
  text-align: center;
}
.how-it-works h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--black);
  margin-bottom: 8px;
}
.section-sub { font-size: 14px; color: var(--gray); margin-bottom: 48px; }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.step { text-align: center; flex: 1; min-width: 160px; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step h4 { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.step p { font-size: 13px; color: var(--gray); padding: 0 10px; }
.step-arrow {
  font-size: 22px;
  color: var(--blue-border);
  margin-top: 10px;
  padding: 0 8px;
  align-self: flex-start;
}

/* ---- EXPERTS PREVIEW ---- */
.experts-preview {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.experts-text h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--black);
  margin-bottom: 14px;
}
.experts-text p { font-size: 15px; color: var(--gray); margin-bottom: 24px; max-width: 380px; }
.btn-outline-blue {
  display: inline-block;
  padding: 10px 24px;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-sm);
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline-blue:hover { background: var(--blue-light); }
.expert-card-preview {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 380px;
}
.ecp-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue);
  flex-shrink: 0;
}
.ecp-name { font-size: 16px; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.ecp-meta { font-size: 13px; color: var(--gray); margin-bottom: 5px; }
.ecp-stars { font-size: 16px; color: var(--gold); }

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
}
.footer-logo span { color: var(--blue); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: #aaa; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: #777; }

/* ---- FORMS / AUTH PAGES ---- */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  padding: 40px 20px;
}
.auth-card {
  background: var(--white);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
}
.auth-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--black);
  text-align: center;
  margin-bottom: 28px;
  text-decoration: none;
  display: block;
}
.auth-logo span { color: var(--blue); }
.auth-card h2 { font-size: 22px; font-weight: 500; color: var(--black); margin-bottom: 6px; }
.auth-card p { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; color: var(--gray); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,107,243,0.12);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-full {
  width: 100%;
  padding: 12px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
  margin-top: 8px;
}
.btn-full:hover { background: var(--blue); }
.auth-switch { text-align: center; margin-top: 20px; font-size: 14px; color: var(--gray); }
.auth-switch a { color: var(--blue); text-decoration: none; font-weight: 500; }
.divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 0.5px; background: var(--gray-border); }
.divider span { font-size: 12px; color: var(--gray); }

/* ---- TAX FILING FLOW ---- */
.flow-page {
  background: var(--gray-light);
  min-height: 100vh;
  padding: 40px 20px;
}
.flow-container {
  max-width: 760px;
  margin: 0 auto;
}
.flow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.flow-header .logo { font-family: var(--font-display); font-size: 18px; color: var(--black); text-decoration: none; }
.flow-header .logo span { color: var(--blue); }
.step-label { font-size: 13px; color: var(--gray); }
.progress-bar { height: 4px; background: var(--gray-border); border-radius: 4px; margin-bottom: 24px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--blue); border-radius: 4px; transition: width 0.4s ease; }
.step-tabs { display: flex; margin-bottom: 24px; }
.step-tab {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  border-bottom: 2px solid var(--gray-border);
  cursor: pointer;
  transition: all 0.2s;
}
.step-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.step-tab.done { color: #27500A; border-bottom-color: #27500A; }
.flow-card {
  background: var(--white);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 16px;
}
.flow-card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.flow-card-title span { color: var(--blue); }
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 0.5px solid var(--gray-light);
}
.toggle-row:last-child { border-bottom: none; }
.toggle-label { font-size: 13px; color: var(--black); }
.toggle-sub { font-size: 11px; color: var(--gray); margin-top: 2px; }
.toggle {
  width: 38px; height: 21px;
  border-radius: 11px;
  background: var(--gray-border);
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.toggle.on { background: var(--blue); }
.toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--white);
  transition: left 0.2s;
}
.toggle.on::after { left: 20px; }
.upload-zone {
  border: 1.5px dashed var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.upload-zone:hover { border-color: var(--blue); }
.upload-zone p { font-size: 13px; color: var(--gray); }
.upload-zone strong { color: var(--blue); }
.doc-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 12px;
  border-radius: 4px;
  padding: 3px 9px;
  margin: 3px;
}
.radio-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.radio-opt {
  padding: 8px 14px;
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  color: var(--black);
  transition: all 0.15s;
}
.radio-opt.selected { border-color: var(--blue); background: var(--blue-light); color: var(--blue-dark); }
.flow-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.btn-back {
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-next {
  padding: 9px 24px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.btn-next:hover { background: var(--blue-dark); }
.btn-next:disabled { background: var(--gray-border); cursor: not-allowed; }

/* ---- EXPERT PAGE ---- */
.page-hero {
  background: var(--blue);
  padding: 60px 32px;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-display); font-size: 40px; color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto; }
.experts-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.expert-card {
  background: var(--white);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.expert-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.expert-card.featured { border: 2px solid var(--blue); }
.expert-card .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 14px;
}
.expert-card .name { font-size: 16px; font-weight: 500; color: var(--black); margin-bottom: 3px; }
.expert-card .meta { font-size: 13px; color: var(--gray); margin-bottom: 6px; }
.expert-card .stars { font-size: 14px; color: var(--gold); margin-bottom: 12px; }
.expert-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.expert-tag {
  font-size: 11px;
  background: var(--gray-light);
  color: var(--gray);
  border-radius: 4px;
  padding: 3px 8px;
}
.expert-fee { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.expert-fee .fee { font-size: 16px; font-weight: 500; color: var(--black); }
.expert-fee .turnaround { color: var(--gray); font-size: 12px; }
.select-expert-btn {
  width: 100%;
  margin-top: 14px;
  padding: 10px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.select-expert-btn:hover { background: var(--blue-dark); }

/* ---- DASHBOARD ---- */
.dashboard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.sidebar {
  background: var(--black);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 32px;
  text-decoration: none;
  display: block;
}
.sidebar-logo span { color: var(--blue); }
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: #aaa;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.sidebar-item:hover, .sidebar-item.active { background: rgba(43,107,243,0.15); color: var(--white); }
.sidebar-item.active { color: var(--blue); }
.sidebar-icon { font-size: 18px; }
.dashboard-main { background: var(--gray-light); padding: 36px; overflow-y: auto; }
.dashboard-header { margin-bottom: 28px; }
.dashboard-header h2 { font-size: 22px; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.dashboard-header p { font-size: 14px; color: var(--gray); }
.dash-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px; }
.dash-metric {
  background: var(--white);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.dash-metric .label { font-size: 12px; color: var(--gray); margin-bottom: 6px; }
.dash-metric .value { font-size: 24px; font-weight: 500; color: var(--black); }
.dash-metric .value.blue { color: var(--blue); }
.dash-metric .value.green { color: #27500A; }
.dash-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.dash-card {
  background: var(--white);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.dash-card-title { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 16px; }
.return-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--gray-light);
  font-size: 13px;
}
.return-item:last-child { border-bottom: none; }
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}
.status-badge.review { background: #FFF8E6; color: #BA7517; }
.status-badge.filed { background: #EAF3DE; color: #27500A; }
.status-badge.pending { background: var(--blue-light); color: var(--blue-dark); }
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 12px; padding-bottom: 14px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-left { display: flex; flex-direction: column; align-items: center; width: 20px; flex-shrink: 0; }
.tl-dot { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.tl-dot.done { background: var(--blue); color: var(--white); }
.tl-dot.active { background: var(--blue-light); color: var(--blue); border: 1.5px solid var(--blue); }
.tl-dot.pending { background: var(--gray-light); color: var(--gray); }
.tl-line { flex: 1; width: 1.5px; background: var(--gray-border); margin-top: 4px; }
.tl-item:last-child .tl-line { display: none; }
.tl-title { font-size: 13px; font-weight: 500; color: var(--black); }
.tl-sub { font-size: 11px; color: var(--gray); margin-top: 2px; }
.tl-time { font-size: 11px; color: var(--blue); margin-top: 2px; }

/* ---- ABOUT PAGE ---- */
.about-hero {
  background: linear-gradient(to right, var(--black), #1a2a4a);
  padding: 80px 32px;
  text-align: center;
}
.about-hero h1 { font-family: var(--font-display); font-size: 44px; color: var(--white); margin-bottom: 16px; }
.about-hero h1 span { color: var(--blue); font-style: italic; }
.about-hero p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }
.about-section { max-width: 900px; margin: 0 auto; padding: 72px 32px; }
.about-section h2 { font-family: var(--font-display); font-size: 28px; color: var(--black); margin-bottom: 16px; }
.about-section p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card { padding: 24px; border: 0.5px solid var(--gray-border); border-radius: var(--radius-md); }
.value-icon { font-size: 28px; margin-bottom: 12px; }
.value-card h3 { font-size: 15px; font-weight: 500; color: var(--black); margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--gray); }

/* ---- CONTACT PAGE ---- */
.contact-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-family: var(--font-display); font-size: 30px; color: var(--black); margin-bottom: 14px; }
.contact-info p { font-size: 15px; color: var(--gray); margin-bottom: 28px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 14px; color: var(--black); }
.contact-icon { width: 36px; height: 36px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }

/* ---- ALERT / INFO BOXES ---- */
.info-box {
  background: var(--blue-light);
  border: 0.5px solid var(--blue-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--blue-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* ---- RESULT CARD ---- */
.result-card {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  margin-bottom: 16px;
}
.result-amount { font-size: 44px; font-weight: 500; color: var(--blue); margin: 8px 0; font-family: var(--font-display); }
.result-label { font-size: 13px; color: var(--gray); }
.result-breakdown { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 20px; }
.result-item { background: var(--gray-light); border-radius: var(--radius-sm); padding: 12px; text-align: center; }
.result-item .val { font-size: 17px; font-weight: 500; color: var(--black); }
.result-item .lbl { font-size: 11px; color: var(--gray); margin-top: 3px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; }
  .hero { grid-template-columns: 1fr; padding: 40px 20px 60px; min-height: auto; }
  .hero-right { display: none; }
  .hero-left h1 { font-size: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .experts-preview { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .dash-metrics { grid-template-columns: 1fr 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
  .result-breakdown { grid-template-columns: 1fr; }
  .dash-metrics { grid-template-columns: 1fr; }
}
