/* Accessibility: honor users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════
   DEBT RESOLUTIONS FIRM — v3 Clean
═══════════════════════════════════════ */

:root {
  --green:        #1a5c38;
  --green-mid:    #2d8a5e;
  --green-bright: #3dba80;
  --gold:         #c9a84c;
  --gold-light:   #e0c878;
  --bg:           #07100a;
  --bg2:          #0c1a0e;
  --card:         #1a2e1d;
  --card2:        #223826;
  --border:       rgba(61,186,128,0.22);
  --border-hover: rgba(61,186,128,0.5);
  --text:         #edf5ee;
  --muted:        #94b89c;
  --radius:       16px;
  --radius-sm:    10px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── UTILS ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }

.gradient-text {
  background: linear-gradient(130deg, var(--green-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,92,56,0.18); border: 1px solid var(--border);
  color: var(--green-bright); padding: 5px 14px;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 18px;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; margin-bottom: 14px; letter-spacing: -0.02em;
}
.section-header p { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 50px; cursor: pointer;
  font-family: inherit; font-weight: 600; text-decoration: none;
  transition: all 0.22s ease; white-space: nowrap; letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  color: #fff; box-shadow: 0 4px 18px rgba(26,92,56,0.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(45,138,94,0.45); filter: brightness(1.1); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-outline:hover { border-color: var(--green-mid); color: var(--green-bright); background: rgba(45,138,94,0.08); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--muted); font-size: 0.85rem; padding: 8px 4px; }
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 15px 30px; font-size: 0.975rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; margin-top: 10px; }

/* scroll fade */
.fade-in { opacity: 1; transform: none; transition: opacity 0.65s ease, transform 0.65s ease; }
.js-enabled .fade-in:not(.visible) { opacity: 0; transform: translateY(24px); }
.js-enabled .fade-in.visible { opacity: 1; transform: none; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
#navbar.scrolled {
  background: rgba(7,16,10,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  max-width: 1180px; margin: 0 auto; padding: 16px 28px;
  gap: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; color: var(--text);
  font-weight: 700; font-size: 0.95rem; margin-right: auto;
}
.logo-shield { font-size: 1.3rem; line-height: 1; }
.nav-links { display: flex; gap: 30px; margin: 0 32px; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  color: var(--green-bright); text-decoration: none;
  font-weight: 600; font-size: 0.875rem;
}
.nav-phone:hover { color: var(--gold); }
.hamburger {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.4rem; cursor: pointer; padding: 4px;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 18px;
  padding: 18px 28px 24px;
  background: rgba(7,16,10,0.97);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 0 0 60px;
}
#particle-canvas { position: fixed; inset: 0; z-index: 0; opacity: 1; pointer-events: none; }
.hero-glow {
  position: absolute; width: 1200px; height: 1200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,92,56,0.16) 0%, transparent 65%);
  top: 50%; left: 30%; transform: translate(-50%,-50%);
  z-index: 0; pointer-events: none;
}
.hero-glow::after {
  content: ""; position: absolute; width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 65%);
  top: 40%; left: 130%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  max-width: 1180px; width: 100%; margin: 0 auto;
  padding: 140px 28px 80px;
}
.hero-content { text-align: left; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--muted); margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 8px rgba(61,186,128,0.7);
  flex-shrink: 0;
}
.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 22px; letter-spacing: -0.025em;
}
.hero-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 480px; margin-bottom: 34px; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-social-proof { display: flex; align-items: center; gap: 14px; }
.proof-avatars { display: flex; }
.proof-avatars img {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg); object-fit: cover;
  margin-left: -9px;
}
.proof-avatars img:first-child { margin-left: 0; }
.proof-text { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }
.proof-stars { color: var(--gold); font-size: 0.78rem; margin-bottom: 2px; }
.proof-text strong { color: var(--text); font-weight: 600; }

