/* ============================================================
   Lokalizacja24 — design system (vanilla CSS, ~25KB)
   Edytujesz kolory? Zmień zmienne na początku. Po edycji
   nie wymaga rebuildu — to plik statyczny.
   ============================================================ */

/* ---- Self-hosted fonts (woff2) — eliminuje render-blocking Google Fonts ---- */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/space-grotesk-v22-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/space-grotesk-v22-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/space-grotesk-v22-latin_latin-ext-700.woff2') format('woff2');
}


:root {
    --bg:          #0a0e1a;
    --bg-soft:     #0f1525;
    --surface:     #131a2d;
    --surface-2:   #1a2238;
    --card:        #161e33;
    --border:      #232c47;
    --border-2:    #2e3856;
    --text:        #e8ecf5;
    --muted:       #8893b3;
    --primary:     #06b6d4;
    --primary-2:   #22d3ee;
    --primary-glow:#22d3ee66;
    --success:     #22c55e;
    --danger:      #ef4444;
    --radius:      14px;
    --radius-lg:   20px;
    --shadow:      0 6px 24px rgba(0,0,0,.35);
    --shadow-lg:   0 20px 60px rgba(34,211,238,.22);
    --gradient:    linear-gradient(135deg, #22d3ee, #06b6d4);

    --font-display:'Space Grotesk', system-ui, sans-serif;
    --font-body:   'Inter', system-ui, -apple-system, sans-serif;
    --container:   1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    padding-bottom: 76px;
}
@media (min-width: 1024px) { body { padding-bottom: 0; } }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-2); }
ul { padding-left: 1.2rem; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; }

.text-gradient { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-muted    { color: var(--muted); }
.text-xs       { font-size: .8rem; }
.center        { text-align: center; }
.mt-lg         { margin-top: 2rem; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--primary); color: #fff; padding: 8px 16px; z-index: 9999; }
.skip-link:focus { left: 0; }

.container-page { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.bg-soft { background: var(--bg-soft); }

/* ============= HEADER ============= */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(10,14,26,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 70px; gap: 1rem; }
.logo-img { height: 50px; width: auto; }
.nav-desktop { display: none; gap: .25rem; }
.nav-link { padding: .55rem 1rem; color: var(--muted); font-size: .95rem; font-weight: 500; border-radius: 8px; }
.nav-link:hover, .nav-link.is-active { color: var(--text); background: var(--surface); }
.header-cta { display: none; gap: .5rem; align-items: center; }
.nav-toggle { display: flex; flex-direction: column; gap: 4px; padding: 10px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.nav-mobile { display: block; border-top: 1px solid var(--border); background: var(--surface); }
.nav-mobile[hidden] { display: none !important; }
.nav-mobile .container-page { padding-top: 1rem; padding-bottom: 1rem; display: flex; flex-direction: column; gap: .25rem; }
.nav-mobile .nav-link { padding: .9rem 1rem; }
@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
    .header-cta { display: flex; }
    .nav-toggle { display: none; }
    .nav-mobile { display: none; }
}

/* ============= BUTTONS ============= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .7rem 1.3rem; border-radius: 10px; font-weight: 600; font-size: .95rem; line-height: 1; border: 1px solid transparent; cursor: pointer; transition: all .15s ease; text-decoration: none; }
.btn-lg { padding: 1rem 1.8rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 0 30px var(--primary-glow); }
.btn-primary:hover { opacity: .92; color: #fff; }
.btn-outline { background: transparent; border-color: var(--border-2); color: var(--text); }
.btn-outline:hover { background: var(--surface); color: var(--text); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-light { background: #fff; color: var(--bg); }
.btn-light:hover { background: #f1f5f9; color: var(--bg); }
.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-phone { background: rgba(58,141,255,.12); border-color: rgba(58,141,255,.4); color: var(--text); font-size: .9rem; padding: .55rem 1rem; }

/* ============= HERO ============= */
.hero { padding: 4rem 0 5rem; background: radial-gradient(ellipse at top, rgba(58,141,255,.15), transparent 60%), var(--bg); position: relative; overflow: hidden; }
.hero-sm { padding: 3rem 0 2rem; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.2fr 1fr; } }
.hero-content h1 { margin-top: 1rem; }
.hero-content .lead { font-size: 1.2rem; color: var(--muted); margin: 1.5rem 0 2rem; max-width: 36rem; }
.hero-split { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .hero-split { grid-template-columns: 1fr 1fr; } }
.hero-img { border-radius: var(--radius-lg); border: 1px solid var(--border-2); }
.lead { font-size: 1.15rem; color: var(--muted); }

.badge { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .8rem; border-radius: 999px; background: rgba(58,141,255,.1); border: 1px solid rgba(58,141,255,.25); color: var(--primary); font-size: .8rem; font-weight: 600; margin-bottom: 1.5rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-success { background: var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .4 } }

.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin: 1.5rem 0; }
.cta-row.center { justify-content: center; }

