:root {
  --paper: #f7faf2;
  --paper-strong: #ffffff;
  --ink: #0b1820;
  --graphite: #12242e;
  --muted: #647166;
  --green: #3d8b16;
  --green-strong: #2f7d14;
  --green-soft: #ecf7e4;
  --teal: #89c9bd;
  --gold: #c69b34;
  --line: #dfe8da;
  --shadow: 0 24px 70px rgba(11, 24, 32, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 24, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 24, 32, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
}

a { color: inherit; text-decoration: none; }
img,
video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 80;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
}

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

.sr-only,
.brand-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(247, 250, 242, 0.92);
  border-bottom: 1px solid rgba(11, 24, 32, 0.08);
  backdrop-filter: blur(18px);
}

.topbar.is-scrolled { box-shadow: 0 14px 44px rgba(11, 24, 32, 0.08); }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }

.brand-logo {
  width: clamp(122px, 13vw, 184px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--graphite);
  font-size: 0.93rem;
  font-weight: 850;
}

.site-nav a:hover,
.site-nav a:focus-visible { background: var(--green-soft); }

.site-nav a.is-current {
  background: rgba(11, 24, 32, 0.08);
  color: var(--ink);
}

.site-nav .nav-cta {
  padding-inline: 16px;
  background: var(--ink);
  color: white;
}

.site-nav .nav-cta.is-current {
  background: rgba(11, 24, 32, 0.12);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  place-items: center;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  margin: 3px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 70px);
}

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

.hero-media {
  z-index: -3;
  background: var(--ink) url("./assets/images/level421-video-poster.jpg") center / cover no-repeat;
}

.hero-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: saturate(1.04) contrast(1.04);
}

.hero-slide {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  transform: scale(1.04);
  animation: heroFade 18s infinite;
}

.slide-two { animation-delay: 6s; }
.slide-three { animation-delay: 12s; object-position: center; }

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 12, 17, 0.9) 0%, rgba(5, 12, 17, 0.76) 38%, rgba(5, 12, 17, 0.34) 68%, rgba(5, 12, 17, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 12, 17, 0.68) 0%, rgba(5, 12, 17, 0.14) 52%, rgba(5, 12, 17, 0.28) 100%);
  transition: background 560ms ease;
}

@keyframes heroFade {
  0%, 100% { opacity: 0; transform: scale(1.04); }
  7%, 33% { opacity: 1; transform: scale(1); }
  41% { opacity: 0; transform: scale(1.02); }
}

.hero-content {
  width: min(760px, calc(100vw - 36px));
  max-width: 100%;
  padding-bottom: clamp(128px, 12vw, 170px);
  color: white;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 12px;
  /* Ljusgrönt fungerar bara mot den mörka heron. Som standardfärg gav det
     1,38:1 mot papperstonen, alltså långt under WCAG:s 4,5:1, på varje ljus
     sektion. Standarden är nu läsbar på ljust och de mörka sammanhangen
     får sin ljusa ton tillbaka nedan. */
  color: var(--green-strong);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: 0; }
h1 { max-width: 740px; font-size: clamp(3rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 4.65rem); }
h3 { font-size: clamp(1.08rem, 1.6vw, 1.32rem); }

.hero-text,
.section-heading p,
.showcase-copy p,
.ai-grid p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero-text {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

.btn svg,
.search-field svg,
.chat-launcher svg,
.chat-form button svg,
.chat-window header button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 16px 34px rgba(11, 24, 32, 0.18);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
  backdrop-filter: blur(10px);
}

.hero .btn-primary {
  background: white;
  color: var(--ink);
}

.btn:hover,
.btn:focus-visible { transform: translateY(-1px); }

