/* ===== FORTE FINANCIAL GROUP — MAIN STYLESHEET ===== */

:root {
  --primary:       #677353;
  --primary-dark:  #4a5240;
  --primary-light: #8a9d75;
  --accent:        #c8a96e;
  --accent-dark:   #a8893e;
  --bg:            #f7f5f0;
  --bg-alt:        #eeeae3;
  --bg-dark:       #1e2118;
  --text:          #2c2c2c;
  --text-light:    #666666;
  --white:         #ffffff;
  --border:        #dedad3;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow:        0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.13);
  --radius:        8px;
  --radius-lg:     16px;
  --transition:    0.25s ease;
  --container:     1160px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text); }

.sans {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}
.section-sm { padding: 56px 0; }
.section-lg { padding: 112px 0; }

.section-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(103,115,83,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(103,115,83,0.45);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 2px 12px rgba(200,169,110,0.35);
}
.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 20px rgba(200,169,110,0.45);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}
.logo-sub {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}
.nav-links a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { background: var(--bg); color: var(--primary); }
.nav-links a.active { color: var(--primary); font-weight: 600; }
.btn-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  margin-left: 8px;
}
.btn-nav:hover { background: var(--primary-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #7d8f69 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 96px 0 104px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,169,110,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.5) 40px,
    rgba(255,255,255,0.5) 41px
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.2);
  border: 1px solid rgba(200,169,110,0.4);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 580px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  margin-top: 56px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
}
.trust-icon {
  width: 28px;
  height: 28px;
  background: rgba(200,169,110,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,169,110,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  max-width: 600px;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* ===== PRICING TIERS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(103,115,83,0.08), var(--shadow);
}
.pricing-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  border-bottom: none;
}
.pricing-card.featured .pricing-header h3,
.pricing-card.featured .pricing-header p { color: var(--white); }
.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.pricing-header h3 { margin-bottom: 8px; }
.pricing-header p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}
.pricing-card.featured .pricing-header p { color: rgba(255,255,255,0.75); }
.pricing-price {
  margin-top: 20px;
}
.price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}
.pricing-card.featured .price-amount { color: var(--white); }
.price-period {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}
.pricing-card.featured .price-period { color: rgba(255,255,255,0.65); }
.pricing-body {
  padding: 28px 32px 32px;
}
.pricing-features {
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--bg-alt);
}
.pricing-features li:last-child { border-bottom: none; }
.check {
  color: var(--primary);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
  font-weight: 700;
}

/* ===== STAT BAR ===== */
.stat-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 56px 0;
  color: var(--white);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}

/* ===== WHY FFG ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.why-item {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
}
.why-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--border);
  font-family: 'Georgia', serif;
  margin-bottom: 12px;
  line-height: 1;
}
.why-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-item p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== TWO-COL SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-content h2 { margin-bottom: 16px; }
.split-content p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}
.split-visual {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(200,169,110,0.15) 0%, transparent 60%);
}

/* ===== FEATURE LIST ===== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
}
.feature-list .check {
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(103,115,83,0.07) 0%, rgba(103,115,83,0.04) 100%);
  border: 1px solid rgba(103,115,83,0.2);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
}
.highlight-box h4 {
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 1rem;
}
.highlight-box p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,169,110,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-content { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PROCESS STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: steps;
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 18px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== CONTENT PROSE ===== */
.prose h2 { margin: 40px 0 14px; }
.prose h3 { margin: 32px 0 12px; font-size: 1.3rem; }
.prose p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.75;
}
.prose ul, .prose ol {
  margin: 16px 0 20px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}
.prose li {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 0.98rem;
  line-height: 1.65;
}
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }

