/* ═══════════════════════════════════════════════════════
   Benequity Partners — Global Styles
   Colors: Gold #CC9A4C  |  Navy #162F6E
   Fonts: Playfair Display (headings) + Inter (body)
   ═══════════════════════════════════════════════════════ */

:root {
  --gold: #CC9A4C;
  --gold-light: #E6C88A;
  --gold-dark: #A67B3D;
  --navy: #162F6E;
  --navy-deep: #0E1F4A;
  --navy-light: #2A4A8F;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --warm-gray: #F5F0EB;
  --text-dark: #1A1A2E;
  --text-body: #3D3D50;
  --text-light: #6B6B80;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }
a { transition: color 0.2s, background 0.2s; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(22,47,110,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--navy);
}
.nav-logo-mark {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700; font-size: 18px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 18px;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex; gap: 28px; align-items: center;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: none; cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(204,154,76,0.3);
}

.btn-primary-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: none; cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.2s;
}
.btn-primary-navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(22,47,110,0.2);
}

.btn-secondary {
  display: inline-block;
  color: rgba(255,255,255,0.9);
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.btn-outline {
  display: inline-block;
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--navy);
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── SECTION COMMON ── */
section {
  padding: 96px 48px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
}

/* ── SUNRISE ACCENT LINE ── */
.sunrise-line {
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--gold-light), var(--gold), var(--navy));
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off-white);
  padding: 40px 48px;
  border-bottom: 1px solid rgba(22,47,110,0.06);
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-light);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.3px;
}
.trust-icon {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ── CTA SECTION (navy bg) ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 100%;
  background: radial-gradient(ellipse, rgba(204,154,76,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .section-inner { position: relative; z-index: 2; }
.cta-section .section-title {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 16px;
}
.cta-section .section-subtitle {
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 40px;
}
.cta-details {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.cta-detail {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.cta-detail span { font-size: 18px; }

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: 56px 48px 32px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.8;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col h4 {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  line-height: 1.7;
}
.footer-col a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-divider {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
}
.footer-disclaimer p + p { margin-top: 12px; }
.footer-copyright {
  margin-top: 16px;
  color: rgba(255,255,255,0.2);
}
.footer-copyright a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}

/* ── PAGE HEADER (for inner pages) ── */
.page-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 140px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(204,154,76,0.15) 0%, transparent 100%);
  pointer-events: none;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  position: relative; z-index: 2;
  margin-bottom: 16px;
}
.page-header h1 span { color: var(--gold-light); }
.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  position: relative; z-index: 2;
  line-height: 1.6;
}

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(22,47,110,0.06);
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(22,47,110,0.08);
  border-color: var(--gold);
}
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}
.card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── CONTENT SECTION (two-col) ── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.content-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
}
.content-body p + p { margin-top: 20px; }
.content-body ul {
  margin-top: 16px;
  padding-left: 24px;
}
.content-body li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ── BLOCKQUOTE ── */
blockquote.styled-quote {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  padding-left: 32px;
  border-left: 3px solid var(--gold);
}
blockquote.styled-quote cite {
  display: block;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
  font-weight: 500;
}

/* ── CONTACT FORM ── */
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(22,47,110,0.15);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 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(204,154,76,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(22,47,110,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  section { padding: 64px 20px; }
  .section-title { font-size: 32px; }

  .page-header { padding: 120px 20px 60px; }
  .page-header h1 { font-size: 36px; }

  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .trust-bar { padding: 32px 20px; }
  .trust-bar-inner { gap: 24px; justify-content: flex-start; }

  .cta-details { flex-direction: column; gap: 16px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 20px 24px; }
}

@media (max-width: 480px) {
  .page-header h1 { font-size: 28px; }
  .section-title { font-size: 26px; }
  blockquote.styled-quote { font-size: 20px; padding-left: 20px; }
  .btn-primary, .btn-primary-navy { padding: 14px 28px; font-size: 15px; }
}