.trust-badges { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem 1rem; margin: 1.5rem 0 0; font-size: .85rem; color: var(--muted); }
.trust-badges li::before { content: ""; }

/* ============= HERO LEAD FORM ============= */
.hero-form, .hero-lead-form { background: rgba(22,30,51,.6); backdrop-filter: blur(12px); border: 1px solid var(--border-2); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-lg); }
.hero-lead-form .lead-form-head { margin-bottom: 1rem; }
.hero-lead-form .lead-form-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin: .25rem 0 0; }
.hero-lead-form h3 { margin-top: .5rem; }
.hero-lead-form label { display: block; font-size: .85rem; color: var(--muted); font-weight: 600; margin-top: .9rem; }
.hero-lead-form input, .hero-lead-form select, .hero-lead-form textarea { width: 100%; margin-top: .35rem; padding: .7rem .9rem; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: .95rem; font-family: inherit; }
.hero-lead-form input:focus, .hero-lead-form select:focus, .hero-lead-form textarea:focus { outline: none; border-color: var(--primary); }
.hero-lead-form label.checkbox { display: flex; gap: .5rem; align-items: flex-start; font-size: .8rem; color: var(--muted); cursor: pointer; }
.hero-lead-form label.checkbox input { width: auto; margin: 0; }
.hero-lead-form .btn { margin-top: 1.1rem; }

.eyebrow { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--primary); font-weight: 700; margin: 0 0 .5rem; }
.section-heading { max-width: 48rem; margin: 0 0 2.5rem; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading .subtitle { color: var(--muted); font-size: 1.05rem; }

.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-status { font-size: .85rem; margin: .5rem 0 0; min-height: 1.2em; }
.form-status.success { color: var(--success); }
.form-status.error   { color: var(--danger); }

/* ============= STATS ============= */
.stats-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat { text-align: center; }
.stat-value { font-family: var(--font-display); font-weight: 700; font-size: 2.3rem; }
.stat-label { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }

/* ============= CARDS / GRIDS ============= */
.card-grid { display: grid; gap: 1.1rem; }
.card-grid-2 { grid-template-columns: 1fr; }
.card-grid-3 { grid-template-columns: 1fr; }
.card-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid-2,.card-grid-3,.card-grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) {
    .card-grid-3 { grid-template-columns: repeat(3,1fr); }
    .card-grid-4 { grid-template-columns: repeat(4,1fr); }
}

.feature-card, .step-card, .why-item, .bullet-card, .article-card, .contact-card, .person-card {
    padding: 1.6rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .2s ease;
}
.feature-card:hover, .article-card:hover, .industry-card:hover { border-color: rgba(58,141,255,.5); }
.step-card { position: relative; }
.step-num { position: absolute; top: 1rem; right: 1.2rem; font-family: var(--font-display); font-size: 2rem; color: rgba(58,141,255,.25); font-weight: 700; }
.bullet-card { font-size: .95rem; }

