/* ========================================
   MyBookkeepingServices — Global Styles
   ======================================== */

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

:root {
  --navy: #0a0a1a; --navy-mid: #111130; --navy-card: #15153a;
  --gold: #c9a84c; --gold-light: #dbbe64; --gold-pale: rgba(201,168,76,0.12);
  --white: #ffffff; --bg: #fafafa; --bg-alt: #f3f3f8;
  --text: #0f0f23; --text-secondary: #5a5a78; --text-muted: #8888a0;
  --border: #e5e5f0; --radius: 10px; --radius-lg: 16px; --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* TYPOGRAPHY */
h1 { line-height: 1.08; font-weight: 800; text-wrap: balance; font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: -0.03em; }
h2 { line-height: 1.12; font-weight: 800; text-wrap: balance; font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: -0.025em; }
h3 { font-size: 1.1rem; font-weight: 700; }
p { text-wrap: pretty; }
.text-gradient { background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gold { color: var(--gold); }

/* LAYOUT */
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--gold-pale); color: var(--gold); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; padding: 7px 16px; border-radius: 100px; margin-bottom: 18px; }
.section-tag-dark { background: rgba(201,168,76,0.15); }
.section-head { margin-bottom: 48px; max-width: 640px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .subtext { margin-top: 14px; color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; }

/* SECTIONS */
section { padding: 80px 0; }
.section-light { background: var(--bg-alt); }
.section-dark { background: var(--navy); color: var(--white); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; font-size: 0.9rem; font-weight: 700; font-family: inherit; border: none; border-radius: var(--radius); cursor: pointer; text-decoration: none; transition: all 0.22s ease; white-space: nowrap; min-height: 48px; letter-spacing: 0.01em; }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 0 20px rgba(201,168,76,0.2); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 0 28px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; min-height: 40px; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(10,10,26,0.96); backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%); border-bottom: 1px solid rgba(255,255,255,0.06); height: 64px; }
nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 1.15rem; font-weight: 800; color: var(--white); text-decoration: none; letter-spacing: -0.02em; flex-shrink: 0; }
.logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold); }
.nav-cta { height: 40px; padding: 0 20px; font-size: 0.82rem; border-radius: 8px; flex-shrink: 0; }

/* MOBILE NAV TOGGLE */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0; }
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--white); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 20px 22px; flex-direction: column; align-items: stretch; gap: 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 8px 0; }
  .nav-cta { width: 100%; text-align: center; justify-content: center; height: 44px; }
}

/* PAGE HEADER */
.page-header { background: var(--navy); color: var(--white); padding: 120px 0 64px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.page-header h1 { margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* REVEAL ANIMATION — disabled for now, content always visible */
.reveal { opacity: 1; transform: translateY(0); }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand .logo { margin-bottom: 12px; display: inline-flex; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.4); }
footer h4 { color: var(--white); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
footer a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; display: block; padding: 4px 0; transition: color 0.2s; }
footer a:hover { color: var(--gold); }
.footer-bottom { margin-top: 48px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* SERVICE DETAIL CARD */
.svc-detail { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; margin-bottom: 48px; }
@media (min-width: 720px) { .svc-detail { grid-template-columns: 320px 1fr; gap: 56px; } }
.svc-detail-card { background: var(--navy); border-radius: var(--radius-xl); padding: 32px; color: var(--white); position: sticky; top: 88px; }
.svc-detail-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.svc-detail-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; }
.svc-detail-card .svc-price { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.svc-detail-card .svc-price span { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.svc-detail-features { margin-top: 20px; list-style: none; padding: 0; }
.svc-detail-features li { padding: 8px 0; font-size: 0.9rem; color: rgba(255,255,255,0.65); display: flex; gap: 10px; align-items: start; }
.svc-detail-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.svc-detail-features li svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 720px) { .two-col { grid-template-columns: 340px 1fr; gap: 56px; } }
.body-lg { font-size: 1.05rem; line-height: 1.7; margin-bottom: 18px; color: var(--text); }

/* SVC GRID */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 900px; margin: 0 auto; }
@media (min-width: 540px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card { display: flex; gap: 18px; padding: 28px 24px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease; }
.svc-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,168,76,0.1); transform: translateY(-2px); }
.svc-icon { width: 48px; height: 48px; flex-shrink: 0; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.svc-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.svc-card h3 { margin-bottom: 8px; font-size: 1.02rem; }
.svc-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.svc-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 600; font-size: 0.85rem; text-decoration: none; margin-top: 8px; }
.svc-card-link:hover { text-decoration: underline; }

