*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); font-size: var(--text-base); line-height: 1.6; color: var(--text); background: var(--bg); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition-fast) var(--ease); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; border: none; background: none; }
button { cursor: pointer; }
address { font-style: normal; }
:root {
  --c1: #0f172a; --c2: #0d9488; --c3: #115e59; --c4: #5eead4; --c5: #f0fdfa;
  --c6: #f59e0b; --c7: #22c55e; --c8: #e2e8f0; --c9: #64748b; --c10: #ffffff;
  --text: var(--c1); --text-muted: var(--c9); --text-inverse: var(--c10);
  --bg: var(--c10); --bg-alt: var(--c5);
  --accent: var(--c2); --accent-dark: var(--c3); --accent-light: var(--c4);
  --danger: #ef4444; --warning: var(--c6); --success: var(--c7); --border: var(--c8);
  --glass-bg: rgba(13,148,136,.06); --glass-border: rgba(13,148,136,.12);
  --font: 'Inter', system-ui, -apple-system, sans-serif; --font-display: 'Space Grotesk', system-ui, sans-serif;
  --text-xs: clamp(.75rem,.7rem + .25vw,.875rem); --text-sm: clamp(.875rem,.825rem + .25vw,1rem);
  --text-base: clamp(1rem,.95rem + .25vw,1.125rem); --text-lg: clamp(1.125rem,1.05rem + .375vw,1.25rem);
  --text-xl: clamp(1.25rem,1.1rem + .75vw,1.5rem); --text-2xl: clamp(1.5rem,1.2rem + 1.5vw,2.25rem);
  --text-3xl: clamp(2rem,1.5rem + 2.5vw,3rem); --text-4xl: clamp(2.5rem,1.8rem + 3.5vw,4rem);
  --space-xs: .5rem; --space-sm: 1rem; --space-md: 1.5rem; --space-lg: 2rem; --space-xl: 3rem; --space-2xl: 5rem;
  --space-section: clamp(4rem,3rem + 5vw,8rem);
  --radius-sm: .375rem; --radius-md: .75rem; --radius-lg: 1rem; --radius-xl: 1.5rem; --radius-full: 50%;
  --ease: cubic-bezier(.4,0,.2,1); --ease-out: cubic-bezier(0,0,.2,1); --ease-in-out: cubic-bezier(.4,0,.2,1);
  --transition-fast: 150ms; --transition-med: 300ms;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.06); --shadow-md: 0 4px 12px rgba(15,23,42,.08); --shadow-lg: 0 8px 30px rgba(15,23,42,.1);
  --nav-height: 4rem; --hero-mid: #0a1e05; --hero-deep: #060f02;
  --hero-glow-rgb: 57, 255, 20; --hero-accent: #39ff14; --hero-particle: #7fff00;
  --danger-bg-from: #1a0a0a; --danger-bg-to: #2a1515; --transition-xl: 600ms;
}
.container { width: min(90%, 1200px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100%; left: 50%; transform: translateX(-50%); z-index: 9999; padding: var(--space-xs) var(--space-md); background: var(--accent); color: var(--text-inverse); border-radius: var(--radius-md); font-weight: 600; transition: top var(--transition-fast) var(--ease); }
.skip-link:focus { top: var(--space-sm); color: var(--text-inverse); }
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 1001; background: transparent; }
.scroll-progress__bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-light)); transition: width 50ms linear; }
.nav { position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height); z-index: 1000; background: rgba(255,255,255,.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: background var(--transition-med) var(--ease), box-shadow var(--transition-med) var(--ease); }
.nav--scrolled { background: rgba(255,255,255,.95); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; width: min(90%, 1200px); margin-inline: auto; }
.nav__logo { display: flex; align-items: center; text-decoration: none; }
.nav__logo img { height: 2rem; width: auto; }
.nav__menu { display: flex; align-items: center; gap: var(--space-lg); margin: 0 auto; }
.nav__menu a { color: var(--text); font-size: var(--text-sm); font-weight: 500; position: relative; padding: var(--space-xs) 0; }
.nav__menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width var(--transition-med) var(--ease); }
.nav__menu a:focus-visible::after { width: 100%; }
.nav__menu a:focus-visible { color: var(--accent); }
.nav__cta { background: var(--accent) !important; color: var(--text-inverse) !important; padding: var(--space-xs) var(--space-md) !important; border-radius: var(--radius-md); transition: background var(--transition-fast) var(--ease), transform var(--transition-fast) var(--ease) !important; }
.nav__cta::after { display: none !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 28px; height: 20px; padding: 0; }
.nav__toggle span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: var(--radius-sm); transition: transform var(--transition-med) var(--ease), opacity var(--transition-fast) var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero, .cta-band { background: linear-gradient(160deg, var(--c1) 0%, var(--hero-mid) 50%, var(--hero-deep) 100%); position: relative; overflow: hidden; }
.hero { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl); }
.hero__particles, .cta-band__particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__particles span, .cta-band__particles span { position: absolute; bottom: -20px; left: var(--x); width: var(--size); height: var(--size); background: radial-gradient(circle, var(--hero-particle), rgba(var(--hero-glow-rgb), 0)); border-radius: var(--radius-full); box-shadow: 0 0 calc(var(--size) * 2) rgba(var(--hero-glow-rgb),.5); animation: radon-float var(--duration) var(--delay) infinite; opacity: 0; }
@keyframes radon-float { 0% { transform: translateY(0) scale(0.5); opacity: 0; } 8% { opacity: var(--max-opacity); } 85% { opacity: var(--max-opacity); } 100% { transform: translateY(-100vh) scale(1.2); opacity: 0; } }
.hero__glow { position: absolute; top: 50%; left: 50%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(var(--hero-glow-rgb),.12) 0%, transparent 70%); transform: translate(-50%, -50%); pointer-events: none; animation: glow-pulse 6s var(--ease-in-out) infinite; }
@keyframes glow-pulse { 0%, 100% { opacity: .5; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); } }
.hero__content { position: relative; z-index: 1; text-align: center; max-width: 800px; color: var(--text-inverse); }
.hero__badge { display: inline-block; padding: var(--space-xs) var(--space-md); background: rgba(var(--hero-glow-rgb),.08); border: 1px solid rgba(var(--hero-glow-rgb),.2); border-radius: var(--radius-xl); font-size: var(--text-xs); font-weight: 500; color: var(--accent-light); letter-spacing: .02em; margin-bottom: var(--space-lg); }
.hero__title { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 700; line-height: 1.1; margin-bottom: var(--space-md); }
.hero__highlight { background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--c7)); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradient-shift 4s var(--ease-in-out) infinite; }
@keyframes gradient-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero__subtitle { font-size: var(--text-xl); opacity: .85; margin-bottom: var(--space-xl); max-width: 600px; margin-inline: auto; line-height: 1.5; }
.hero__actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-2xl); }
.hero__trust { display: flex; gap: var(--space-xl); justify-content: center; flex-wrap: wrap; padding-top: var(--space-xl); border-top: 1px solid rgba(255,255,255,.1); }
.hero__trust-item { text-align: center; }
.hero__trust-item strong { display: block; font-family: var(--font-display); font-size: var(--text-lg); color: var(--accent-light); }
.hero__trust-item span { font-size: var(--text-xs); opacity: .6; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: var(--space-sm) var(--space-lg); font-weight: 600; font-size: var(--text-sm); border-radius: var(--radius-md); transition: all var(--transition-med) var(--ease); position: relative; overflow: hidden; min-height: 48px; isolation: isolate; }
.btn--primary { background: var(--accent); color: var(--text-inverse); box-shadow: 0 4px 14px rgba(13,148,136,.3); }
.btn--ghost { border: 1px solid rgba(255,255,255,.3); color: var(--text-inverse); }
.btn--ghost-hero { border: 2px solid rgba(var(--hero-glow-rgb),.4); background: rgba(var(--hero-glow-rgb),.06); color: var(--hero-accent); box-shadow: 0 0 20px rgba(var(--hero-glow-rgb),.15), inset 0 0 20px rgba(var(--hero-glow-rgb),.05); }
.btn--outline { border: 2px solid var(--accent); color: var(--accent); }
.btn--sm { padding: var(--space-xs) var(--space-md); min-height: 40px; font-size: var(--text-xs); }
.btn--full { width: 100%; }
.btn--shimmer::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); transition: none; z-index: -1; }
.section { padding: var(--space-section) 0; }
.section--alt { background: var(--bg-alt); }
.section__header { text-align: center; max-width: 650px; margin: 0 auto var(--space-2xl); }
.section__tag { display: inline-block; font-size: var(--text-xs); font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--space-sm); }
.section__title { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; line-height: 1.15; color: var(--text); }
.section__desc { font-size: var(--text-lg); color: var(--text-muted); margin-top: var(--space-sm); line-height: 1.6; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.about__text p { margin-bottom: var(--space-md); color: var(--text-muted); line-height: 1.7; }
.about__text p strong { color: var(--text); }
.about__credentials { margin-top: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-sm); }
.credential { display: flex; align-items: flex-start; gap: var(--space-sm); padding: var(--space-sm) var(--space-md); background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-md); }
.credential svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.credential strong { display: block; font-size: var(--text-sm); }
.credential span { font-size: var(--text-xs); color: var(--text-muted); }
.about__image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about__image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; }
.image-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-sm); aspect-ratio: 3/2; background: linear-gradient(135deg, var(--bg-alt), var(--bg)); border: 2px dashed var(--border); color: var(--text-muted); }
.image-placeholder span { font-size: var(--text-sm); font-weight: 500; }
.services-list, .pricing-list, .team-list { max-width: 800px; margin-inline: auto; }
.service-row, .pricing-row, .team-row { display: grid; grid-template-columns: 1fr auto; padding: var(--space-md) 0; border-bottom: 1px solid var(--border); }
.service-row { gap: var(--space-xs) var(--space-lg); align-items: baseline; }
.service-row:last-child, .team-row:last-child { border-bottom: none; }
.service-row h3 { font-family: var(--font-display); font-size: var(--text-lg); grid-column: 1; margin: 0; }
.service-row p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; grid-column: 1; margin: 0; }
.service-row__price { font-family: var(--font-display); font-weight: 600; color: var(--accent); font-size: var(--text-sm); grid-column: 2; grid-row: 1 / 3; align-self: center; white-space: nowrap; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.why-card { padding: var(--space-xl); border-radius: var(--radius-lg); display: flex; flex-direction: column; justify-content: center; }
.why-card--danger { background: linear-gradient(135deg, var(--danger-bg-from), var(--danger-bg-to)); color: var(--text-inverse); border: 1px solid rgba(239,68,68,.2); }
.why-card--danger h3 { font-family: var(--font-display); font-size: var(--text-2xl); margin-bottom: var(--space-sm); }
.why-card--danger > p { opacity: .8; line-height: 1.7; }
.who-cite { margin: var(--space-md) 0; padding: var(--space-md) var(--space-lg); border-left: 3px solid var(--danger); background: rgba(255,255,255,.04); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.who-cite p { font-size: var(--text-base); font-style: italic; opacity: .95; line-height: 1.6; margin: 0; }
.who-cite cite { display: block; margin-top: var(--space-xs); font-size: var(--text-xs); font-style: normal; font-weight: 600; opacity: .6; letter-spacing: .02em; }
.radon-levels { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-lg); }
.radon-level { display: flex; align-items: center; gap: var(--space-md); padding: var(--space-sm) var(--space-md); border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.1); }
.radon-level__dot { width: 10px; height: 10px; border-radius: var(--radius-full); flex-shrink: 0; }
.radon-level strong { display: block; font-family: var(--font-display); font-size: var(--text-sm); }
.radon-level p { font-size: var(--text-xs); opacity: .7; margin: 0; }
.radon-level--low { background: rgba(34,197,94,.1); transition-delay: 0ms; }
.radon-level--low strong { color: var(--c7); }
.radon-level--low .radon-level__dot { background: var(--c7); box-shadow: 0 0 8px var(--c7); }
.radon-level--mid { background: rgba(245,158,11,.1); transition-delay: 200ms; }
.radon-level--mid strong { color: var(--c6); }
.radon-level--mid .radon-level__dot { background: var(--c6); box-shadow: 0 0 8px var(--c6); }
.radon-level--high { background: rgba(239,68,68,.12); transition-delay: 400ms; }
.radon-level--high strong { color: var(--danger); }
.radon-level--high .radon-level__dot { background: var(--danger); box-shadow: 0 0 8px var(--danger); }
.radon-level.reveal { transform: translateX(-20px); }
.radon-level.reveal.visible { transform: translateX(0); }
.why-stats { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
.stat-card { padding: var(--space-lg); background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); text-align: center; transition: border-color var(--transition-med) var(--ease); }
.stat-card__number { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; color: var(--accent); }
.stat-card__unit { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--accent); opacity: .7; }
.stat-card p { font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--space-xs); }
.why-law { display: flex; align-items: flex-start; gap: var(--space-lg); padding: var(--space-lg) var(--space-xl); background: linear-gradient(135deg, rgba(245,158,11,.08), rgba(245,158,11,.02)); border: 1px solid rgba(245,158,11,.2); border-radius: var(--radius-lg); }
.why-law__icon { flex-shrink: 0; color: var(--warning); }
.why-law h3 { font-family: var(--font-display); font-size: var(--text-xl); margin-bottom: var(--space-xs); }
.why-law p { color: var(--text-muted); line-height: 1.7; }
.cta-band { padding: var(--space-2xl) 0; color: var(--text-inverse); }
.cta-band::before { content: ''; position: absolute; top: 50%; left: 50%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--hero-glow-rgb),.1) 0%, transparent 70%); transform: translate(-50%, -50%); pointer-events: none; animation: glow-pulse 6s var(--ease-in-out) infinite; }
.cta-band .container { display: flex; align-items: center; justify-content: center; gap: var(--space-xl); flex-wrap: wrap; text-align: center; position: relative; z-index: 1; }
.cta-band__text { font-size: var(--text-2xl); font-family: var(--font-display); font-weight: 700; }
.pricing-row { gap: var(--space-xs) var(--space-xl); align-items: center; }
.pricing-row:last-of-type { border-bottom: none; }
.pricing-row__info h3 { font-family: var(--font-display); font-size: var(--text-lg); margin: 0; display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; }
.pricing-row__info p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.5; margin: 0; }
.pricing-row__badge { font-size: var(--text-xs); font-weight: 600; background: var(--accent); color: var(--text-inverse); padding: 2px var(--space-xs); border-radius: var(--radius-sm); text-transform: uppercase; letter-spacing: .04em; }
.pricing-row__price { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--accent); white-space: nowrap; text-align: right; }
.pricing-row__price span { display: block; font-size: var(--text-xs); font-weight: 400; color: var(--text-muted); opacity: .8; }
.pricing-row--featured { background: var(--glass-bg); border-radius: var(--radius-md); padding: var(--space-md); margin: 0 calc(var(--space-md) * -1); border-bottom: none; }
.pricing-cta { display: flex; gap: var(--space-md); justify-content: center; padding-top: var(--space-xl); }
.reviews-sources { display: flex; justify-content: center; gap: var(--space-2xl); margin-bottom: var(--space-xl); }
.review-source { text-align: center; }
.review-source__stars { font-size: var(--text-2xl); color: var(--c6); letter-spacing: 3px; }
.review-source__score { display: block; font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--text); }
.review-source__label { font-size: var(--text-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.review-source__label a { font-weight: 600; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); margin-bottom: var(--space-xl); }
.review-card { padding: var(--space-lg); background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); position: relative; }
.review-card p { font-size: var(--text-base); font-style: italic; line-height: 1.7; color: var(--text); margin: 0 0 var(--space-sm); }
.review-card cite { font-size: var(--text-xs); font-style: normal; font-weight: 600; color: var(--text-muted); }
.review-card cite span { font-weight: 400; opacity: .7; }
.reviews-grid .reveal:nth-child(2) { transition-delay: 150ms; }
.reviews-grid .reveal:nth-child(3) { transition-delay: 300ms; }
.reviews-links { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
.team-row { gap: var(--space-xs) var(--space-xl); align-items: center; }
.team-row__role { display: block; font-size: var(--text-xs); font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .05em; }
.team-row__info h3 { font-family: var(--font-display); font-size: var(--text-lg); margin: 0; }
.team-row__info p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.5; margin: 0; }
.team-row__contact { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.team-row__contact a { font-size: var(--text-sm); font-weight: 500; white-space: nowrap; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--space-2xl); align-items: start; }
.contact-form, .contact-info { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.contact-form { padding: var(--space-xl); }
.form-required-note { font-size: var(--text-xs); color: var(--text-muted); margin-bottom: var(--space-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-field { margin-bottom: var(--space-md); }
.form-field label { display: block; font-size: var(--text-sm); font-weight: 500; margin-bottom: var(--space-xs); }
.form-field label span { color: var(--danger); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: var(--space-sm) var(--space-md); background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); font-size: var(--text-base); transition: border-color var(--transition-fast) var(--ease), box-shadow var(--transition-fast) var(--ease); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(13,148,136,.15); }
.form-field--invalid input, .form-field--invalid select, .form-field--invalid textarea { border-color: var(--danger); }
.form-field__error { display: none; font-size: var(--text-xs); color: var(--danger); margin-top: 4px; }
.form-field--invalid .form-field__error { display: block; }
.form-field--checkbox { display: flex; align-items: flex-start; gap: var(--space-xs); }
.form-field--checkbox input { width: auto; margin-top: 3px; }
.form-field--checkbox label { margin-bottom: 0; }
.form-status { margin-top: var(--space-md); padding: var(--space-sm) var(--space-md); border-radius: var(--radius-md); font-size: var(--text-sm); display: none; }
.form-status--success { display: block; background: rgba(34,197,94,.1); color: var(--success); border: 1px solid rgba(34,197,94,.2); }
.form-status--error { display: block; background: rgba(239,68,68,.1); color: var(--danger); border: 1px solid rgba(239,68,68,.2); }
.contact-info { padding: var(--space-lg); }
.contact-info__row { padding: var(--space-sm) 0; border-bottom: 1px solid var(--border); }
.contact-info__row:last-child { border-bottom: none; }
.contact-info__row h3 { font-family: var(--font-display); font-size: var(--text-xs); color: var(--text-muted); margin: 0 0 2px; text-transform: uppercase; letter-spacing: .05em; }
.contact-info__row div, .contact-info__row address { font-size: var(--text-sm); color: var(--text); line-height: 1.7; }
.contact-info__row a { font-weight: 500; }
.contact-info__row span { font-size: var(--text-xs); color: var(--text-muted); margin-left: var(--space-xs); }
.contact-info__phones, .contact-info__details { display: flex; flex-direction: column; gap: 2px; }
.contact-info__phones div { display: flex; align-items: baseline; gap: var(--space-xs); }
.contact-info__details div { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.5; }
.contact-info__fb { display: inline-flex; align-items: center; gap: var(--space-xs); }
.contact-info__fb svg { flex-shrink: 0; }
.footer { background: var(--c1); color: var(--text-inverse); padding: var(--space-2xl) 0 var(--space-lg); }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: var(--space-xl); border-bottom: 1px solid rgba(255,255,255,.1); gap: var(--space-xl); }
.footer__logo { height: 2rem; width: auto; }
.footer__brand p { font-size: var(--text-sm); opacity: .6; margin-top: var(--space-xs); max-width: 300px; }
.footer__links { display: flex; gap: var(--space-lg); flex-wrap: wrap; }
.footer__links a { color: rgba(255,255,255,.6); font-size: var(--text-sm); }
.footer__legal { padding: var(--space-lg) 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: var(--text-xs); opacity: .5; line-height: 1.7; }
.footer__legal p { margin-bottom: var(--space-xs); }
.footer__legal p:last-child { margin-bottom: 0; }
.footer__legal a, .footer__bottom a { color: var(--accent-light); }
.footer__legal a { text-decoration: underline; }
.footer__bottom { display: flex; justify-content: space-between; padding-top: var(--space-lg); font-size: var(--text-xs); opacity: .5; }
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 1100; background: var(--bg); border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,.1); padding: var(--space-md); }
.cookie-banner__inner { width: min(90%, 1200px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); flex-wrap: wrap; }
.cookie-banner__inner p { font-size: var(--text-sm); color: var(--text-muted); flex: 1; min-width: 250px; }
.cookie-banner__actions { display: flex; gap: var(--space-sm); }
.scroll-up { position: fixed; bottom: var(--space-lg); right: var(--space-lg); width: 48px; height: 48px; z-index: 900; display: flex; align-items: center; justify-content: center; background: var(--accent); color: var(--text-inverse); border-radius: var(--radius-full); box-shadow: var(--shadow-md); transition: opacity var(--transition-med) var(--ease), transform var(--transition-med) var(--ease), background var(--transition-fast) var(--ease); opacity: 0; transform: translateY(20px); pointer-events: none; }
.scroll-up[hidden] { display: flex; }
.scroll-up.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
button:focus:not(:focus-visible), a:focus:not(:focus-visible) { outline: none; }
@media (hover: hover) {
  a:hover { color: var(--accent-dark); }
  .nav__menu a:hover::after, .nav__menu a:focus-visible::after { width: 100%; }
  .nav__menu a:hover { color: var(--accent); }
  .nav__cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }
  .btn--primary:hover { background: var(--accent-dark); color: var(--text-inverse); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,148,136,.4); }
  .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: var(--text-inverse); }
  .btn--ghost-hero:hover { border-color: var(--hero-accent); background: rgba(var(--hero-glow-rgb),.12); box-shadow: 0 0 30px rgba(var(--hero-glow-rgb),.3); color: var(--hero-accent); }
  .btn--outline:hover { background: var(--accent); color: var(--text-inverse); }
  .btn--shimmer:hover::before { left: 100%; transition: left var(--transition-xl) var(--ease); }
  .stat-card:hover { border-color: var(--accent); }
  .footer__links a:hover { color: var(--accent-light); }
  .scroll-up:hover { background: var(--accent-dark); transform: translateY(-2px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__menu { position: fixed; top: var(--nav-height); left: 0; width: 100%; flex-direction: column; gap: 0; background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); max-height: 0; overflow: hidden; transition: max-height var(--transition-med) var(--ease); }
  .nav__menu.open { max-height: 100vh; }
  .nav__menu li { width: 100%; }
  .nav__menu a { display: block; padding: var(--space-md) var(--space-lg) !important; border-bottom: 1px solid var(--border); }
  .nav__menu a::after { display: none; }
  .nav__cta { border-radius: 0 !important; text-align: center; }
  .about-grid, .service-row, .why-grid, .pricing-row, .contact-grid, .reviews-grid, .team-row { grid-template-columns: 1fr; }
  .about__image, .contact-info { order: -1; }
  .why-card { padding: var(--space-lg); }
  .why-card--danger h3 { font-size: var(--text-xl); }
  .who-cite { padding: var(--space-sm) var(--space-md); }
  .who-cite p { font-size: var(--text-sm); }
  .why-law { flex-direction: column; gap: var(--space-sm); padding: var(--space-md); }
  .pricing-row__price { text-align: left; }
  .reviews-grid { max-width: 500px; margin-inline: auto; margin-bottom: var(--space-xl); }
  .team-row__contact { align-items: flex-start; }
  .footer__inner, .footer__bottom { flex-direction: column; }
  .footer__bottom { gap: var(--space-xs); text-align: center; }
}
@media (max-width: 680px) {
  .hero__title { font-size: clamp(2rem, 1.5rem + 3vw, 3rem); }
  .hero__trust { flex-direction: column; gap: var(--space-md); }
  .service-row__price { grid-column: 1; grid-row: auto; }
  .form-row { grid-template-columns: 1fr; }
  .why-card { padding: var(--space-md); }
  .who-cite { padding: var(--space-xs) var(--space-sm); }
  .stat-card { padding: var(--space-md); }
  .cta-band .container { flex-direction: column; }
  .footer__links { flex-direction: column; gap: var(--space-sm); }
}
@supports(padding:env(safe-area-inset-bottom)){
  .footer__bottom{padding-bottom:env(safe-area-inset-bottom)}
  .cookie-banner{padding-bottom:calc(var(--space-md) + env(safe-area-inset-bottom))}
  .scroll-up{bottom:calc(var(--space-lg) + env(safe-area-inset-bottom))}}
@media print {
  .nav,.cookie-banner,.scroll-up,.scroll-progress,.hero__particles,.hero__glow,.cta-band,.btn--shimmer::before{display:none!important}
  .hero{min-height:auto;background:none;color:var(--text);padding:var(--space-lg) 0}
  .reveal{opacity:1;transform:none} body{font-size:12pt}
}