/* ============= COMPARISON TABLE ============= */
.comparison-table, .compare-vs { border: 1px solid var(--border-2); border-radius: var(--radius-lg); overflow: hidden; }
.comparison-table .row, .compare-vs .row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 0; border-top: 1px solid var(--border); }
.comparison-table .row:first-child, .compare-vs .row:first-child { border-top: 0; }
.comparison-table .row > div, .compare-vs .row > div { padding: 1rem 1.2rem; font-size: .92rem; border-left: 1px solid var(--border); }
.comparison-table .row > div:first-child, .compare-vs .row > div:first-child { border-left: 0; }
.comparison-table .row-head, .compare-vs .row-head { background: var(--surface); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.comparison-table .hl, .compare-vs .hl { background: rgba(58,141,255,.06); color: var(--text); }

/* ============= INDUSTRIES ============= */
.industries-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(4,1fr); } }
.industries-grid-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .industries-grid-2 { grid-template-columns: repeat(2,1fr); } }
.industry-card { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/5; color: var(--text); }
.industry-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.industry-card:hover img { transform: scale(1.05); }
.industry-card-body { position: absolute; inset: 0; padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(10,14,26,.95), rgba(10,14,26,.4) 50%, transparent); }
.industry-card-body h2, .industry-card-body h3 { color: #fff; margin: 0 0 .35rem; }
.industry-card-body p { color: var(--muted); margin: 0; font-size: .9rem; }
.industry-card-lg { aspect-ratio: 16/10; }
.link-arrow { display: inline-flex; align-items: center; gap: .35rem; color: var(--primary); font-weight: 600; margin-top: .9rem; font-size: .9rem; }
.link-back { color: var(--muted); font-size: .9rem; display: inline-block; margin-bottom: 1rem; }
.link-back:hover { color: var(--primary); }

/* ============= SHOWCASE / CTA BANNER / TEAM ============= */
.showcase-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .showcase-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.showcase-grid.reverse > .showcase-media { order: -1; }
@media (min-width: 768px) { .showcase-grid.reverse > .showcase-media { order: 2; } }
.showcase-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.showcase-media img { display: block; width: 100%; height: auto; }
.cta-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; display: flex; align-items: center; padding: 2.5rem; color: #fff; }
.cta-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,14,26,.92), rgba(10,14,26,.55) 70%, rgba(10,14,26,.25)); z-index: 1; }
.cta-banner-body { position: relative; z-index: 2; max-width: 32rem; }
.cta-banner h2 { color: #fff; margin: 0 0 .6rem; }
.cta-banner p { color: rgba(255,255,255,.92); margin: 0 0 1.2rem; }
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(4,1fr); } }
.team-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--card); }
.team-card img { display: block; width: 100%; height: 220px; object-fit: cover; }
.team-card-body { padding: .9rem 1rem; }
.team-card-body h3 { font-size: 1rem; margin: 0 0 .2rem; }
.team-card-body p { font-size: .85rem; color: var(--muted); margin: 0; }


/* ============= TRIAL / FINAL CTA ============= */
.trial-box { background: var(--card); border: 1px solid rgba(58,141,255,.3); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
@media (min-width: 768px) { .trial-box { padding: 3.5rem; } }
.check-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.check-list li { padding: .35rem 0; color: var(--text); }
.final-cta { background: var(--gradient); color: #fff; border-radius: var(--radius-lg); padding: 3rem; text-align: center; box-shadow: var(--shadow-lg); }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 36rem; margin: 0 auto 1.5rem; }

/* ============= FAQ ============= */
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: .6rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.3rem; cursor: pointer; }
.faq-item summary { font-weight: 600; font-family: var(--font-display); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--primary); font-size: 1.4rem; transition: transform .15s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { margin-top: .8rem; color: var(--muted); }

/* ============= PRICING ============= */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }
.price-card { position: relative; padding: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.price-card-popular { border-color: rgba(58,141,255,.55); background: var(--card); box-shadow: var(--shadow-lg); }
.price-ribbon { position: absolute; top: -12px; left: 1.5rem; padding: .25rem .8rem; background: var(--gradient); border-radius: 999px; font-size: .7rem; font-weight: 700; color: #fff; }
.price-amount { margin: 1.5rem 0; }
.price-amount .text-gradient { font-family: var(--font-display); font-weight: 700; font-size: 3rem; line-height: 1; }
.price-unit { color: var(--muted); margin-left: .5rem; }
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: .5rem; font-size: .9rem; }
.feature-list .has { color: var(--text); }
.feature-list .hasnt { color: var(--muted); text-decoration: line-through; }

/* ============= CONTACT ============= */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-big { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--text); display: block; margin: .4rem 0; }
.contact-big a { color: var(--text); }
.contact-big a:hover { color: var(--primary); }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.contact-form h2 { margin-top: 0; }
.contact-form .form-row { margin-bottom: 1rem; }
.contact-form .form-row-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-form .form-row-2 { grid-template-columns: 1fr 1fr; } }
.contact-form label { display: block; font-size: .85rem; color: var(--muted); font-weight: 600; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: .3rem; padding: .75rem .95rem; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: .95rem; font-family: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }

/* ============= YOUR CONTACT ============= */
.your-contact { display: grid; grid-template-columns: 1fr; gap: 2rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
@media (min-width: 768px) { .your-contact { grid-template-columns: 5fr 7fr; padding: 2.5rem; } }
.your-contact-photo img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; width: 100%; }