/* hero image */
.hero-image-col { position: relative; display: flex; justify-content: flex-end; }
.hero-img-wrap { position: relative; width: 100%; max-width: 460px; }
.hero-main-img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: 20px; display: block;
  box-shadow: 0 28px 70px rgba(0,0,0,0.65);
  border: 1px solid var(--border);
}
.hero-img-card {
  position: absolute;
  background: rgba(13,24,15,0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 11px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  min-width: 165px;
}
.card-top  { top: 28px; left: -28px; }
.card-bottom { bottom: 44px; right: -20px; }
.img-card-icon { font-size: 1.3rem; }
.img-card-title { font-size: 0.68rem; color: var(--muted); font-weight: 500; margin-bottom: 2px; }
.img-card-val { font-size: 0.9rem; font-weight: 700; color: var(--green-bright); }

/* ── STATS ── */
#stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center; padding: 32px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1;
  background: linear-gradient(130deg, var(--green-bright), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.stat-label { color: var(--muted); font-size: 0.85rem; font-weight: 500; }

/* ── SERVICES ── */
#services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 26px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.service-card.featured {
  border-color: rgba(45,138,94,0.4);
  background: linear-gradient(160deg, var(--card2) 0%, var(--card) 100%);
}
.service-card.featured:hover { box-shadow: 0 20px 50px rgba(26,92,56,0.25); }
.featured-tag {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a0f00; padding: 3px 11px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.service-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.service-card > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.65; }
.service-features {
  list-style: none; margin-bottom: 26px;
  display: flex; flex-direction: column; gap: 7px;
}
.service-features li {
  font-size: 0.875rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.service-features li::before {
  content: '✓'; color: var(--green-bright);
  font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}

/* ── CALCULATOR ── */
#calculator { background: var(--bg2); }
.calc-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.calc-left h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.calc-left > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 30px; line-height: 1.65; }
.calc-slider-wrap { margin-bottom: 24px; }
.calc-slider-wrap label { font-size: 0.85rem; color: var(--muted); display: block; margin-bottom: 8px; }
.slider-value { font-size: 2.2rem; font-weight: 900; color: var(--green-bright); margin-bottom: 14px; }
input[type="range"] {
  width: 100%; -webkit-appearance: none;
  height: 5px; background: var(--card2);
  border-radius: 3px; outline: none; cursor: pointer;
  border: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  box-shadow: 0 0 10px rgba(45,138,94,0.5); cursor: pointer;
}
.slider-labels {
  display: flex; justify-content: space-between;
  margin-top: 7px; font-size: 0.75rem; color: var(--muted);
}
.calc-result {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px 22px; margin-bottom: 14px;
}
.calc-result-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.875rem;
}
.calc-result-row:last-child { border: none; padding-bottom: 0; }
.calc-result-row span:first-child { color: var(--muted); }
.calc-val-neutral { font-weight: 600; color: var(--text); }
.calc-val-green   { font-weight: 700; color: var(--green-bright); }
.calc-val-gold    { font-weight: 800; color: var(--gold); font-size: 1.05rem; }
.highlight-row    { background: rgba(201,168,76,0.06); border-radius: 8px; padding: 10px 8px !important; margin: 4px -8px 0 !important; border: none !important; }
.calc-disclaimer  { font-size: 0.72rem; color: var(--muted); margin-bottom: 22px; }

