/* ============================================================
   HOME CASH SYSTEM — Shared Site CSS
   Brand: Navy #0D1B2A | Gold #F5A825 | Green #16A34A
   Fonts: Sora (headlines) + Inter (body)
   ============================================================ */

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

:root {
  --navy:        #0D1B2A;
  --navy-mid:    #1A2E45;
  --navy-light:  #243B55;
  --gold:        #F5A825;
  --gold-dark:   #D4891A;
  --gold-light:  #FEF3C7;
  --green:       #16A34A;
  --green-light: #DCFCE7;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-900:    #0F172A;
  --nav-h:       72px;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Sora', sans-serif;
  color: var(--navy);
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: 1.375rem; font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { color: var(--gray-500); line-height: 1.75; }
a  { color: inherit; text-decoration: none; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc  { font-size: 1.0625rem; color: var(--gray-500); max-width: 600px; }
.gold-divider  { width: 48px; height: 4px; background: var(--gold); border-radius: 2px; margin: 1.25rem 0 2rem; }
.gold-text     { color: var(--gold); }
.navy-text     { color: var(--navy); }
.text-center   { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.text-center .gold-divider { margin-left: auto; margin-right: auto; }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  background: var(--navy);
  border-bottom: 1px solid var(--navy-mid);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 20px; height: 20px; }
.nav-logo-text { display: flex; flex-direction: column; gap: 0; }
.nav-logo-text .top {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}
.nav-logo-text .sub {
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  line-height: 1;
  margin-top: 2px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: var(--navy-mid); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 100px !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(245,168,37,0.4) !important; }
.nav-login {
  background: var(--white);
  color: var(--navy) !important;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
}
.nav-login:hover { background: var(--gray-100) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0;
  width: 100%;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--navy-light);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}
.mobile-menu a:hover { background: var(--navy-light); color: var(--white); }
.mobile-menu .nav-cta {
  text-align: center;
  margin-top: 0.5rem;
  background: var(--gold) !important;
  color: var(--navy) !important;
  display: block;
}
.mobile-menu .nav-login {
  text-align: center;
  background: var(--white);
  color: var(--navy) !important;
  display: block;
  border-radius: 100px;
  padding: 0.6rem 1rem;
  margin-top: 0.25rem;
  font-weight: 700;
}

/* ── PAGE WRAPPER ── */
.page-body { padding-top: var(--nav-h); }

/* ── SECTIONS ── */
.section { padding: 5rem 2rem; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-inner.narrow { max-width: 800px; }
.section-inner.mid    { max-width: 960px; }
.section.bg-navy      { background: var(--navy); }
.section.bg-navy h2, .section.bg-navy h3, .section.bg-navy h4 { color: var(--white); }
.section.bg-navy p    { color: var(--gray-400); }
.section.bg-off       { background: var(--off-white); }
.section.bg-gray      { background: var(--gray-100); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 100px;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 0.875rem 2rem;
  font-size: 1rem;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,168,37,0.35); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 0.875rem 2rem;
  font-size: 1rem;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.125rem; }
.btn-group { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(245,168,37,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 26px; height: 26px; color: var(--gold-dark); }
.card h3 { margin-bottom: 0.625rem; }
.card p  { font-size: 0.9375rem; }

/* ── STEP CARDS ── */
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(245,168,37,0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-title { margin-bottom: 0.5rem; }

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--navy);
  padding: 3.5rem 2rem;
}
.stat-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.9375rem; color: var(--gray-400); }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
}
.badge-gold { background: rgba(245,168,37,0.15); color: var(--gold-dark); border: 1px solid rgba(245,168,37,0.3); }
.badge-green { background: var(--green-light); color: #15803D; border: 1px solid #BBF7D0; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.badge-gold .badge-dot { background: var(--gold); }
.badge-green .badge-dot { background: var(--green); }

/* ── TESTIMONIAL ── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-stars { color: var(--gold); font-size: 1.125rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { font-size: 1rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9375rem; color: var(--navy); }
.author-meta { font-size: 0.8125rem; color: var(--gray-400); }

/* ── FAQ ACCORDION ── */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
  transition: background 0.15s ease;
}
.faq-question:hover { background: var(--gray-100); }
.faq-question.open  { background: var(--navy); color: var(--white); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(245,168,37,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--gold-dark);
}
.faq-question.open .faq-icon { background: rgba(245,168,37,0.25); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.75;
  border-top: 1px solid var(--gray-200);
}
.faq-answer.open { display: block; }

/* ── HERO SECTION ── */
.hero {
  background: var(--navy);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,168,37,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-badge { margin-bottom: 1.5rem; }

/* ── GRID LAYOUTS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: center; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: center; }

/* ── PROCESS STEPS ── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.process-step-num {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.process-step-content h3 { margin-bottom: 0.625rem; }
.process-step-content p  { font-size: 1rem; }

/* ── PRICING ── */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.2s ease;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,168,37,0.12);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
}
.pricing-label.featured { color: var(--gold-dark); }
.pricing-name { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.pricing-price {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.pricing-price sup { font-size: 1.5rem; vertical-align: super; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray-400); }
.pricing-desc { font-size: 0.9375rem; color: var(--gray-500); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-500);
}
.pricing-features .check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-divider { height: 1px; background: var(--gray-200); }
.pricing-card .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--navy-mid);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--navy-mid);
  margin-bottom: 2rem;
}
.footer-brand .brand-tagline {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8125rem;
  color: var(--gray-500);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a { font-size: 0.8125rem; color: var(--gray-500); }
.footer-legal a:hover { color: var(--white); }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,168,37,0.12);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ── ICON FEATURE ROW ── */
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.feature-row:last-child { border-bottom: none; }
.feature-row-icon {
  width: 44px; height: 44px;
  background: rgba(245,168,37,0.1);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-row-icon svg { width: 22px; height: 22px; color: var(--gold-dark); }
.feature-row-title { font-weight: 600; font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.feature-row-desc  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
}
.cta-block h2 { color: var(--white); margin-bottom: 1rem; }
.cta-block p  { color: var(--gray-400); margin-bottom: 2rem; }
.cta-block .btn-group { justify-content: center; }

/* ── CALLOUT BOX ── */
.callout {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}
.callout.gold-border { border: 2px solid var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-strip .section-inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta    { display: none; }
  .nav-hamburger { display: flex; }
  .section  { padding: 3.5rem 1.25rem; }
  .hero     { padding: 4rem 1.25rem 3rem; }
  .grid-3, .grid-2, .grid-4, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .stat-strip .section-inner { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-step { grid-template-columns: 1fr; }
  .cta-block { padding: 2.5rem 1.5rem; }
  .cta-block .btn-group { flex-direction: column; align-items: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
}
@media (max-width: 480px) {
  .stat-strip .section-inner { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.875rem; }
  .btn-group { flex-direction: column; }
}
