/* Layout — Dark Premium Scandinavian Solar */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  position: relative;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-hover);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.75em;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

p {
  margin: 0 0 1em;
  color: var(--muted-strong);
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
  color: var(--muted-strong);
}

strong {
  color: var(--text-soft);
  font-weight: 600;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
  max-width: 100%;
}

.section--tight {
  padding: calc(var(--section-space) * 0.7) 0;
}

.section--surface {
  background: var(--bg-elevated);
}

.section--alt {
  background:
    var(--grad-panel),
    var(--surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--primary);
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted-strong);
  max-width: 42rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .lead {
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(14, 18, 16, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  max-width: 100%;
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(10, 13, 11, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: var(--primary);
}

.logo:hover {
  color: var(--text);
}

.logo--static {
  cursor: default;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0.75rem;
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.45rem;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--text);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  margin-left: 0.5rem;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--primary);
  color: #0c100e;
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #0c100e;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--text);
  background: rgba(109, 155, 120, 0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--primary-hover);
  padding-inline: 0.25rem;
  min-height: auto;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--grad-hero);
  overflow: hidden;
  max-width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 1rem;
}

.hero-kicker {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.hero-badges li {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.02);
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(109, 155, 120, 0.22), rgba(20, 26, 23, 0.9)),
    var(--surface-alt);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  min-height: 280px;
}

.media-frame--wide {
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.media-frame--square {
  aspect-ratio: 1;
}

.media-frame__label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.4rem 0.7rem;
  background: rgba(8, 10, 9, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--muted-strong);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.media-frame__glow {
  position: absolute;
  inset: 15% 10% auto;
  height: 40%;
  background: radial-gradient(circle, rgba(212, 181, 106, 0.25), transparent 70%);
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-frame--hero img {
  object-position: 72% center;
}

.media-frame--person img {
  object-position: center 20%;
}

.media-frame--roof img {
  object-position: center 35%;
}

.media-frame--install img {
  object-position: center 30%;
}

.media-frame--service img {
  object-position: center 40%;
}

.media-frame--eco img {
  object-position: center 45%;
}

.media-frame.has-image .media-frame__glow,
.media-frame.has-image .media-frame__label {
  display: none;
}

.media-frame.has-image {
  background: var(--surface-alt);
}

/* Trust strip */
.trust-strip {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1.25rem 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
}

.trust-list strong {
  font-size: 0.95rem;
  color: var(--text);
}

.trust-list span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}

.card h3 {
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.98rem;
}

.card-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    border-color: rgba(109, 155, 120, 0.35);
    transform: translateY(-3px);
    background: var(--surface-hover);
  }
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem;
}

.process-step .step-id {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 0.7rem;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.price-card--featured {
  border-color: rgba(109, 155, 120, 0.45);
  background:
    linear-gradient(180deg, rgba(109, 155, 120, 0.1), transparent 40%),
    var(--surface);
}

.price-card .tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}

.price-amount small {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.25rem;
  letter-spacing: 0;
}

.price-meta {
  font-size: 0.92rem;
  color: var(--muted);
}

.price-disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.split--reverse > :first-child {
  order: 2;
}

.split--reverse > :last-child {
  order: 1;
}

/* Flow diagram */
.flow {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.flow-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.flow-item .dot {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(109, 155, 120, 0.15);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.flow-arrow {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
}

/* Editorial */
.editorial {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at top right, rgba(109, 155, 120, 0.16), transparent 50%),
    var(--surface-alt);
  border: 1px solid var(--border);
}

.editorial h2 {
  max-width: 18ch;
}

.quote-line,
.editorial .quote-line {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.35;
  margin: 1.25rem 0;
}

/* Marquee */
.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  padding: 2.5rem 0;
  border-block: 1px solid var(--border);
  background: var(--bg);
}

.js-mq-row {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  white-space: nowrap;
  will-change: transform;
}

.js-mq-row span {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  opacity: 0.12;
}