/* donut chart */
.calc-visual { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.calc-donut-wrap { position: relative; width: 200px; height: 200px; }
.calc-donut { width: 100%; height: 100%; }
.donut-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.donut-pct   { font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.donut-label { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.calc-legend { display: flex; gap: 22px; }
.legend-item { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--muted); }
.legend-dot  { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.legend-dot.green { background: var(--green); }
.legend-dot.gold  { background: var(--gold); }

/* ── HOW IT WORKS ── */
#how-it-works { background: var(--bg); }
.steps-grid {
  display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start; gap: 0;
}
.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 22px; text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.step-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.step-connector {
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 50px;
}
.step-connector::after {
  content: ''; display: block;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  border-radius: 2px;
}
.step-number {
  font-size: 0.68rem; font-weight: 800; color: var(--green-bright);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px;
}
.step-icon { font-size: 1.9rem; margin-bottom: 12px; display: block; }
.step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-card p  { font-size: 0.825rem; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--bg2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.3);
}
.testimonial-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.avatar-photo {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--border); flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.testimonial-role { font-size: 0.76rem; color: var(--muted); margin-top: 1px; }
.verified-badge {
  margin-left: auto; background: rgba(45,138,94,0.12);
  color: var(--green-bright); padding: 3px 10px;
  border-radius: 50px; font-size: 0.68rem; font-weight: 600;
  border: 1px solid var(--border); white-space: nowrap; flex-shrink: 0;
}
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 10px; }
.testimonial-card > p {
  color: var(--muted); font-size: 0.875rem; line-height: 1.7;
  font-style: italic; margin-bottom: 16px;
}
.savings-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: #fff; padding: 4px 13px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
}

/* ── COMPARISON ── */
#comparison { background: var(--bg); }
.comparison-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.comparison-table th {
  padding: 18px 20px; text-align: center;
  background: var(--card2); color: var(--muted);
  font-weight: 600; font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}
.comparison-table th:first-child { text-align: left; }
.comparison-table td {
  padding: 14px 20px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--muted);
}
.comparison-table td:first-child { text-align: left; color: var(--text); font-size: 0.85rem; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.col-recommended {
  background: rgba(26,92,56,0.07);
  border-left: 2px solid rgba(45,138,94,0.4);
  border-right: 2px solid rgba(45,138,94,0.4);
}
.comparison-table thead .col-recommended {
  border-top: 2px solid rgba(45,138,94,0.4);
  color: var(--green-bright) !important;
}
.comparison-table tbody tr:last-child .col-recommended {
  border-bottom: 2px solid rgba(45,138,94,0.4) !important;
}
.check   { color: var(--green-bright); font-weight: 600; }
.cross   { color: #e05555; }
.neutral { color: var(--muted); }

/* ── CONSULTATION FORM ── */
#consultation { background: var(--bg2); }
.form-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.form-left h2  { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800; margin-bottom: 14px; }
.form-left > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; line-height: 1.65; }
.form-benefits {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px;
}
.form-benefits li {
  font-size: 0.875rem; color: var(--muted);
  display: flex; align-items: center; gap: 9px;
}
.form-benefits li::before { content: '✓'; color: var(--green-bright); font-weight: 700; flex-shrink: 0; }
.form-contact p { color: var(--muted); font-size: 0.82rem; margin-bottom: 7px; }
.phone-link { color: var(--green-bright); font-size: 1.1rem; font-weight: 700; text-decoration: none; }
.phone-link:hover { color: var(--gold); }

/* form card */
.multistep-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px;
}
.progress-bar { height: 3px; background: var(--card2); border-radius: 2px; margin-bottom: 8px; overflow: hidden; }
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  border-radius: 2px; transition: width 0.4s ease;
}
.step-indicator { font-size: 0.75rem; color: var(--muted); margin-bottom: 24px; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.debt-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 8px; }
.debt-type {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 11px 13px;
  cursor: pointer; font-size: 0.84rem; color: var(--text);
  display: flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.debt-type:hover { border-color: var(--green-mid); background: rgba(45,138,94,0.08); }
.debt-type input { accent-color: var(--green-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0; }
.form-input {
  width: 100%; background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 13px 15px;
  color: var(--text); font-family: inherit; font-size: 0.875rem;
  outline: none; transition: border-color 0.2s;
  display: block; margin-bottom: 12px;
}
.form-input:focus { border-color: var(--green-mid); }
.form-input::placeholder { color: var(--muted); }
.service-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.service-check {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 13px 15px;
  cursor: pointer; font-size: 0.875rem; color: var(--text);
  display: flex; align-items: center; gap: 9px;
  transition: border-color 0.2s, background 0.2s;
}
.service-check:hover { border-color: var(--green-mid); background: rgba(45,138,94,0.07); }
.service-check input { accent-color: var(--green-mid); }
.form-privacy { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 12px; }
.success-icon { font-size: 2.8rem; text-align: center; margin-bottom: 14px; }
#step-success { text-align: center; padding: 16px 0; }
#step-success h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text); }
#step-success p { color: var(--muted); font-size: 0.9rem; margin-bottom: 7px; }
#step-success a { color: var(--green-bright); font-weight: 600; text-decoration: none; }

/* ── FAQ ── */
#faq { background: var(--bg); }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  padding: 18px 22px; text-align: left; font-family: inherit;
  font-size: 0.925rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.025); }
