/* ============================================================
   SENECA SECURITY — Design System
   ============================================================ */

:root {
  --bg:          #080a0f;
  --bg-2:        #0e1118;
  --bg-3:        #141720;
  --border:      rgba(255,255,255,0.07);
  --border-h:    rgba(255,255,255,0.13);
  --text:        #e8edf5;
  --text-muted:  #7a8599;
  --text-subtle: #4a5568;
  --accent:      #1d7bff;
  --accent-dim:  rgba(29,123,255,0.12);
  --accent-glow: rgba(29,123,255,0.25);
  --white:       #ffffff;
  --nav-h:       72px;
  --r:           12px;
  --r-lg:        20px;
  --sans:        'Inter', system-ui, -apple-system, sans-serif;
  --mono:        'JetBrains Mono', 'Fira Code', monospace;
}

/* ── SKIP LINK ── */
.skip-link { position: fixed; top: 1rem; left: 1rem; z-index: 9999; transform: translateY(calc(-100% - 2rem)); padding: .75rem 1.25rem; background: var(--accent); color: #fff; border-radius: 8px; font-weight: 600; font-size: .9rem; transition: transform .15s ease; }
.skip-link:focus { transform: translateY(0); }

/* ── FOCUS VISIBLE ── */
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
a:focus-visible, button:focus-visible { border-radius: 4px; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.25; letter-spacing: -0.02em; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
p  { color: var(--text-muted); line-height: 1.75; }
.eyebrow { font-family: var(--mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; display: block; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.6rem; border-radius: 8px; font-size: .9rem; font-weight: 600; letter-spacing: -.01em; transition: all .2s ease; white-space: nowrap; }
.btn-primary { background: #0060df; color: #fff; box-shadow: 0 0 24px var(--accent-glow); }
.btn-primary:hover { background: #1d7bff; box-shadow: 0 0 36px var(--accent-glow); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-h); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.btn-ghost { background: transparent; color: var(--accent); padding-left: 0; }
.btn-ghost:hover { gap: .75rem; }

/* ── NAVIGATION ── */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 1000; display: flex; align-items: center; padding: 0 1.5rem; transition: all .3s ease; }
.nav.scrolled { background: rgba(8,10,15,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--text-muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; margin-left: .35rem; vertical-align: middle; opacity: .5; }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r); padding: .5rem; min-width: 210px; opacity: 0; pointer-events: none; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.dropdown::before { content: ''; position: absolute; top: -1rem; left: 0; right: 0; height: 1rem; }
.has-dropdown:hover .dropdown, .dropdown.open { opacity: 1; pointer-events: all; visibility: visible; }
.dropdown a { display: block; padding: .6rem .9rem; border-radius: 8px; font-size: .85rem; color: var(--text-muted) !important; transition: all .15s; }
.dropdown a:hover { background: var(--bg-3); color: var(--text) !important; }
.nav-cta { margin-left: 1rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(8,10,15,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 1.5rem; z-index: 999; flex-direction: column; gap: .25rem; }
.nav-mobile.open { display: flex; }
.nav-mobile a { display: block; padding: .75rem .5rem; font-size: 1rem; font-weight: 500; color: var(--text-muted); border-bottom: 1px solid var(--border); transition: color .2s; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .btn { margin-top: 1rem; justify-content: center; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: var(--nav-h); }
.hero-bg { position: absolute; inset: 0; background: var(--bg); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .15; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,10,15,0.97) 0%, rgba(8,10,15,0.7) 60%, rgba(8,10,15,0.9) 100%); }
.hero-glow { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(29,123,255,0.1) 0%, transparent 70%); top: 5%; right: -15%; pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.badge { display: inline-flex; align-items: center; gap: .4rem; background: var(--accent-dim); border: 1px solid rgba(29,123,255,0.25); border-radius: 100px; padding: .3rem .85rem; font-size: .72rem; font-weight: 500; color: var(--accent); letter-spacing: .03em; }
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: bpulse 2.4s ease-in-out infinite; }
@keyframes bpulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent); }
.hero-desc { font-size: 1.1rem; max-width: 560px; margin-bottom: 2rem; color: #8a96a8; line-height: 1.75; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--border); }
.hero-stat-num { font-size: 1.9rem; font-weight: 700; color: var(--white); letter-spacing: -0.03em; line-height: 1; }
.hero-stat-lbl { font-size: .72rem; color: var(--text-muted); margin-top: .2rem; text-transform: uppercase; letter-spacing: .08em; }

/* ── CARDS ── */
.card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; transition: all .3s ease; }
.card:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.card-icon { width: 48px; height: 48px; background: var(--accent-dim); border: 1px solid rgba(29,123,255,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--accent); flex-shrink: 0; }
.card-icon svg { width: 22px; height: 22px; }

/* ── GRIDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.25rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.25rem; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.25rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: start; }
.learn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header p { margin-top: .75rem; max-width: 560px; }
.section-header.center p { margin: .75rem auto 0; }

/* ── DIVIDER ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border-h), transparent); }

/* ── REVIEWS ── */
.review-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; }
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: .75rem; }
.review-text { font-size: .875rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 1rem; }
.review-author { font-size: .82rem; font-weight: 600; color: var(--text); }
.review-role { font-size: .75rem; color: var(--text-subtle); margin-top: .1rem; }

