:root {
  color-scheme: light;
  --ink: #061313;
  --muted: #566062;
  --line: #e1e5e6;
  --paper: #f7f8f8;
  --panel: #ffffff;
  --energy: #991821;
  --energy-dark: #6f1018;
  --teal: #991821;
  --steel: #202a2b;
  --night: #061313;
  --shadow: 0 20px 60px rgba(6, 19, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(6, 19, 19, 0.08);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(6, 19, 19, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-logo {
  width: 176px;
  height: auto;
  border-radius: 8px;
  background: transparent;
  object-fit: contain;
}

.brand > span {
  display: none;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.92;
}

.site-nav a:hover {
  opacity: 1;
}

.header-cta {
  justify-self: end;
  padding: 12px 14px;
  border: 1px solid rgba(6, 19, 19, 0.24);
  border-radius: 8px;
  color: var(--energy);
  font-weight: 800;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92vh;
  padding: 128px clamp(20px, 7vw, 92px) 86px;
  overflow: hidden;
  color: #ffffff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 13, 13, 0.94) 0%, rgba(4, 13, 13, 0.76) 38%, rgba(4, 13, 13, 0.18) 72%, rgba(4, 13, 13, 0.34) 100%),
    linear-gradient(0deg, rgba(111, 16, 24, 0.28), rgba(4, 13, 13, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffffff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  color: #ffffff;
  background: var(--energy);
}

.button.primary:hover {
  background: #b61d28;
}

.button.ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
}

.button.ghost.light-button {
  color: var(--energy);
  border-color: rgba(153, 24, 33, 0.26);
  background: #ffffff;
}

.button.outline {
  color: var(--energy);
  border-color: rgba(153, 24, 33, 0.32);
  background: #ffffff;
}

.button.outline:hover {
  border-color: var(--energy);
  background: #fff6f7;
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 6vw, 84px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(650px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(8, 16, 27, 0.7);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 22px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  color: var(--energy);
  font-size: 1.6rem;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.profile-heading {
  grid-column: 1 / -1;
  padding: 18px 20px 4px;
}

.profile-heading strong,
.profile-heading span {
  display: block;
}

.profile-heading strong {
  color: #ffffff;
  font-size: 1rem;
}

.profile-heading span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.profile-links a {
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: start;
  padding: 16px 20px 20px;
  min-height: 100px;
}

.profile-links a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.profile-links img {
  width: auto;
  max-width: 116px;
  height: 30px;
  object-fit: contain;
  object-position: left center;
  padding: 4px 6px;
  border-radius: 6px;
  background: #ffffff;
}

.trust-band {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr 1fr;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.trust-band span {
  padding: 22px;
  text-align: center;
  color: var(--steel);
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-band span + span {
  border-left: 1px solid var(--line);
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 7vw, 92px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: end;
  background: #ffffff;
}

.intro > p,
.split-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 820px;
}

.services {
  background: #f0f2f2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 275px;
  padding: 28px;
  border: 1px solid rgba(49, 65, 85, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--energy);
  font-size: 0.85rem;
  font-weight: 900;
}

.service-card p,
.project-list p,
.steps p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 7vw, 88px);
  padding: clamp(72px, 10vw, 128px) clamp(20px, 7vw, 92px);
  color: var(--ink);
  background: #ffffff;
}

.shelly-section {
  align-items: start;
}

.split-section .eyebrow {
  color: var(--teal);
}

.text-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 12px;
  color: var(--energy);
  font-weight: 800;
}

.services .service-card {
  min-height: 310px;
}

.services .service-card p {
  margin-bottom: 0;
}

.services .service-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 8px;
}

.project-list {
  display: grid;
  gap: 14px;
}

.project-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8f8;
}

.project-list span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--energy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-list p {
  color: var(--muted);
}

.shelly-detail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.shelly-detail > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.shelly-detail p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.landing-page {
  background: var(--paper);
}

.seo-hero {
  min-height: 82vh;
}

.seo-hero .hero-content {
  max-width: 880px;
}

.landing-intro {
  align-items: start;
}

.landing-intro > p {
  margin-bottom: 0;
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-grid .service-card {
  min-height: 250px;
}

.landing-split {
  background: #f7f8f8;
}

.landing-split .project-list article {
  background: #ffffff;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.text-columns p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.process-section {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.process-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.process-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--energy);
  font-size: 0.85rem;
  font-weight: 900;
  place-items: center;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.process {
  background: #ffffff;
}

.references {
  background: #ffffff;
}

.references .section-heading p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.reference-feature {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.reference-toggle {
  display: none;
}

.references:not(.is-open) .reference-extra {
  display: none;
}

.reference-card {
  display: grid;
  gap: 0;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  text-align: left;
  background: #f7f8f8;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.reference-card:hover,
.reference-card:focus-visible {
  border-color: rgba(153, 24, 33, 0.42);
  box-shadow: 0 18px 42px rgba(2, 16, 18, 0.08);
  transform: translateY(-2px);
}

.reference-card:focus-visible {
  outline: 3px solid rgba(153, 24, 33, 0.22);
  outline-offset: 3px;
}

.reference-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reference-card p {
  color: var(--muted);
  line-height: 1.65;
}

.reference-card small {
  display: inline-block;
  margin-top: 18px;
  color: var(--energy-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reference-more {
  align-content: center;
  min-height: 100%;
  background: #ffffff;
}

.reference-more h3 {
  color: var(--energy-dark);
  font-size: 1.35rem;
}

.reference-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  padding: clamp(16px, 4vw, 42px);
  place-items: center;
}

.reference-modal[hidden] {
  display: none;
}

.reference-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 16, 18, 0.72);
}

.reference-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(780px, calc(100vh - 34px));
  overflow: auto;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.reference-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  background: #ffffff;
  cursor: pointer;
  place-items: center;
}

.reference-modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.reference-modal-gallery img {
  width: 100%;
  border-radius: 8px;
  object-fit: contain;
  background: var(--line);
}

.reference-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  border-left: 4px solid var(--energy);
  color: var(--muted);
  background: #f7fafb;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.price-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.price-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 1.2rem;
  line-height: 1.25;
}

.price-card sup,
.price-notes sup {
  font-size: 0.62em;
  line-height: 0;
}

.price-card p,
.note,
.about-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.note {
  max-width: 980px;
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--energy);
  background: #f7fafb;
}

.price-notes {
  max-width: 980px;
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--energy);
  background: #f7fafb;
}

.price-notes p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.price-notes p + p {
  margin-top: 8px;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  background: #ffffff;
}

.about-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  object-position: 58% 42%;
  box-shadow: var(--shadow);
}