.faq-q span { color: var(--green-bright); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s; font-weight: 400; }
.faq-q.open span { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; color: var(--muted); font-size: 0.875rem; line-height: 1.75; }
.faq-a.open { display: block; }

/* ── FOOTER ── */
#footer {
  background: #050e07;
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 44px;
}
.footer-brand p { color: var(--muted); font-size: 0.85rem; margin: 12px 0 16px; line-height: 1.7; }
.footer-phone { color: var(--green-bright); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.footer-phone:hover { color: var(--gold); }
.footer-links h4 {
  color: var(--text); font-size: 0.78rem; font-weight: 700;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.07em;
}
.footer-links a {
  display: block; color: var(--muted); text-decoration: none;
  font-size: 0.84rem; margin-bottom: 9px; transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-bright); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px; text-align: center;
}
.disclaimer {
  color: var(--muted); font-size: 0.7rem; line-height: 1.75;
  max-width: 820px; margin: 0 auto 10px;
}
.footer-bottom p:last-child { color: var(--muted); font-size: 0.78rem; }

/* ── FLOATING ACTION BUTTONS ── */
.fab-container {
  position: fixed; bottom: 28px; right: 28px; z-index: 1100;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none; color: #fff;
}
.fab:hover { transform: scale(1.1); }
.fab svg { width: 20px; height: 20px; }
.fab-call {
  background: linear-gradient(135deg, #1c7a40, var(--green-mid));
  animation: pulse-ring 2.8s infinite;
}
.fab-chat { background: linear-gradient(135deg, var(--green), var(--green-mid)); }
.fab-dot {
  position: absolute; top: 3px; right: 3px;
  width: 11px; height: 11px; border-radius: 50%;
  background: #40dd78; border: 2px solid var(--bg);
  animation: dot-pulse 2.2s infinite;
}
.fab-tooltip {
  position: absolute; right: 66px;
  background: rgba(7,16,10,0.96); color: var(--text);
  padding: 6px 12px; border-radius: 8px; font-size: 0.76rem;
  font-weight: 600; white-space: nowrap; pointer-events: none;
  border: 1px solid var(--border);
  opacity: 0; transform: translateX(4px);
  transition: opacity 0.18s, transform 0.18s;
}
.fab:hover .fab-tooltip { opacity: 1; transform: translateX(0); }

@keyframes pulse-ring {
  0%,100% { box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 0 rgba(45,138,94,0.45); }
  50%      { box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 9px rgba(45,138,94,0); }
}
@keyframes dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.65; transform: scale(1.25); }
}

