/* =====================================================
   ECO CARE SOLUTIONS — GLOBAL STYLESHEET v2
   ===================================================== */

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

:root {
  --green: #1a6b3c;
  --green-dark: #0f3d22;
  --green-light: #f0f9f4;
  --green-mid: #eaf5ee;
  --green-border: #c5e8d4;
  --green-muted: #9fdbb8;
  --text: #1a1a2e;
  --text2: #4a5568;
  --text3: #718096;
  --surface: #ffffff;
  --surface1: #f8f9fa;
  --surface2: #f1f3f5;
  --border: #e2e8f0;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); background: var(--surface); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(22px, 4vw, 32px); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(16px, 2.5vw, 20px); font-weight: 600; line-height: 1.3; }
h4 { font-size: 15px; font-weight: 600; }
p { font-size: 15px; line-height: 1.75; color: var(--text2); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: #155a32; color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-secondary:hover { background: var(--green-mid); text-decoration: none; }
.btn-white { background: #fff; color: var(--green); }
.btn-white:hover { background: var(--green-light); text-decoration: none; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); text-decoration: none; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── TOP BAR ── */
.top-bar { background: var(--green-dark); padding: 8px 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { font-size: 12px; color: var(--green-muted); }
.top-bar-right { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-right a { font-size: 12px; color: var(--green-muted); text-decoration: none; display: flex; align-items: center; gap: 5px; }
.top-bar-right a:hover { color: #fff; }

/* ── NAVIGATION ── */
.navbar { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 130px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon { height: 110px; width: auto; flex-shrink: 0; display: block; }
.nav-logo-text { font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.1; }
.nav-logo-sub { font-size: 11px; color: var(--text3); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-size: 13px; color: var(--text2); text-decoration: none; padding: 8px 12px; border-radius: 6px; font-weight: 500; white-space: nowrap; }
.nav-links a:hover { background: var(--green-mid); color: var(--green); }
.nav-links .nav-cta { background: var(--green); color: #fff; margin-left: 8px; padding: 9px 18px; }
.nav-links .nav-cta:hover { background: #155a32; color: #fff; }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 8px; min-width: 220px; box-shadow: var(--shadow-md); z-index: 100; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 8px 12px; font-size: 13px; color: var(--text2); border-radius: 6px; text-decoration: none; }
.dropdown-menu a:hover { background: var(--green-mid); color: var(--green); }

/* MOBILE MENU */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--border); padding: 1rem 2rem 1.5rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 10px 0; font-size: 15px; color: var(--text2); border-bottom: 1px solid var(--border); text-decoration: none; font-weight: 500; }
.mobile-menu a:hover { color: var(--green); }
.mobile-menu .mobile-section { font-size: 11px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; padding: 14px 0 4px; }
.mobile-menu .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ── LAYOUT HELPERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-alt { padding: 5rem 0; background: var(--surface1); }
.section-green { padding: 5rem 0; background: var(--green); }
.section-dark { padding: 5rem 0; background: var(--green-dark); }
.section-label { font-size: 12px; font-weight: 700; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.section-title { margin-bottom: 0.75rem; }
.section-sub { color: var(--text2); max-width: 580px; margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

/* ── CARDS ── */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: box-shadow 0.2s, border-color 0.2s; }
.card:hover { box-shadow: var(--shadow-md); border-color: var(--green-border); }
.card.featured { border: 2px solid var(--green); background: var(--green-light); }
.card-icon { width: 44px; height: 44px; background: var(--green-mid); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 22px; }
.badge { display: inline-block; background: var(--green-mid); color: var(--green); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 0.75rem; letter-spacing: 0.03em; }

/* ── HERO ── */
.hero { padding: 5rem 0 4rem; background: linear-gradient(100deg, rgba(240,249,244,0.96) 0%, rgba(240,249,244,0.9) 30%, rgba(255,255,255,0.45) 55%, rgba(255,255,255,0.1) 75%), url('/assets/manchester.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.hero-eyebrow { font-size: 12px; font-weight: 700; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--green); border-radius: 2px; }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--green); }
.hero-desc { font-size: 16px; line-height: 1.8; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 6px 14px; font-size: 12px; color: var(--text2); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.hero-badge::before { content: '✓'; color: var(--green); font-weight: 700; }

/* HERO STATS BOX */
.stats-box { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; box-shadow: var(--shadow-md); }
.stats-box .grant-highlight { background: var(--green); border-radius: 12px; padding: 1.5rem; text-align: center; margin-bottom: 1rem; }
.grant-amount { font-size: 48px; font-weight: 800; color: #fff; line-height: 1; }
.grant-label { font-size: 14px; color: var(--green-muted); margin-top: 4px; }
.grant-note { font-size: 11px; color: #c5e8d4; margin-top: 8px; line-height: 1.5; }
.stat-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-row:first-child { padding-top: 0; }
.stat-icon { width: 36px; height: 36px; background: var(--green-mid); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.stat-num { font-size: 17px; font-weight: 700; color: var(--green); line-height: 1.1; }
.stat-lbl { font-size: 12px; color: var(--text2); margin-top: 1px; }

/* ── AUDIENCE CARDS ── */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; cursor: pointer; transition: all 0.2s; text-decoration: none; display: block; }
.audience-card:hover { border-color: var(--green); background: var(--green-light); text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.audience-card.featured { border: 2px solid var(--green); background: var(--green-light); }
.audience-icon { font-size: 28px; margin-bottom: 0.75rem; }
.audience-card h3 { font-size: 16px; margin-bottom: 0.5rem; color: var(--text); }
.audience-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }
.audience-card .card-link { font-size: 13px; color: var(--green); font-weight: 600; margin-top: 0.75rem; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; text-decoration: none; display: block; transition: all 0.2s; }
.service-card:hover { border-color: var(--green); background: var(--green-light); text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.service-icon { font-size: 32px; margin-bottom: 0.75rem; }
.service-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); }
.service-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ── PRICING TABS ── */
.pricing-tabs { display: flex; gap: 8px; margin-bottom: 1.5rem; }
.ptab { padding: 9px 20px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: 2px solid var(--border); background: var(--surface); color: var(--text2); transition: all 0.2s; }
.ptab:hover { border-color: var(--green); color: var(--green); }
.ptab.active { background: var(--green); color: #fff; border-color: var(--green); }
.pricing-table { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.pt-head { display: grid; padding: 12px 18px; background: var(--green); font-size: 13px; font-weight: 600; color: #fff; }
.pt-row { display: grid; padding: 13px 18px; border-bottom: 1px solid var(--border); font-size: 14px; background: var(--surface); }
.pt-row:last-child { border-bottom: none; }
.pt-row:nth-child(even) { background: var(--surface1); }
.pt-name { font-weight: 600; color: var(--text); }
.pt-green { color: var(--green); font-weight: 700; }
.pt-note { font-size: 12px; color: var(--text3); margin-top: 10px; text-align: center; line-height: 1.6; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; display: flex; gap: 14px; }
.why-num { font-size: 30px; font-weight: 800; color: var(--green-border); line-height: 1; min-width: 36px; }
.why-title { font-size: 15px; font-weight: 600; margin-bottom: 0.3rem; }
.why-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ── CREDENTIALS ── */
.creds-strip { background: var(--green-light); border-top: 1px solid var(--green-border); border-bottom: 1px solid var(--green-border); padding: 1.75rem 0; }
.creds-inner { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.cred-item { display: flex; align-items: center; gap: 10px; }
.cred-icon { width: 44px; height: 44px; background: #fff; border: 1px solid var(--green-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.cred-title { font-size: 13px; font-weight: 700; color: var(--green); }
.cred-sub { font-size: 11px; color: var(--text3); }

/* ── STATS BAR ── */
.stats-bar { background: var(--green); padding: 3rem 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; text-align: center; }
.sb-num { font-size: 32px; font-weight: 800; color: #fff; line-height: 1; }
.sb-lbl { font-size: 13px; color: var(--green-muted); margin-top: 4px; }

/* ── CTA BANNER ── */
.cta-banner { padding: 5rem 0; background: var(--green); text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p { color: var(--green-muted); max-width: 520px; margin: 0 auto 2rem; font-size: 16px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.step-item { background: var(--surface); padding: 1.5rem 1.25rem; text-align: center; }
.step-num { width: 44px; height: 44px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; font-size: 18px; font-weight: 700; color: #fff; }
.step-title { font-size: 14px; font-weight: 600; margin-bottom: 0.3rem; }
.step-desc { font-size: 12px; color: var(--text2); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--surface); }
.faq-q { padding: 1.1rem 1.25rem; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-q:hover { background: var(--green-mid); }
.faq-icon { font-size: 18px; color: var(--green); transition: transform 0.25s; flex-shrink: 0; }
.faq-icon.open { transform: rotate(180deg); }
.faq-a { padding: 0 1.25rem; font-size: 14px; color: var(--text2); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-a.open { padding: 0 1.25rem 1.1rem; max-height: 500px; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 12px 0; font-size: 13px; color: var(--text3); border-bottom: 1px solid var(--border); background: var(--surface1); }
.breadcrumb a { color: var(--text3); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--green); }

/* ── AREAS ── */
.areas-wrap { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.area-pill { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 7px 16px; font-size: 13px; color: var(--text2); cursor: pointer; text-decoration: none; transition: all 0.15s; }
.area-pill:hover { border-color: var(--green); color: var(--green); background: var(--green-light); text-decoration: none; }

/* ── COMPARISON ── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare-card { border-radius: 12px; padding: 1.5rem; }
.compare-card.good { background: var(--green-light); border: 1.5px solid var(--green-border); }
.compare-card.bad { background: #fff5f5; border: 1.5px solid #fbc4c4; }
.compare-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 1rem; }
.compare-card.good h3 { color: var(--green); }
.compare-card.bad h3 { color: #a32d2d; }
.compare-list { list-style: none; }
.compare-list li { font-size: 13px; color: var(--text2); padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.compare-list li:last-child { border-bottom: none; }
.compare-list .good-icon { color: var(--green); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.compare-list .bad-icon { color: #a32d2d; font-size: 14px; flex-shrink: 0; margin-top: 2px; }

/* ── FOOTER ── */
footer { background: var(--green-dark); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 13px; color: var(--green-muted); line-height: 1.7; margin-top: 0.75rem; }
.footer-contact { font-size: 13px; color: var(--green-muted); margin-top: 0.4rem; display: flex; align-items: center; gap: 6px; }
.footer-contact a { color: var(--green-muted); text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-socials { display: flex; gap: 8px; margin-top: 1rem; }
.social-btn { width: 34px; height: 34px; border: 1px solid #2a6b48; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--green-muted); text-decoration: none; }
.social-btn:hover { background: var(--green); color: #fff; border-color: var(--green); text-decoration: none; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #c5e8d4; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.footer-col a { display: block; font-size: 13px; color: var(--green-muted); text-decoration: none; margin-bottom: 0.5rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1a4d2e; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: #5a8c6b; }

/* ── PAGE HERO ── */
.page-hero { padding: 4rem 0 3rem; background: linear-gradient(160deg, var(--green-light) 0%, #fff 70%); }
.page-hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero h1 span { color: var(--green); }
.page-hero p { margin-bottom: 1rem; }
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.5rem; }

/* ── GRANT BOX ── */
.grant-box { background: var(--green); border-radius: 16px; padding: 1.75rem; color: #fff; text-align: center; }
.grant-box .amount { font-size: 52px; font-weight: 800; color: #fff; line-height: 1; }
.grant-box .label { font-size: 15px; color: var(--green-muted); margin-top: 6px; }
.grant-box .note { font-size: 12px; color: #c5e8d4; margin-top: 10px; line-height: 1.6; }
.grant-box .uplift-note { background: rgba(255,255,255,0.15); border-radius: 8px; padding: 8px 12px; margin-top: 12px; font-size: 12px; color: #c5e8d4; line-height: 1.5; }

/* ── NOTICE BOX ── */
.notice { background: var(--green-light); border: 1px solid var(--green-border); border-radius: 10px; padding: 1rem 1.25rem; font-size: 13px; color: var(--text2); line-height: 1.6; margin-top: 1rem; }
.notice strong { color: var(--green); }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; color: var(--text); background: var(--surface); font-family: inherit; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,107,60,0.1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--green-mid); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-detail h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.contact-detail p, .contact-detail a { font-size: 13px; color: var(--text2); }
.contact-detail a { color: var(--green); }

/* ── WIZARD ── */
.wizard-wrap { max-width: 680px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.wizard-head { background: var(--green); padding: 1.75rem 2rem; color: #fff; }
.wizard-head h2 { font-size: 20px; color: #fff; margin-bottom: 4px; }
.wizard-head p { font-size: 13px; color: var(--green-muted); }
.wizard-progress { display: flex; gap: 4px; margin-top: 1rem; }
.wp { height: 4px; flex: 1; background: rgba(255,255,255,0.2); border-radius: 2px; transition: background 0.3s; }
.wp.done { background: rgba(255,255,255,0.8); }
.wizard-body { padding: 2rem; }
.ws { display: none; }
.ws.active { display: block; }
.wizard-q { font-size: 18px; font-weight: 700; margin-bottom: 0.4rem; }
.wizard-sub { font-size: 14px; color: var(--text2); margin-bottom: 1.5rem; }
.wizard-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wizard-options.cols-3 { grid-template-columns: repeat(3, 1fr); }
.wo { background: var(--surface1); border: 2px solid var(--border); border-radius: 10px; padding: 1rem; cursor: pointer; text-align: center; transition: all 0.15s; user-select: none; }
.wo:hover { border-color: var(--green); background: var(--green-light); }
.wo.selected { border-color: var(--green); background: var(--green-light); }
.wo-icon { font-size: 26px; margin-bottom: 6px; }
.wo-label { font-size: 14px; font-weight: 600; }
.wo-sub { font-size: 12px; color: var(--text3); margin-top: 2px; }
.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.75rem; }
.wizard-step-lbl { font-size: 12px; color: var(--text3); }
.wizard-inputs { display: flex; flex-direction: column; gap: 12px; }
.wizard-inputs input, .wizard-inputs select { padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: inherit; width: 100%; }
.wizard-inputs input:focus, .wizard-inputs select:focus { outline: none; border-color: var(--green); }
.wizard-success { text-align: center; padding: 2rem 1rem; }
.wizard-success .check { font-size: 56px; margin-bottom: 1rem; }
.wizard-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 0.5rem; }
.wizard-success p { font-size: 15px; color: var(--text2); }

/* ── JOB CARDS ── */
.job-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; margin-bottom: 20px; }
.job-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 0.5rem; }
.job-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 0.75rem; }
.job-tag { background: var(--green-mid); color: var(--green); font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.job-salary { font-size: 18px; font-weight: 700; color: var(--green); margin-bottom: 1rem; }
.job-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1rem; }
.job-cols h4 { font-size: 13px; font-weight: 700; margin-bottom: 0.5rem; }
.job-cols ul { list-style: none; }
.job-cols ul li { font-size: 13px; color: var(--text2); padding: 3px 0; }
.job-cols ul li::before { content: '· '; color: var(--green); font-weight: 700; }
.job-offer { background: var(--green-light); border: 1px solid var(--green-border); border-radius: 8px; padding: 0.9rem 1.1rem; margin-bottom: 1rem; font-size: 13px; color: var(--text2); }
.job-offer strong { color: var(--green); }

/* ── LOCATION ── */
.loc-services { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; }
.loc-services h3 { font-size: 14px; font-weight: 700; margin-bottom: 0.75rem; color: var(--green); }
.loc-service { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text2); }
.loc-service:last-child { border-bottom: none; }
.loc-service-icon { font-size: 16px; }

/* ── TIMELINE ── */
.timeline { position: relative; }
.tl-item { display: flex; gap: 16px; padding-bottom: 1.5rem; position: relative; }
.tl-item:not(:last-child)::before { content: ''; position: absolute; left: 15px; top: 32px; width: 1px; height: calc(100% - 16px); background: var(--border); }
.tl-dot { width: 32px; height: 32px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; font-weight: 700; color: #fff; z-index: 1; }
.tl-year { font-size: 12px; color: var(--green); font-weight: 700; margin-bottom: 2px; }
.tl-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.tl-desc { font-size: 12px; color: var(--text2); line-height: 1.5; }

/* ── GREEN STATS BAR ── */
.green-bar { background: var(--green); padding: 3rem 0; }
.green-bar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1.5rem; text-align: center; }
.gb-num { font-size: 30px; font-weight: 800; color: #fff; }
.gb-lbl { font-size: 13px; color: var(--green-muted); margin-top: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { height: 64px; }
  .nav-logo-icon { height: 48px; }
  .nav-logo-sub { display: none; }
  
  .hero-inner, .page-hero-inner, .grid-2, .compare-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 2.5rem; }
  .section, .section-alt, .section-green, .section-dark { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
  
  .services-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  .wizard-options { grid-template-columns: 1fr 1fr; }
  .wizard-options.cols-3 { grid-template-columns: 1fr 1fr; }
  .job-cols { grid-template-columns: 1fr; }
  
  .creds-inner { gap: 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .page-hero-btns { flex-direction: column; }
  .page-hero-btns .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wizard-options { grid-template-columns: 1fr; }
  .wizard-options.cols-3 { grid-template-columns: 1fr; }
}
