/* ============================================
   ESTATERATE — MAIN STYLESHEET
   ============================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1a1a1a;
  background: #f5f4f1;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
em { font-style: italic; color: #1D9E75; }
a { color: inherit; text-decoration: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: #fff;
  border-bottom: 1px solid #e8e6e1;
  position: sticky; top: 0; z-index: 100;
}
.logo {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700;
  letter-spacing: -0.04em; color: #1a1a1a;
}
.logo span { color: #1D9E75; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { font-size: 14px; color: #666; transition: color 0.15s; }
.nav-links a:hover { color: #1a1a1a; }
.nav-cta {
  background: #1a1a1a; color: #fff !important; border-radius: 7px;
  padding: 8px 18px; font-size: 13px; font-weight: 500; transition: background 0.15s;
}
.nav-cta:hover { background: #333 !important; }
.back-link { display: flex; align-items: center; gap: 5px; font-size: 13px !important; }
.nav-burger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: #1a1a1a; }

.mobile-menu {
  display: flex; flex-direction: column; gap: 0;
  background: #fff; border-bottom: 1px solid #e8e6e1;
  padding: 0.5rem 0;
}
.mobile-menu a { padding: 0.75rem 2rem; font-size: 15px; color: #333; border-bottom: 1px solid #f0ede8; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-cta { color: #1D9E75 !important; font-weight: 500; }

/* ============================================
   POPUP
   ============================================ */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(10,20,14,0.85);
  z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem;
  animation: fadeIn 0.2s ease;
}
.popup {
  background: #fff; border-radius: 18px; padding: 2.5rem;
  max-width: 420px; width: 100%; text-align: center;
  animation: slideUp 0.25s ease;
}
.popup-logo { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700; margin-bottom: 0.25rem; }
.popup-logo span { color: #1D9E75; }
.popup-tagline { font-size: 14px; color: #888; margin-bottom: 1.75rem; line-height: 1.6; }
.popup-question { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; margin-bottom: 1.25rem; }
.popup-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 1.25rem; }
.choice-card {
  border: 1.5px solid #e0ddd8; border-radius: 12px; padding: 1.25rem 1rem;
  cursor: pointer; transition: all 0.18s; text-align: center;
}
.choice-card:hover, .choice-card:focus {
  border-color: #1D9E75; background: #f0fbf7; outline: none;
}
.choice-icon { font-size: 26px; color: #999; margin-bottom: 0.6rem; transition: color 0.18s; }
.choice-card:hover .choice-icon { color: #1D9E75; }
.choice-label { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.choice-desc { font-size: 12px; color: #999; line-height: 1.5; }
.popup-note { font-size: 12px; color: #aaa; display: flex; align-items: center; justify-content: center; gap: 5px; }
.popup-note i { color: #1D9E75; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: #0f1a14;
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 100%, rgba(29,158,117,0.22) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hero-mode-toggle {
  display: inline-flex; background: rgba(255,255,255,0.08); border-radius: 8px;
  padding: 4px; gap: 4px; margin-bottom: 1.5rem;
}
.mode-btn {
  padding: 8px 22px; border-radius: 6px; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; background: transparent; color: rgba(255,255,255,0.5);
}
.mode-btn.active { background: #1D9E75; color: #fff; }
.hero-tag {
  display: inline-block; border: 0.5px solid rgba(29,158,117,0.6); color: #5DCAA5;
  font-size: 12px; padding: 4px 14px; border-radius: 20px; margin-bottom: 1.25rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hero h1 { font-size: clamp(32px, 5vw, 48px); color: #fff; margin-bottom: 1rem; }
.hero p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 480px; margin: 0 auto 1.75rem; line-height: 1.7; }

.search-bar {
  background: #fff; border-radius: 10px; padding: 6px 6px 6px 16px;
  display: flex; align-items: center; gap: 8px; max-width: 500px;
  margin: 0 auto 1.25rem; box-shadow: 0 0 0 2px rgba(29,158,117,0.25);
}
.search-bar i { color: #1D9E75; font-size: 18px; flex-shrink: 0; }
.search-bar input {
  flex: 1; border: none; outline: none; font-size: 15px;
  font-family: 'DM Sans', sans-serif; color: #1a1a1a; background: transparent;
}
.search-bar button {
  background: #1D9E75; color: #fff; border: none; border-radius: 7px;
  padding: 10px 20px; font-size: 14px; font-family: 'DM Sans', sans-serif;
  cursor: pointer; font-weight: 500; white-space: nowrap; transition: background 0.15s;
}
.search-bar button:hover { background: #0F6E56; }

.trust-strip { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-item { color: rgba(255,255,255,0.4); font-size: 13px; display: flex; align-items: center; gap: 5px; }
.trust-item i { color: #5DCAA5; }

/* AGENTS HERO */
.agents-hero { text-align: center; }
.hero-stats { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hstat { text-align: center; }
.hstat-num { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 700; color: #fff; }
.hstat-lbl { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.hero-divider { width: 1px; background: rgba(255,255,255,0.12); }
.hero-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-ghost {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8);
  border: 0.5px solid rgba(255,255,255,0.18); border-radius: 8px;
  padding: 12px 24px; font-size: 14px; font-family: 'DM Sans', sans-serif; cursor: pointer;
}

/* ============================================
   MODE BANNER
   ============================================ */
.mode-banner {
  background: #E1F5EE; border-bottom: 0.5px solid #9FE1CB;
  padding: 10px 2rem; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.mode-banner-left { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #085041; font-weight: 500; }
.mode-banner-left i { color: #1D9E75; font-size: 18px; }
.mode-switch-btn {
  font-size: 13px; color: #0F6E56; background: transparent;
  border: 0.5px solid #5DCAA5; border-radius: 20px; padding: 4px 14px;
  cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; transition: all 0.15s;
}
.mode-switch-btn:hover { background: #1D9E75; color: #fff; border-color: #1D9E75; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 3rem 2rem; }
.section-inner { max-width: 880px; margin: 0 auto; }
.section-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #1D9E75; font-weight: 500; margin-bottom: 0.4rem;
}
.section-title { font-size: clamp(22px, 3vw, 30px); margin-bottom: 0.4rem; }
.section-sub { color: #666; font-size: 14px; margin-bottom: 1.75rem; line-height: 1.65; max-width: 560px; }

/* ============================================
   AGENT CARDS
   ============================================ */
.agents-grid { display: flex; flex-direction: column; gap: 1rem; }
.agent-card {
  background: #fff; border: 1px solid #e8e6e1; border-radius: 13px;
  padding: 1.25rem 1.5rem; display: grid;
  grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.agent-card:hover { border-color: #c8c4bc; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.agent-card.featured { border: 1.5px solid #1D9E75; }

/* SELECTABLE CARDS */
.agent-card.selectable-card {
  grid-template-columns: auto auto 1fr auto;
  cursor: pointer;
}
.agent-card.selectable-card.selected { border: 1.5px solid #1D9E75; background: #f7fdf9; }
.agent-card.selectable-card.maxed { opacity: 0.45; cursor: not-allowed; }
.agent-card.selectable-card.selected.maxed { opacity: 1; cursor: pointer; }

.agent-check {
  width: 22px; height: 22px; border-radius: 6px;
  border: 1.5px solid #d0ccc5; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: all 0.15s; background: #fff;
}
.agent-check i { font-size: 13px; display: none; color: #fff; }
.selectable-card.selected .agent-check { background: #1D9E75; border-color: #1D9E75; }
.selectable-card.selected .agent-check i { display: block; }

.agent-avatar {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.agent-avatar.large { width: 62px; height: 62px; font-size: 18px; border-radius: 12px; }
.av-green { background: #E1F5EE; color: #0F6E56; }
.av-blue { background: #DDE8F5; color: #2A5F8F; }
.av-amber { background: #FAEEDA; color: #854F0B; }
.av-purple { background: #EEEDFE; color: #3C3489; }

.agent-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; flex-wrap: wrap; }
.agent-info h3 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; }
.agent-tagline { font-size: 13px; color: #888; margin-bottom: 8px; }
.agent-stats { display: flex; gap: 1rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-val { font-size: 14px; font-weight: 500; }
.stat-lbl { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 0.04em; }
.stars-val { color: #1a1a1a; }
.stars-val::first-line { color: #EF9F27; }

.badge-best {
  display: inline-flex; align-items: center; gap: 4px;
  background: #E1F5EE; color: #0F6E56; font-size: 11px;
  font-weight: 500; padding: 2px 8px; border-radius: 20px; white-space: nowrap;
}

.agent-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.btn-contact {
  background: #1D9E75; color: #fff; border: none; border-radius: 7px;
  padding: 9px 16px; font-size: 13px; font-family: 'DM Sans', sans-serif;
  cursor: pointer; font-weight: 500; white-space: nowrap; transition: background 0.15s; display: inline-block;
}
.btn-contact:hover { background: #0F6E56; }
.btn-outline-sm {
  background: transparent; color: #666; border: 1px solid #d8d5cf;
  border-radius: 7px; padding: 8px 14px; font-size: 13px;
  font-family: 'DM Sans', sans-serif; cursor: pointer; white-space: nowrap;
  transition: all 0.15s; display: inline-block;
}
.btn-outline-sm:hover { border-color: #999; color: #1a1a1a; }

/* ============================================
   INSTRUCTION BANNER
   ============================================ */
.instruction-banner {
  background: #fff; border: 1px solid #e8e6e1; border-radius: 10px;
  padding: 0.9rem 1.25rem; display: flex; align-items: center;
  gap: 10px; margin-bottom: 1.25rem; font-size: 13px; color: #666;
}
.instruction-banner i { color: #1D9E75; font-size: 18px; flex-shrink: 0; }
.instruction-banner strong { color: #1a1a1a; }

/* ============================================
   STICKY BAR
   ============================================ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0f1a14; border-top: 2px solid #1D9E75;
  padding: 1rem 2rem; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.sticky-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 5px; }
.selected-display { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.sel-placeholder { font-size: 13px; color: rgba(255,255,255,0.3); }
.sel-badge {
  background: rgba(29,158,117,0.25); color: #5DCAA5; font-size: 12px; font-weight: 500;
  padding: 4px 10px; border-radius: 20px; display: flex; align-items: center; gap: 4px;
  border: 0.5px solid rgba(29,158,117,0.4);
}
.sel-badge button { background: none; border: none; color: #5DCAA5; cursor: pointer; font-size: 13px; padding: 0 0 0 2px; }
.sticky-right { text-align: center; }
.request-btn {
  background: #1D9E75; color: #fff; border: none; border-radius: 10px;
  padding: 14px 32px; font-size: 16px; font-family: 'DM Sans', sans-serif; font-weight: 500;
  cursor: pointer; white-space: nowrap; transition: all 0.15s;
  box-shadow: 0 0 0 3px rgba(29,158,117,0.3);
}
.request-btn:disabled { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.2); cursor: not-allowed; box-shadow: none; }
.request-btn:not(:disabled):hover { background: #0F6E56; box-shadow: 0 0 0 4px rgba(29,158,117,0.4); }
.request-btn-sub { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 5px; }

/* ============================================
   MODALS
   ============================================ */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 150; display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.form-modal, .confirm-modal {
  background: #fff; border-radius: 16px; padding: 2rem;
  max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto;
}
.modal-title { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; margin-bottom: 0.25rem; }
.modal-sub { font-size: 13px; color: #888; margin-bottom: 1.25rem; line-height: 1.6; }
.agent-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.25rem; }
.agent-chip {
  display: flex; align-items: center; gap: 6px;
  background: #E1F5EE; border-radius: 20px; padding: 5px 12px;
  font-size: 13px; font-weight: 500; color: #0F6E56;
}
.ts-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 4px; }
.ts-opt {
  border: 1px solid #e0ddd8; border-radius: 8px; padding: 9px 10px;
  cursor: pointer; font-size: 12px; color: #888; transition: all 0.15s; text-align: center;
}
.ts-opt:hover, .ts-opt.selected { border-color: #1D9E75; background: #E1F5EE; color: #085041; font-weight: 500; }
.consent-box {
  background: #f5f4f1; border-radius: 8px; padding: 0.9rem;
  margin: 1rem 0; display: flex; gap: 9px; align-items: flex-start;
}
.consent-box input[type=checkbox] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: #1D9E75; }
.consent-box label { font-size: 12px; color: #888; line-height: 1.6; cursor: pointer; }
.consent-box a { color: #1D9E75; }
.modal-btns { display: flex; gap: 10px; justify-content: flex-end; margin-top: 0.75rem; }
.modal-cancel {
  background: transparent; color: #888; border: 1px solid #e0ddd8;
  border-radius: 8px; padding: 10px 18px; font-size: 13px; font-family: 'DM Sans', sans-serif; cursor: pointer;
}
.modal-submit {
  background: #1D9E75; color: #fff; border: none; border-radius: 8px;
  padding: 10px 22px; font-size: 13px; font-family: 'DM Sans', sans-serif; font-weight: 500; cursor: pointer;
}
.modal-submit:hover { background: #0F6E56; }

/* CONFIRM MODAL */
.confirm-modal { text-align: center; }
.confirm-icon { width: 54px; height: 54px; background: #E1F5EE; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 26px; color: #1D9E75; }
.confirm-modal h2 { font-family: 'Fraunces', serif; font-size: 20px; margin-bottom: 0.4rem; }
.confirm-modal p { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 1.25rem; }
.confirm-agents { display: flex; flex-direction: column; border: 1px solid #e8e6e1; border-radius: 10px; overflow: hidden; margin-bottom: 1.25rem; text-align: left; }
.confirm-agent-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid #e8e6e1; font-size: 13px; }
.confirm-agent-row:last-child { border-bottom: none; }
.ca-av { width: 30px; height: 30px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 11px; flex-shrink: 0; }
.ca-name { flex: 1; font-weight: 500; }
.ca-sent { font-size: 11px; color: #1D9E75; display: flex; align-items: center; gap: 3px; }
.confirm-note { font-size: 12px; color: #aaa; margin-bottom: 1.25rem; }
.confirm-note a { color: #1D9E75; }
.done-btn { background: #1D9E75; color: #fff; border: none; border-radius: 8px; padding: 11px 24px; font-size: 14px; font-family: 'DM Sans', sans-serif; font-weight: 500; cursor: pointer; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section { background: #fff; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.how-card { background: #f5f4f1; border-radius: 13px; padding: 1.5rem; }
.how-num { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 700; color: #1D9E75; opacity: 0.8; margin-bottom: 0.75rem; line-height: 1; }
.how-card h4 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; margin-bottom: 0.4rem; }
.how-card p { font-size: 13px; color: #888; line-height: 1.6; }

/* ============================================
   PLEDGE
   ============================================ */
.pledge-section { background: #f5f4f1; }
.pledge {
  background: #0f1a14; border-radius: 14px; padding: 2.5rem;
  display: flex; gap: 2rem; align-items: center; flex-wrap: wrap;
}
.pledge-text { flex: 1; min-width: 200px; }
.pledge-text h3 { font-family: 'Fraunces', serif; font-size: 24px; color: #fff; margin-bottom: 0.4rem; }
.pledge-text p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; }
.pledge-items { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }
.pledge-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 14px; }
.pledge-item i { color: #5DCAA5; font-size: 17px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: #fff; padding: 3rem 2rem; }
.cta-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-big {
  background: #1D9E75; color: #fff; border: none; border-radius: 8px;
  padding: 13px 28px; font-size: 15px; font-family: 'DM Sans', sans-serif;
  font-weight: 500; cursor: pointer; display: inline-block; transition: background 0.15s;
}
.btn-big:hover { background: #0F6E56; }
.btn-big-outline {
  background: transparent; color: #1a1a1a; border: 1px solid #d0ccc5;
  border-radius: 8px; padding: 13px 28px; font-size: 15px;
  font-family: 'DM Sans', sans-serif; cursor: pointer; display: inline-block; transition: all 0.15s;
}
.btn-big-outline:hover { border-color: #999; }

/* ============================================
   PROFILE PAGE
   ============================================ */
.profile-header { background: #0f1a14; padding: 1.75rem 2rem 0; }
.profile-header-inner { max-width: 880px; margin: 0 auto; }
.ph-top { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.ph-info { flex: 1; }
.ph-info h1 { font-size: 24px; color: #fff; margin-bottom: 3px; }
.ph-sub { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.ph-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.ph-badge { font-size: 11px; padding: 3px 9px; border-radius: 20px; border: 0.5px solid rgba(29,158,117,0.4); color: #5DCAA5; display: flex; align-items: center; gap: 3px; }
.profile-cta { margin-left: auto; flex-shrink: 0; }
.profile-tabs { display: flex; border-top: 0.5px solid rgba(255,255,255,0.1); margin-top: 0.25rem; }
.ptab { padding: 11px 18px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.4); border: none; background: transparent; cursor: pointer; font-family: 'DM Sans', sans-serif; border-bottom: 2px solid transparent; transition: all 0.15s; display: flex; align-items: center; gap: 5px; }
.ptab.active { color: #fff; border-bottom-color: #1D9E75; }
.ptab:hover { color: rgba(255,255,255,0.7); }
.tab-count { font-size: 11px; opacity: 0.55; }

.profile-body { max-width: 880px; margin: 0 auto; padding: 1.5rem 2rem 6rem; }

.fee-card { background: #fff; border: 1px solid #e8e6e1; border-radius: 13px; padding: 1.25rem; margin-bottom: 1.1rem; }
.fee-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #e8e6e1; border-radius: 8px; overflow: hidden; margin-top: 1rem; }
.fee-cell { background: #fff; padding: 1rem; }
.fee-amount { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700; color: #1a1a1a; margin-bottom: 3px; }
.fee-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.fee-note { font-size: 11px; color: #999; margin-bottom: 8px; }
.fee-bar { height: 4px; background: #f0ede8; border-radius: 2px; }
.fee-fill { height: 100%; border-radius: 2px; }
.fee-fill-green { background: #1D9E75; }
.fee-fill-amber { background: #EF9F27; }
.fee-vs { display: flex; justify-content: space-between; font-size: 11px; margin-top: 3px; color: #999; }
.good { color: #1D9E75; }
.warn { color: #BA7517; }
.fee-includes { background: #f5f4f1; border-radius: 8px; padding: 0.9rem 1rem; margin-top: 1rem; font-size: 13px; color: #888; line-height: 1.65; }
.fee-includes strong { color: #1a1a1a; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 1.1rem; }
.profile-card { background: #fff; border: 1px solid #e8e6e1; border-radius: 13px; padding: 1.25rem; }
.stat-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #f0ede8; font-size: 13px; }
.stat-row:last-child { border-bottom: none; }
.sr-lbl { color: #888; }
.sr-val { font-weight: 500; }
.rating-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.rating-num { font-family: 'Fraunces', serif; font-size: 38px; font-weight: 700; line-height: 1; }
.rating-meta { font-size: 13px; color: #888; }
.rating-stars { color: #EF9F27; font-size: 17px; margin-bottom: 8px; }
.stars-inline { color: #EF9F27; }
.bar-rows { display: flex; flex-direction: column; gap: 5px; }
.br { display: flex; align-items: center; gap: 7px; font-size: 12px; }
.br-lbl { width: 22px; text-align: right; color: #999; }
.br-track { flex: 1; height: 5px; background: #f0ede8; border-radius: 3px; }
.br-fill { height: 100%; border-radius: 3px; background: #EF9F27; }
.br-n { width: 22px; color: #999; font-size: 11px; }

.reviews-list { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.1rem; }
.rev { background: #fff; border: 1px solid #e8e6e1; border-radius: 12px; padding: 1.1rem 1.25rem; }
.rev-top { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.rev-av { width: 34px; height: 34px; border-radius: 50%; background: #f0ede8; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; color: #888; flex-shrink: 0; }
.rev-name { font-size: 14px; font-weight: 500; }
.rev-date { font-size: 12px; color: #999; }
.rev-stars { color: #EF9F27; font-size: 13px; margin-left: auto; }
.rev-text { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 6px; }
.rev-tag { display: inline-block; background: #f5f4f1; font-size: 11px; padding: 2px 8px; border-radius: 10px; color: #999; }

.profile-sticky {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid #e8e6e1;
  padding: 0.9rem 2rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap; z-index: 50;
}
.profile-sticky-left strong { font-size: 14px; }
.profile-sticky-left p { font-size: 12px; color: #888; margin-top: 1px; }
.profile-sticky-btns { display: flex; gap: 8px; }
.cta-btn {
  background: #1D9E75; color: #fff; border: none; border-radius: 8px;
  padding: 10px 18px; font-size: 13px; font-family: 'DM Sans', sans-serif;
  font-weight: 500; cursor: pointer; white-space: nowrap; transition: background 0.15s; display: inline-block;
}
.cta-btn:hover { background: #0F6E56; }

/* ============================================
   AGENTS PAGE — QUALITY & PRICING
   ============================================ */
.quality-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1rem; }
.q-card { background: #fff; border: 1px solid #e8e6e1; border-radius: 13px; padding: 1.25rem; }
.q-icon { width: 40px; height: 40px; border-radius: 9px; background: #E1F5EE; display: flex; align-items: center; justify-content: center; color: #0F6E56; font-size: 18px; margin-bottom: 0.9rem; }
.q-num { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700; color: #1D9E75; margin-bottom: 3px; }
.q-card h4 { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; margin-bottom: 5px; }
.q-card p { font-size: 13px; color: #888; line-height: 1.6; }

.vs-table { background: #fff; border: 1px solid #e8e6e1; border-radius: 13px; padding: 1.25rem; margin-bottom: 1rem; }
.vs-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: #999; font-weight: 500; margin-bottom: 1rem; }
.vs-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 13px; }
.vs-row:last-child { margin-bottom: 0; }
.vs-them { color: #999; text-align: right; }
.vs-us { color: #1D9E75; font-weight: 500; }
.vs-mid { background: #f5f4f1; border-radius: 4px; padding: 3px 10px; font-size: 11px; color: #999; white-space: nowrap; text-align: center; }

.value-box { background: #E1F5EE; border: 0.5px solid #9FE1CB; border-radius: 13px; padding: 1.25rem 1.5rem; margin-bottom: 1rem; display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.value-box-text { flex: 1; min-width: 200px; }
.value-box-text h4 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: #085041; margin-bottom: 4px; }
.value-box-text p { font-size: 13px; color: #0F6E56; line-height: 1.6; }
.value-calc { background: #fff; border-radius: 10px; padding: 1rem 1.25rem; min-width: 200px; flex-shrink: 0; }
.vc-row { display: flex; justify-content: space-between; font-size: 13px; padding: 3px 0; color: #085041; }
.vc-total { font-weight: 500; border-top: 0.5px solid #9FE1CB; margin-top: 4px; padding-top: 8px; color: #0F6E56; }

.pricing-section { background: #f5f4f1; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 0.75rem; align-items: stretch; }
.plan { background: #fff; border: 1px solid #e8e6e1; border-radius: 13px; padding: 1.5rem; position: relative; display: flex; flex-direction: column; }
.plan.featured { border: 1.5px solid #1D9E75; }
.plan-tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: #1D9E75; color: #fff; font-size: 11px; font-weight: 500; padding: 3px 12px; border-radius: 20px; white-space: nowrap; display: flex; align-items: center; gap: 4px; }
.plan-name { font-size: 12px; font-weight: 500; color: #999; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.plan-price { font-family: 'Fraunces', serif; font-size: 34px; font-weight: 700; color: #1a1a1a; line-height: 1; margin-bottom: 3px; }
.plan-price span { font-size: 15px; font-weight: 400; color: #999; font-family: 'DM Sans', sans-serif; }
.plan-sub { font-size: 12px; color: #999; margin-bottom: 1.25rem; }
.plan-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 1.25rem; flex: 1; }
.pf { display: flex; align-items: flex-start; gap: 7px; font-size: 13px; color: #666; }
.pf i { color: #1D9E75; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.pf.off i { color: #ccc; }
.pf.off { color: #ccc; }
.plan-btn { width: 100%; border: none; border-radius: 8px; padding: 11px; font-size: 13px; font-family: 'DM Sans', sans-serif; font-weight: 500; cursor: pointer; background: #1D9E75; color: #fff; margin-top: auto; transition: background 0.15s; }
.plan-btn:hover { background: #0F6E56; }
.pricing-note { text-align: center; font-size: 12px; color: #999; }

.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.testimonial { background: #fff; border: 1px solid #e8e6e1; border-radius: 13px; padding: 1.5rem; display: flex; gap: 1.25rem; align-items: flex-start; }
.t-av { width: 44px; height: 44px; border-radius: 50%; background: #E1F5EE; color: #0F6E56; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.t-stars { color: #EF9F27; font-size: 13px; margin-bottom: 6px; }
.t-quote { font-size: 14px; color: #1a1a1a; line-height: 1.7; margin-bottom: 8px; font-style: italic; }
.t-name { font-size: 13px; font-weight: 500; }
.t-role { font-size: 12px; color: #999; }

/* ============================================
   SIGNUP
   ============================================ */
.signup-progress { display: flex; align-items: center; gap: 0; margin-bottom: 2rem; max-width: 400px; }
.sp-step { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.sp-num { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; flex-shrink: 0; background: #f0ede8; color: #999; transition: all 0.2s; }
.sp-num.active, .sp-num.done { background: #1D9E75; color: #fff; }
.sp-step span { color: #999; font-size: 13px; }
.sp-step.active span { color: #1a1a1a; font-weight: 500; }
.sp-line { flex: 1; height: 1px; background: #e8e6e1; margin: 0 10px; }
.sp-line.done { background: #1D9E75; }

.signup-card { background: #0f1a14; border-radius: 16px; padding: 2rem; max-width: 560px; }
.signup-title { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.signup-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; line-height: 1.6; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; font-size: 12px; font-weight: 500; color: #888; margin-bottom: 5px; }
.signup-card .field label { color: rgba(255,255,255,0.6); }
.field input, .field select {
  width: 100%; padding: 10px 12px; border: 1px solid #e0ddd8; border-radius: 8px;
  font-size: 14px; font-family: 'DM Sans', sans-serif; color: #1a1a1a;
  background: #fff; outline: none;
}
.signup-card .field input, .signup-card .field select {
  border-color: rgba(255,255,255,0.12); color: #fff;
  background: rgba(255,255,255,0.06);
}
.signup-card .field input::placeholder { color: rgba(255,255,255,0.25); }
.field input:focus, .field select:focus { border-color: #1D9E75; box-shadow: 0 0 0 3px rgba(29,158,117,0.15); }
.signup-card .field select { color: rgba(255,255,255,0.6); }
.signup-card .field select option { background: #1a2e23; color: #fff; }
.full { grid-column: 1 / -1; }

.plan-pill { background: rgba(29,158,117,0.15); border: 0.5px solid rgba(29,158,117,0.4); border-radius: 8px; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 8px; }
.plan-pill-name { font-size: 13px; color: #5DCAA5; font-weight: 500; }
.plan-pill-note { font-size: 12px; color: rgba(255,255,255,0.4); }
.change-plan { font-size: 12px; color: #5DCAA5; background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: underline; padding: 0; }

.card-field-wrap { position: relative; }
.card-icon-inner { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.3); font-size: 16px; pointer-events: none; }
.card-brands { display: flex; gap: 6px; margin-top: 8px; }
.card-brands span { background: rgba(255,255,255,0.08); border-radius: 4px; padding: 3px 8px; font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }

.trial-notice { background: rgba(29,158,117,0.1); border: 0.5px solid rgba(29,158,117,0.3); border-radius: 10px; padding: 1rem 1.25rem; margin: 1.25rem 0; }
.trial-notice p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.trial-notice strong { color: #5DCAA5; }
.trial-timeline { display: flex; gap: 0; margin-top: 0.9rem; position: relative; }
.trial-timeline::before { content: ''; position: absolute; top: 12px; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.1); }
.tl-step { flex: 1; text-align: center; position: relative; z-index: 1; }
.tl-dot { width: 24px; height: 24px; border-radius: 50%; margin: 0 auto 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; }
.tl-dot.green { background: #1D9E75; color: #fff; }
.tl-dot.grey { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); }
.tl-label { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.4; }
.tl-label strong { display: block; color: rgba(255,255,255,0.7); font-size: 11px; }

.secure-note { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 0.75rem; display: flex; align-items: center; gap: 5px; }
.signup-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.signup-note { font-size: 12px; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 5px; }
.signup-note i { color: #1D9E75; }
.submit-btn { background: #1D9E75; color: #fff; border: none; border-radius: 8px; padding: 12px 28px; font-size: 14px; font-family: 'DM Sans', sans-serif; font-weight: 500; cursor: pointer; white-space: nowrap; transition: background 0.15s; }
.submit-btn:hover { background: #0F6E56; }
.back-btn { background: none; border: none; color: rgba(255,255,255,0.4); font-size: 13px; font-family: 'DM Sans', sans-serif; cursor: pointer; display: flex; align-items: center; gap: 5px; padding: 0; }
.back-btn:hover { color: rgba(255,255,255,0.7); }

.confirm-card { text-align: center; }
.confirm-icon-wrap { width: 60px; height: 60px; background: #1D9E75; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 26px; color: #fff; }
.trial-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(29,158,117,0.2); border: 0.5px solid rgba(29,158,117,0.4); color: #5DCAA5; font-size: 13px; padding: 6px 14px; border-radius: 20px; margin-bottom: 1.25rem; }
.confirm-summary { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 1rem 1.25rem; text-align: left; margin-bottom: 1.25rem; }
.confirm-summary-row { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; border-bottom: 0.5px solid rgba(255,255,255,0.07); }
.confirm-summary-row:last-child { border-bottom: none; }
.confirm-summary-row span:first-child { color: rgba(255,255,255,0.4); }
.confirm-summary-row span:last-child { color: rgba(255,255,255,0.85); font-weight: 500; }
.confirm-cancel-note { font-size: 12px; color: rgba(255,255,255,0.3); }
.confirm-cancel-note a { color: #5DCAA5; }

.faq-section { margin-top: 2rem; max-width: 560px; }
.faq { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: #fff; border: 1px solid #e8e6e1; border-radius: 10px; overflow: hidden; }
.faq-q { padding: 1rem 1.25rem; font-size: 14px; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q i { color: #999; font-size: 16px; transition: transform 0.2s; }
.faq-a { font-size: 13px; color: #888; line-height: 1.65; padding: 0 1.25rem 1rem; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q i { transform: rotate(45deg); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #0f1a14; padding: 1.5rem 2rem; }
.footer-inner { max-width: 880px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { color: #fff !important; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ============================================
   UTILITIES
   ============================================ */
.hidden { display: none !important; }

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .how-grid, .quality-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .fee-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .agent-card { grid-template-columns: auto 1fr; }
  .agent-card.selectable-card { grid-template-columns: auto auto 1fr; }
  .agent-actions { display: none; }
  .pledge { flex-direction: column; }
  .ph-top { flex-wrap: wrap; }
  .profile-cta { display: none; }
  .hero-stats { gap: 1.5rem; }
  .hero-divider { display: none; }
  .popup-choices { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .full { grid-column: 1; }
}