/* ── CHAT WIDGET ── */
.chat-widget {
  position: fixed; bottom: 98px; right: 28px; z-index: 1099;
  width: 330px; background: var(--card);
  border: 1px solid var(--border); border-radius: 18px;
  box-shadow: 0 18px 52px rgba(0,0,0,0.55);
  display: flex; flex-direction: column; overflow: hidden;
  transform: scale(0.9) translateY(14px); opacity: 0; pointer-events: none;
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), opacity 0.22s ease;
  transform-origin: bottom right;
}
.chat-widget.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-header {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
}
.chat-header-left { display: flex; align-items: center; gap: 11px; }
.chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.chat-name { font-weight: 700; font-size: 0.9rem; color: #fff; }
.chat-status { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; color: rgba(255,255,255,0.78); }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #40dd78; flex-shrink: 0; }
.chat-close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 0.95rem; cursor: pointer; padding: 4px; line-height: 1; }
.chat-close:hover { color: #fff; }
.chat-body {
  padding: 16px; display: flex; flex-direction: column;
  gap: 10px; max-height: 260px; overflow-y: auto;
}
.chat-bubble {
  padding: 11px 13px; border-radius: 13px;
  font-size: 0.85rem; line-height: 1.55; max-width: 88%;
}
.chat-bubble.agent {
  background: var(--card2); border: 1px solid var(--border);
  border-bottom-left-radius: 4px; align-self: flex-start;
  color: var(--text);
  opacity: 0; animation: bubble-in 0.38s ease forwards;
}
.chat-bubble.user {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: #fff; border-bottom-right-radius: 4px; align-self: flex-end;
}
.chat-bubble.delay-1 { animation-delay: 0.55s; }
@keyframes bubble-in { from { opacity:0; transform:translateY(7px); } to { opacity:1; transform:none; } }
.chat-options { display: flex; flex-direction: column; gap: 6px; margin-top: 2px; }
.chat-opt {
  background: transparent; border: 1px solid var(--border);
  color: var(--green-bright); padding: 8px 12px; border-radius: 9px;
  font-size: 0.78rem; font-family: inherit; cursor: pointer; text-align: left;
  transition: all 0.18s;
}
.chat-opt:hover { background: rgba(45,138,94,0.1); border-color: var(--green-mid); }
.chat-footer {
  padding: 11px 13px; border-top: 1px solid var(--border);
  display: flex; gap: 8px; align-items: center;
}
.chat-input {
  flex: 1; background: var(--card2); border: 1px solid var(--border);
  border-radius: 9px; padding: 10px 13px; color: var(--text);
  font-family: inherit; font-size: 0.85rem; outline: none;
  transition: border-color 0.2s;
}
.chat-input::placeholder { color: var(--muted); }
.chat-input:focus { border-color: var(--green-mid); }
.chat-send {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border: none; color: #fff; width: 36px; height: 36px;
  border-radius: 9px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: filter 0.2s;
}
.chat-send:hover { filter: brightness(1.15); }

/* ── MOBILE STICKY BAR ── */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 10px 14px; gap: 10px;
}
.mobile-cta-btn {
  flex: 1; text-align: center; padding: 13px;
  border-radius: var(--radius-sm); font-weight: 700;
  font-size: 0.875rem; text-decoration: none; transition: all 0.2s;
}
.mobile-cta-btn.call   { background: var(--card2); color: var(--text); border: 1px solid var(--border); }
.mobile-cta-btn.consult { background: linear-gradient(135deg, var(--green), var(--green-mid)); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .step-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: block; }
  .hero-layout { grid-template-columns: 1fr; padding: 120px 22px 60px; }
  .hero-image-col { display: none; }
  .hero-content { text-align: center; }
  .hero-eyebrow, .hero-ctas, .hero-social-proof { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .calc-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .calc-right { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  body { padding-bottom: 66px; }
  .mobile-cta-bar { display: flex; }
  .fab-container { bottom: 76px; }
  .chat-widget { right: 12px; width: calc(100vw - 24px); bottom: 134px; }
}


/* === UI POLISH v2 === */
.hero-trust-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(26,92,56,0.12); border: 1px solid rgba(80,200,140,0.22);
  font-size: 0.78rem; color: var(--muted); font-weight: 500;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.trust-item:hover {
  transform: translateY(-2px);
  background: rgba(26,92,56,0.22);
  border-color: rgba(80,200,140,0.45);
  color: var(--text);
}
.trust-icon {
  color: var(--green-bright); font-size: 0.85rem;
  filter: drop-shadow(0 0 4px rgba(80,200,140,0.5));
}

/* Hero image: floating pulse + sharper glow ring */
.hero-img-wrap {
  animation: heroFloat 9s ease-in-out infinite;
  position: relative;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.hero-img-wrap::before {
  content: ""; position: absolute; inset: -30px;
  background: radial-gradient(circle at 50% 50%, rgba(80,200,140,0.18) 0%, transparent 60%);
  z-index: -1; pointer-events: none;
  animation: heroGlowPulse 4s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero-main-img {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(80,200,140,0.15);
}

/* Floating badge cards: glass-morphism upgrade */
.hero-img-card {
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(13,24,15,0.72) !important;
  border: 1px solid rgba(80,200,140,0.25) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Eyebrow dot: soft pulse */
.eyebrow-dot {
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(61,186,128,0.7); }
  50% { box-shadow: 0 0 16px rgba(61,186,128,1), 0 0 24px rgba(61,186,128,0.4); }
}

/* Hero headline: upgrade the gradient shine */
.gradient-text {
  /* shimmer removed — less AI-ish */
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* CTA button polish: subtle inner highlight */
.btn-primary {
  box-shadow: 0 8px 24px rgba(26,92,56,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::after { left: 100%; }

/* Section headings: subtle underline accent */
section h2 {
  position: relative;
}

/* Scroll smoothness */
html { scroll-behavior: smooth; }

@media (max-width: 768px) {
  .hero-trust-bar { justify-content: center; }
  .trust-item { font-size: 0.72rem; padding: 6px 10px; }
}


/* === HUMANIZE v1 === */
.hero-quote {
  display: flex; gap: 14px; align-items: flex-start;
  margin-top: 6px; padding: 16px 18px;
  background: rgba(13,24,15,0.55);
  border-left: 3px solid var(--green-bright);
  border-radius: 4px 10px 10px 4px;
  max-width: 480px;
}
.hero-quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(80,200,140,0.3);
}
.hero-quote-body p {
  font-size: 0.92rem; color: var(--text); line-height: 1.5;
  margin: 0 0 6px 0; font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
}
.hero-quote-name {
  font-size: 0.76rem; color: var(--muted); font-weight: 500;
  letter-spacing: 0.01em;
}

/* de-genericized trust items: text-only, looser */
.hero-trust-bar {
  gap: 6px 18px !important;
  border-top: 1px dashed rgba(255,255,255,0.08) !important;
}
.trust-item {
  background: transparent !important;
  border: none !important;
  padding: 4px 0 !important;
  color: var(--muted) !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: "·"; position: absolute; right: -13px; top: 4px; color: rgba(255,255,255,0.2);
}
.trust-item:hover {
  background: transparent !important;
  border-color: transparent !important;
  color: var(--text) !important;
  transform: none !important;
}

/* founder signoff */
.hero-signoff {
  margin-top: 14px;
  font-family: 'Brush Script MT', 'Snell Roundhand', cursive;
  font-size: 1rem; color: rgba(200,220,205,0.7);
  font-style: italic; letter-spacing: 0.01em;
}

/* Hero card redesign: less "data UI", more human tag */
.hero-img-card {
  padding: 12px 16px !important;
  min-width: auto !important;
}
.img-card-name {
  font-size: 0.82rem; color: var(--text); font-weight: 600;
  margin-bottom: 3px;
}
.img-card-detail {
  font-size: 0.74rem; color: var(--muted); line-height: 1.35;
}
/* slight imperfect rotation for that human-hand feel */
.hero-img-card.card-top { transform: rotate(-1.5deg); }
.hero-img-card.card-bottom { transform: rotate(1deg); }
.hero-img-card.card-top:hover { transform: rotate(0) translateY(-2px); transition: transform 0.3s; }
.hero-img-card.card-bottom:hover { transform: rotate(0) translateY(-2px); transition: transform 0.3s; }