/* PROOF BAR */
.proof-bar { padding: 40px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.proof-label { text-align: center; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 24px; }
.proof-row { display: flex; flex-wrap: wrap; gap: 12px 20px; justify-content: center; align-items: center; }
.proof-cell { text-align: center; padding: 16px 24px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); min-width: 140px; }
.proof-cell strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.proof-cell span { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; display: block; }
.proof-divider { width: 1px; height: 44px; background: var(--border); }

/* PRICING */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 980px; margin: 0 auto 60px; overflow: visible; }
@media (min-width: 540px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }
.price-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid var(--border); position: relative; display: flex; flex-direction: column; min-width: 0; transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease; }
.price-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.pc-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--navy); color: var(--gold); font-size: 0.7rem; font-weight: 700; padding: 5px 16px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.pc-head { margin-bottom: 20px; }
.pc-name { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.pc-amount { font-size: 1.7rem; font-weight: 800; color: var(--navy); }
.pc-amount span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.pc-desc { font-size: 0.84rem; color: var(--text-secondary); margin-top: 4px; }
.pc-features { list-style: none; padding: 0; margin: 0 0 20px; }
.pc-features li { padding: 6px 0; font-size: 0.88rem; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.check-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.pc-note { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 24px; }

/* ADDONS */
.addons-box { max-width: 840px; margin: 48px auto 0; background: var(--white); border-radius: var(--radius-lg); padding: 26px 22px; border: 1px solid var(--border); }
.addons-title { font-size: 1.05rem; margin-bottom: 18px; }
.addons-note { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.addons-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 540px) { .addons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .addons-grid { grid-template-columns: repeat(3, 1fr); } }
.addon-item { display: flex; justify-content: space-between; align-items: center; padding: 13px 16px; background: var(--bg); border-radius: var(--radius); font-size: 0.88rem; }
.addon-item span { font-weight: 700; color: var(--navy); white-space: nowrap; margin-left: 12px; }

/* TESTIMONIALS */
.test-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 920px; margin: 0 auto; }
@media (min-width: 700px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }
.test-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid var(--border); }
.test-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
.test-text { font-size: 0.92rem; line-height: 1.65; color: var(--text-secondary); margin-bottom: 20px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.test-name { font-weight: 600; font-size: 0.88rem; }
.test-role { font-size: 0.78rem; color: var(--text-muted); }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-top: 2px solid var(--gold); border-bottom: 1px solid var(--border); border-left: 3px solid transparent; transition: border-color 0.22s; }
.faq-item.active { border-left-color: var(--gold); }
.faq-q { width: 100%; background: none; border: none; padding: 20px 52px 16px 16px; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: inherit; font-size: 16px; font-weight: 700; color: var(--navy); cursor: pointer; text-align: left; position: relative; }
.faq-q svg { width: 18px; height: 18px; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); transition: transform 0.22s ease; stroke: var(--text-muted); }
.faq-item.active .faq-q svg { transform: translateY(-50%) rotate(180deg); }
.faq-item.active .faq-q { color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding-left: 16px; }
.faq-item.active .faq-a { max-height: 600px; padding-bottom: 20px; }
.faq-a p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }

/* COMPARISON */
.comparison-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 800px; margin: 0 auto; }
@media (min-width: 600px) { .comparison-grid { grid-template-columns: 1fr 1fr; } }
.comparison-col { padding: 32px 28px; border-radius: var(--radius-lg); }
.comparison-col.before { background: var(--bg); border: 1px solid var(--border); }
.comparison-col.after { background: var(--navy); border: 1px solid rgba(201,168,76,0.2); }
.comparison-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; }
.before .comparison-label { color: var(--text-muted); }
.after .comparison-label { color: var(--gold); }
.comparison-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 0; margin: 0; }
.comparison-col li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; line-height: 1.55; }
.before li { color: var(--text-secondary); }
.after li { color: rgba(255,255,255,0.75); }
.comp-x { color: #d44; flex-shrink: 0; font-weight: 800; font-size: 1rem; }
.comp-check { color: var(--gold); flex-shrink: 0; font-weight: 800; }

/* CONFIDENCE */
.confidence-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 960px; margin: 0 auto; }
@media (min-width: 540px) { .confidence-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .confidence-grid { grid-template-columns: repeat(3, 1fr); } }
.conf-card { padding: 32px 26px 28px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease; }
.conf-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }
.conf-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.conf-icon svg { stroke: var(--gold); width: 24px; height: 24px; }
.conf-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.conf-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.65; }

/* WHY */
.why-row { display: flex; gap: 16px; padding: 26px 0; border-bottom: 1px solid var(--border); }
.why-row:last-child { border-bottom: none; }
.why-num { width: 28px; flex-shrink: 0; font-size: 0.85rem; font-weight: 800; color: var(--gold); margin-top: 2px; font-variant-numeric: tabular-nums; }
.why-row h3 { margin-bottom: 6px; font-size: 1.02rem; }
.why-row p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.65; }