.hero-proof {
  position: absolute;
  left: clamp(18px, 5vw, 70px);
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(20px, 3vw, 34px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-proof article {
  min-height: 116px;
  padding: 16px;
  background: rgba(7, 16, 22, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  color: white;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.hero-proof span {
  display: block;
  color: #a8e77f;
  font-size: 0.78rem;
  font-weight: 950;
}

.hero-proof strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.hero-proof p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.section {
  scroll-margin-top: 88px;
  padding: clamp(72px, 9vw, 132px) 0;
}
.section-inner { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

.topbar a:focus-visible,
.topbar button:focus-visible,
main section:not(.hero) a:focus-visible,
main section:not(.hero) button:focus-visible,
main section:not(.hero) input:focus-visible,
main section:not(.hero) textarea:focus-visible,
main section:not(.hero) article[tabindex]:focus-visible,
.site-footer a:focus-visible,
.chat-widget button:focus-visible,
.chat-widget input:focus-visible {
  outline: 3px solid rgba(198, 155, 52, 0.34);
  outline-offset: 3px;
}

.intro-section {
  background:
    linear-gradient(180deg, #fbfcf8 0%, var(--paper) 100%);
  border-bottom: 1px solid rgba(11, 24, 32, 0.06);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.76fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.intro-copy p {
  max-width: 710px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.intro-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-panel article {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 2.4vw, 26px);
}

.intro-panel article + article { border-top: 1px solid var(--line); }

.intro-panel span,
.trust-panel span {
  color: var(--green-strong);
  font-size: 0.78rem;
  font-weight: 950;
}

.intro-panel strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.intro-panel p {
  margin: 0;
  color: var(--muted);
}

.why-section {
  background:
    linear-gradient(135deg, rgba(137, 201, 189, 0.12), transparent 38%),
    linear-gradient(315deg, rgba(61, 139, 22, 0.08), transparent 42%),
    #fbfcf8;
}

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

.value-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(11, 24, 32, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.value-card:hover,
.value-card:focus-visible,
.service-card:hover {
  border-color: rgba(61, 139, 22, 0.24);
  box-shadow: 0 20px 56px rgba(11, 24, 32, 0.1);
}

.value-card:hover,
.value-card:focus-visible { transform: translateY(-3px); }

.value-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  border: 1px solid rgba(61, 139, 22, 0.14);
  border-radius: var(--radius);
  color: var(--green-strong);
}

.value-icon svg { width: 22px; height: 22px; }

.value-card p {
  margin: 0;
  color: var(--muted);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-points span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 850;
}

.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading p { max-width: 620px; margin: 18px 0 0; }

.services-section {
  background:
    linear-gradient(135deg, rgba(61, 139, 22, 0.1), transparent 34%),
    linear-gradient(315deg, rgba(198, 155, 52, 0.08), transparent 42%),
    var(--paper);
}

.service-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 390px) 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 24px;
}

.search-field {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(11, 24, 32, 0.06);
}

.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pills button {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--graphite);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 850;
}

.filter-pills button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

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

.service-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(11, 24, 32, 0.08);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.service-card:hover img { transform: scale(1.04); }

.service-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.service-kicker {
  color: var(--green-strong);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  background: var(--green-soft);
  border: 1px solid rgba(11, 24, 32, 0.06);
  border-radius: var(--radius);
  color: var(--graphite);
  font-size: 0.8rem;
  font-weight: 780;
}

.empty-state {
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 850;
}

.process-section {
  background:
    linear-gradient(135deg, #071016 0%, #102b24 58%, #12242e 100%);
  color: white;
}

.process-section .eyebrow { color: #91d55d; }

/* Mörka sektioner: här är den ljusa tonen den läsbara (13:1 mot #071016). */
.hero .eyebrow,
.offer-hero .eyebrow,
.offer-hero-copy .eyebrow {
  color: #a8e77f;
}
.process-section .section-heading p,
.process-section p { color: rgba(255, 255, 255, 0.68); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-grid article {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.045);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.process-grid article:last-child { border-right: 0; }

.process-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 76px;
  background: #91d55d;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 950;
}

.process-grid h3 { color: white; }

.trust-section {
  background:
    linear-gradient(180deg, var(--paper-strong) 0%, #f5f8ee 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.trust-copy p { margin: 20px 0 0; color: var(--muted); font-size: clamp(1rem, 1.45vw, 1.18rem); }

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--graphite);
  font-weight: 820;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  background: var(--green);
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px white;
}

.feature-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-duo article {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(11, 24, 32, 0.08);
}

.feature-duo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.feature-duo h3,
.feature-duo p { margin-inline: 18px; }
.feature-duo h3 { margin-top: 18px; }
.feature-duo p { margin-top: 8px; margin-bottom: 20px; color: var(--muted); }

.trust-panel {
  display: grid;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-panel article {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 3vw, 30px);
}

.trust-panel article + article { border-top: 1px solid var(--line); }

.trust-panel strong,
.trust-panel a {
  color: var(--ink);
  font-size: clamp(1.06rem, 1.8vw, 1.38rem);
  line-height: 1.18;
  font-weight: 900;
}

.ai-section {
  background:
    linear-gradient(90deg, rgba(61, 139, 22, 0.12), rgba(198, 155, 52, 0.08)),
    #f3f7ed;
  border-block: 1px solid rgba(11, 24, 32, 0.08);
}

.ai-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.ai-grid p,
.contact-copy p { margin: 20px 0 0; }

.ai-panel,
.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ai-panel {
  justify-items: start;
  align-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ai-logo {
  width: min(250px, 72vw);
  height: auto;
  display: block;
  border-radius: 0;
}

.ai-panel strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.ai-panel p { margin: 0; font-size: 0.98rem; }
.telephony-section {
  background:
    linear-gradient(135deg, rgba(61, 139, 22, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(137, 201, 189, 0.14), transparent 42%),
    var(--paper);
}

.telephony-services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.phone-service-card {
  grid-column: span 2;
  min-height: 244px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(11, 24, 32, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.phone-service-card:nth-child(n + 4) { grid-column: span 3; }

.phone-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 139, 22, 0.24);
  box-shadow: 0 20px 54px rgba(11, 24, 32, 0.1);
}

.phone-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  border: 1px solid rgba(61, 139, 22, 0.14);
  border-radius: var(--radius);
  color: var(--green-strong);
}

.phone-card-icon svg {
  width: 22px;
  height: 22px;
}

.phone-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.telephony-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  margin-top: 28px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 56px rgba(11, 24, 32, 0.08);
}

.phone-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(7, 16, 22, 0.96), rgba(18, 45, 37, 0.94) 58%, rgba(38, 69, 57, 0.94)),
    var(--ink);
  isolation: isolate;
}

.phone-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent 0%, black 24%, black 82%, transparent 100%);
  z-index: -2;
}

.phone-visual::after {
  content: "";
  position: absolute;
  inset: 12%;
  pointer-events: none;
  background: radial-gradient(circle at 42% 44%, rgba(137, 201, 189, 0.28), transparent 48%);
  filter: blur(16px);
  z-index: -1;
}

.call-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.call-line {
  stroke: rgba(168, 231, 127, 0.62);
  stroke-width: 2;
  stroke-dasharray: 6 14;
  animation: callFlow 3.8s ease-in-out infinite;
}

.line-two { animation-delay: 360ms; }
.line-three { animation-delay: 720ms; }

.phone-device {
  position: relative;
  z-index: 2;
  width: min(220px, 52vw);
  min-height: 318px;
  display: grid;
  align-items: start;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(8, 17, 22, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.phone-speaker {
  width: 54px;
  height: 5px;
  justify-self: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.phone-screen {
  display: grid;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.interface-label {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: rgba(168, 231, 127, 0.14);
  border: 1px solid rgba(168, 231, 127, 0.28);
  border-radius: var(--radius);
  color: #c9f2b4;
  font-size: 0.74rem;
  font-weight: 950;
}

.phone-screen strong {
  font-size: 1.08rem;
  line-height: 1.18;
}

.call-state {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 850;
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 6px;
  min-height: 54px;
  padding-top: 8px;
}

.signal-bars span {
  width: 100%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #a8e77f, rgba(168, 231, 127, 0.24));
  animation: signalPulse 1.8s ease-in-out infinite;
}

.signal-bars span:nth-child(1) { height: 22px; }
.signal-bars span:nth-child(2) { height: 36px; animation-delay: 160ms; }
.signal-bars span:nth-child(3) { height: 50px; animation-delay: 320ms; }

.routing-options {
  position: absolute;
  right: clamp(18px, 5vw, 56px);
  top: 50%;
  z-index: 3;
  display: grid;
  gap: 14px;
  transform: translateY(-50%);
}

.routing-options span {
  min-width: 132px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.routing-options span:first-child {
  background: rgba(168, 231, 127, 0.16);
  border-color: rgba(168, 231, 127, 0.34);
  color: #e7ffdc;
}

.telephony-cta {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  padding: clamp(6px, 1.8vw, 16px);
}

.telephony-cta h3 {
  max-width: 520px;
  font-size: 2.05rem;
}

.telephony-cta p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.telephony-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-outline {
  background: white;
  border-color: var(--line);
  color: var(--graphite);
}

@keyframes callFlow {
  0%, 100% { stroke-dashoffset: 42; opacity: 0.46; }
  50% { stroke-dashoffset: 0; opacity: 0.9; }
}

@keyframes signalPulse {
  0%, 100% { opacity: 0.42; transform: scaleY(0.82); transform-origin: bottom; }
  50% { opacity: 1; transform: scaleY(1); }
}

.move-section {
  background:
    linear-gradient(145deg, rgba(198, 155, 52, 0.12), transparent 38%),
    linear-gradient(315deg, rgba(61, 139, 22, 0.1), transparent 42%),
    #f5f8ef;
  border-top: 1px solid rgba(11, 24, 32, 0.08);
}

.move-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
}

.move-copy {
  display: grid;
  justify-items: start;
}

.move-copy h2 {
  max-width: 720px;
  margin-top: 18px;
}

.move-copy p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.move-partner-badge {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(61, 139, 22, 0.18);
  border-radius: var(--radius);
  color: var(--graphite);
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(11, 24, 32, 0.06);
}

.move-partner-badge svg,
.move-trust-list svg,
.move-card-icon svg,
.move-info-icon svg {
  width: 18px;
  height: 18px;
}

.move-partner-badge svg,
.move-trust-list svg { color: var(--green-strong); }

.move-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.move-trust-list li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  background: var(--green-soft);
  border: 1px solid rgba(61, 139, 22, 0.12);
  border-radius: var(--radius);
  color: var(--graphite);
  font-size: 0.88rem;
  font-weight: 850;
}

.move-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(7, 16, 22, 0.98), rgba(19, 47, 40, 0.96) 56%, rgba(36, 64, 54, 0.96)),
    var(--ink);
  color: white;
  box-shadow: 0 24px 70px rgba(11, 24, 32, 0.16);
  isolation: isolate;
}

.move-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black 0%, transparent 92%);
  z-index: -2;
}

.move-visual::after {
  content: "";
  position: absolute;
  inset: 12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 36% 36%, rgba(168, 231, 127, 0.18), transparent 44%),
    radial-gradient(circle at 72% 38%, rgba(137, 201, 189, 0.2), transparent 42%);
  filter: blur(16px);
  z-index: -1;
}

.move-route {
  position: absolute;
  inset: 42px 16px auto;
  width: calc(100% - 32px);
  height: 230px;
}

.move-route-line {
  stroke: rgba(168, 231, 127, 0.7);
  stroke-width: 3;
  stroke-dasharray: 8 13;
  animation: moveRouteFlow 4.8s ease-in-out infinite;
}

.move-route-shadow {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 16;
  stroke-linecap: round;
}

.move-location {
  position: absolute;
  top: 78px;
  width: min(190px, 36%);
  display: grid;
  gap: 6px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.move-location-old { left: 24px; }
.move-location-new { right: 24px; }

.move-location span,
.move-status-card span,
.move-visual-steps span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 900;
}

.move-location strong {
  color: white;
  font-size: 0.98rem;
  line-height: 1.12;
}

.move-location small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.move-location-check {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 22px;
  height: 22px;
  color: #a8e77f;
}

.move-envelope {
  position: absolute;
  left: 50%;
  top: 150px;
  z-index: 4;
  width: 70px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(168, 231, 127, 0.38);
  border-radius: var(--radius);
  color: var(--green-strong);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.28);
  animation: moveEnvelopeFloat 5.2s ease-in-out infinite;
}

.move-envelope svg {
  width: 32px;
  height: 32px;
}

.move-status-card {
  position: absolute;
  left: 50%;
  top: 230px;
  z-index: 3;
  width: min(270px, calc(100% - 48px));
  display: grid;
  gap: 8px;
  padding: 16px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  text-align: center;
  backdrop-filter: blur(16px);
}

.move-status-card strong {
  color: #e7ffdc;
  font-size: 1.06rem;
}

.move-visual-steps {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.move-visual-steps span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  animation: moveStepPulse 4.8s ease-in-out infinite;
}

.move-visual-steps span:nth-child(2) { animation-delay: 450ms; }
.move-visual-steps span:nth-child(3) { animation-delay: 900ms; }

.move-box-stack {
  position: absolute;
  left: 34px;
  bottom: 88px;
  width: 84px;
  height: 72px;
}

.move-box-stack span {
  position: absolute;
  width: 40px;
  height: 32px;
  border: 1px solid rgba(198, 155, 52, 0.42);
  border-radius: 5px;
  background: rgba(198, 155, 52, 0.18);
}

.move-box-stack span:nth-child(1) { left: 0; bottom: 0; }
.move-box-stack span:nth-child(2) { left: 34px; bottom: 0; }
.move-box-stack span:nth-child(3) { left: 18px; bottom: 30px; }

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

