:root {
  --ink: #141615;
  --muted: #606763;
  --paper: #f6f8f4;
  --surface: #ffffff;
  --line: #dfe4dc;
  --brand: #0b6b57;
  --brand-dark: #074235;
  --accent: #b43d2c;
  --accent-soft: #f6ddd8;
  --gold: #caa24d;
  --shadow: 0 22px 54px rgba(20, 22, 21, 0.14);
  --radius: 8px;
  --header-height: 86px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 248, 244, 0.94);
  border-bottom: 1px solid rgba(20, 22, 21, 0.08);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  min-height: 34px;
  padding: 6px 20px;
  color: #f8fbf7;
  background: var(--brand-dark);
  font-size: 0.86rem;
}

.topbar a {
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--brand);
  font-weight: 850;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
  font-size: 1rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #303631;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  padding: 11px 16px;
  box-shadow: 0 10px 24px rgba(180, 61, 44, 0.24);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 9px 11px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: calc(86svh - var(--header-height));
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 22, 18, 0.86) 0%, rgba(4, 22, 18, 0.62) 46%, rgba(4, 22, 18, 0.18) 100%),
    rgba(4, 22, 18, 0.18);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 82px 0 72px;
}

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

.hero .eyebrow {
  color: #ffd36f;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 850;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 15px 34px rgba(180, 61, 44, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #963425;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 14px;
  margin: 46px 0 0;
}

.trust-row div {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.trust-row dt {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.trust-row dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.lead-strip {
  background: var(--ink);
  color: #fff;
}

.lead-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
}

.lead-strip p {
  margin: 0;
  font-weight: 800;
}

.lead-strip a {
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 9px 13px;
  font-size: 0.9rem;
  font-weight: 850;
}

.lead-strip a:first-of-type {
  background: var(--gold);
}

.section {
  padding: 92px 0;
}

.intro-section {
  background: linear-gradient(180deg, #f6f8f4 0%, #eef4ef 100%);
}

.intro-grid,
.process-grid,
.ingema-grid,
.proof-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
}

.intro-copy > p,
.section-heading p,
.ingema-grid > div > p,
.contact-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.intro-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.intro-points li {
  position: relative;
  padding-left: 28px;
  font-weight: 780;
}

.intro-points li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.intro-link {
  display: inline-flex;
  margin-top: 28px;
  border-radius: var(--radius);
  background: var(--brand-dark);
  color: #fff;
  padding: 12px 16px;
  font-weight: 900;
}

.intro-workflow {
  display: grid;
  grid-template-columns: minmax(210px, 0.82fr) minmax(260px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.intro-photo {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.decision-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
  box-shadow: 0 12px 28px rgba(20, 22, 21, 0.08);
}

.decision-list span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-list strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.22;
}

.decision-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.services-section,
.faq-section {
  background: var(--surface);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.service-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 28px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 850;
}

.filter-button.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

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

.service-card {
  display: grid;
  grid-template-rows: 168px 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(20, 22, 21, 0.08);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.service-card.is-hidden {
  display: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.service-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card h3 {
  min-height: 76px;
  margin-top: 10px;
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 20px;
  padding-left: 18px;
  color: var(--muted);
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  border-bottom: 2px solid var(--gold);
  color: var(--brand-dark);
  font-weight: 900;
}

.process-section {
  background: var(--paper);
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
}

.step span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
}

.step p {
  grid-column: 2;
  margin: -4px 0 0;
  color: var(--muted);
}

.image-band {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: #fff;
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band::after {
  position: absolute;
  inset: 0;
  background: rgba(4, 22, 18, 0.55);
  content: "";
}

.band-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 360px;
  align-items: center;
}

.band-content p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.3rem);
  font-weight: 900;
  line-height: 1.04;
}

.ingema-section {
  background: var(--brand-dark);
  color: #fff;
}

.ingema-section .eyebrow {
  color: #ffd36f;
}

.ingema-grid > div > p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-list article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.feature-list p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.proof-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-items article {
  border-top: 4px solid var(--brand);
  background: var(--surface);
  padding: 22px;
}

.proof-items strong {
  display: block;
  font-size: 1.08rem;
}

.proof-items p {
  margin: 10px 0 0;
  color: var(--muted);
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 20px;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-item button span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
}

.faq-item button span::after {
  transform: rotate(90deg);
  transition: transform 0.16s ease;
}

.faq-item button[aria-expanded="true"] span::after {
  transform: rotate(0deg);
}

.faq-panel {
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-panel p {
  margin: 0;
}

.contact-section {
  background: var(--paper);
}

.contact-copy address {
  margin-top: 26px;
  border-left: 4px solid var(--gold);
  color: var(--muted);
  font-style: normal;
  padding-left: 18px;
}

.contact-copy address strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.contact-copy address a {
  color: var(--brand-dark);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(11, 107, 87, 0.18);
}

.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note.is-success {
  color: var(--brand-dark);
  font-weight: 850;
}

.form-note.is-error {
  color: var(--accent);
  font-weight: 850;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  color: #fff;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p {
  max-width: 360px;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin-top: 8px;
}

.legal-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: none;
  gap: 8px;
}

.sticky-cta a {
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  padding: 12px 14px;
  box-shadow: 0 12px 28px rgba(20, 22, 21, 0.22);
  font-weight: 900;
}

.sticky-cta a:first-child {
  background: var(--brand-dark);
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card h3 {
    min-height: auto;
  }

  .feature-list,
  .proof-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .section-shell {
    width: min(100% - 28px, 720px);
  }

  .topbar {
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .nav {
    width: min(100% - 28px, 720px);
    min-height: 64px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 98px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    max-height: calc(100svh - 116px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 8px;
    box-shadow: var(--shadow);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.16s ease,
      transform 0.16s ease,
      visibility 0.16s ease;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    border-radius: var(--radius);
    padding: 14px;
  }

  .nav-links a:not(.nav-cta)::after {
    content: none;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding: 70px 0 62px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .lead-strip-grid,
  .intro-grid,
  .process-grid,
  .ingema-grid,
  .proof-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-workflow {
    grid-template-columns: 1fr;
  }

  .intro-photo {
    min-height: 280px;
  }

  .lead-strip-grid {
    align-items: stretch;
  }

  .lead-strip a {
    text-align: center;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    text-align: left;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .step p {
    grid-column: auto;
    margin-top: 0;
  }

  .form-row.two-columns {
    grid-template-columns: 1fr;
  }

  .legal-row {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-cta a {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .service-card {
    grid-template-rows: 190px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
