* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #0a0a0a; color: #f5f5f5; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* Scrolling Ticker */
.ticker-wrap { background: #d4af37; overflow: hidden; white-space: nowrap; padding: 10px 0; }
.ticker { display: inline-flex; animation: ticker-scroll 30s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 32px; font-size: 13px; font-weight: 600; color: #0a0a0a; letter-spacing: 0.5px; }
.ticker-item span { color: #0a0a0a; }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: #0a0a0a; opacity: 0.4; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Navigation */
.nav { display: flex; justify-content: space-between; align-items: center; padding: 18px 40px; border-bottom: 1px solid #1f1f1f; background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 100; }
.nav-logo { font-size: 14px; font-weight: 700; letter-spacing: 4px; color: #d4af37; font-family: Georgia, serif; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 36px; height: 36px; border-radius: 50%; display: block; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 13px; color: #b8b8b8; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #d4af37; }
.nav-links a.nav-cta, .nav-cta { background: #d4af37; color: #000000; border: none; padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block; }
.nav-links a.nav-cta:hover, .nav-cta:hover { background: #c9a432; color: #000000; }
.nav-mobile-toggle { display: none; background: none; border: none; color: #d4af37; font-size: 24px; cursor: pointer; padding: 4px; }

/* Hero */
.hero-wrap { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; padding: 80px 40px 60px; max-width: 1200px; margin: 0 auto; }
.hero { text-align: left; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.35); color: #d4af37; font-size: 12px; padding: 4px 12px; border-radius: 20px; margin-bottom: 24px; }
.hero-logo { width: 96px; height: 96px; border-radius: 50%; display: block; margin-bottom: 24px; box-shadow: 0 8px 32px rgba(212,175,55,0.18); }
.hero h1 { font-size: 56px; font-weight: 600; color: #fff; line-height: 1.08; margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 span { color: #d4af37; }
.hero p { font-size: 17px; color: #b8b8b8; line-height: 1.7; max-width: 560px; margin: 0 0 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero Animated Counters */
.hero-counters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; width: 100%; max-width: 700px; }
.hero-counter { text-align: center; }
.hero-counter-num { font-size: 48px; font-weight: 700; color: #d4af37; line-height: 1; font-variant-numeric: tabular-nums; }
.hero-counter-label { font-size: 13px; color: #888; margin-top: 6px; }

/* Dashboard */
.dashboard { background: #111; border: 1px solid #1f1f1f; border-radius: 16px; padding: 28px; }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dashboard-title { font-size: 14px; font-weight: 600; color: #fff; letter-spacing: 0.5px; }
.dashboard-badge { font-size: 11px; color: #0a0a0a; background: #d4af37; padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.dashboard-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.metric-card { background: #181818; border: 1px solid #222; border-radius: 12px; padding: 18px 16px; transition: border-color 0.2s; }
.metric-card:hover { border-color: rgba(212,175,55,0.3); }
.metric-label { font-size: 11px; color: #666; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 8px; }
.metric-value { font-size: 28px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.metric-trend { font-size: 12px; font-weight: 500; }
.metric-trend.up { color: #34d399; }
.metric-trend.neutral { color: #888; }
.dashboard-target { background: #181818; border: 1px solid #222; border-radius: 12px; padding: 20px 16px; }
.target-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.target-label { font-size: 12px; color: #888; font-weight: 600; letter-spacing: 0.5px; }
.target-pct { font-size: 14px; color: #d4af37; font-weight: 700; }
.target-bar-wrap { background: #222; border-radius: 6px; height: 10px; overflow: hidden; margin-bottom: 10px; }
.target-bar { height: 100%; border-radius: 6px; background: linear-gradient(90deg, #d4af37, #f0d060); transition: width 1.5s ease-out; }
.target-detail { display: flex; justify-content: space-between; align-items: baseline; }
.target-amount { font-size: 20px; font-weight: 700; color: #fff; }
.target-goal { font-size: 13px; color: #666; }

/* Page Header (for inner pages) */
.page-header { text-align: center; padding: 72px 40px 48px; max-width: 800px; margin: 0 auto; }
.page-header .section-eyebrow { margin-bottom: 12px; }
.page-header h1 { font-size: 44px; font-weight: 600; color: #fff; line-height: 1.12; margin-bottom: 16px; letter-spacing: -0.5px; }
.page-header h1 span { color: #d4af37; }
.page-header p { font-size: 17px; color: #b8b8b8; line-height: 1.7; max-width: 560px; margin: 0 auto; }

/* Buttons */
.btn-primary { background: #d4af37; color: #0a0a0a; border: none; padding: 14px 26px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: #c9a432; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: #fff; border: 1px solid #444; padding: 14px 26px; border-radius: 8px; font-size: 14px; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s; }
.btn-secondary:hover { border-color: #d4af37; color: #d4af37; }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); padding: 14px 26px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, background 0.2s; }
.btn-outline-white:hover { border-color: #d4af37; background: rgba(212,175,55,0.08); }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-white { background: #d4af37; color: #0a0a0a; border: none; padding: 14px 32px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s; }
.btn-white:hover { background: #c9a432; transform: translateY(-1px); }

/* Services Marquee */
.marquee-wrap { border-top: 1px solid #1f1f1f; border-bottom: 1px solid #1f1f1f; overflow: hidden; padding: 18px 0; background: #0d0d0d; }
.marquee { display: inline-flex; animation: marquee-scroll 25s linear infinite; white-space: nowrap; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 36px; font-size: 15px; font-weight: 500; color: #666; letter-spacing: 1px; text-transform: uppercase; }
.marquee-star { color: #d4af37; font-size: 12px; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 72px 40px; max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 12px; color: #d4af37; font-weight: 600; letter-spacing: 1px; margin-bottom: 8px; }
.section-title { font-size: 32px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.section-sub { font-size: 15px; color: #b8b8b8; margin-bottom: 40px; line-height: 1.6; }
.section-center { text-align: center; }
.divider { height: 1px; background: #1f1f1f; max-width: 1120px; margin: 0 auto; }

/* Services Cards */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { border: 1px solid #1f1f1f; border-radius: 14px; background: #111; padding: 32px 28px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #d4af37, #b8941e); opacity: 0; transition: opacity 0.25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -20px rgba(212,175,55,0.2); border-color: rgba(212,175,55,0.35); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.service-name { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.service-desc { font-size: 14px; color: #999; line-height: 1.6; margin-bottom: 18px; }
.service-note { font-size: 13px; color: #d4af37; font-weight: 500; font-style: italic; }

/* Pricing Note Banner */
.pricing-note { text-align: center; margin-top: 40px; padding: 24px 32px; background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; }
.pricing-note p { font-size: 15px; color: #ccc; line-height: 1.6; margin: 0; }
.pricing-note strong { color: #d4af37; }

/* Gold Stats Band */
.gold-band { background: linear-gradient(135deg, #d4af37 0%, #b8941e 100%); padding: 48px 40px; }
.gold-band-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.gold-stat { text-align: center; }
.gold-stat-num { font-size: 36px; font-weight: 700; color: #0a0a0a; line-height: 1; margin-bottom: 6px; }
.gold-stat-label { font-size: 13px; color: rgba(10,10,10,0.7); font-weight: 500; line-height: 1.4; }

/* Process */
.process-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.process { display: flex; flex-direction: column; }
.process-step { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid #1f1f1f; }
.process-step:last-child { border-bottom: none; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: rgba(212,175,55,0.12); color: #d4af37; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; border: 1.5px solid rgba(212,175,55,0.35); }
.step-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.step-desc { font-size: 14px; color: #b8b8b8; line-height: 1.6; }
.process-visual { background: #111; border: 1px solid #1f1f1f; border-radius: 16px; padding: 40px 32px; display: flex; flex-direction: column; gap: 24px; }
.process-visual-step { display: flex; align-items: center; gap: 16px; }
.process-visual-line { width: 2px; height: 32px; background: rgba(212,175,55,0.2); margin-left: 19px; }
.process-visual-dot { width: 40px; height: 40px; border-radius: 50%; background: rgba(212,175,55,0.15); border: 2px solid #d4af37; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.process-visual-dot svg { width: 18px; height: 18px; stroke: #d4af37; fill: none; stroke-width: 2; }
.process-visual-text { font-size: 14px; color: #ccc; font-weight: 500; }

/* Why Section */
.why { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.why-card { padding: 24px; background: #111; border: 1px solid #1f1f1f; border-radius: 12px; transition: border-color 0.2s, transform 0.2s; }
.why-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-2px); }
.why-icon { font-size: 24px; margin-bottom: 12px; }
.why-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.why-desc { font-size: 13px; color: #b8b8b8; line-height: 1.5; }

/* About Feature Grid */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text h2 { font-size: 32px; font-weight: 600; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.about-text h2 span { color: #d4af37; }
.about-text p { font-size: 15px; color: #b8b8b8; line-height: 1.7; margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 16px; }
.about-value { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: #111; border: 1px solid #1f1f1f; border-radius: 12px; transition: border-color 0.2s; }
.about-value:hover { border-color: rgba(212,175,55,0.3); }
.about-value-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.about-value-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.about-value-desc { font-size: 13px; color: #999; line-height: 1.5; }

/* Industry Tags */
.industry-tags-wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.industry-tag { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: #111; border: 1px solid #1f1f1f; border-radius: 40px; font-size: 14px; color: #ccc; font-weight: 500; transition: border-color 0.2s, background 0.2s, transform 0.2s; cursor: default; }
.industry-tag:hover { border-color: rgba(212,175,55,0.4); background: rgba(212,175,55,0.06); transform: translateY(-2px); }
.industry-tag-icon { font-size: 16px; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testimonial-card { padding: 28px 24px; background: #111; border: 1px solid #1f1f1f; border-radius: 14px; display: flex; flex-direction: column; transition: border-color 0.2s; }
.testimonial-card:hover { border-color: rgba(212,175,55,0.3); }
.testimonial-stars { color: #d4af37; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: #d0d0d0; line-height: 1.7; flex: 1; font-style: italic; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid #1f1f1f; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.3); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: #d4af37; flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 500; color: #fff; }
.testimonial-role { font-size: 12px; color: #888; margin-top: 2px; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid #1f1f1f; border-radius: 12px; background: #111; overflow: hidden; transition: border-color 0.2s; }
.faq-item.active { border-color: rgba(212,175,55,0.3); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; gap: 16px; }
.faq-question h3 { font-size: 15px; font-weight: 500; color: #fff; line-height: 1.4; }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s, background 0.2s; }
.faq-toggle svg { width: 12px; height: 12px; stroke: #d4af37; stroke-width: 2; fill: none; transition: transform 0.3s; }
.faq-item.active .faq-toggle { background: rgba(212,175,55,0.2); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 22px 20px; font-size: 14px; color: #b8b8b8; line-height: 1.7; }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); padding: 72px 40px; text-align: center; position: relative; overflow: hidden; border-top: 1px solid rgba(212,175,55,0.25); border-bottom: 1px solid rgba(212,175,55,0.25); }
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; border-radius: 50%; background: rgba(212,175,55,0.07); }
.cta-section::after { content: ''; position: absolute; bottom: -120px; left: -120px; width: 360px; height: 360px; border-radius: 50%; background: rgba(212,175,55,0.05); }
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { font-size: 36px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.cta-section p { font-size: 15px; color: #d4af37; margin-bottom: 36px; }

/* Contact Cards */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto 48px; }
.contact-card { padding: 32px 24px; background: #111; border: 1px solid #1f1f1f; border-radius: 14px; text-align: center; text-decoration: none; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.contact-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-4px); }
.contact-card-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.contact-card-title { font-size: 16px; font-weight: 600; color: #fff; }
.contact-card-value { font-size: 14px; color: #d4af37; }
.contact-card-desc { font-size: 13px; color: #888; line-height: 1.5; }

/* Footer */
.footer { border-top: 1px solid #1f1f1f; background: #0a0a0a; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 48px 40px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-logo { font-size: 14px; font-weight: 700; letter-spacing: 4px; color: #d4af37; font-family: Georgia, serif; margin-bottom: 12px; }
.footer-brand-desc { font-size: 13px; color: #888; line-height: 1.6; max-width: 260px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 32px; height: 32px; border-radius: 8px; border: 1px solid #2a2a2a; display: flex; align-items: center; justify-content: center; color: #888; text-decoration: none; font-size: 14px; transition: border-color 0.2s, color 0.2s; }
.footer-social a:hover { border-color: #d4af37; color: #d4af37; }
.footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: 1px; color: #d4af37; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: #888; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #d4af37; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid #1f1f1f; flex-wrap: wrap; gap: 8px; }
.footer-bottom-left { font-size: 12px; color: #555; }
.footer-bottom-right { font-size: 12px; color: #555; }

/* Modal */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.7); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.modal-backdrop.open { display: flex; }
.modal { background: #141414; border: 1px solid rgba(212,175,55,0.25); border-radius: 16px; padding: 32px 28px; max-width: 380px; width: 100%; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.modal-close { position: absolute; top: 12px; right: 14px; background: none; border: none; font-size: 22px; color: #888; cursor: pointer; line-height: 1; }
.modal h3 { font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: #b8b8b8; margin-bottom: 22px; }
.modal-options { display: flex; flex-direction: column; gap: 10px; }
.modal-option { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid #2a2a2a; border-radius: 10px; text-decoration: none; color: #fff; font-size: 14px; font-weight: 500; transition: border-color 0.15s, background 0.15s; }
.modal-option:hover { border-color: #d4af37; background: rgba(212,175,55,0.08); }
.modal-option-icon { font-size: 18px; }
.modal-option-label { flex: 1; }
.modal-option-value { font-size: 12px; color: #888; font-weight: 400; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -280px; width: 280px; height: 100vh; background: #111; border-left: 1px solid #1f1f1f; z-index: 200; padding: 24px; transition: right 0.3s ease; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu.open { right: 0; }
.mobile-menu-close { align-self: flex-end; background: none; border: none; color: #888; font-size: 24px; cursor: pointer; margin-bottom: 16px; }
.mobile-menu a { display: block; padding: 14px 16px; font-size: 15px; color: #b8b8b8; text-decoration: none; border-radius: 8px; transition: background 0.2s, color 0.2s; }
.mobile-menu a:hover { background: rgba(212,175,55,0.08); color: #d4af37; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 199; display: none; }
.mobile-overlay.open { display: block; }

/* Responsive */
@media (max-width: 900px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero p { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-counters { margin: 0 auto; }
  .hero h1 { font-size: 40px; }
  .page-header h1 { font-size: 34px; }
  .hero-counters { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .hero-counter-num { font-size: 36px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .process-wrap { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .gold-band-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dashboard { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .ticker-item { padding: 0 20px; font-size: 12px; }
  .nav { padding: 16px 20px; }
  .nav-links a { display: none; }
  .nav-mobile-toggle { display: block; }
  .hero-wrap { padding: 48px 20px 40px; gap: 32px; }
  .hero h1 { font-size: 32px; }
  .dashboard { padding: 20px; }
  .dashboard-metrics { gap: 10px; }
  .metric-card { padding: 14px 12px; }
  .metric-value { font-size: 22px; }
  .metric-label { font-size: 10px; }
  .page-header { padding: 48px 20px 32px; }
  .page-header h1 { font-size: 28px; }
  .hero-counters { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-counter-num { font-size: 28px; }
  .hero-counter-label { font-size: 11px; }
  .section { padding: 48px 20px; }
  .divider { margin: 0 20px; }
  .services { grid-template-columns: 1fr; }
  .gold-band { padding: 36px 20px; }
  .gold-band-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gold-stat-num { font-size: 28px; }
  .testimonials { grid-template-columns: 1fr; }
  .cta-section { padding: 48px 20px; }
  .cta-section h2 { font-size: 26px; }
  .footer-inner { padding: 36px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