.move-service-card {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(11, 24, 32, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.move-service-card:hover,
.move-service-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(198, 155, 52, 0.34);
  box-shadow: 0 20px 54px rgba(11, 24, 32, 0.1);
}

.move-service-card:focus-visible,
.move-timeline article:focus-visible {
  outline: 3px solid rgba(198, 155, 52, 0.34);
  outline-offset: 3px;
}

.move-card-icon,
.move-info-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(198, 155, 52, 0.14);
  border: 1px solid rgba(198, 155, 52, 0.24);
  border-radius: var(--radius);
  color: #8a681b;
}

.move-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.move-timeline-block,
.move-checklist-panel,
.move-info-card,
.move-final-cta {
  margin-top: 30px;
  border-radius: var(--radius);
  box-shadow: 0 18px 56px rgba(11, 24, 32, 0.08);
}

.move-timeline-block {
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
  background: linear-gradient(135deg, #071016 0%, #112b25 58%, #12242e 100%);
  color: white;
}

.move-section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.move-section-head span {
  color: #a8e77f;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.move-section-head h3 {
  max-width: 760px;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.move-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.move-timeline::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(168, 231, 127, 0.2), rgba(168, 231, 127, 0.82));
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 900ms ease;
}

.js-enabled .move-timeline-block.is-visible .move-timeline::before { transform: scaleX(1); }

.move-timeline article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 205px;
  padding: 46px 16px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.76);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.move-timeline article:hover,
.move-timeline article:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(168, 231, 127, 0.34);
  background: rgba(255, 255, 255, 0.11);
}

.move-timeline article::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #a8e77f;
  box-shadow: 0 0 0 8px rgba(168, 231, 127, 0.13);
}

.move-timeline article span {
  color: #a8e77f;
  font-size: 0.78rem;
  font-weight: 950;
}

.move-timeline h4 {
  margin: 0;
  color: white;
  font-size: 1.02rem;
  line-height: 1.18;
}

.move-timeline p {
  margin: 0;
  font-size: 0.92rem;
}

.move-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
  gap: 16px;
  align-items: stretch;
}

.move-checklist-panel,
.move-info-card {
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.move-checklist-panel {
  position: relative;
  overflow: hidden;
}

.move-checklist-panel::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 18px;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--green-strong), var(--gold) 72%, rgba(198, 155, 52, 0.18) 72%);
  opacity: 0.86;
}

.move-checklist-panel .move-section-head span { color: var(--green-strong); }

.move-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.move-checklist li {
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 9px 12px 9px 38px;
  background: white;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: var(--radius);
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 820;
}

.move-checklist li::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid rgba(61, 139, 22, 0.18);
}

.move-checklist li::after {
  content: "";
  position: absolute;
  left: 17px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--green-strong);
  border-bottom: 2px solid var(--green-strong);
  transform: rotate(42deg);
}

.move-info-card {
  display: grid;
  align-content: start;
  gap: 15px;
}

.move-info-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.72rem);
}

.move-info-card p {
  margin: 0;
  color: var(--muted);
}

.move-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(198, 155, 52, 0.26), transparent 42%),
    linear-gradient(120deg, #071016 0%, #10242e 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
}

.move-final-cta h3 {
  max-width: 760px;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.move-final-cta p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
}

.move-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.move-final-cta .btn-primary {
  background: white;
  color: var(--ink);
}

.move-final-cta .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
}

@keyframes moveRouteFlow {
  0%, 100% { stroke-dashoffset: 46; opacity: 0.45; }
  50% { stroke-dashoffset: 0; opacity: 0.95; }
}

@keyframes moveEnvelopeFloat {
  0%, 100% { transform: translate(-62%, -50%); }
  50% { transform: translate(-38%, -58%); }
}

@keyframes moveStepPulse {
  0%, 100% { opacity: 0.58; transform: translateY(0); }
  45% { opacity: 1; transform: translateY(-2px); }
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(198, 155, 52, 0.2), transparent 38%),
    linear-gradient(285deg, rgba(61, 139, 22, 0.18), transparent 46%),
    linear-gradient(180deg, #071016 0%, #10242e 100%);
  color: white;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black 0%, transparent 78%);
}

.contact-section .section-inner { position: relative; z-index: 1; }

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 540px);
  align-items: stretch;
}

.contact-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  padding-top: clamp(8px, 2vw, 30px);
  text-align: left;
}

/* Låg på 1,41:1 mot papperstonen. */
.contact-copy .eyebrow { color: var(--green-strong); }

.contact-copy h2 {
  max-width: 690px;
  color: white;
}

.contact-copy p {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-lead {
  width: min(100%, 620px);
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-lead article {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
}

.contact-lead article + article { border-top: 1px solid rgba(255, 255, 255, 0.12); }

.contact-lead span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-lead a,
.contact-lead strong {
  color: white;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 900;
}

.contact-points {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.contact-section .contact-points span {
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  backdrop-filter: blur(10px);
}

.form-head {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(11, 24, 32, 0.1);
}

.form-head span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: rgba(198, 155, 52, 0.14);
  border: 1px solid rgba(198, 155, 52, 0.34);
  border-radius: var(--radius);
  color: #8a681b;
  font-size: 0.82rem;
  font-weight: 950;
}

.form-head strong {
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.12;
}

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

.contact-form label,
.contact-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(11, 24, 32, 0.12);
  border-radius: var(--radius);
  outline: 0;
  background: #fbfcf8;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(198, 155, 52, 0.78);
  background: white;
  box-shadow: 0 0 0 3px rgba(198, 155, 52, 0.18);
}

.contact-form fieldset {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 16px;
  border: 1px solid rgba(11, 24, 32, 0.12);
  border-radius: var(--radius);
  background: #fbfcf8;
}

.contact-form legend {
  padding: 0 6px;
  color: var(--graphite);
}

.contact-form fieldset label {
  display: flex;
  align-items: center;
  min-height: 32px;
  gap: 8px;
  font-weight: 760;
}

.contact-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--gold);
}

.contact-form .btn-primary {
  min-height: 54px;
  margin-top: 2px;
  background: linear-gradient(135deg, var(--ink), #1d302d);
  border-color: rgba(198, 155, 52, 0.42);
  box-shadow: 0 18px 42px rgba(11, 24, 32, 0.18);
}

.full-width { width: 100%; }

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-strong);
  font-size: 0.92rem;
  font-weight: 850;
}

.home-links-section {
  background:
    linear-gradient(180deg, #fbfcf8 0%, #f3f7ee 100%);
  border-top: 1px solid rgba(11, 24, 32, 0.06);
  border-bottom: 1px solid rgba(11, 24, 32, 0.06);
}

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

.home-link-card {
  display: grid;
  gap: 12px;
  min-height: 178px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(11, 24, 32, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.home-link-card:hover,
.home-link-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(61, 139, 22, 0.22);
  box-shadow: 0 20px 56px rgba(11, 24, 32, 0.1);
}

.home-link-card span {
  color: var(--green-strong);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-link-card strong {
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.08;
}

.home-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.home-link-card .card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 900;
}

.home-link-card .card-link svg {
  width: 16px;
  height: 16px;
}

.home-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #071016 0%, #10242e 100%);
  border-radius: var(--radius);
  box-shadow: 0 18px 56px rgba(11, 24, 32, 0.16);
  color: white;
}

.home-cta h2,
.home-cta h3 {
  color: white;
}

.home-cta p {
  max-width: 56ch;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.home-cta .btn-primary {
  background: white;
  color: var(--ink);
}

.page-hero {
  padding: clamp(56px, 8vw, 100px) 0 clamp(34px, 6vw, 56px);
  background:
    linear-gradient(135deg, rgba(61, 139, 22, 0.08), transparent 38%),
    linear-gradient(315deg, rgba(198, 155, 52, 0.07), transparent 42%),
    #f7faf2;
  border-bottom: 1px solid rgba(11, 24, 32, 0.06);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.page-hero-copy {
  display: grid;
  gap: 14px;
}

.page-hero-copy h1 {
  max-width: 15ch;
}

.page-hero-copy p {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.page-hero-panel {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero-panel span {
  color: var(--green-strong);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.page-hero-panel strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.page-hero-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-section {
  padding: clamp(54px, 7vw, 92px) 0;
}

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

.page-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(11, 24, 32, 0.08);
}

.page-card h3 {
  font-size: 1.1rem;
}

.page-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.page-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--graphite);
  font-size: 0.95rem;
  font-weight: 760;
}

.page-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.38em;
  border-radius: 999px;
  background: var(--green-strong);
  flex: 0 0 auto;
}

.page-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(11, 24, 32, 0.14);
}

.page-banner p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.page-banner .btn-primary {
  background: white;
  color: var(--ink);
}

.service-section {
  background:
    linear-gradient(180deg, #fafcf8 0%, #f4f7f1 100%);
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: 16px;
  align-items: stretch;
}

.service-panel {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-panel p {
  margin: 0;
  color: var(--muted);
}

.service-panel .page-list {
  gap: 8px;
}

.service-panel .page-list li {
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-panel .page-list li::before {
  margin-top: 0.34em;
}

.offer-page {
  background: #eef2f4;
}

.offer-page .section-inner {
  width: min(var(--max), calc(100vw - 36px));
}

.offer-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(88svh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(76px, 9vw, 126px) 0;
  color: white;
  background:
    linear-gradient(135deg, #071016 0%, #10242e 68%, #1b2c33 100%);
}

.offer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black 0%, transparent 82%);
}

.offer-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
}

.offer-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.18) saturate(0.84);
}

