/* === WealthPLAN PC — Global Styles === */

:root {
  /* Brand palette — matched from logo */
  --navy: #2b3a4e;
  --navy-deep: #1e2d3e;
  --navy-light: #3d5068;
  --gold: #b5975a;
  --gold-light: #cdb47e;
  --gold-pale: #f4efe5;
  --warm-white: #faf9f7;
  --surface: #ffffff;
  --text: #1c1917;
  --text-muted: #6b6560;
  --border: #e8e5e1;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-w: 1120px;
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== NAVIGATION ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.nav-logo .plan { color: var(--navy); font-weight: 800; }
.nav-logo .pc { font-size: 1em; color: var(--navy); font-weight: 700; margin-left: 1px; }

.nav-links { display: flex; gap: 36px; list-style: none; }

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--navy); }

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 1px;
}

/* ===== HERO ===== */
.hero {
  padding: 96px 0 72px;
}

.hero-content {
  max-width: 640px;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--navy-deep);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}

.hero-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 36px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(43,58,78,0.18);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-outline:hover { border-color: var(--navy); }

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(181,151,90,0.22);
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--surface); }

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 520px;
}

.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy-deep);
}

.card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== TWO-COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin-bottom: 16px;
}

.two-col-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

/* ===== VALUES / FEATURES LIST ===== */
.values-list { list-style: none; display: grid; gap: 14px; }

.values-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.values-list .icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 3px;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
  padding: 48px 0;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.92rem;
  background: var(--surface);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,151,90,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; color: var(--navy-deep); }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-detail .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-detail strong { display: block; font-size: 0.875rem; margin-bottom: 2px; color: var(--navy-deep); }
.contact-detail span { color: var(--text-muted); font-size: 0.875rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy-deep);
  color: #fff;
  text-align: center;
  padding: 56px 24px;
  border-radius: var(--radius);
}

.cta-banner h2 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-banner p {
  opacity: 0.75;
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

.cta-banner .btn-gold { color: var(--navy-deep); }
.cta-banner .btn-gold:hover { color: var(--navy-deep); }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 44px 0 28px;
  background: var(--surface);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-brand .nav-logo { font-size: 1.1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.825rem; margin-top: 8px; max-width: 260px; line-height: 1.6; }

.footer-links h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--navy); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== PAGE HEADERS ===== */
.page-header {
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
}

.page-header-center { text-align: center; }
.page-header-center p { margin: 0 auto; }

/* ===== STEP INDICATORS ===== */
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 20px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .nav-links.open { display: flex; }

  .two-col,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .hero { padding: 56px 0 44px; }
  .section { padding: 56px 0; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
