/* ============================================
   Francoda 凡可达 — Complete Stylesheet
   Version: 2.1 (Full Rebuild)
   ============================================ */

/* ===== CSS Variables ===== */
:root {
  --navy: #1a2744;
  --navy-dark: #0f1a2e;
  --gold: #c9a227;
  --gold-light: #e6c84a;
  --white: #ffffff;
  --bg: #f5f7fa;
  --bg-alt: #edf0f5;
  --border: #dde3ec;
  --text-light: #5a657d;
  --text-muted: #8a94a6;
  --green: #2ecc71;
  --red: #e74c3c;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26,39,68,0.08);
  --shadow-lg: 0 12px 48px rgba(26,39,68,0.14);
  --transition: all 0.25s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 70px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== Container ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ===== Section Base ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg); }
.section-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--navy);
}
.section-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.eyebrow-light { color: var(--gold-light); }
.accent { color: var(--gold); }

/* ===== Navigation ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 19px;
}
.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.brand-zh { display: none; }
.brand-en { display: inline; }
[data-lang="zh"] .brand-zh { display: inline; }
[data-lang="zh"] .brand-en { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); }

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

.lang-toggle {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 66px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  opacity: 0;
  transition: all 0.3s ease;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--bg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,39,68,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,39,68,0.35); }
.btn-outline {
  border: 2px solid var(--border);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,162,39,0.45); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

.link-arrow {
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.link-arrow:hover { gap: 8px; }

/* ===== Hero Section ===== */
#hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f4fc 0%, #e8ecf6 50%, #f5f7fa 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,162,39,0.08) 0%, transparent 60%);
}
.hero-container {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(201,162,39,0.12);
  color: var(--navy);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Hero Visual — Floating Cards */
.hero-visual { position: relative; }
.hero-card-stack { position: relative; height: 420px; }
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  width: 320px;
  transition: transform 0.3s ease;
  border-left: 4px solid transparent;
}
.hero-card:hover { transform: scale(1.03) !important; }
.card-1 { top: 0; right: 0; transform: rotate(-2deg); border-color: var(--green); z-index: 3; }
.card-2 { top: 130px; right: 30px; transform: rotate(1deg); border-color: var(--blue, #3498db); z-index: 2; }
.card-3 { top: 260px; right: 60px; transform: rotate(-1deg); border-color: var(--gold); z-index: 1; }

.card-icon { font-size: 32px; flex-shrink: 0; }
.card-body { display: flex; flex-direction: column; min-width: 0; }
.card-body strong { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-body span { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.card-status {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
}
.status-bidding { background: rgba(46,204,113,0.12); color: var(--green); }
.status-done { background: rgba(52,152,219,0.12); color: var(--blue, #3498db); }
.status-active { background: rgba(201,162,39,0.12); color: var(--gold); }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }

/* ===== About / Company Section ===== */
.about-box { max-width: 760px; margin: 0 auto; }
.about-tagline {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.5;
}
.section-dark .about-tagline { color: var(--white); }
.about-text p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}
.section-dark .about-text p { color: rgba(255,255,255,0.75); }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.value-item strong { display: block; font-size: 16px; margin-bottom: 4px; }
.value-item span:last-child { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.section-dark .value-item span:last-child { color: rgba(255,255,255,0.65); }

/* ===== How It Works Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.steps-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .steps-grid-5 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .steps-grid-5 { grid-template-columns: 1fr; } }

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.step-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.step-icon { font-size: 36px; margin-bottom: 16px; }
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.step-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== Services Grid ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img { height: 180px; background-size: cover; background-position: center; position: relative; }
.service-img-factory { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.service-img-expo { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.service-img-market { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

.service-body { padding: 28px 24px; }
.service-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.service-card:nth-child(1) .service-tag { background: rgba(102,126,234,0.12); color: #667eea; }
.service-card:nth-child(2) .service-tag { background: rgba(240,147,251,0.12); color: #f093fb; }
.service-card:nth-child(3) .service-tag { background: rgba(79,172,254,0.12); color: #4facfe; }

.service-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.service-body > p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }

.service-features { margin-bottom: 20px; }
.service-features li {
  font-size: 14px;
  color: var(--text-light);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.service-features li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.service-price {
  padding-top: 16px;
  border-top: 1px solid var(--bg);
  font-size: 14px;
  color: var(--text-muted);
}
.service-price strong {
  font-size: 22px;
  color: var(--navy);
  font-weight: 800;
}

/* ===== Trust & Safety ===== */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.trust-card:hover { box-shadow: var(--shadow); }
.trust-icon { font-size: 32px; margin-bottom: 12px; }
.trust-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.trust-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== Agent Profile Section ===== */
.agent-profile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.profile-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.profile-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.profile-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.agent-rating-explain {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 32px;
  border-left: 4px solid var(--gold);
}
.agent-rating-explain h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.agent-rating-explain p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

/* ===== Exhibition Board ===== */
.expo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.expo-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.expo-card:hover { box-shadow: var(--shadow-lg); }
.expo-date {
  background: var(--navy);
  color: var(--white);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
}
.expo-month { font-size: 14px; font-weight: 700; color: var(--gold); }
.expo-day { font-size: 20px; font-weight: 800; margin-top: 4px; }
.expo-body { padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; flex: 1; }
.expo-location { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.expo-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.expo-body p { font-size: 13px; color: var(--text-light); line-height: 1.5; margin-bottom: 12px; }
.expo-actions { margin-top: auto; }

/* ===== Task Board ===== */
.task-filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.task-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 32px; }
.task-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--border);
  transition: var(--transition);
}
.task-card:hover { border-left-color: var(--gold); box-shadow: var(--shadow-lg); }
.task-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.task-type-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-factory { background: rgba(102,126,234,0.12); color: #667eea; }
.badge-expo { background: rgba(240,147,251,0.12); color: #c44daa; }
.badge-market { background: rgba(79,172,254,0.12); color: #2980b9; }
.task-budget { font-size: 16px; font-weight: 800; color: var(--navy); }
.task-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.task-desc { font-size: 14px; color: var(--text-light); line-height: 1.5; margin-bottom: 14px; }
.task-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.task-bids { font-weight: 700; color: var(--gold); }
.tasks-cta { text-align: center; }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto 48px; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
}
.pricing-card-featured {
  border-color: var(--gold);
  position: relative;
  overflow: visible;
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--navy); }
.pricing-amount { margin-bottom: 16px; }
.pricing-currency { font-size: 42px; font-weight: 900; color: var(--navy); }
.pricing-period { font-size: 14px; color: var(--text-muted); display: block; }
.pricing-card > p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-light);
  padding-left: 24px;
  position: relative;
}
.pricing-features li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 24px;
  padding: 16px;
  background: rgba(201,162,39,0.06);
  border-radius: var(--radius);
}

/* ===== Payment Rules ===== */
.payment-rules { margin-top: 48px; }
.payment-rules h3 { text-align: center; font-size: 24px; font-weight: 700; margin-bottom: 28px; }
.rules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.rule-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.rule-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.rule-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== Post Task Form ===== */
.task-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--navy);
  background: var(--bg);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