/* ===== ABOUT ===== */
.about-profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}
.profile-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  overflow: hidden;
}
.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.profile-info {
  padding: 28px;
}
.profile-info h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.profile-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}
.profile-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(103,115,83,0.12);
}
textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-submit { width: 100%; justify-content: center; }
.form-note {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}
.contact-info-panel h3 { margin-bottom: 20px; font-size: 1.3rem; }
.contact-detail-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(103,115,83,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 3px;
}
.contact-detail-value {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.map-placeholder {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  gap: 8px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.show { display: block; }

/* ===== ACCORDION (FAQ) ===== */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--bg); }
.accordion-trigger.open { color: var(--primary); background: var(--bg); }
.accordion-icon {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion-trigger.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 0 24px 20px;
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.accordion-body.open { display: block; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.45); }
.footer-tagline {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  line-height: 1.65;
}
.footer-col h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal a { color: rgba(255,255,255,0.45); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.bg-alt { background: var(--bg-alt); }
.bg-white { background: var(--white); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ===== NOTICE BANNER ===== */
.notice {
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}
.notice strong { color: var(--accent-dark); }

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* ===== PHOTO HERO — shared base ===== */
.hero-photo {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--bg-dark);
  min-height: 500px;
}

/* Override the gradient overlay with a dark photo overlay */
.hero-photo::before {
  background: linear-gradient(
    160deg,
    rgba(20, 28, 15, 0.62) 0%,
    rgba(30, 42, 18, 0.48) 100%
  );
}

/* Remove the decorative radial pattern on photo heroes */
.hero-photo .hero-pattern { display: none; }

.page-hero-photo {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--bg-dark);
  min-height: 500px;
}

.page-hero-photo::before {
  background: linear-gradient(
    160deg,
    rgba(20, 28, 15, 0.62) 0%,
    rgba(30, 42, 18, 0.48) 100%
  );
}

/* Subtle text-shadow for legibility on all photo hero text */
.hero-photo,
.page-hero-photo {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.32);
}

/* ===== ARKANSAS BANNER ===== */
.arkansas-banner {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.arkansas-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 28, 15, 0.68) 0%,
    rgba(30, 42, 18, 0.55) 100%
  );
  pointer-events: none;
}

.arkansas-banner-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 720px;
}

.arkansas-quote {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  line-height: 1.65;
  color: var(--white);
  font-style: italic;
  margin: 0 0 24px;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}

.arkansas-cite {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  padding-left: 24px;
}

/* ===== BTN GROUP WRAP (stacks on mobile) ===== */
.btn-group-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-profile { grid-template-columns: 280px 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .about-profile { grid-template-columns: 1fr; }
  .profile-card { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-lg { padding: 72px 0; }
  .section-header { margin-bottom: 36px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow);
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; }
  .btn-nav { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }
  .nav { position: sticky; }

  .hero { padding: 64px 0 72px; }
  .hero-trust { gap: 20px; flex-wrap: wrap; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .page-hero { padding: 52px 0; }
  .page-hero h1 { margin-bottom: 12px; }

  h1 br { display: none; }

  .profile-img { max-height: 400px; }

  .hero-photo,
  .page-hero-photo,
  .arkansas-banner { background-attachment: scroll; }
  .hero-photo { min-height: 380px; }
  .page-hero-photo { min-height: 350px; }
  .arkansas-banner-content { padding: 56px 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }

  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 52px 0 60px; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .stat-number { font-size: 2.25rem; }
  .page-hero { padding: 44px 0; }
  .hero-badge { font-size: 0.72rem; }
}

@media (max-width: 520px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  .section { padding: 48px 0; }
  .section-sm { padding: 40px 0; }
  .section-lg { padding: 56px 0; }
  .section-header { margin-bottom: 28px; }

  .cta-band { padding: 56px 0; }
  .cta-band .btn-group { flex-direction: column; align-items: stretch; }
  .cta-band .btn-group .btn { width: 100%; justify-content: center; }

  .card { padding: 24px 20px; }
  .pricing-header { padding: 24px 20px 18px; }
  .pricing-body { padding: 20px 20px 24px; }
  .highlight-box { padding: 18px 20px; }
  .contact-form { padding: 28px 20px; }

  .btn-lg { padding: 16px 24px; font-size: 0.95rem; }

  .btn-group-wrap { flex-direction: column; align-items: stretch; }
  .btn-group-wrap .btn { width: 100%; justify-content: center; }

  .stat-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number { font-size: 2rem; }

  .why-grid { gap: 16px; }
  .services-grid { gap: 16px; }
  .pricing-grid { gap: 16px; }
  .steps { gap: 24px; }

  .step-num { width: 48px; height: 48px; font-size: 1.1rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 375px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.3rem; }
  .hero { padding: 44px 0 52px; }
  .hero-badge { padding: 5px 10px; font-size: 0.68rem; letter-spacing: 0.06em; }
  .logo-text { font-size: 0.95rem; }
  .section { padding: 36px 0; }
  .section-sm { padding: 32px 0; }
  .stat-number { font-size: 1.85rem; }
  .price-amount { font-size: 2rem; }
}