/* TRADES */
.trades-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 720px; margin: 0 auto; }
@media (min-width: 520px) { .trades-grid { grid-template-columns: repeat(4, 1fr); } }
.trade-item { padding: 28px 16px; text-align: center; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: border-color 0.22s ease, transform 0.22s ease; }
.trade-item:hover { border-color: var(--gold); transform: translateY(-2px); }
.trade-icon { width: 48px; height: 48px; margin: 0 auto 14px; background: var(--navy); border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.trade-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.trade-item span { font-size: 0.88rem; font-weight: 500; }

/* STEPS */
.steps-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 720px) { .steps-row { grid-template-columns: repeat(3, 1fr); } }
.step-item { position: relative; padding: 36px 28px 28px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: border-color 0.22s ease, box-shadow 0.22s ease; }
.step-item:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,168,76,0.08); }
.step-badge { position: absolute; top: 24px; right: 24px; font-size: 0.75rem; font-weight: 800; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.step-icon-wrap { width: 56px; height: 56px; background: var(--navy); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.step-icon-wrap svg { width: 24px; height: 24px; stroke: var(--white); }
.step-item h3 { margin-bottom: 10px; }
.step-item p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.65; }

/* QUOTE FORM */
.form-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 720px) { .form-layout { grid-template-columns: 1fr 1fr; gap: 56px; } }
.form-subtext { color: rgba(255,255,255,0.55); font-size: 1rem; margin-top: 16px; line-height: 1.7; }
.form-trust { margin-top: 32px; }
.ft-item { display: flex; gap: 12px; align-items: start; padding: 10px 0; color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.ft-item svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.quote-form { background: var(--white); border-radius: var(--radius-xl); padding: 32px 28px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.92rem; font-family: inherit; color: var(--text); background: var(--bg); transition: border-color 0.2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; text-align: center; }
.form-note a { color: var(--text-secondary); }

/* BANNER CTA */
.banner-cta { background: var(--navy); color: var(--white); padding: 64px 0; text-align: center; }
.banner-cta h2 { margin-bottom: 16px; }
.banner-cta p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.banner-cta .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* CONTACT CARDS */
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 700px; margin: 0 auto 48px; align-items: stretch; }
@media (min-width: 540px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
.contact-card { display: flex; gap: 16px; padding: 24px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); text-decoration: none; color: var(--text); transition: border-color 0.2s, transform 0.2s; min-height: 120px; }
.contact-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.contact-card-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.contact-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.85rem; color: var(--text-secondary); }