.js-mq-row.fwd {
  animation: mq-fwd 55s linear infinite;
}

.js-mq-row.rev {
  margin-top: 0.75rem;
  animation: mq-rev 60s linear infinite;
}

@keyframes mq-fwd {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes mq-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  min-height: 56px;
}

.faq-item button .icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.faq-item button[aria-expanded="true"] .icon {
  transform: rotate(45deg);
  background: rgba(109, 155, 120, 0.15);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
}

.faq-panel-inner p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
}

/* Forms */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-note a {
  color: var(--primary-hover);
}

.form-error {
  color: var(--danger);
  font-size: 0.88rem;
}

/* Contact info */
.contact-meta {
  display: grid;
  gap: 1rem;
}

.contact-meta a {
  color: var(--text);
  text-decoration: none;
}

.contact-meta a:hover {
  color: var(--primary-hover);
}

.contact-meta .label {
  display: block;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

/* Footer */
.site-footer {
  background: #0a0d0b;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  max-width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  max-width: 32ch;
  font-size: 0.95rem;
}

.footer-col h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--muted-strong);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

/* Page hero (internal) */
.page-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: var(--grad-hero);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 16ch;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted-strong);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary-hover);
}

/* Legal */
.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  margin-top: 2.25rem;
  font-size: 1.35rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
}

.legal-content ul {
  display: grid;
  gap: 0.35rem;
}

/* Thanks */
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--grad-hero);
}

.thanks-card {
  width: min(100%, 520px);
  text-align: center;
  padding: 3rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2000;
  max-width: 520px;
  margin-left: auto;
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner h2 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.cookie-banner p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
}

.cookie-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.65rem;
}

.cookie-panel[hidden] {
  display: none !important;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted-strong);
}

.cookie-option input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--primary);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.1s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.15s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.2s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.25s; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 0.3s; }

/* Utility */
.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;
}

.text-accent {
  color: var(--accent);
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.list-check {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.list-check li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted-strong);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--primary);
}

.cta-band {
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(109, 155, 120, 0.18), rgba(212, 181, 106, 0.08)),
    var(--surface);
  border: 1px solid var(--border);
  display: grid;
  gap: 1rem;
}

.cta-band h2 {
  margin-bottom: 0.25rem;
}

.transparency-block {
  padding: 1.5rem;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.table-wrap {
  overflow-x: auto;
  max-width: 100%;
}

.simple-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.simple-table th,
.simple-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted-strong);
}

.simple-table th {
  color: var(--text);
  font-weight: 600;
  background: var(--surface);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 3000;
  background: var(--primary);
  color: #0c100e;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .split--reverse > :first-child,
  .split--reverse > :last-child {
    grid-template-columns: 1fr;
    order: initial;
  }

  .split--reverse > :first-child,
  .split--reverse > :last-child {
    order: initial;
  }

  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-frame {
    aspect-ratio: 16 / 11;
    max-height: 420px;
  }
}

@media (max-width: 900px) {
  .burger {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(10, 13, 11, 0.98);
    padding: 1.5rem;
    flex-direction: column;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
    z-index: 999;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-list a {
    min-height: 52px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .nav-list a::after {
    display: none;
  }

  .header-cta {
    margin: 1rem 0 0;
    width: 100%;
  }

  .header-cta .btn {
    width: 100%;
  }

  .card-grid,
  .price-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .media-frame--hero img {
    object-position: 60% center;
  }

  .media-frame--person img {
    object-position: center 15%;
  }

  .media-frame--install img {
    object-position: center 25%;
  }
}

  .trust-list,
  .card-grid,
  .card-grid--2,
  .price-grid,
  .process-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    gap: 0.4rem;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .editorial {
    padding: 1.75rem 1.25rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-mq-row.fwd,
  .js-mq-row.rev {
    animation: none;
  }

  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
  }
}

/* Hard overflow guard */
section,
header,
footer,
main {
  max-width: 100%;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
