:root {
  --bg: #0f1117;
  --surface: #161b27;
  --surface-2: #1a2030;
  --border: #1e2535;
  --fg: #f0f2f5;
  --fg-muted: #8892a4;
  --accent: #f97316;
  --accent-dim: rgba(249, 115, 22, 0.12);
  --accent-glow: rgba(249, 115, 22, 0.08);
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--fg); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* nav */
.nav { padding: 16px 40px; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-left { display: flex; align-items: baseline; gap: 12px; }
.nav-logo { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--accent); }
.nav-tagline { font-size: 13px; color: var(--fg-muted); }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--green); background: var(--green-dim); border: 1px solid rgba(34,197,94,0.2); padding: 8px 16px; border-radius: 8px; }
.nav-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

/* hero */
.jr-hero { max-width: 1100px; margin: 0 auto; padding: 60px 40px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.jr-hero::before { content: ''; position: absolute; top: -80px; left: -80px; width: 500px; height: 500px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); pointer-events: none; z-index: 0; }
.jr-hero-left { position: relative; z-index: 1; }
.jr-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 999px; background: var(--green-dim); color: var(--green); border: 1px solid rgba(34,197,94,0.2); margin-bottom: 20px; }
.jr-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.jr-headline { font-size: clamp(34px, 4.5vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.jr-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 28px; max-width: 460px; }
.jr-phone-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: #000; font-weight: 700; font-size: 18px; padding: 14px 28px; border-radius: 10px; margin-bottom: 12px; transition: transform 0.15s, box-shadow 0.15s; }
.jr-phone-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,0.3); text-decoration: none; }
.jr-phone-cta svg { width: 20px; height: 20px; }
.jr-trust { font-size: 13px; color: var(--fg-muted); display: flex; align-items: center; gap: 6px; }
.jr-trust svg { width: 14px; height: 14px; color: var(--accent); }
.jr-hero-right { position: relative; z-index: 1; }
.jr-mockup { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.jr-mockup-topbar { background: #1a1e2e; padding: 10px 16px; display: flex; gap: 6px; align-items: center; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yel { background: #ffbd2e; }
.mockup-dot.grn { background: #28ca41; }
.jr-mockup-content { padding: 24px; }
.jr-form-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.jr-form-sub { font-size: 12px; color: var(--fg-muted); margin-bottom: 18px; }
.jr-form-group { margin-bottom: 12px; }
.jr-form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--fg-muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.04em; }
.jr-input { width: 100%; padding: 10px 14px; background: #0d1018; border: 1px solid var(--border); border-radius: 8px; color: var(--fg); font-size: 14px; font-family: var(--font-body); transition: border-color 0.2s; }
.jr-input:focus { outline: none; border-color: var(--accent); }
.jr-input::placeholder { color: #444; }
.jr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.jr-submit { width: 100%; background: var(--accent); color: #fff; font-weight: 700; font-size: 15px; padding: 13px; border: none; border-radius: 8px; cursor: pointer; font-family: var(--font-body); margin-top: 4px; transition: transform 0.15s, box-shadow 0.15s; }
.jr-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.3); }
.jr-form-note { font-size: 11px; color: var(--fg-muted); text-align: center; margin-top: 10px; }

/* services */
.jr-services { max-width: 1100px; margin: 0 auto; padding: 60px 40px; border-top: 1px solid var(--border); }
.section-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 8px; }
.section-title { font-size: 32px; font-weight: 700; margin-bottom: 32px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.service-card { background: var(--surface); padding: 28px 24px; transition: background 0.2s; }
.service-card:hover { background: var(--surface-2); }
.service-icon { width: 40px; height: 40px; margin-bottom: 14px; color: var(--accent); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* areas */
.jr-areas { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 40px; }
.jr-areas-inner { max-width: 1100px; margin: 0 auto; }
.jr-areas-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-tag { font-size: 13px; font-weight: 500; padding: 8px 18px; border-radius: 999px; background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(249,115,22,0.2); }
.jr-areas-title { font-size: 14px; color: var(--fg-muted); margin-bottom: 16px; margin-top: 28px; text-transform: uppercase; letter-spacing: 0.05em; font-size: 12px; }

/* trust */
.jr-trust-section { max-width: 1100px; margin: 0 auto; padding: 60px 40px; }
.trust-stats { display: flex; gap: 48px; align-items: center; }
.trust-stat { text-align: center; }
.trust-num { display: block; font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--accent); }
.trust-label { font-size: 13px; color: var(--fg-muted); display: block; margin-top: 4px; }
.trust-divider { width: 1px; height: 60px; background: var(--border); }
.trust-text { max-width: 500px; }
.trust-text h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.trust-text p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* footer */
.footer { border-top: 1px solid var(--border); padding: 28px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--accent); }
.footer-copy { font-size: 13px; color: var(--fg-muted); }

/* thank-you page */
.ty-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; text-align: center; }
.ty-icon { width: 72px; height: 72px; margin: 0 auto 24px; background: var(--green-dim); border: 1px solid rgba(34,197,94,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ty-icon svg { width: 36px; height: 36px; color: var(--green); }
.ty-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 16px; }
.ty-sub { font-size: 16px; color: var(--fg-muted); max-width: 460px; line-height: 1.7; margin-bottom: 32px; }
.ty-phone { display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: #000; font-weight: 700; font-size: 17px; padding: 14px 28px; border-radius: 10px; margin-bottom: 16px; }
.ty-phone svg { width: 18px; height: 18px; }
.ty-note { font-size: 13px; color: var(--fg-muted); }

/* mobile */
@media (max-width: 768px) {
  .nav { padding: 14px 24px; }
  .nav-tagline { display: none; }
  .jr-hero { grid-template-columns: 1fr; padding: 40px 24px; gap: 36px; }
  .jr-hero-right { display: none; }
  .jr-services, .jr-trust-section { padding: 48px 24px; }
  .jr-areas { padding: 48px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .trust-stats { flex-direction: column; gap: 24px; }
  .trust-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .jr-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .jr-headline { font-size: 28px; }
  .jr-phone-cta { font-size: 16px; padding: 12px 20px; }
}

/* closing / how — reuse original landing section names for backwards compat */
.closing { max-width: 1100px; margin: 0 auto; padding: 80px 40px; }
.closing h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.01em; }
.closing p { font-size: 16px; color: var(--fg-muted); line-height: 1.7; max-width: 580px; margin-bottom: 48px; }
.closing-proof { display: flex; gap: 32px; align-items: center; }
.proof-stat { text-align: center; }
.proof-num { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--accent); }
.proof-label { font-size: 12px; color: var(--fg-muted); display: block; max-width: 120px; }
.proof-divider { width: 1px; height: 50px; background: var(--border); }