.offer-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.offer-hero-copy h1 {
  max-width: 1050px;
  font-size: clamp(2.85rem, 6vw, 5.8rem);
}

.offer-hero-copy,
.offer-signal-panel,
.offer-tool-card,
.offer-result-shell,
.offer-product-card > div {
  min-width: 0;
}

.offer-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  overflow-wrap: anywhere;
}

.offer-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.offer-hero .btn-primary {
  background: white;
  color: var(--ink);
}

.offer-signal-panel {
  display: grid;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.offer-signal-panel article {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 2.6vw, 28px);
}

.offer-signal-panel article + article {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.offer-signal-panel span,
.offer-result-head span,
.offer-product-provider {
  color: #cdd5dc;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-signal-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  overflow-wrap: anywhere;
}

.offer-live-section {
  background:
    linear-gradient(135deg, rgba(16, 36, 46, 0.06), transparent 32%),
    linear-gradient(315deg, rgba(198, 155, 52, 0.05), transparent 40%),
    linear-gradient(180deg, #f8fbf8 0%, #edf2f4 100%);
}

.offer-live-section .section-inner {
  width: min(1320px, calc(100vw - 36px));
}

.offer-live-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(20px, 3.8vw, 42px);
  align-items: start;
}

.offer-tool-card,
.offer-result-shell {
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 54px rgba(11, 24, 32, 0.08);
  backdrop-filter: blur(8px);
}

.offer-tool-card {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.8vw, 28px);
}

.offer-live-form {
  display: grid;
  gap: 14px;
}

.offer-live-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 850;
}

.offer-live-form textarea,
.offer-live-form input {
  width: 100%;
  min-height: 50px;
  padding: 14px;
  border: 1px solid rgba(11, 24, 32, 0.1);
  border-radius: var(--radius);
  outline: 0;
  background: #f9fcfd;
  color: var(--ink);
}

.offer-live-form textarea {
  min-height: 230px;
  resize: vertical;
}

.offer-live-form textarea:focus,
.offer-live-form input:focus {
  border-color: rgba(52, 131, 32, 0.34);
  background: white;
  box-shadow: 0 0 0 3px rgba(52, 131, 32, 0.12);
}

.offer-live-form button[disabled],
.offer-result-actions button[disabled] {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
}

.offer-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: var(--radius);
  background: #f8faf9;
  color: var(--graphite);
  font-weight: 850;
}

.offer-loading[hidden] { display: none; }

.offer-loading span {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(11, 24, 32, 0.12);
  border-top-color: var(--gold);
  border-radius: 999px;
  animation: offerSpin 850ms linear infinite;
}

.offer-loading p {
  margin: 0;
}

.offer-result-shell {
  overflow: hidden;
}

.offer-result-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(135deg, #071016 0%, #0f2630 100%);
  color: white;
}

.offer-result-head h2 {
  margin-top: 4px;
  color: white;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  letter-spacing: -0.03em;
}

.offer-result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.offer-result-actions .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
}

.offer-result-actions .btn-primary {
  background: white;
  color: var(--ink);
}

.unified-chat-offer__shell {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(18px, 2.8vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 247, 0.98)),
    white;
  box-shadow: 0 30px 90px rgba(11, 24, 32, 0.08);
}

.unified-chat-offer__masthead {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.unified-chat-offer__masthead-copy {
  max-width: 780px;
}

.unified-chat-offer__masthead-copy h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

.unified-chat-offer__masthead-copy p {
  max-width: 68ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.unified-chat-offer__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(61, 139, 22, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(61, 139, 22, 0.1), rgba(61, 139, 22, 0.04));
  color: var(--graphite);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unified-chat-offer__live-badge span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-strong);
  box-shadow: 0 0 0 6px rgba(61, 139, 22, 0.12);
}

.unified-chat-offer__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(18px, 2.8vw, 28px);
  align-items: start;
}

.unified-chat-offer__panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.6vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 250, 0.96)),
    white;
  box-shadow: none;
}

.unified-chat-offer__panel--chat {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 251, 249, 0.97)),
    white;
}

.unified-chat-offer__panel--offer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 248, 0.96)),
    white;
}

.unified-chat-offer__panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11, 24, 32, 0.08);
}

.unified-chat-offer__panel-head h2 {
  margin-top: 6px;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  letter-spacing: -0.03em;
}

.unified-chat-offer__panel-head p {
  max-width: 62ch;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.unified-chat-offer__status {
  min-width: min(300px, 100%);
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 14px 16px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(11, 24, 32, 0.045), rgba(11, 24, 32, 0.015));
}

.unified-chat-offer__status--soft {
  border-color: rgba(61, 139, 22, 0.14);
  background: linear-gradient(180deg, rgba(61, 139, 22, 0.08), rgba(255, 255, 255, 0.8));
}

.unified-chat-offer__status span {
  color: var(--green-strong);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unified-chat-offer__status strong {
  color: var(--graphite);
  font-size: 0.96rem;
  font-variant-numeric: tabular-nums;
}

.unified-chat-offer__presets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.unified-chat-offer__chip {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 999px;
  background: rgba(11, 24, 32, 0.03);
  color: var(--graphite);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.unified-chat-offer__chip:hover {
  background: rgba(61, 139, 22, 0.08);
  border-color: rgba(61, 139, 22, 0.16);
  color: var(--ink);
}

.unified-chat-offer__composer-form {
  display: grid;
  gap: 12px;
}

.unified-chat-offer__composer-stack {
  display: grid;
  gap: 12px;
}

.unified-chat-offer__composer textarea {
  min-height: 160px;
  padding: 16px 18px;
  border-radius: 18px;
}

.unified-chat-offer__submit {
  width: 100%;
  min-height: 56px;
  justify-content: center;
}

.unified-chat-offer__composer-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.unified-chat-offer__thread-shell {
  display: grid;
  gap: 10px;
}

.unified-chat-offer__thread-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.unified-chat-offer__thread {
  min-height: 210px;
  max-height: 280px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(61, 139, 22, 0.05), transparent 34%),
    linear-gradient(180deg, #f9fbf9 0%, #eef4ef 100%);
  scrollbar-gutter: stable;
}

.unified-chat-offer__message {
  max-width: min(90%, 700px);
}

.unified-chat-offer__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.unified-chat-offer__assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 999px;
  background: rgba(11, 24, 32, 0.03);
  color: var(--graphite);
  font-size: 0.84rem;
  font-weight: 850;
}

.unified-chat-offer__feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.unified-chat-offer__feature {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 24px rgba(11, 24, 32, 0.05);
}

.unified-chat-offer__feature span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-strong);
  box-shadow: 0 0 0 6px rgba(61, 139, 22, 0.12);
}

.unified-chat-offer__feature strong {
  font-size: 1rem;
}

.unified-chat-offer__feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.unified-chat-offer__customer-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff, #f3f7f4);
}

.unified-chat-offer__customer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.unified-chat-offer__field input {
  min-height: 52px;
  border-radius: 14px;
}

.unified-chat-offer__offer-shell {
  display: grid;
  min-height: 280px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 246, 0.96)),
    white;
}

.unified-chat-offer__offer-empty {
  min-height: 240px;
}

.unified-chat-offer__offer-card {
  gap: 14px;
}

.unified-chat-offer__offer-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.unified-chat-offer__offer-summary div {
  min-height: 96px;
}

.unified-chat-offer__offer-meta-bar {
  gap: 8px;
}

.unified-chat-offer__offer-product {
  grid-template-columns: 132px minmax(0, 1fr);
}

.unified-chat-offer__offer-product h4 {
  font-size: 1.02rem;
}

.unified-chat-offer__offer-meta {
  gap: 8px;
}

.offer-empty {
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  color: var(--muted);
  font-weight: 850;
}

.offer-result {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.offer-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.offer-summary div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(180deg, #fbfdff, #f4f8fa);
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: var(--radius);
}

.offer-summary span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.offer-summary strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.7vw, 1.32rem);
  font-variant-numeric: tabular-nums;
}

.offer-products {
  display: grid;
  gap: 14px;
}

.offer-product-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 38px rgba(11, 24, 32, 0.06);
}

.offer-product-card img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  border-radius: var(--radius);
}

.offer-product-card h3 {
  margin: 6px 0 12px;
  color: var(--ink);
}

.offer-product-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.offer-product-card dl div {
  min-height: 56px;
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  border: 1px solid rgba(11, 24, 32, 0.07);
  border-radius: var(--radius);
  background: #fbfcf8;
}