/* ── PRICING ── */
.pricing-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; position: relative; transition: all .3s ease; }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 40px rgba(29,123,255,0.1); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .25rem .85rem; border-radius: 100px; white-space: nowrap; }
.pricing-tier { font-family: var(--mono); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.pricing-range { font-size: 2rem; font-weight: 700; color: var(--white); letter-spacing: -0.03em; line-height: 1; margin-bottom: .25rem; }
.pricing-cameras { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.pricing-features { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.pricing-feature { display: flex; align-items: center; gap: .65rem; font-size: .85rem; color: var(--text-muted); }
.check-icon { width: 16px; height: 16px; min-width: 16px; background: var(--accent-dim); border: 1px solid rgba(29,123,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-icon svg { width: 9px; height: 9px; color: var(--accent); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: .6rem; }
.faq-item { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.5rem; text-align: left; font-weight: 600; font-size: .92rem; color: var(--text); gap: 1rem; transition: background .2s; }
.faq-q:hover { background: var(--bg-3); }
.faq-icon { width: 20px; height: 20px; min-width: 20px; border: 1px solid var(--border-h); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s ease; color: var(--text-muted); font-size: 1rem; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent-dim); border-color: rgba(29,123,255,0.3); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; color: var(--text-muted); font-size: .875rem; line-height: 1.75; }

/* ── WHY US ── */
.why-item { padding: 1.75rem; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-lg); transition: all .3s ease; }
.why-item:hover { border-color: var(--border-h); }
.why-num { font-family: var(--mono); font-size: .6rem; letter-spacing: .2em; color: var(--accent); margin-bottom: .75rem; }
.why-item h3 { margin-bottom: .4rem; font-size: .95rem; font-weight: 600; letter-spacing: -0.01em; }
.why-item p { font-size: .85rem; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--bg-2) 0%, rgba(29,123,255,0.05) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5.5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(29,123,255,0.07) 0%, transparent 70%); pointer-events: none; }
.cta-band > .container { position: relative; }
.cta-band h2 { margin-bottom: .75rem; }
.cta-band > .container > p { margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.cta-phone { display: flex; align-items: center; gap: .5rem; color: var(--text-muted); font-size: .9rem; }

/* ── FOOTER ── */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .875rem; margin-top: .75rem; max-width: 260px; }
.footer-logo { height: 26px; width: auto; margin-bottom: .35rem; }
.footer-tagline { font-family: var(--mono); font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .75rem; }
.footer-col h3 { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; font-family: var(--mono); font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .875rem; color: var(--text-muted); transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; color: var(--text-muted); margin-bottom: .65rem; }
.footer-contact-item svg { min-width: 15px; margin-top: 3px; color: var(--accent); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; font-size: .78rem; color: var(--text-muted); flex-wrap: wrap; gap: 1rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-muted); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--text); }

