
:root {
  --ink: #161713;
  --paper: #eeeae0;
  --paper-light: #f7f4ec;
  --volt: #d7f237;
  --muted: #56544c;
  --display-font: 'Arial Narrow', 'Aptos Display', 'Roboto Condensed', Arial, sans-serif;
  --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --line: rgba(22, 23, 19, .17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body-font); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .13; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
}

.site-header { height: 82px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(24px, 5vw, 80px); border-bottom: 1px solid var(--line); position: absolute; inset: 0 0 auto; z-index: 20; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display-font); font-weight: 700; letter-spacing: -.02em; font-size: 22px; }
.brand b { font-weight: 900; }
.brand sup { color: #4e5c00; font-size: 13px; margin-left: 2px; vertical-align: top; }
.brand-mark { width: 35px; height: 35px; background: var(--ink); color: var(--volt); display: grid; place-items: center; transform: skew(-8deg); }
.brand-mark svg { transform: skew(8deg); }
.nav-links { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); font-size: 13px; font-weight: 700; }
.nav-links > a:not(.nav-cta) { position: relative; }
.nav-links > a:not(.nav-cta)::after { content: ''; position: absolute; height: 2px; background: var(--ink); inset: auto 0 -8px; transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav-links > a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; background: var(--ink); color: white; padding: 14px 19px; transition: transform .2s, background .2s; }
.nav-cta:hover { background: #292b25; transform: translateY(-2px); }
.menu-button { display: none; border: 0; background: transparent; cursor: pointer; }

.hero { min-height: 810px; height: 100svh; max-height: 960px; position: relative; overflow: hidden; display: grid; grid-template-columns: 55% 45%; padding: 150px clamp(24px, 5vw, 80px) 100px; }
.hero::after { content: ''; position: absolute; left: 55%; top: 82px; bottom: 0; border-left: 1px solid var(--line); }
.hero-copy { align-self: center; position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; letter-spacing: .17em; margin: 0 0 24px; }
.eyebrow span { width: 34px; height: 3px; background: var(--volt); }
h1, h2 { font-family: var(--display-font); font-weight: 900; letter-spacing: -.045em; line-height: .84; margin: 0; }
h1 { font-size: clamp(78px, 9vw, 150px); }
h1 em, h2 em { font-weight: 800; color: #5c5a52; }
.hero-lead { font-size: clamp(16px, 1.4vw, 20px); line-height: 1.7; max-width: 590px; margin: 38px 0 0; color: #4e4e48; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 40px; }
.button { border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 56px; padding: 0 24px; font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-3px); box-shadow: 0 8px 0 rgba(22,23,19,.12); }
.button-primary { background: var(--volt); color: var(--ink); }
.text-link { border: 0; background: transparent; display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: 13px; cursor: pointer; padding: 0; }
.text-link svg { transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }
.hero-visual { position: relative; z-index: 1; }
.hero-visual::before { content: ''; position: absolute; width: 44vw; height: 44vw; max-width: 650px; max-height: 650px; min-width: 460px; min-height: 460px; border: 1px solid var(--line); border-radius: 50%; top: 48%; left: 52%; transform: translate(-50%,-50%); }
.bolt { position: absolute; width: min(25vw, 320px); height: auto; top: 48%; left: 52%; transform: translate(-50%,-50%) rotate(4deg); filter: drop-shadow(22px 28px 0 rgba(22,23,19,.09)); animation: bolt-in .9s cubic-bezier(.16,1,.3,1) both; }
.bolt path { fill: var(--volt); stroke: var(--ink); stroke-width: 2px; }
@keyframes bolt-in { from { opacity: 0; transform: translate(-40%,-55%) rotate(12deg) scale(.75); } }
.orbit { position: absolute; border: 1px solid rgba(22,23,19,.25); border-radius: 50%; top: 48%; left: 52%; transform: translate(-50%,-50%) rotate(-20deg); }
.orbit-one { width: 42vw; max-width: 630px; height: 210px; }
.orbit-two { width: 190px; height: 41vw; max-height: 610px; }
.voltage { position: absolute; font-family: var(--display-font); font-weight: 900; color: rgba(22,23,19,.09); line-height: 1; }
.voltage-a { font-size: clamp(90px, 12vw, 180px); top: 17%; right: -3%; }
.voltage-a span { font-size: .35em; }
.voltage-b { font-size: clamp(100px, 16vw, 230px); bottom: 5%; left: 0; }
.status-chip { position: absolute; right: 2%; bottom: 16%; border: 1px solid var(--ink); padding: 10px 13px; font: 800 12px var(--body-font); letter-spacing: .08em; background: var(--paper); }
.status-chip span { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #69a92c; margin-right: 7px; box-shadow: 0 0 0 4px rgba(105,169,44,.15); }
.hero-proof { position: absolute; left: clamp(24px, 5vw, 80px); right: 45%; bottom: 0; height: 100px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3,1fr); align-items: center; }
.hero-proof div { display: flex; flex-direction: column; gap: 3px; border-right: 1px solid var(--line); padding-left: 20px; }
.hero-proof div:first-child { padding-left: 0; }
.hero-proof strong { font: 800 22px var(--display-font); }
.hero-proof span { color: var(--muted); font-size: 13px; }

.marquee { height: 58px; overflow: hidden; background: var(--volt); display: flex; align-items: center; white-space: nowrap; font: 800 18px var(--display-font); letter-spacing: .06em; }
.marquee div { display: flex; align-items: center; gap: 24px; min-width: max-content; animation: scroll 22s linear infinite; }
.marquee svg { width: 15px; fill: var(--ink); }
@keyframes scroll { to { transform: translateX(-35%); } }

.section { padding: 130px clamp(24px, 6vw, 100px); }
.section-heading { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 5vw; align-items: end; margin-bottom: 80px; }
.section-heading .eyebrow { align-self: start; }
.section-heading h2, .why h2, .contact h2 { font-size: clamp(58px, 6vw, 96px); }
.section-heading > p:last-child { color: var(--muted); line-height: 1.75; max-width: 420px; margin: 0; }
.service-list { border-top: 1px solid var(--line); }
.service-row { min-height: 160px; display: grid; grid-template-columns: 60px 80px 1.2fr 1.6fr 40px; gap: 25px; align-items: center; border-bottom: 1px solid var(--line); transition: background .25s, padding .25s; }
.service-row:hover, .service-row:focus-visible { background: var(--paper-light); padding: 0 24px; }
.service-number { font: 700 13px var(--body-font); color: var(--muted); }
.service-icon { width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid var(--line); }
.service-icon svg { width: 27px; }
.service-row h3 { font: 800 clamp(28px, 3vw, 42px) var(--display-font); margin: 0; }
.service-row p { color: var(--muted); line-height: 1.65; max-width: 510px; font-size: 14px; }
.service-arrow { transition: transform .25s; }
.service-row:hover .service-arrow { transform: translate(5px,-5px); }

.why { background: var(--ink); color: white; min-height: 760px; display: grid; grid-template-columns: 46% 54%; }
.why-art { position: relative; overflow: hidden; min-height: 640px; background: #20211d; border-right: 1px solid rgba(255,255,255,.12); }
.why-art::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size: 56px 56px; }
.giant-zap { position: absolute; width: 42%; height: auto; left: 29%; top: 20%; color: var(--volt); filter: drop-shadow(0 0 25px rgba(215,242,55,.18)); }
.cable { position: absolute; border: 2px solid rgba(215,242,55,.24); border-radius: 50%; }
.cable-a { width: 65%; height: 65%; left: -30%; top: 55%; }
.cable-b { width: 80%; height: 45%; right: -45%; top: -15%; }
.art-label { position: absolute; left: 9%; bottom: 8%; font: 700 13px var(--body-font); letter-spacing: .13em; color: rgba(255,255,255,.76); }
.why-copy { padding: 110px clamp(35px, 7vw, 110px); }
.eyebrow.light { color: rgba(255,255,255,.72); }
.why h2 em { color: var(--volt); }
.why-intro { color: rgba(255,255,255,.62); line-height: 1.75; font-size: 17px; max-width: 600px; margin: 34px 0 48px; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.benefit-grid > div { min-height: 170px; padding: 28px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.benefit-grid svg { width: 24px; height: 24px; padding: 5px; background: var(--volt); color: var(--ink); }
.benefit-grid h3 { font: 800 24px var(--display-font); margin: 20px 0 5px; }
.benefit-grid p { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.5; margin: 0; }

.process { background: var(--paper-light); }
.process-heading { grid-template-columns: 1fr 2.2fr; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-grid article { min-height: 310px; padding: 35px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; transition: background .25s; }
.process-grid article:hover { background: var(--volt); }
.process-grid span { font: 800 12px var(--body-font); }
.process-grid h3 { font: 800 33px var(--display-font); margin: 120px 0 12px; }
.process-grid p { color: var(--muted); font-size: 13px; line-height: 1.7; }

.contact { padding: 130px clamp(24px, 7vw, 120px); background: var(--volt); display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: center; }
.contact h2 em { color: rgba(22,23,19,.48); }
.contact-copy > p:not(.eyebrow) { max-width: 530px; line-height: 1.75; margin: 34px 0; }
.contact-note { display: flex; align-items: center; gap: 15px; font-size: 13px; line-height: 1.5; }
.contact-note > svg { width: 48px; height: 48px; padding: 12px; border: 1px solid var(--ink); }
.form-card { background: var(--paper-light); padding: clamp(28px, 4vw, 54px); box-shadow: 18px 18px 0 rgba(22,23,19,.16); }
.form-card form { display: grid; gap: 20px; }
.form-card label { display: grid; gap: 8px; font-size: 13px; font-weight: 800; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card input, .form-card select, .form-card textarea { width: 100%; border: 0; border-bottom: 1px solid #aaa79d; background: transparent; border-radius: 0; padding: 11px 2px; outline: none; font-size: 14px; transition: border .2s; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--ink); border-bottom-width: 2px; }
.form-card textarea { resize: vertical; }
.button-dark { background: var(--ink); color: white; width: 100%; margin-top: 8px; }
.button-dark:disabled { opacity: .65; cursor: wait; }
.form-privacy { text-align: center; font-size: 13px; color: var(--muted); margin: 0; }
.hidden-field { display: none; }
.form-error { background: #f4dddd; color: #812f2f; padding: 12px; font-size: 13px; margin: 0; }
.form-success { min-height: 460px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.form-success > div { width: 70px; height: 70px; display: grid; place-items: center; background: var(--volt); }
.form-success h3 { font: 900 48px var(--display-font); margin: 30px 0 12px; }
.form-success p { color: var(--muted); line-height: 1.7; margin: 0 0 30px; }

footer { background: var(--ink); color: white; padding: 70px clamp(24px, 6vw, 100px) 30px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: start; }
.footer-brand .brand-mark { background: var(--volt); color: var(--ink); }
footer > p { color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.7; margin: 0; }
.footer-links { display: flex; justify-content: flex-end; gap: 30px; font-size: 13px; font-weight: 700; }
.footer-bottom { grid-column: 1/-1; margin-top: 70px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.13); display: flex; justify-content: space-between; color: rgba(255,255,255,.74); font-size: 13px; letter-spacing: .12em; }

@media (max-width: 900px) {
  .site-header { height: 72px; }
  .menu-button { display: block; z-index: 2; }
  .nav-links { display: none; position: fixed; inset: 0; background: var(--volt); flex-direction: column; justify-content: center; gap: 34px; font: 800 28px var(--display-font); }
  .nav-links.is-open { display: flex; }
  .nav-cta { font-family: var(--body-font); font-size: 13px; }
  .hero { height: auto; max-height: none; min-height: 950px; display: block; padding-top: 130px; }
  .hero::after { display: none; }
  .hero-copy { max-width: 700px; }
  .hero-visual { height: 420px; margin-top: 20px; }
  .hero-visual::before { min-width: 380px; min-height: 380px; }
  .bolt { width: 170px; }
  .hero-proof { right: clamp(24px,5vw,80px); height: 90px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .service-row { grid-template-columns: 45px 65px 1fr 32px; padding: 25px 0; }
  .service-row p { grid-column: 3/5; margin: -15px 0 5px; }
  .service-arrow { grid-column: 4; grid-row: 1; }
  .why { grid-template-columns: 1fr; }
  .why-art { min-height: 520px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .brand { font-size: 19px; }
  .brand-mark { width: 31px; height: 31px; }
  .hero { min-height: 900px; padding-bottom: 90px; }
  h1 { font-size: clamp(66px, 21vw, 98px); }
  .hero-lead { font-size: 15px; margin-top: 28px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-visual { height: 350px; margin: 0 -20px; }
  .hero-visual::before { min-width: 320px; min-height: 320px; }
  .orbit-one { width: 390px; }
  .orbit-two { height: 360px; }
  .voltage-a { top: 12%; }
  .status-chip { bottom: 8%; right: 8%; }
  .hero-proof { height: 75px; left: 24px; right: 24px; }
  .hero-proof div { padding-left: 8px; }
  .hero-proof strong { font-size: 17px; }
  .hero-proof span { font-size: 13px; }
  .section { padding: 90px 24px; }
  .section-heading { margin-bottom: 50px; }
  .section-heading h2, .why h2, .contact h2 { font-size: 58px; }
  .service-row { grid-template-columns: 35px 52px 1fr 24px; gap: 12px; }
  .service-icon { width: 45px; height: 45px; }
  .service-row h3 { font-size: 28px; }
  .service-row p { font-size: 13px; }
  .why-art { min-height: 420px; }
  .why-copy { padding: 80px 24px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 230px; }
  .process-grid h3 { margin-top: 70px; }
  .contact { padding: 90px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; box-shadow: 10px 10px 0 rgba(22,23,19,.16); }
  footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { margin-top: 30px; gap: 20px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ELEKTROBLESK44 / GIFCOM contact and conversion additions */
.nav-links { gap: clamp(18px, 2.2vw, 36px); }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.nav-links > .nav-phone::after { background: var(--volt); }
.button-outline { border: 1px solid var(--ink); background: transparent; color: var(--ink); }
.hero-actions { gap: 18px; flex-wrap: wrap; }
.hero-contact-line { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 24px; color: var(--muted); font-size: 13px; font-weight: 700; }
.hero-contact-line a, .hero-contact-line span { display: inline-flex; align-items: center; gap: 7px; }
.hero-contact-line a:hover { color: var(--ink); }
.photo-tip { margin-top: 48px; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; padding: 24px; border: 1px solid var(--line); background: var(--paper-light); }
.photo-tip-icon { width: 54px; height: 54px; display: grid; place-items: center; background: var(--volt); }
.photo-tip-icon svg { width: 25px; }
.photo-tip strong { font: 800 22px var(--display-font); }
.photo-tip p { color: var(--muted); margin: 5px 0 0; font-size: 13px; line-height: 1.6; }
.photo-tip > a { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; border-bottom: 1px solid var(--ink); padding-bottom: 5px; white-space: nowrap; }
.safety-strip { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 24px clamp(24px, 6vw, 100px); background: var(--ink); color: white; }
.safety-strip > svg { flex: 0 0 auto; color: var(--volt); }
.safety-strip p { margin: 0; max-width: 1050px; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.66); }
.safety-strip strong { color: white; }
.direct-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 30px 0 18px; }
.direct-contacts a { display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: center; padding: 17px; border: 1px solid var(--ink); transition: background .2s, color .2s, transform .2s; }
.direct-contacts a:hover { background: var(--ink); color: white; transform: translateY(-2px); }
.direct-contacts a > span { grid-row: 1 / 3; width: 48px; height: 48px; display: grid; place-items: center; background: var(--ink); color: var(--volt); }
.direct-contacts a:hover > span { background: var(--volt); color: var(--ink); }
.direct-contacts small { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; opacity: .65; }
.direct-contacts strong { font: 800 20px var(--display-font); overflow-wrap: anywhere; }
.company-card { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: rgba(22,23,19,.09); }
.company-card > svg { flex: 0 0 auto; margin-top: 2px; }
.company-card > div { display: grid; gap: 3px; }
.company-card strong { font: 800 20px var(--display-font); }
.company-card span { font-size: 13px; line-height: 1.5; }
footer { grid-template-columns: 1.05fr 1.1fr 1.15fr .7fr; }
.footer-contact { display: grid; gap: 9px; color: rgba(255,255,255,.68); font-size: 13px; }
.footer-contact a, .footer-contact span { display: flex; gap: 8px; align-items: center; }
.footer-contact a:hover { color: var(--volt); }
.mobile-contact-bar { display: none; }

@media (max-width: 1100px) {
  .nav-phone { display: none; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .nav-phone { display: flex; }
  .nav-links > a:not(.nav-cta)::after { display: none; }
  .hero-actions { align-items: flex-start; }
  .photo-tip { grid-template-columns: auto 1fr; }
  .photo-tip > a { grid-column: 2; justify-self: start; }
  .direct-contacts { max-width: 640px; }
}

@media (max-width: 600px) {
  body { padding-bottom: 70px; }
  .hero-actions { gap: 13px; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-contact-line { align-items: flex-start; flex-direction: column; gap: 10px; }
  .photo-tip { grid-template-columns: 1fr; }
  .photo-tip > a { grid-column: 1; }
  .direct-contacts { grid-template-columns: 1fr; }
  .safety-strip { align-items: flex-start; }
  footer { grid-template-columns: 1fr; padding-bottom: 30px; }
  .footer-contact { margin: 8px 0; }
  .mobile-contact-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); border-top: 1px solid rgba(255,255,255,.14); padding: 8px; gap: 8px; }
  .mobile-contact-bar a { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--volt); color: var(--ink); font-size: 13px; font-weight: 800; }
  .mobile-contact-bar a:last-child { background: white; }
}

/* Audit 2026-07-20: accessibility, content and static-build corrections */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg { width: 1.25em; height: 1.25em; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 200; padding: 12px 16px; background: var(--ink); color: #fff; font-weight: 800; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid #0b5fff; outline-offset: 4px; }
body.menu-open { overflow: hidden; }
.menu-close-icon { display: none; }
.menu-button[aria-expanded="true"] .menu-open-icon { display: none; }
.menu-button[aria-expanded="true"] .menu-close-icon { display: block; }
.noscript-contact { font-size: 13px; font-weight: 800; }
.inline-link, .form-privacy a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.inline-link:hover, .form-privacy a:hover { color: var(--volt); }
.giant-zap { position: absolute; width: 42%; height: auto; left: 29%; top: 20%; color: var(--volt); filter: drop-shadow(0 0 25px rgba(215,242,55,.18)); }

.pricing-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; padding: 115px clamp(24px, 7vw, 120px); background: var(--volt); align-items: start; }
.pricing-section h2 { font-size: clamp(58px, 6vw, 96px); }
.pricing-section h2 em { color: #42452f; }
.pricing-copy { max-width: 720px; }
.pricing-copy > p { margin: 0; font-size: 17px; line-height: 1.75; }
.pricing-copy ul { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 12px; }
.pricing-copy li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-top: 1px solid rgba(22,23,19,.3); font-size: 14px; font-weight: 700; }
.pricing-copy li svg { flex: 0 0 auto; padding: 3px; background: var(--ink); color: var(--volt); }

.local-section { background: var(--paper-light); }
.local-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.local-tags span { border: 1px solid var(--ink); padding: 12px 16px; font-size: 13px; font-weight: 800; background: var(--paper); }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-grid details { border: 1px solid var(--line); background: var(--paper-light); padding: 20px 22px; }
.faq-grid summary { cursor: pointer; font-weight: 850; font-size: 15px; }
.faq-grid summary::marker { color: #4e5c00; }
.faq-grid p { color: var(--muted); line-height: 1.7; font-size: 14px; margin: 15px 0 0; }

.form-status { min-height: 20px; margin: 0; font-size: 13px; font-weight: 700; }
.form-status.is-error { background: #f4dddd; color: #6f1f1f; padding: 12px; }
.form-status.is-success { background: #e3edc5; color: #283000; padding: 12px; }
.form-privacy { font-size: 13px; line-height: 1.55; }
.form-card input, .form-card select, .form-card textarea { color: var(--ink); }
.form-card ::placeholder { color: #68665e; opacity: 1; }
.hidden-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.company-card span { font-size: 13px; }
.direct-contacts small { font-size: 13px; opacity: .8; }
.footer-bottom { font-size: 13px; }
.footer-links { flex-wrap: wrap; }
.footer-contact { color: rgba(255,255,255,.78); }
footer > p { color: rgba(255,255,255,.78); }

.simple-page { min-height: 100vh; background: var(--paper); }
.simple-header { position: static; background: var(--paper); }
.simple-main { max-width: 920px; margin: 0 auto; padding: 90px 24px 120px; }
.simple-main .eyebrow { margin-bottom: 20px; }
.simple-main h1 { font-size: clamp(58px, 8vw, 108px); }
.simple-main h2 { font-size: clamp(34px, 5vw, 56px); margin-top: 54px; line-height: .95; }
.simple-main p, .simple-main li { color: var(--muted); font-size: 16px; line-height: 1.8; }
.simple-main a { text-decoration: underline; text-underline-offset: 3px; }
.simple-main .button { text-decoration: none; margin-top: 24px; }
.simple-card { border: 1px solid var(--line); background: var(--paper-light); padding: 26px; margin: 30px 0; }
.error-code { color: #4e5c00; font-family: var(--display-font); font-size: clamp(110px, 28vw, 260px); font-weight: 900; line-height: .75; letter-spacing: -.06em; }

@media (max-width: 1100px) {
  .section-heading { grid-template-columns: 1fr 1fr; }
  .section-heading > p:last-child { grid-column: 2; }
}

@media (max-width: 900px) {
  .site-header { position: absolute; }
  .menu-button { position: relative; z-index: 32; width: 48px; height: 48px; display: grid; place-items: center; }
  .nav-links { z-index: 30; padding: 90px 24px 40px; overflow-y: auto; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .nav-links .nav-phone { display: flex; }
  .nav-links .nav-cta { justify-content: center; }
  .pricing-section { grid-template-columns: 1fr; gap: 42px; padding: 90px 24px; }
  .faq-grid { grid-template-columns: 1fr; }
  .section-heading, .process-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  .hero-proof span { font-size: 13px; }
  .hero-proof strong { font-size: 18px; }
  .status-chip { font-size: 13px; }
  .art-label { font-size: 13px; color: rgba(255,255,255,.75); }
  .service-number { font-size: 13px; }
  .service-row p { font-size: 13px; }
  .pricing-copy > p { font-size: 15px; }
  .pricing-copy li { font-size: 13px; }
  .local-tags span { width: 100%; }
  .simple-main { padding-top: 70px; }
}

/* Two-column heading structure used by the static audit-fixed build. */
.section-heading { grid-template-columns: minmax(0, 1.6fr) minmax(260px, .9fr); }
.section-heading > p:last-child { grid-column: 2; }
.process-heading { grid-template-columns: minmax(0, 1.6fr) minmax(260px, .9fr); }
@media (max-width: 900px) {
  .section-heading, .process-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { grid-column: auto; }
}
.footer-brand sup { color: var(--volt); }
.hero-proof span { font-size: 13px; }

/* Detailní SEO stránky služeb */
.service-detail-page { background: var(--paper-light); }
.service-detail { max-width: 1120px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 14px; margin: 0 0 42px; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 4px; }
.service-detail .service-intro { max-width: 850px; font-size: clamp(18px, 2vw, 24px); line-height: 1.65; color: #3f403a; margin: 38px 0 32px; }
.service-bullets { list-style: none; padding: 0; margin: 0 0 64px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.service-bullets li { min-height: 92px; display: flex; align-items: center; padding: 20px; font-weight: 800; border-right: 1px solid var(--line); }
.service-bullets li:last-child { border-right: 0; }
.service-content { display: grid; gap: 0; border-top: 1px solid var(--line); }
.service-content section { display: grid; grid-template-columns: minmax(220px, .75fr) 1.65fr; gap: clamp(30px, 6vw, 90px); padding: 48px 0; border-bottom: 1px solid var(--line); }
.service-content h2 { font-size: clamp(30px, 4vw, 50px); line-height: .95; }
.service-content p { margin: 0; font-size: 17px; line-height: 1.8; color: var(--muted); }
.service-cta { margin: 72px 0; padding: clamp(28px, 5vw, 54px); background: var(--volt); display: grid; grid-template-columns: 1.3fr .8fr; gap: 38px; align-items: center; }
.service-cta h2 { font-size: clamp(36px, 5vw, 62px); }
.service-cta p { max-width: 680px; line-height: 1.7; }
.service-cta > div:last-child { display: grid; gap: 12px; }
.service-cta .button-outline { background: transparent; }
.related-services { margin-top: 70px; }
.related-services h2 { font-size: clamp(32px, 4vw, 54px); margin-bottom: 24px; }
.related-services > div { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.related-services a { padding: 20px 4px; border-bottom: 1px solid var(--line); font-weight: 800; }
.related-services a:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 20px; }
.related-services a:nth-child(even) { padding-left: 20px; }
.related-services a:hover { background: var(--paper); }
.simple-footer { background: var(--ink); color: white; padding: 38px clamp(24px, 6vw, 100px); display: flex; justify-content: space-between; gap: 30px; }
.simple-footer > div { display: flex; flex-direction: column; gap: 8px; }
.simple-footer span { color: rgba(255,255,255,.78); font-size: 13px; }
.simple-footer a { text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 760px) {
  .service-bullets { grid-template-columns: 1fr 1fr; }
  .service-bullets li:nth-child(2) { border-right: 0; }
  .service-bullets li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-content section, .service-cta { grid-template-columns: 1fr; }
  .related-services > div { grid-template-columns: 1fr; }
  .related-services a:nth-child(odd), .related-services a:nth-child(even) { border-right: 0; padding-left: 4px; padding-right: 4px; }
  .simple-footer { flex-direction: column; }
}


/* Audit 2026-07-20: keyboard, no-JS and readability hardening */
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #315100;
  outline-offset: 4px;
}

.hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 900px) {
  .no-js .site-header {
    position: relative;
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    padding-block: 16px;
    background: var(--paper);
  }
  .no-js .menu-button { display: none; }
  .no-js .nav-links {
    position: static;
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 12px 20px;
    padding-top: 14px;
    background: transparent;
    font: 800 13px var(--body-font);
  }
  .no-js .nav-links .nav-cta { padding: 10px 14px; }
  .no-js .hero { padding-top: 70px; }
}

.error-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.error-links { display:flex; flex-wrap:wrap; gap:12px 24px; margin-top:34px; }
.error-links a { font-weight:800; text-decoration:underline; text-underline-offset:4px; }

.service-row > * { min-width: 0; }
.service-row h3, .service-row p { overflow-wrap: anywhere; }

@media (max-width: 360px) {
  .service-row {
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    gap: 10px;
  }
  .service-number { display: none; }
  .service-icon { grid-column: 1; grid-row: 1; }
  .service-row h3 { grid-column: 2; grid-row: 1; font-size: 24px; }
  .service-arrow { grid-column: 3; grid-row: 1; }
  .service-row p { grid-column: 2 / 4; grid-row: 2; margin: 0 0 5px; }
}
.why > * { min-width: 0; }