.offer-product-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.offer-product-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

@keyframes offerSpin {
  to { transform: rotate(360deg); }
}

.site-footer {
  padding: clamp(42px, 6vw, 72px) 0;
  background:
    linear-gradient(135deg, #071016 0%, #10242e 72%, #132e25 100%);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(2, minmax(160px, 0.8fr));
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.footer-logo {
  width: clamp(150px, 14vw, 190px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 12px;
  border-radius: var(--radius);
}

.footer-brand p {
  max-width: 420px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-column {
  display: grid;
  gap: 10px;
  align-items: start;
}

.footer-column strong {
  color: white;
  font-size: 0.88rem;
  font-weight: 950;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 780;
}

.site-footer a:hover,
.site-footer a:focus-visible { color: white; }

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.chat-launcher,
.chat-widget button { font: inherit; }

.chat-launcher {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  box-shadow: 0 18px 48px rgba(11, 24, 32, 0.24);
  cursor: pointer;
  pointer-events: auto;
  font-weight: 900;
}

.chat-window {
  width: min(390px, calc(100vw - 28px));
  height: min(620px, calc(100svh - 104px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(11, 24, 32, 0.26);
  pointer-events: auto;
}

.chat-window[hidden] { display: none; }

.chat-window header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--ink);
  color: white;
}

.chat-window header div { display: grid; gap: 2px; }

.chat-window header span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
}

.chat-window header strong { font-size: 1rem; }

.chat-window header button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  overflow-y: auto;
  background: var(--green-soft);
}

.chat-message {
  width: fit-content;
  max-width: 86%;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: var(--graphite);
  font-size: 0.92rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.chat-message.assistant {
  justify-self: start;
  background: white;
  border: 1px solid var(--line);
}

.chat-message.user {
  justify-self: end;
  background: var(--ink);
  color: white;
}

.chat-message.thinking { color: var(--muted); font-weight: 850; }

.quick-prompts {
  display: flex;
  gap: 8px;
  padding: 12px 16px 0;
  overflow-x: auto;
  background: white;
}

.quick-prompts button {
  min-height: 34px;
  padding: 7px 10px;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--graphite);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 8px;
  padding: 12px 16px 16px;
  background: white;
}

.chat-form input {
  min-width: 0;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  color: var(--ink);
}

.chat-form input:focus {
  border-color: var(--green-strong);
  box-shadow: 0 0 0 3px rgba(61, 139, 22, 0.16);
}

.chat-form button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--green-strong);
  color: white;
  cursor: pointer;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealFallback 650ms ease 850ms forwards;
  transition: opacity 650ms ease, transform 650ms ease;
}

.js-enabled .hero-content.reveal {
  opacity: 1;
  transform: none;
  animation: none;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.js-enabled .hero.is-logo-moment .hero-content.reveal {
  opacity: 0.02;
  transform: translateY(-10px);
  pointer-events: none;
}

.js-enabled .hero.is-logo-moment .hero-proof.reveal {
  opacity: 0.02;
  transform: translateY(10px);
  pointer-events: none;
}

.hero.is-logo-moment .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 12, 17, 0.34) 0%, rgba(5, 12, 17, 0.18) 42%, rgba(5, 12, 17, 0.06) 70%, rgba(5, 12, 17, 0.03) 100%),
    linear-gradient(0deg, rgba(5, 12, 17, 0.28) 0%, rgba(5, 12, 17, 0.04) 58%, rgba(5, 12, 17, 0.14) 100%);
}

@keyframes revealFallback {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .hero-video { display: none; }
  .hero-slide { opacity: 1; }
  .slide-two, .slide-three { display: none; }
  .call-line,
  .signal-bars span,
  .move-route-line,
  .move-envelope,
  .move-visual-steps span { animation: none; }
}