/* HERO */
.hero-inner { max-width: 740px; position: relative; z-index: 2; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(120px); }
.hero-glow.top-right { top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,0.10), transparent 65%); }
.hero-glow.bottom-left { bottom: -300px; left: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(60,60,180,0.06), transparent 60%); }
.hero-badge-nav { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 7px 18px 7px 14px; font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.hero-text { font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,0.55); margin-top: 22px; max-width: 560px; line-height: 1.7; }
.hero-buttons { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { margin-top: 48px; display: flex; gap: 28px; flex-wrap: wrap; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.stat-num { font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.hero-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* CONFIDENCE HEAD */
.confidence-head { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; margin-bottom: 48px; }
.confidence-head .subtext { margin-top: 14px; color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; }

/* ============================================================
   FIXES — HERO PHONE, FAQ BORDER, FOOTER LOCATION
   ============================================================ */
.hero-phone { margin-top: 16px; font-size: 0.88rem; color: var(--gold); text-align: center; }
.hero-phone a { color: var(--gold); text-decoration: none; }
.hero-phone a:hover { text-decoration: underline; }

.footer-location { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-location svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.4); flex-shrink: 0; fill: none; }

/* ============================================================
   PREMIUM REDESIGN — Phase 1-8 CSS
   ============================================================ */

/* HERO ROW LAYOUT */
.hero-row { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .hero-row { grid-template-columns: 1.1fr 0.9fr; gap: 64px; } }
.hero-left { max-width: 640px; }
.hero-right { display: none; }
@media (min-width: 900px) { .hero-right { display: block; } }

/* DASHBOARD MOCKUP */
.dash-mockup { background: linear-gradient(145deg, #12123a, #0d0d2a); border: 1px solid rgba(201,168,76,0.18); border-radius: 16px; padding: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.dash-mockup-header { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.dash-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.dash-mockup-title { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-left: 6px; }
.dash-cards { display: flex; flex-direction: column; gap: 12px; }
.dash-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 16px 18px; opacity: 0; transform: translateY(12px); animation: dashFadeIn 0.6s ease-out forwards; }
.dash-card:nth-child(1) { animation-delay: 0.8s; }
.dash-card:nth-child(2) { animation-delay: 1.4s; }
.dash-card:nth-child(3) { animation-delay: 2.0s; }
@keyframes dashFadeIn { to { opacity: 1; transform: translateY(0); } }
.dash-card-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.dash-card-value { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.dash-status { color: var(--gold); font-weight: 500; font-size: 0.85rem; }
.dash-check { color: #4ade80; font-weight: 700; }
.dash-highlight { color: var(--gold); }

/* TICKER / TRUST STRIP */
.ticker-wrap { overflow: hidden; background: #0D1B2A; background-color: #0D1B2A !important; border-top: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 12px 0; margin: 0; position: relative; display: block; }
.ticker-wrap + section { padding-top: 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 35s linear infinite; will-change: transform; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span { font-size: 11px; font-weight: 600; color: #C9A84C; color: #C9A84C !important; text-transform: uppercase; letter-spacing: 2px; white-space: nowrap; padding: 0 3px; }
.ticker-sep { font-size: 10px; color: #C9A84C; color: #C9A84C !important; opacity: 0.4; padding: 0 6px; user-select: none; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* HERO TRUST LINE */
.hero-trust-line { margin-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.35); letter-spacing: 0.02em; }

/* STICKY MOBILE CTA */
.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--gold); }
@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; animation: stickySlideUp 0.5s ease-out 2s both; }
}
@keyframes stickySlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.btn-sticky { display: block; width: 100%; padding: 16px; text-align: center; color: var(--navy); font-weight: 800; font-size: 1rem; text-decoration: none; letter-spacing: 0.02em; }

/* TYPOGRAPHY UPGRADES */
h1 { font-size: clamp(2.2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); }
body { line-height: 1.8; }
p { font-size: 1.05rem; }

/* CARD UPGRADES */
.svc-card, .conf-card, .step-item, .price-card, .contact-card, .trade-item { box-shadow: 0 4px 24px rgba(0,0,0,0.15); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.svc-card:hover, .conf-card:hover, .step-item:hover, .price-card:hover, .contact-card:hover, .trade-item:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
.svc-card, .conf-card, .step-item, .contact-card { padding: 32px; }

/* SECTION SPACING */
section { padding: 100px 0; }
@media (max-width: 768px) { section { padding: 60px 0; } }

/* BUTTON UPGRADES */
.btn { min-height: 52px; font-size: 1.05rem; padding: 14px 32px; }
.btn-gold { box-shadow: 0 4px 16px rgba(201,168,76,0.25); }
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,168,76,0.45); }

/* BACKGROUND DEPTH */
.hero-section { position: relative; overflow: hidden; }
.hero-section::after { content: ''; position: absolute; top: -20%; left: -10%; width: 60%; height: 140%; background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%); pointer-events: none; z-index: 1; }
.section-dark { background: var(--navy); position: relative; }
.section-dark::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.015) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }

/* SUBPAGE SERVICES */
.svc-list-page > * { margin-bottom: 24px; }
.svc-intro { background: var(--bg-alt); padding: 32px; border-radius: var(--radius-lg); border-left: 4px solid var(--gold); margin-bottom: 40px; }
.svc-intro p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   PHASE 2 — HERO BACKGROUND PATTERN
   ============================================================ */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, transparent 48%, rgba(201,168,76,0.04) 49%, rgba(201,168,76,0.04) 51%, transparent 52%),
    linear-gradient(225deg, transparent 48%, rgba(201,168,76,0.04) 49%, rgba(201,168,76,0.04) 51%, transparent 52%);
  background-size: 120px 120px;
}

/* ============================================================
   PHASE 3 — TRUST BADGES
   ============================================================ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(201,168,76,0.85);
  background: rgba(201,168,76,0.06);
}
.trust-badge svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ============================================================
   PHASE 5 — TESTIMONIALS (EMPTY PLACEHOLDERS)
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  color: var(--white);
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-placeholder { font-size: 0.9rem; color: rgba(255,255,255,0.35); font-style: italic; }

/* ============================================================
   PHASE 6 — SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
}
html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ============================================================
   PHASE 8 — RELIABILITY SIGNALS
   ============================================================ */
.response-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--gold);
}
.response-banner svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }

.secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.secure-note svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }

.no-fees-callout {
  text-align: center;
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.no-fees-callout strong { color: var(--text); }

.industries-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  min-width: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}
.industry-item:hover { border-color: var(--gold); transform: translateY(-2px); }
.industry-item svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.75; }
.industry-item span { font-size: 0.82rem; font-weight: 600; color: var(--text); }

.footer-industries a { display: block; padding: 3px 0; font-size: 0.88rem; }

/* THANK YOU page */
.thankyou-icon { width:100px; height:100px; margin:0 auto; }
.thankyou-icon svg { width:100%; height:100%; }