.form-group textarea { resize: vertical; }

.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.form-check input[type="checkbox"] {
  margin-top: 4px;
  width: 18px; height: 18px;
  accent-color: var(--navy);
  flex-shrink: 0;
}
.form-check label { font-size: 14px; color: var(--text-light); line-height: 1.5; }
.form-check-important {
  background: #fff8e1;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 16px 0;
}
.form-check-important label {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.form-check-important input[type="checkbox"] {
  accent-color: var(--gold-dark);
}
.form-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 16px; }

.form-success {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.success-icon {
  width: 64px; height: 64px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.form-success p { font-size: 16px; color: var(--text-light); }

/* ===== Checklist Preview ===== */
.checklist-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.checklist-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.checklist-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.checklist-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.checklist-card .btn { align-self: flex-start; }

/* ===== Become an Agent (Dark CTA) ===== */
.agent-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.agent-text .section-eyebrow { margin-bottom: 12px; }
.agent-text h2 { font-size: 34px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: var(--white); }
.agent-text > p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 24px; line-height: 1.7; }

.agent-benefits { margin-bottom: 32px; }
.agent-benefits li {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.agent-benefits li span:first-child { flex-shrink: 0; }

.agent-stats-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.agent-stat-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.agent-stat-row:last-child { border-bottom: none; }
.agent-stat-label { font-size: 14px; color: rgba(255,255,255,0.6); }
.agent-stat-value { font-size: 15px; font-weight: 700; color: var(--gold-light); }

/* ===== FAQ Accordion ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question::after { content: "+"; font-size: 20px; font-weight: 300; color: var(--text-muted); transition: var(--transition); }
.faq-item.open .faq-question::after { content: "−"; color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 0 20px; font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ===== Contact ===== */
.contact-box {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  align-items: center;
}
.contact-info h2 { font-size: 30px; font-weight: 800; margin-bottom: 12px; }
.contact-info > p { font-size: 16px; color: var(--text-light); margin-bottom: 28px; }

.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method { display: flex; align-items: center; gap: 14px; }
.contact-icon { font-size: 28px; }
.contact-method strong { display: block; font-size: 15px; }
.contact-method span { font-size: 14px; color: var(--text-light); }

.contact-qr { display: flex; flex-direction: column; gap: 20px; }
.qr-box {
  text-align: center;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.qr-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 10px;
}
.qr-label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}
.qr-sublabel {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== Footer ===== */
footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--gold); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--gold); }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ===== Expo CTA ===== */
.expo-cta {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: rgba(201,162,39,0.06);
  border-radius: var(--radius);
}
.expo-cta p { font-size: 14px; color: var(--text-light); margin-bottom: 8px; }

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 968px) {
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 30px; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content h1 { font-size: 36px; }
  .hero-subtitle { margin: 0 auto 32px; max-width: 520px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .agent-profile-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .checklist-preview-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .task-board { grid-template-columns: 1fr; }
  .expo-grid { grid-template-columns: 1fr; }
  .contact-box { grid-template-columns: 1fr; text-align: center; }
  .contact-methods { align-items: center; }
  .contact-qr { flex-direction: row; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .agent-content { grid-template-columns: 1fr; text-align: center; }
  .agent-benefits { text-align: left; max-width: 480px; margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; }
  .about-tagline { font-size: 17px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav { display: flex; }
}

/* Mobile Small */
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .container, .container-narrow { padding: 0 16px; }
  .hero-content h1 { font-size: 28px; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .task-form { padding: 24px; }
  .contact-box { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-card { padding: 28px 20px; }
  .pricing-currency { font-size: 34px; }
  .task-filters { gap: 6px; }
  .filter-btn { padding: 6px 14px; font-size: 13px; }
  .qr-box { padding: 10px; }
  .qr-image { width: 120px; height: 120px; }
}

/* ===== File Upload Custom ===== */
.file-upload-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.file-input-hidden {
  display: none !important;
}
.file-name {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== Bank Transfer Box ===== */
.bank-info-box {
  text-align: center;
  padding: 16px;
}
.bank-icon {
  font-size: 36px;
  margin-bottom: 8px;
}
.bank-details {
  margin: 10px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bank-details div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bank-details strong {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.bank-details span {
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Courier New', monospace;
}