@media (max-width: 1120px) {
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .value-grid,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid article:nth-child(2n) { border-right: 0; }
  .process-grid article:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .move-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-links-grid,
  .page-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-split { grid-template-columns: 1fr; }

  .move-final-cta {
    grid-template-columns: 1fr;
  }

  .move-actions { justify-content: flex-start; }
  .home-cta,
  .page-banner { grid-template-columns: 1fr; }

  .chat-widget:not(.is-open) {
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    flex: 0 0 44px;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 84px;
    display: grid;
    gap: 4px;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .service-toolbar,
  .intro-grid,
  .trust-grid,
  .showcase-grid,
  .ai-grid,
  .move-intro-grid,
  .move-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-copy h1 { max-width: none; }

  .telephony-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .phone-service-card,
  .phone-service-card:nth-child(n + 4) {
    grid-column: auto;
  }

  .telephony-showcase { grid-template-columns: 1fr; }

  .move-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .move-timeline::before { display: none; }

  .hero-video { object-position: 58% center; }

  .hero h1 {
    max-width: min(100%, 690px);
    font-size: clamp(2.8rem, 6.2vw, 4.6rem);
  }

  .chat-widget:not(.is-open) {
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
  }
}

@media (max-width: 680px) {
  .topbar {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand-logo {
    width: 114px;
    height: 44px;
  }

  .hero {
    min-height: calc(100svh - 66px);
    padding: 34px 18px 22px;
  }

  .hero-video {
    display: block;
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 12, 17, 0.86) 0%, rgba(5, 12, 17, 0.5) 48%, rgba(5, 12, 17, 0.24) 100%),
      linear-gradient(90deg, rgba(5, 12, 17, 0.78) 0%, rgba(5, 12, 17, 0.42) 56%, rgba(5, 12, 17, 0.18) 100%);
  }

  .hero-slide { object-position: 78% center; }
  .hero h1 {
    max-width: min(100%, 12.2ch);
    font-size: clamp(2.1rem, 10.5vw, 2.85rem);
    line-height: 1.04;
  }
  h2 { font-size: clamp(1.95rem, 10vw, 3rem); }

  .hero-content {
    width: calc(100vw - 36px);
    padding-bottom: 316px;
    color: white;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  }

  /* Scopad till heron: oscopad slog den ut den läsbara färgen på mobil. */
  .hero .eyebrow,
  .hero-content .eyebrow { color: #a8e77f; }
  .hero-text {
    max-width: 31ch;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.96rem;
  }

  .hero .btn-primary {
    background: white;
    color: var(--ink);
  }

  .hero .btn-ghost {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.28);
    color: white;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .home-links-grid,
  .page-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-proof article {
    min-height: 82px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 10px;
    align-items: center;
    padding: 12px;
    background: rgba(7, 16, 22, 0.62);
    border-color: rgba(255, 255, 255, 0.16);
    color: white;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  }

  .hero-proof span { grid-row: span 2; color: #a8e77f; }
  .hero-proof p { margin: 0; color: rgba(255, 255, 255, 0.74); }
  .section-inner { width: min(100% - 28px, var(--max)); }
  .section { scroll-margin-top: 76px; }

  .service-grid,
  .value-grid,
  .telephony-services-grid,
  .move-services-grid,
  .process-grid,
  .feature-duo {
    grid-template-columns: 1fr;
  }

  .telephony-showcase { padding: 16px; }

  .phone-visual {
    min-height: auto;
    gap: 16px;
    padding: 22px 14px;
  }

  .call-lines { display: none; }

  .phone-device {
    width: min(218px, 100%);
    min-height: 304px;
  }

  .routing-options {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: none;
    gap: 8px;
  }

  .routing-options span {
    width: 100%;
    min-width: 0;
  }

  .telephony-actions {
    display: grid;
    width: 100%;
  }

  .telephony-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .telephony-cta h3 { font-size: 1.58rem; }
  .telephony-cta p { font-size: 1rem; }

  .move-trust-list {
    display: grid;
    width: 100%;
  }

  .move-visual {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 18px;
  }

  .move-route,
  .move-box-stack { display: none; }

  .move-location,
  .move-location-old,
  .move-location-new,
  .move-envelope,
  .move-status-card,
  .move-visual-steps {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .move-envelope {
    width: 66px;
    height: 50px;
    justify-self: center;
  }

  .move-visual-steps {
    grid-template-columns: 1fr;
  }

  .move-timeline {
    grid-template-columns: 1fr;
  }

  .move-timeline article {
    min-height: auto;
    padding: 44px 14px 14px;
  }

  .move-checklist {
    grid-template-columns: 1fr;
  }

  .move-actions {
    display: grid;
    width: 100%;
  }

  .move-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .process-grid article,
  .process-grid article:last-child {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-grid article:last-child { border-bottom: 0; }
  .process-grid span { margin-bottom: 36px; }
  .contact-form fieldset { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-copy { padding-top: 0; }
  .contact-copy h2 { max-width: none; }
  .contact-lead article {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 16px 0;
  }
  .contact-form { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }

  .chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .chat-widget.is-mobile-hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
  }

  .chat-launcher {
    min-height: 48px;
    padding-inline: 14px;
  }

  .chat-window { height: min(580px, calc(100svh - 86px)); }
}

@media (max-width: 430px) {
  .hero-text { font-size: 0.98rem; }
  .contact-points span { width: 100%; }
  .contact-section .contact-points { grid-template-columns: 1fr; }
  .page-hero {
    padding: 44px 0 32px;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  .page-hero-copy p,
  .page-list li {
    font-size: 0.96rem;
  }

  .home-cta,
  .page-banner {
    padding: 18px;
  }
}

@media (max-width: 980px) {
  .offer-page .menu-toggle { display: grid; }

  .offer-hero {
    min-height: auto;
    padding: 70px 0;
  }

  .offer-hero-grid,
  .offer-live-grid {
    grid-template-columns: 1fr;
  }

  .offer-tool-card {
    position: relative;
    top: auto;
  }

  .offer-result-head {
    grid-template-columns: 1fr;
  }

  .offer-result-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .offer-page .section-inner {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  .offer-hero {
    padding: 54px 0 64px;
  }

  .offer-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.5vw, 3.1rem);
    line-height: 1.04;
    overflow-wrap: normal;
  }

  .offer-hero-copy p:not(.eyebrow) {
    max-width: 100%;
  }

  .offer-signal-panel article {
    padding: 18px;
  }

  .offer-signal-panel,
  .offer-tool-card,
  .offer-result-shell {
    width: min(100%, calc(100vw - 56px));
    max-width: calc(100vw - 56px);
  }

  .offer-hero-actions,
  .offer-result-actions {
    display: grid;
    width: 100%;
  }

  .offer-hero-actions .btn,
  .offer-result-actions .btn {
    width: min(100%, calc(100vw - 56px));
    max-width: calc(100vw - 56px);
  }

  .offer-summary,
  .offer-product-card,
  .offer-product-card dl {
    grid-template-columns: 1fr;
  }

  .offer-product-card img {
    height: 190px;
  }
}

.site-nav .nav-dropdown {
  position: relative;
}

.site-nav .nav-dropdown > summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--graphite);
  font-size: 0.93rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.site-nav .nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.site-nav .nav-dropdown > summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.site-nav .nav-dropdown:hover > summary,
.site-nav .nav-dropdown:focus-within > summary,
.site-nav .nav-dropdown > summary:hover,
.site-nav .nav-dropdown > summary:focus-visible {
  background: var(--green-soft);
}

.site-nav .nav-dropdown[open] > summary::after,
.site-nav .nav-dropdown:hover > summary::after,
.site-nav .nav-dropdown:focus-within > summary::after {
  transform: translateY(2px) rotate(225deg);
}

.site-nav .nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 80;
  min-width: 320px;
  display: grid;
  gap: 4px;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav .nav-dropdown:hover .nav-dropdown-panel,
.site-nav .nav-dropdown:focus-within .nav-dropdown-panel,
.site-nav .nav-dropdown[open] .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav .nav-dropdown-panel a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 7px;
  font-weight: 760;
}

.site-nav .nav-dropdown-panel a.nav-dropdown-overview {
  font-weight: 900;
}

.site-nav .nav-dropdown-panel a:hover,
.site-nav .nav-dropdown-panel a:focus-visible {
  background: var(--green-soft);
}

.site-nav .nav-dropdown-panel a.is-current {
  background: rgba(11, 24, 32, 0.08);
  color: var(--ink);
}

.site-nav .nav-dropdown > summary.is-current {
  background: rgba(11, 24, 32, 0.08);
  color: var(--ink);
}

@media (max-width: 980px) {
  .site-nav .nav-dropdown {
    width: 100%;
  }

  .site-nav .nav-dropdown > summary {
    width: 100%;
    justify-content: space-between;
    background: var(--green-soft);
  }

  .site-nav .nav-dropdown-panel {
    position: static;
    min-width: 0;
    margin-top: 4px;
    padding: 8px 0 0 10px;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(11, 24, 32, 0.1);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .site-nav .nav-dropdown:not([open]) .nav-dropdown-panel {
    display: none;
  }

  .site-nav .nav-dropdown-panel a {
    padding: 10px 10px;
  }
}

.unified-chat-offer {
  display: grid;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.unified-chat-offer__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(135deg, #071016 0%, #10242e 62%, #12242e 100%);
  color: white;
}

.unified-chat-offer__header h2 {
  margin-top: 6px;
  color: white;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.unified-chat-offer__header p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.unified-chat-offer__status {
  min-width: min(280px, 100%);
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.unified-chat-offer__status span {
  color: #b9e98b;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.unified-chat-offer__status strong {
  font-size: 1rem;
}

.unified-chat-offer__thread {
  display: grid;
  gap: 12px;
  min-height: 460px;
  max-height: 760px;
  overflow: auto;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(243, 247, 237, 0.86), rgba(248, 250, 244, 0.96)),
    var(--paper);
}

.unified-chat-offer__message {
  max-width: min(92%, 760px);
  padding: 14px 16px;
  border-radius: 18px;
  overflow-wrap: anywhere;
  box-shadow: 0 12px 28px rgba(11, 24, 32, 0.06);
}

.unified-chat-offer__message.user {
  justify-self: end;
  background: var(--ink);
  color: white;
  border-top-right-radius: 8px;
}

.unified-chat-offer__message.assistant {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
  border-top-left-radius: 8px;
}

.unified-chat-offer__message.offer {
  max-width: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.unified-chat-offer__message .message-label {
  display: block;
  margin-bottom: 6px;
  color: var(--green-strong);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.unified-chat-offer__message.user .message-label {
  color: rgba(255, 255, 255, 0.72);
}

.unified-chat-offer__message p {
  margin: 0;
}

.unified-chat-offer__offer-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(11, 24, 32, 0.06);
}

.unified-chat-offer__offer-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.unified-chat-offer__offer-summary div {
  min-height: 92px;
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 12px;
  background: #f8faf9;
}

.unified-chat-offer__offer-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.unified-chat-offer__offer-summary strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-variant-numeric: tabular-nums;
}

.unified-chat-offer__offer-products {
  display: grid;
  gap: 12px;
}

.unified-chat-offer__offer-product {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 14px;
  background: #fbfcf8;
}

.unified-chat-offer__offer-product img {
  width: 100%;
  min-height: 120px;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.unified-chat-offer__offer-product h4 {
  margin: 0;
  font-size: 1.04rem;
}

.unified-chat-offer__offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.unified-chat-offer__offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.unified-chat-offer__offer-actions input {
  min-width: min(100%, 240px);
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 24, 32, 0.12);
  border-radius: 12px;
  background: #fbfcf8;
}

.unified-chat-offer__offer-actions input:focus {
  border-color: rgba(198, 155, 52, 0.78);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(198, 155, 52, 0.18);
  background: white;
}

.unified-chat-offer__composer {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  border-top: 1px solid var(--line);
  background: white;
}

.unified-chat-offer__presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.unified-chat-offer__chip {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--graphite);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.unified-chat-offer__composer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.unified-chat-offer__composer textarea {
  width: 100%;
  min-height: 104px;
  padding: 14px;
  border: 1px solid rgba(11, 24, 32, 0.12);
  border-radius: 14px;
  background: #fbfcf8;
  resize: vertical;
}

.unified-chat-offer__composer textarea:focus {
  border-color: rgba(198, 155, 52, 0.78);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(198, 155, 52, 0.18);
  background: white;
}

.unified-chat-offer__composer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.unified-chat-offer__email {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 850;
}

.unified-chat-offer__email span {
  color: var(--graphite);
}

.unified-chat-offer__composer-actions .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.unified-chat-offer__composer-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.unified-chat-offer {
  display: block;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.unified-chat-offer__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 2.8vw, 28px);
  align-items: start;
}

.unified-chat-offer__panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.8vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 250, 0.95)),
    white;
  box-shadow: 0 18px 54px rgba(11, 24, 32, 0.08);
}

.unified-chat-offer__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 24, 32, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(11, 24, 32, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 82%);
  opacity: 0.45;
}

.unified-chat-offer__panel > * {
  position: relative;
  z-index: 1;
}

.unified-chat-offer__panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11, 24, 32, 0.08);
}

.unified-chat-offer__panel-head h2 {
  margin-top: 6px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: -0.03em;
}

.unified-chat-offer__panel-head p {
  max-width: 60ch;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.unified-chat-offer__status {
  min-width: min(300px, 100%);
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px 16px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(11, 24, 32, 0.04), rgba(11, 24, 32, 0.015));
  backdrop-filter: blur(14px);
}

.unified-chat-offer__status--soft {
  border-color: rgba(61, 139, 22, 0.14);
  background: linear-gradient(180deg, rgba(61, 139, 22, 0.08), rgba(255, 255, 255, 0.76));
}