/* ============= ARTICLES ============= */
.article-card { display: block; color: var(--text); }
.article-date { font-size: .8rem; color: var(--muted); }
.article-card h3 { margin: .6rem 0 .5rem; }
.article-card p { color: var(--muted); font-size: .92rem; }
.article-content { max-width: 48rem; margin: 0 auto; }
.article-content h2 { margin-top: 2.5rem; }
.article-content h3 { margin-top: 1.8rem; }
.article-content p { color: var(--text); line-height: 1.75; }
.article-content ul, .article-content ol { color: var(--text); line-height: 1.75; }
.article-content blockquote { border-left: 3px solid var(--primary); padding-left: 1rem; color: var(--muted); margin: 1.5rem 0; }
.article-content code { background: var(--surface); padding: .15rem .4rem; border-radius: 4px; font-size: .9em; }
.article-page { max-width: 50rem; }
.article-meta { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }
.article-lead { font-size: 1.2rem; }
.article-cta { margin-top: 3rem; padding: 2rem; background: var(--card); border-radius: var(--radius-lg); text-align: center; }

/* ============= BREADCRUMBS ============= */
.breadcrumbs { font-size: .85rem; padding: .9rem 0; color: var(--muted); border-bottom: 1px solid var(--border); }
.breadcrumbs ol { list-style: none; padding-left: 1.25rem; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span[aria-current] { color: var(--text); }

/* ============= FOOTER ============= */
.site-footer { border-top: 1px solid var(--border); background: var(--surface); margin-top: 5rem; padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; } }
.footer-col h4 { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text); margin-bottom: .8rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.footer-col a { color: var(--muted); font-size: .9rem; }
.footer-col a:hover { color: var(--primary); }
.footer-tag { font-size: .9rem; color: var(--muted); margin-top: 1rem; }
.footer-contact li { color: var(--muted); font-size: .9rem; }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.2rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; align-items: center; font-size: .8rem; color: var(--muted); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ============= CALLBACK WIDGET ============= */
.callback-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 56px; height: 56px; border-radius: 50%; background: var(--gradient); color: #fff; border: none; cursor: pointer; box-shadow: var(--shadow-lg); z-index: 49; display: none; align-items: center; justify-content: center; }
.callback-fab:hover { transform: scale(1.05); }
@media (min-width: 1024px) { .callback-fab { display: flex; } }
.callback-modal { position: fixed; bottom: 5.5rem; right: 1.5rem; width: 320px; background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-lg); z-index: 50; }
.callback-modal[hidden] { display: none; }
.callback-close { position: absolute; top: .6rem; right: .8rem; background: none; border: none; color: var(--muted); font-size: 1.4rem; cursor: pointer; }
.callback-eyebrow { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--success); font-weight: 700; margin: 0 0 .3rem; }
.callback-modal h3 { font-size: 1rem; margin: 0 0 .3rem; }
.callback-modal input[type=tel] { width: 100%; margin: .8rem 0; padding: .65rem .9rem; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; color: var(--text); }

/* ============= MOBILE CALL BAR ============= */
.mobile-call-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; padding: .5rem; padding-bottom: calc(.5rem + env(safe-area-inset-bottom)); background: rgba(10,14,26,.97); backdrop-filter: blur(12px); border-top: 1px solid var(--border-2); display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
@media (min-width: 1024px) { .mobile-call-bar { display: none; } }
.mobile-call-bar .btn { padding: .85rem .5rem; font-size: .9rem; }

/* ============= PERSON CARD ============= */
.person-card { display: flex; flex-direction: column; gap: .5rem; }
.person-card img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }

/* ============= HERO MEDIA (consultant photo + badge) ============= */
.hero-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-2); margin-bottom: 1rem; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-media-badge { position: absolute; left: 1rem; bottom: 1rem; display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .85rem; background: rgba(10,14,26,.7); backdrop-filter: blur(8px); border: 1px solid rgba(34,211,238,.35); border-radius: 999px; font-size: .82rem; color: #fff; font-weight: 500; }
.hero-media-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; }
.hero-media-badge .sep { color: var(--muted); margin: 0 .2rem; }
.hero-media-badge .muted { color: var(--muted); }

/* ============= PILL GROUP (fleet selector) ============= */
.pill-group { display: grid; grid-template-columns: repeat(4, 1fr); gap: .4rem; margin-top: .35rem; }
.pill { padding: .55rem .4rem; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-weight: 600; font-size: .9rem; cursor: pointer; transition: all .15s ease; text-align: center; font-family: inherit; }
.pill:hover { border-color: var(--primary); color: var(--primary-2); }
.pill[aria-pressed="true"] { background: var(--gradient); border-color: transparent; color: #0a0e1a; box-shadow: 0 0 20px var(--primary-glow); }