.about-content {
  min-width: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
  max-width: 1120px;
  margin-top: 20px;
}

.about-grid p {
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.steps div {
  padding-top: 24px;
  border-top: 3px solid var(--line);
}

.steps strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--energy);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 7vw, 84px);
  padding: clamp(72px, 10vw, 128px) clamp(20px, 7vw, 92px);
  background: #f0f2f2;
}

.legal {
  background: #ffffff;
}

.legal-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.legal-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.legal-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.legal-copy {
  display: grid;
  gap: 8px;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.72;
}

.legal-copy h3 {
  margin: 18px 0 0;
  color: var(--ink);
}

.legal-copy p {
  margin-bottom: 0;
}

.legal-copy ul {
  margin: 0;
  padding-left: 20px;
}

.legal-copy li + li {
  margin-top: 4px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: var(--steel);
  font-weight: 700;
}

.contact-details a {
  width: fit-content;
}

.contact-details a:hover {
  color: var(--teal);
}

.contact-details small {
  color: var(--muted);
  font-weight: 600;
}

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(153, 24, 33, 0.22);
  border-color: var(--energy-dark);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 26px clamp(20px, 7vw, 92px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--night);
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer strong {
  color: #ffffff;
}

.footer-link {
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  background: transparent;
  cursor: pointer;
}

.footer-link:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 80;
  display: grid;
  gap: 16px;
  width: min(560px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(2, 16, 18, 0.96);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy {
  display: grid;
  gap: 8px;
}

.cookie-copy strong {
  font-size: 1.02rem;
}

.cookie-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.cookie-copy a {
  width: fit-content;
  color: #ffffff;
  font-weight: 800;
}

.cookie-options {
  display: grid;
  gap: 10px;
  margin: 4px 0;
}

.cookie-option {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.cookie-option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  justify-self: start;
  accent-color: var(--energy);
}

.cookie-option span {
  display: grid;
  gap: 3px;
}

.cookie-option strong {
  font-size: 0.92rem;
}

.cookie-option small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.cookie-actions {
  display: grid;
  gap: 10px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand-logo {
    width: 158px;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 8px;
    color: inherit;
    background: transparent;
    place-content: center;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 14px;
  }

  .hero {
    align-items: start;
    min-height: 0;
    padding-bottom: 320px;
  }

  .hero-panel {
    left: 20px;
    right: 20px;
  }

  .trust-band,
  .service-grid,
  .compact-grid,
  .reference-feature,
  .price-grid,
  .shelly-detail,
  .steps,
  .text-columns,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro,
  .split-section,
  .contact,
  .about,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 136px;
  }

  .hero {
    padding: 112px 28px 320px;
  }

  h1 {
    font-size: clamp(2.05rem, 12vw, 3.55rem);
    line-height: 0.98;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    font-size: 0.92rem;
  }

  .hero-panel,
  .trust-band,
  .service-grid,
  .compact-grid,
  .price-grid,
  .steps,
  .text-columns,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    padding: 112px 20px 88px;
  }

  .seo-hero .hero-content,
  .seo-hero .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .seo-hero h1 {
    overflow-wrap: anywhere;
  }

  .reference-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin-top: 22px;
    padding: 14px 18px;
    border: 1px solid rgba(153, 24, 33, 0.32);
    border-radius: 8px;
    color: var(--energy);
    background: #ffffff;
    cursor: pointer;
    font-weight: 900;
  }

  .reference-more {
    display: none;
  }

  .reference-feature {
    display: none;
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .references.is-open .reference-feature {
    display: grid;
  }

  .references:not(.is-open) .reference-extra {
    display: grid;
  }

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
    left: 16px;
    right: 16px;
    bottom: 18px;
    width: auto;
  }

  .profile-heading {
    padding: 14px 16px 2px;
  }

  .profile-heading span {
    display: none;
  }

  .profile-links a {
    justify-items: center;
    min-height: 66px;
    padding: 12px 10px;
  }

  .hero-panel div + div,
  .trust-band span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .profile-links a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-top: 0;
  }

  .trust-band span + span {
    border-top-color: var(--line);
  }

  .service-card {
    min-height: 0;
  }

  .services .service-card {
    min-height: 285px;
  }

  .shelly-detail {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }

  .consent {
    grid-template-columns: 16px 1fr;
    gap: 14px;
  }

  .consent input {
    width: 16px;
    height: 16px;
    margin-left: -4px;
  }

  .cookie-option {
    grid-template-columns: 18px 1fr;
    gap: 14px;
    padding-left: 8px;
  }

  .cookie-option input {
    margin-left: -3px;
  }

  .cookie-actions {
    display: grid;
  }
}