.unified-chat-offer__status span {
  color: var(--green-strong);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unified-chat-offer__status strong {
  color: var(--graphite);
  font-size: 0.98rem;
  font-variant-numeric: tabular-nums;
}

.unified-chat-offer__thread {
  display: grid;
  gap: 12px;
  min-height: 440px;
  max-height: 620px;
  overflow: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(61, 139, 22, 0.06), transparent 34%),
    linear-gradient(180deg, #f9fbfd 0%, #eef3f5 100%);
  scrollbar-gutter: stable;
}

.unified-chat-offer__message {
  max-width: min(92%, 760px);
  padding: 14px 16px;
  border-radius: 16px;
  overflow-wrap: anywhere;
  box-shadow: 0 12px 28px rgba(11, 24, 32, 0.06);
}

.unified-chat-offer__message.user {
  justify-self: end;
  background: linear-gradient(180deg, var(--ink), #132732);
  color: white;
  border-top-right-radius: 8px;
}

.unified-chat-offer__message.assistant {
  background: white;
  color: var(--ink);
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-top-left-radius: 8px;
}

.unified-chat-offer__message.offer {
  max-width: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.unified-chat-offer__message .message-label {
  display: block;
  margin-bottom: 6px;
  color: var(--green-strong);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.unified-chat-offer__message.user .message-label {
  color: rgba(255, 255, 255, 0.72);
}

.unified-chat-offer__message p {
  margin: 0;
}

.unified-chat-offer__presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.unified-chat-offer__chip {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 999px;
  background: rgba(11, 24, 32, 0.025);
  color: var(--graphite);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.unified-chat-offer__chip:hover {
  background: rgba(61, 139, 22, 0.08);
  border-color: rgba(61, 139, 22, 0.16);
  color: var(--ink);
}

.unified-chat-offer__composer-form {
  display: grid;
  gap: 12px;
}

.unified-chat-offer__composer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.unified-chat-offer__composer textarea {
  width: 100%;
  min-height: 116px;
  padding: 14px 15px;
  border: 1px solid rgba(11, 24, 32, 0.12);
  border-radius: 16px;
  background: #fbfcf8;
  resize: vertical;
}

.unified-chat-offer__composer textarea:focus {
  border-color: rgba(198, 155, 52, 0.78);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(198, 155, 52, 0.18);
  background: white;
}

.unified-chat-offer__customer-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff, #f3f7fa);
}

.unified-chat-offer__customer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.unified-chat-offer__field {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 850;
}

.unified-chat-offer__field span {
  color: var(--green-strong);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unified-chat-offer__field input {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(11, 24, 32, 0.12);
  border-radius: 14px;
  background: white;
  color: var(--ink);
}

.unified-chat-offer__field input:focus {
  border-color: rgba(198, 155, 52, 0.78);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(198, 155, 52, 0.18);
}

.unified-chat-offer__field--full {
  grid-column: 1 / -1;
}

.unified-chat-offer__customer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.unified-chat-offer__offer-shell {
  display: grid;
  min-height: 280px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 250, 0.96)),
    white;
}

.unified-chat-offer__offer-empty {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 240px;
  padding: 6px 4px;
  color: var(--muted);
}

.unified-chat-offer__offer-empty span {
  color: var(--green-strong);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unified-chat-offer__offer-empty strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.unified-chat-offer__offer-empty p {
  margin: 0;
  max-width: 58ch;
}

.unified-chat-offer__offer-card {
  display: grid;
  gap: 14px;
}

.unified-chat-offer__offer-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.unified-chat-offer__offer-meta-bar span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 999px;
  background: rgba(11, 24, 32, 0.03);
  color: var(--graphite);
  font-size: 0.8rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.unified-chat-offer__offer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.unified-chat-offer__footer-note {
  margin: 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: 0.92rem;
}

.unified-chat-offer__offer-actions .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.unified-chat-offer__offer-actions .btn {
  min-height: 48px;
}

.unified-chat-offer__layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(18px, 2.8vw, 28px);
}

.unified-chat-offer__panel {
  gap: 18px;
  padding: clamp(18px, 2.6vw, 28px);
  border-radius: 26px;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 251, 250, 0.96)),
    white;
}

.unified-chat-offer__panel-head {
  padding-bottom: 16px;
  border-bottom-color: rgba(11, 24, 32, 0.08);
}

.unified-chat-offer__panel-head h2 {
  font-size: clamp(1.4rem, 2vw, 2.1rem);
}

.unified-chat-offer__status {
  min-width: min(300px, 100%);
  padding: 14px 16px;
  border-radius: 16px;
}

.unified-chat-offer__thread {
  min-height: 210px;
  max-height: 280px;
  padding: 16px;
  background:
    radial-gradient(circle at top right, rgba(61, 139, 22, 0.05), transparent 34%),
    linear-gradient(180deg, #f9fbf9 0%, #eef4ef 100%);
}

.unified-chat-offer__message {
  max-width: min(90%, 700px);
}

.unified-chat-offer__presets {
  gap: 10px;
}

.unified-chat-offer__chip {
  min-height: 38px;
  border-color: rgba(11, 24, 32, 0.08);
  background: rgba(11, 24, 32, 0.03);
}

.unified-chat-offer__composer-form {
  gap: 12px;
}

.unified-chat-offer__composer-stack {
  display: grid;
  gap: 12px;
}

.unified-chat-offer__composer textarea {
  width: 100%;
  min-height: 160px;
  padding: 16px 18px;
  border: 1px solid rgba(11, 24, 32, 0.12);
  border-radius: 18px;
  background: #fbfcf8;
  resize: vertical;
}

.unified-chat-offer__submit {
  width: 100%;
  min-height: 56px;
  justify-content: center;
}

.unified-chat-offer__composer-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.unified-chat-offer__thread-shell {
  display: grid;
  gap: 10px;
}

.unified-chat-offer__thread-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.unified-chat-offer__assurance {
  gap: 10px;
}

.unified-chat-offer__assurance span {
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 999px;
  background: rgba(11, 24, 32, 0.03);
}

.unified-chat-offer__feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.unified-chat-offer__feature {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 24px rgba(11, 24, 32, 0.05);
}

.unified-chat-offer__customer-card {
  background: linear-gradient(180deg, #fbfdff, #f3f7f4);
}

.unified-chat-offer__customer-grid {
  gap: 12px;
}

.unified-chat-offer__field input {
  min-height: 52px;
  border-radius: 14px;
}

.unified-chat-offer__offer-shell {
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 246, 0.96)),
    white;
}

.unified-chat-offer__offer-empty {
  min-height: 240px;
}

.unified-chat-offer__offer-card {
  gap: 14px;
}

.unified-chat-offer__offer-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.unified-chat-offer__offer-summary div {
  min-height: 96px;
}

.unified-chat-offer__offer-meta-bar {
  gap: 8px;
}

.unified-chat-offer__offer-product {
  grid-template-columns: 132px minmax(0, 1fr);
}

.unified-chat-offer__offer-product h4 {
  font-size: 1.02rem;
}

.unified-chat-offer__offer-meta {
  gap: 8px;
}

.unified-chat-offer__shell {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(18px, 2.8vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 248, 0.98));
  box-shadow: 0 30px 90px rgba(11, 24, 32, 0.08);
}

.unified-chat-offer__topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.unified-chat-offer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--graphite);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.unified-chat-offer__brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green-strong);
  border-radius: 999px;
  color: var(--green-strong);
  background: rgba(61, 139, 22, 0.06);
  font-size: 0.9rem;
}

.unified-chat-offer__brand-mark::before {
  content: "⚡";
}

.unified-chat-offer__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(61, 139, 22, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(61, 139, 22, 0.1), rgba(61, 139, 22, 0.04));
  color: var(--graphite);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unified-chat-offer__live-badge span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-strong);
  box-shadow: 0 0 0 6px rgba(61, 139, 22, 0.12);
}

.unified-chat-offer__live-badge--small {
  min-height: 34px;
  padding: 7px 12px;
}

.unified-chat-offer__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(18px, 2.8vw, 28px);
  align-items: start;
}

.unified-chat-offer__panel {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 251, 249, 0.96));
  box-shadow: none;
}

.unified-chat-offer__panel--intro {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 251, 247, 0.97));
}

.unified-chat-offer__panel--preview {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 248, 0.97));
}

.unified-chat-offer__intro-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 4.4vw, 4.4rem);
  letter-spacing: -0.04em;
}

.unified-chat-offer__intro-copy p {
  max-width: 32ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.unified-chat-offer__composer-form {
  display: grid;
  gap: 12px;
}

.unified-chat-offer__composer-form textarea {
  width: 100%;
  min-height: 176px;
  padding: 18px;
  border: 1px solid rgba(11, 24, 32, 0.12);
  border-radius: 20px;
  background: white;
  resize: vertical;
}

.unified-chat-offer__submit {
  width: 100%;
  min-height: 60px;
  justify-content: center;
}

.unified-chat-offer__trustline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 0;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 700;
}

.unified-chat-offer__trustline span + span {
  position: relative;
  padding-left: 18px;
}