/* ── PAGE HERO ── */
.page-hero { padding: calc(var(--nav-h) + 4rem) 0 4rem; background: var(--bg); position: relative; overflow: hidden; }
.page-hero-glow { position: absolute; width: 500px; height: 300px; background: radial-gradient(ellipse, rgba(29,123,255,0.08) 0%, transparent 70%); top: 0; right: 10%; pointer-events: none; }
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p.lead { font-size: 1.1rem; max-width: 600px; margin-top: .75rem; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 2rem; }
.about-value { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r); padding: 1.25rem; }
.about-value h5 { margin-bottom: .25rem; font-size: .9rem; }
.about-value p { font-size: .82rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-info-icon { width: 40px; height: 40px; min-width: 40px; background: var(--accent-dim); border: 1px solid rgba(29,123,255,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text-subtle); font-family: var(--mono); margin-bottom: .2rem; }
.contact-info-value { font-size: .95rem; color: var(--text); font-weight: 500; }
.contact-info-sub { font-size: .82rem; color: var(--text-muted); margin-top: .1rem; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .75rem; font-size: .85rem; margin-top: .5rem; }
.hours-day { color: var(--text-muted); }
.hours-time { color: var(--text); font-weight: 500; }

/* ── FORM ── */
.form-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .72rem; font-weight: 600; color: var(--text-muted); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .1em; }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px; padding: .75rem 1rem; color: var(--text); font-family: var(--sans); font-size: .9rem; transition: border-color .2s, box-shadow .2s; outline: 2px solid transparent; appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(29,123,255,0.1); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-subtle); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8599' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 10px; padding-right: 2.5rem; }
.form-select option { background: var(--bg-2); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; justify-content: center; margin-top: .25rem; padding: .9rem; font-size: 1rem; border-radius: 8px; }
.form-note { text-align: center; font-size: .75rem; color: var(--text-subtle); margin-top: .75rem; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .success-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* ── LEARN HUB ── */
.learn-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: all .3s ease; display: flex; flex-direction: column; }
.learn-card:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.learn-card-img { height: 200px; background: var(--bg-3); overflow: hidden; }
.learn-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.learn-card:hover .learn-card-img img { transform: scale(1.04); }
.learn-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.learn-category { font-family: var(--mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.learn-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.learn-card p { font-size: .85rem; flex: 1; }
.learn-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: .75rem; color: var(--text-subtle); }
.learn-card-link { color: var(--accent); font-weight: 600; font-size: .82rem; }
.category-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.chip { padding: .4rem .9rem; border-radius: 100px; font-size: .78rem; font-weight: 500; border: 1px solid var(--border); color: var(--text-muted); cursor: pointer; transition: all .2s; background: transparent; }
.chip:hover, .chip.active { background: var(--accent-dim); border-color: rgba(29,123,255,0.4); color: var(--accent); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── ARTICLE PROSE ── */
.article-hero { padding: calc(var(--nav-h) + 4rem) 0 3rem; border-bottom: 1px solid var(--border); }
.article-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.25rem; font-size: .8rem; font-family: var(--mono); color: var(--text-muted); }
.article-meta span { display: flex; align-items: center; gap: .4rem; }
.prose { max-width: 720px; margin: 0 auto; padding: 3.5rem 0 5rem; }
.prose h2 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 700; margin: 2.5rem 0 .75rem; padding-left: .875rem; border-left: 3px solid var(--accent); }
.prose h3 { font-size: 1.1rem; font-weight: 600; margin: 2rem 0 .5rem; color: var(--text); }
.prose p { margin: 0 0 1.25rem; line-height: 1.8; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.5rem; color: var(--text-muted); line-height: 1.8; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .4rem; }
.prose li::marker { color: var(--accent); }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { opacity: .8; }
.prose img { border-radius: var(--r); margin: 2rem auto; }
.prose .callout { background: var(--accent-dim); border: 1px solid rgba(29,123,255,0.2); border-radius: var(--r); padding: 1.25rem 1.5rem; margin: 1.75rem 0; }
.prose .callout p { margin: 0; color: var(--text); }
.prose .callout strong { color: var(--accent); }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* ── UTILS ── */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr}
  .about-grid{grid-template-columns:1fr;gap:3rem}
  .contact-grid{grid-template-columns:1fr;gap:3rem}
  .pricing-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .section{padding:4rem 0}
  .nav-links,.nav-cta{display:none}
  .nav-hamburger{display:flex}
  .hero-stats{gap:1.5rem}
  .footer-grid{grid-template-columns:1fr;gap:2rem}
  .form-row{grid-template-columns:1fr}
  .about-values{grid-template-columns:1fr}
  .cta-band{padding:3.5rem 0}
}
@media(max-width:480px){
  .hero-ctas{flex-direction:column}
  .btn{width:100%;justify-content:center}
  .form-card{padding:1.5rem}
  .footer-bottom{flex-direction:column;text-align:center}
}