.unified-chat-offer__trustline span + span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green-strong);
}

.unified-chat-offer__mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.unified-chat-offer__mini-card {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 24px rgba(11, 24, 32, 0.05);
}

.unified-chat-offer__mini-card span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-strong);
  box-shadow: 0 0 0 6px rgba(61, 139, 22, 0.12);
}

.unified-chat-offer__mini-card strong {
  font-size: 1rem;
}

.unified-chat-offer__mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.unified-chat-offer__contact-card {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff, #f3f7f4);
}

.unified-chat-offer__contact-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.unified-chat-offer__contact-head strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.unified-chat-offer__customer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.unified-chat-offer__field {
  gap: 6px;
  font-size: 0.84rem;
}

.unified-chat-offer__field span {
  font-size: 0.72rem;
}

.unified-chat-offer__field input {
  min-height: 46px;
  padding: 11px 12px;
  border-radius: 12px;
}

.unified-chat-offer__field--full {
  grid-column: 1 / -1;
}

.unified-chat-offer__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
  cursor: pointer;
}

.unified-chat-offer__consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--gold);
}

.unified-chat-offer__consent a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
}

.unified-chat-offer__thread[hidden] {
  display: none;
}

.unified-chat-offer__panel-head--compact {
  align-items: center;
}

.unified-chat-offer__panel-head--compact h2 {
  margin-top: 4px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.unified-chat-offer__offer-shell {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.unified-chat-offer__warning {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(136, 88, 0, 0.16);
  border-radius: 18px;
  background: #fff8ea;
  color: #7a4a00;
}

.unified-chat-offer__warning p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 700;
}

.unified-chat-offer__offer-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 54px rgba(11, 24, 32, 0.08);
}

.unified-chat-offer__offer-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.unified-chat-offer__offer-head strong {
  font-size: 1.1rem;
}

.unified-chat-offer__offer-head span {
  color: var(--muted);
  font-weight: 700;
}

.unified-chat-offer__offer-products {
  display: grid;
  gap: 0;
}

.unified-chat-offer__offer-product {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(11, 24, 32, 0.08);
}

.unified-chat-offer__offer-product:first-child {
  border-top: 0;
  padding-top: 0;
}

.unified-chat-offer__offer-product img {
  width: 56px;
  height: 56px;
  min-height: 56px;
  object-fit: cover;
  border-radius: 14px;
}

.unified-chat-offer__offer-product-copy {
  display: grid;
  gap: 2px;
}

.unified-chat-offer__offer-product-copy h4 {
  margin: 0;
  font-size: 1rem;
}

.unified-chat-offer__offer-product-copy p {
  margin: 0;
  color: var(--graphite);
  font-size: 0.88rem;
}

.unified-chat-offer__offer-product-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.unified-chat-offer__offer-product strong {
  color: var(--green-strong);
  font-size: 1rem;
  white-space: nowrap;
}

.unified-chat-offer__offer-more {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.unified-chat-offer__offer-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.unified-chat-offer__offer-summary div {
  min-height: 104px;
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 18px;
  background: #f4f8f4;
}

.unified-chat-offer__offer-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.unified-chat-offer__offer-summary strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.8vw, 1.26rem);
  font-variant-numeric: tabular-nums;
}

.unified-chat-offer__offer-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.unified-chat-offer__feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 4px;
}

.unified-chat-offer__feature {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 24px rgba(11, 24, 32, 0.05);
}

.unified-chat-offer__feature span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-strong);
  box-shadow: 0 0 0 6px rgba(61, 139, 22, 0.12);
}

.unified-chat-offer__feature strong {
  font-size: 1rem;
}

.unified-chat-offer__feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1120px) {
  .unified-chat-offer__layout {
    grid-template-columns: 1fr;
  }

  .unified-chat-offer__feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unified-chat-offer__mini-grid {
    grid-template-columns: 1fr;
  }

  .unified-chat-offer__topline {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .unified-chat-offer__customer-grid,
  .unified-chat-offer__mini-grid,
  .unified-chat-offer__offer-summary,
  .unified-chat-offer__feature-row {
    grid-template-columns: 1fr;
  }

  .unified-chat-offer__panel-head {
    flex-direction: column;
  }

  .unified-chat-offer__status {
    min-width: 0;
    width: 100%;
  }

  .unified-chat-offer__offer-product {
    grid-template-columns: 1fr;
  }

  .unified-chat-offer__offer-product img {
    min-height: 180px;
    width: 100%;
    height: 180px;
  }

  .unified-chat-offer__offer-head,
  .unified-chat-offer__offer-footer,
  .unified-chat-offer__contact-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .unified-chat-offer__offer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .unified-chat-offer__offer-actions .buttons {
    width: 100%;
  }

  .unified-chat-offer__offer-actions .buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .unified-chat-offer__mini-card,
  .unified-chat-offer__feature {
    min-height: 92px;
  }
}

.staffing-section {
  background:
    linear-gradient(180deg, #fbfcf8 0%, var(--paper) 100%);
}

.staffing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.staffing-panel,
.staffing-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.staffing-panel {
  padding: clamp(20px, 3vw, 30px);
}

.staffing-panel p {
  margin: 18px 0 0;
  color: var(--muted);
}

.staffing-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.staffing-role {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(11, 24, 32, 0.08);
  border-radius: 14px;
  background: #fbfcf8;
}

.staffing-role span {
  color: var(--green-strong);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.staffing-role strong {
  color: var(--ink);
  font-size: 1rem;
}

.staffing-role p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.staffing-step {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(11, 24, 32, 0.08);
}

.staffing-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  border: 1px solid rgba(61, 139, 22, 0.14);
  border-radius: var(--radius);
  color: var(--green-strong);
  font-weight: 950;
}

.staffing-step p {
  margin: 0;
  color: var(--muted);
}

.staffing-eu {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.staffing-eu article {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 3vw, 28px);
}

.staffing-eu article + article {
  border-top: 1px solid var(--line);
}

.staffing-eu span {
  color: var(--green-strong);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.staffing-eu strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.staffing-eu p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .unified-chat-offer__header,
  .unified-chat-offer__composer-row,
  .unified-chat-offer__offer-product,
  .unified-chat-offer__offer-summary,
  .staffing-grid,
  .staffing-step-grid,
  .staffing-role-grid {
    grid-template-columns: 1fr;
  }

  .unified-chat-offer__header {
    flex-direction: column;
  }

  .unified-chat-offer__status {
    min-width: 0;
  }

  .unified-chat-offer__offer-product img {
    min-height: 180px;
  }

  .unified-chat-offer__email {
    width: 100%;
  }
}

/* Nivåväljare i liveofferten: Budget / Prisvärd / Premium */
.unified-chat-offer__tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 8px;
  margin: -4px 0 4px;
}

.unified-chat-offer__tier {
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-strong);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.unified-chat-offer__tier:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}

.unified-chat-offer__tier:focus-visible {
  outline: 2px solid var(--green-strong);
  outline-offset: 2px;
}

.unified-chat-offer__tier span {
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.unified-chat-offer__tier strong {
  font-size: 0.98rem;
  font-weight: 850;
}

.unified-chat-offer__tier small {
  font-size: 0.72rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.unified-chat-offer__tier.is-selected {
  border-color: var(--green-strong);
  background: var(--green-soft);
}

.unified-chat-offer__tier.is-selected span {
  color: var(--green-strong);
}

/* Markering när antalet inte angavs av kunden */
.unified-chat-offer__assumed {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(198, 155, 52, 0.16);
  color: #7a5f14;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.03em;
}

/* Tomläget innan kunden skrivit något: förklarar vad som händer utan
   att hitta på produkter, priser eller butiker som inte finns. */
.unified-chat-offer__empty {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
}

.unified-chat-offer__empty-head strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 850;
  margin-bottom: 4px;
}

.unified-chat-offer__empty-head p {
  margin: 0;
  color: var(--muted);
}

.unified-chat-offer__empty-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.unified-chat-offer__empty-steps li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.unified-chat-offer__empty-steps span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-strong);
  font-size: 0.82rem;
  font-weight: 850;
}

.unified-chat-offer__empty-tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.unified-chat-offer__empty-tiers span {
  padding: 9px 10px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.unified-chat-offer__empty-sources {
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--muted);
}

/* Statusrad under organisationsnumret: visar vad registret svarat */
.unified-chat-offer__org-status {
  display: block;
  margin-top: 5px;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.35;
}

.unified-chat-offer__org-status[data-lage="vantar"] { color: var(--muted); }
.unified-chat-offer__org-status[data-lage="ok"] { color: var(--green-strong); }
.unified-chat-offer__org-status[data-lage="fel"] { color: #a3301c; }
.unified-chat-offer__org-status[data-lage="varning"] { color: #8a6d1f; }
.unified-chat-offer__org-status[data-lage="obekraftad"] { color: var(--muted); font-weight: 600; }

