﻿:root {
  --color-navy-980: #041228;
  --color-navy-950: #081a33;
  --color-navy-900: #0d2548;
  --color-navy-850: #123566;
  --color-blue-700: #1e4f95;
  --color-blue-600: #2f6dc6;
  --color-blue-500: #3379dd;
  --color-sky-100: #eaf2ff;
  --color-surface: #ffffff;
  --color-bg: #f3f6fc;
  --color-text: #10233f;
  --color-muted: #4a607f;
  --color-border: #d6e0ef;
  --color-accent-red: #d63031;
  --color-success: #1f9d5a;

  --radius-xl: 1.35rem;
  --radius-lg: 1.05rem;
  --radius-md: 0.85rem;

  --shadow-soft: 0 16px 32px rgba(9, 26, 52, 0.08);
  --shadow-card: 0 14px 30px rgba(7, 27, 56, 0.12);
  --shadow-hero: 0 28px 60px rgba(2, 9, 24, 0.32);

  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;

  --container: 74rem;
  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  line-height: 1.55;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #8ec0ff;
  outline-offset: 2px;
  border-radius: 0.35rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, var(--color-navy-980), var(--color-navy-900));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--space-5);
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}

.brand-main {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-klar {
  color: #eaf2ff;
}

.brand-it {
  color: var(--color-accent-red);
}

.brand-sub {
  margin-top: 0.1rem;
  font-size: 0.78rem;
  color: #bcd2f7;
}

.site-nav {
  justify-self: center;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu a {
  color: #e8f1ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.primary-menu a:hover {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #eaf2ff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.header-portal {
  text-decoration: none;
  color: #eaf2ff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.58rem 0.95rem;
  font-weight: 600;
  font-size: 0.86rem;
}

.header-cta {
  text-decoration: none;
  background: linear-gradient(120deg, #2f7fff, #1b62da);
  color: #fff;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(21, 86, 196, 0.35);
}

/* Generic sections */
.section-block {
  padding: var(--space-12) 0;
}

.section-head {
  margin-bottom: var(--space-8);
}

.section-intro {
  max-width: 44rem;
  margin: var(--space-4) 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 var(--space-2);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue-700);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 78% 18%, rgba(98, 144, 220, 0.34), transparent 38%),
    linear-gradient(130deg, #06142b, #0a2345 52%, #0f2f5e);
  color: #ffffff;
  padding: var(--space-14) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.72fr);
  gap: var(--space-10);
  align-items: center;
}

.hero .eyebrow {
  color: #aac8ff;
}

.hero h1 {
  max-width: 18ch;
}

.lead {
  max-width: 62ch;
  font-size: 1.1rem;
  color: #d8e7ff;
}

.hero-sublead {
  margin: var(--space-5) 0 0;
  color: #c0d9ff;
  max-width: 60ch;
}

.hero-system-note {
  margin: var(--space-3) 0 0;
  color: #f6fbff;
  font-size: 0.98rem;
  font-weight: 800;
}

.hero-segment-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  max-width: 50rem;
  margin: 0 0 var(--space-6);
}

.hero-segment-pill {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 100%;
  border: 1px solid rgba(192, 217, 255, 0.34);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.hero-segment-pill--business {
  border-color: rgba(255, 255, 255, 0.44);
  background:
    radial-gradient(circle at 94% 12%, rgba(218, 42, 51, 0.28), transparent 35%),
    rgba(255, 255, 255, 0.1);
}

.hero-segment-pill strong {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-segment-pill p {
  margin: 0;
  color: #d8e7ff;
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero-segment-list {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1.1rem;
  color: #dbeaff;
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-segment-cta {
  margin-top: auto;
  color: #cfe2ff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.hero-actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-actions--main {
  align-items: center;
}

.hero-link {
  color: #d8e7ff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.hero-side {
  display: grid;
  align-content: start;
  gap: var(--space-4);
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.86rem 1.3rem;
}

.btn-primary {
  background: linear-gradient(120deg, var(--color-blue-500), #1f65dd);
  color: #fff;
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #f3f8ff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-visual-panel {
  display: grid;
  gap: var(--space-4);
}

.hero-visual-media {
  position: relative;
  overflow: hidden;
  min-height: 28rem;
  border: 1px solid rgba(157, 190, 236, 0.45);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #071a36, #12345f);
  box-shadow: var(--shadow-hero);
}

.hero-visual-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-visual-fallback {
  min-height: inherit;
}

.hero-visual-media--business {
  min-height: 13rem;
  background: linear-gradient(135deg, rgba(8, 22, 44, 0.92), rgba(104, 28, 42, 0.82));
}

.hero-assurance {
  display: grid;
  gap: var(--space-1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.08);
  color: #d8e7ff;
}

.hero-assurance strong {
  color: #ffffff;
}

.image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(157, 190, 236, 0.45);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #071a36, #12345f);
  box-shadow: var(--shadow-hero);
  min-height: 18rem;
}

.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-card--hero {
  min-height: 19.5rem;
}

.image-card--service {
  min-height: 21rem;
  background: linear-gradient(135deg, #ffffff, #eaf3ff);
  box-shadow: var(--shadow-card);
}

.image-card--business {
  min-height: 14rem;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 28px rgba(12, 42, 84, 0.14);
}

.image-card--network {
  min-height: 16rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 36px rgba(12, 42, 84, 0.16);
}

.image-card--portal {
  min-height: 17rem;
  margin-top: var(--space-5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.image-fallback {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-2);
  padding: var(--space-6);
  color: #ffffff;
}

.image-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 24% 24%, rgba(82, 156, 255, 0.42), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, #071a36, #12345f 62%, #0a2345);
}

.image-fallback::after {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius-xl) - 0.6rem);
}

.image-fallback h2,
.image-fallback h3,
.image-fallback p {
  margin: 0;
  color: inherit;
}

.image-fallback p:not(.visual-kicker) {
  max-width: 28rem;
  color: #d8e7ff;
}

.visual-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a9c9ff;
}

.visual-orb,
.visual-device,
.visual-shield,
.visual-network,
.visual-dashboard {
  position: relative;
  width: 5.4rem;
  height: 5.4rem;
  margin-bottom: auto;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 20px 44px rgba(0, 0, 0, 0.18);
}

.visual-orb::before,
.visual-device::before,
.visual-shield::before,
.visual-network::before,
.visual-dashboard::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, #ffffff, #9fc3ff);
}

.visual-orb::after {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -0.8rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(218, 42, 51, 0.82);
}

.visual-device::before {
  inset: 1.25rem 0.85rem 1.45rem;
  border-radius: 0.55rem;
}

.visual-device::after {
  content: "";
  position: absolute;
  left: 1.55rem;
  right: 1.55rem;
  bottom: 1rem;
  height: 0.36rem;
  border-radius: 999px;
  background: #ffffff;
}

.visual-shield::before {
  clip-path: polygon(50% 0, 88% 18%, 78% 78%, 50% 100%, 22% 78%, 12% 18%);
  border-radius: 0.2rem;
}

.visual-network::before {
  inset: 1.4rem 0.95rem;
  border-radius: 999px;
  box-shadow: -1.15rem 0 0 rgba(255, 255, 255, 0.75), 1.15rem 0 0 rgba(255, 255, 255, 0.75);
}

.visual-network::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.25rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.visual-dashboard::before {
  inset: 0.9rem;
  border-radius: 0.8rem;
  background:
    linear-gradient(90deg, rgba(9, 36, 78, 0.16) 34%, transparent 34% 42%, rgba(9, 36, 78, 0.16) 42%),
    linear-gradient(135deg, #ffffff, #9fc3ff);
}

.fine {
  margin: var(--space-4) 0 0;
  color: #bed5fb;
  font-size: 0.95rem;
}

/* Lead service directly below hero */
.lead-service-strip {
  padding: var(--space-7) 0;
  background: linear-gradient(180deg, #071a36 0%, #f6f9fd 100%);
}

.lead-service-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  gap: var(--space-6);
  align-items: center;
  border: 1px solid #cfe0fb;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.lead-service-copy p:last-child {
  max-width: 48rem;
  color: var(--color-muted);
}

.lead-service-meta {
  display: grid;
  justify-items: start;
  gap: var(--space-2);
}

.lead-service-meta strong {
  color: var(--color-blue-700);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.lead-service-meta span {
  color: var(--color-muted);
}

/* Trust strip */
.trust-strip {
  background: #071a36;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  padding: var(--space-4) 0;
}

.trust-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: var(--space-3);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 0.8rem;
  color: #dce9ff;
}

.trust-chip h3 {
  font-size: 0.98rem;
  color: #f1f7ff;
}

.trust-chip p {
  margin: 0.25rem 0 0;
  color: #bfd4f6;
  font-size: 0.86rem;
}

.trust-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 0.55rem;
  background: rgba(89, 156, 255, 0.24);
  border: 1px solid rgba(133, 188, 255, 0.5);
  display: grid;
  place-items: center;
  font-size: 0.86rem;
  font-weight: 800;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.service-card {
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
}

.service-card.large {
  min-height: 272px;
}

.service-card--lead {
  border-color: #98bbea;
  box-shadow: 0 18px 38px rgba(12, 42, 84, 0.16);
}

.service-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: start;
}

.service-icon-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  background: #e7f0ff;
  color: var(--color-blue-700);
  font-weight: 800;
  display: grid;
  place-items: center;
}

.service-badge {
  margin: 0.3rem 0 0;
  color: var(--color-success);
  font-size: 0.85rem;
  font-weight: 700;
}

.card-price {
  color: var(--color-blue-700);
  font-weight: 800;
  margin: var(--space-4) 0 var(--space-2);
}

.price-note {
  margin: 0 0 var(--space-3);
  color: var(--color-muted);
  font-size: 0.95rem;
}

.service-scope-list {
  margin: var(--space-4) 0 0;
  padding-left: 1.1rem;
  color: var(--color-muted);
}

.service-scope-list li {
  margin-bottom: var(--space-2);
}

.service-link {
  display: inline-block;
  margin-top: var(--space-4);
  color: var(--color-blue-700);
  font-weight: 700;
  text-decoration: none;
}

.image-story-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(47, 112, 214, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f5f9ff);
}

.image-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: var(--space-8);
  align-items: center;
}

.image-story-copy {
  max-width: 42rem;
}

.image-story-copy p {
  color: var(--color-muted);
}

.image-story-copy .check-list {
  margin-top: var(--space-5);
}

.image-fallback--service {
  color: var(--color-ink);
}

.image-fallback--service::before {
  background:
    radial-gradient(circle at 72% 22%, rgba(47, 112, 214, 0.24), transparent 30%),
    radial-gradient(circle at 20% 76%, rgba(218, 42, 51, 0.12), transparent 25%),
    linear-gradient(135deg, #ffffff, #e8f2ff);
}

.image-fallback--service::after {
  border-color: rgba(12, 42, 84, 0.12);
}

.image-fallback--service .visual-kicker {
  color: var(--color-blue-700);
}

.image-fallback--service p:not(.visual-kicker) {
  color: var(--color-muted);
}

.image-fallback--network,
.image-fallback--portal {
  min-height: inherit;
}

.image-fallback--network::before {
  background:
    radial-gradient(circle at 78% 18%, rgba(218, 42, 51, 0.24), transparent 26%),
    radial-gradient(circle at 22% 74%, rgba(82, 156, 255, 0.34), transparent 28%),
    linear-gradient(145deg, #071a36, #12345f 62%, #0a2345);
}

.image-fallback--portal::before {
  background:
    radial-gradient(circle at 82% 22%, rgba(126, 224, 163, 0.2), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(82, 156, 255, 0.36), transparent 30%),
    linear-gradient(145deg, #071a36, #12345f 62%, #0a2345);
}

/* Security */
.section-contrast {
  background: linear-gradient(180deg, #edf3ff, #f7faff);
}

.security-section .section-head {
  max-width: 48rem;
}

.security-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
}

.security-card {
  background: var(--color-surface);
  border: 1px solid #cfe0fb;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.security-card--accent {
  border-color: #9bc0f1;
  box-shadow: 0 18px 38px rgba(12, 42, 84, 0.15);
}

.security-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  background: #e4eeff;
  color: var(--color-blue-700);
  font-weight: 800;
}

.security-card p {
  color: var(--color-muted);
}

.benefit-list {
  margin: var(--space-4) 0 0;
  padding-left: 1.1rem;
  color: var(--color-muted);
}

.benefit-list li {
  margin-bottom: var(--space-2);
}

.text-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: var(--space-4);
  color: var(--color-blue-700);
  font-weight: 800;
  text-decoration: none;
}

/* Business */
.business-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: var(--space-8);
  align-items: stretch;
  background: linear-gradient(135deg, #ffffff, #f3f8ff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-soft);
}

.business-copy p {
  color: var(--color-muted);
  max-width: 42rem;
}

.business-audience {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-5) 0;
}

.business-audience span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cde0f8;
  border-radius: 999px;
  background: #ffffff;
  padding: 0.48rem 0.82rem;
  color: var(--color-blue-700);
  font-weight: 700;
  font-size: 0.92rem;
}

.fine-print {
  margin-top: var(--space-5);
  padding-left: var(--space-4);
  border-left: 3px solid #9bc0f1;
  font-size: 0.95rem;
}

.business-panel {
  background: #ffffff;
  border: 1px solid #cfe0fb;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}

.check-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-muted);
}

.check-list li {
  margin-bottom: var(--space-3);
}

.check-list--strong {
  padding-left: 0;
  list-style: none;
}

.check-list--strong li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list--strong li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--color-success);
}

/* Event and exhibition networking */
.network-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 127, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.network-section--top {
  padding: var(--space-8) 0;
}

.network-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.34fr);
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  background: linear-gradient(135deg, #ffffff, #eef5ff);
  box-shadow: var(--shadow-soft);
}

.network-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.network-copy p {
  max-width: 46rem;
  color: var(--color-muted);
}

.network-side {
  display: grid;
  gap: var(--space-4);
  align-content: center;
  justify-items: stretch;
}

.network-side .btn {
  justify-self: start;
}

.network-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem var(--space-4);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.network-service-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 0.94rem;
}

.network-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--color-blue-500);
}

.network-partner-note {
  margin: var(--space-5) 0 0;
  max-width: 52rem;
  border-left: 3px solid rgba(218, 42, 51, 0.68);
  padding-left: var(--space-4);
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Safe work strip */
.safe-work-strip {
  background: #071a36;
  color: #eaf2ff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.safe-work-grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  align-items: stretch;
  padding: var(--space-6) 0;
}

.safe-work-head .eyebrow {
  color: #9fc3ff;
}

.safe-work-head h2 {
  color: #ffffff;
}

.safe-pill {
  display: grid;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.safe-pill span {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(89, 156, 255, 0.24);
  border: 1px solid rgba(133, 188, 255, 0.5);
  font-weight: 800;
}

.safe-pill p {
  margin: 0;
  color: #bfd4f6;
  font-size: 0.92rem;
}

/* Monitor and portal teasers */
.dashboard-teasers {
  background: #f7faff;
}

.portal-system-section .section-head {
  margin-bottom: var(--space-6);
}

.portal-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.portal-system-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.portal-system-card--business {
  background: linear-gradient(135deg, #06142b, #0d2d58);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-hero);
}

.portal-system-card p {
  color: var(--color-muted);
}

.portal-system-card--business p {
  color: #d7e7ff;
}

.portal-system-card ul {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding-left: 1.15rem;
  color: var(--color-muted);
}

.portal-system-card--business ul {
  color: #d7e7ff;
}

.portal-system-visual {
  background: linear-gradient(135deg, #071a36, #12345f);
}

.monitor-card--wide {
  margin-top: var(--space-5);
}

.dashboard-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-5);
}

.dashboard-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(16rem, 1fr);
  gap: var(--space-6);
  align-items: stretch;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.monitor-card {
  background: linear-gradient(135deg, #06142b, #0d2d58);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
}

.dashboard-card-copy p {
  color: inherit;
}

.monitor-card .eyebrow {
  color: #9fc3ff;
}

.monitor-card .dashboard-card-copy p {
  color: #d7e7ff;
}

.dashboard-preview {
  display: grid;
  gap: var(--space-3);
  align-content: start;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
}

.status-row {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.status-row span {
  color: inherit;
}

.status-row strong {
  color: #7ee0a3;
}

.status-row--locked strong {
  color: #f4d27a;
}

.planned-badge {
  display: inline-flex;
  margin-top: var(--space-4);
  border-radius: 999px;
  background: #dff6ea;
  color: #147a44;
  padding: 0.38rem 0.75rem;
  font-weight: 800;
  font-size: 0.88rem;
}

/* Projects, advice and testimonials */
.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1fr);
  gap: var(--space-8);
  align-items: end;
}

.projects-section {
  background: #ffffff;
}

.projects-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: var(--space-5);
}

.project-card {
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
}

.project-card--lead {
  background: linear-gradient(135deg, #06142b, #0d2d58);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: var(--shadow-hero);
}

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

.project-card--lead p {
  color: #d7e7ff;
}

.project-kicker,
.advice-label {
  display: inline-flex;
  margin-bottom: var(--space-4);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  background: #e7f0ff;
  color: var(--color-blue-700);
  font-weight: 800;
  font-size: 0.82rem;
}

.project-card--lead .project-kicker {
  background: rgba(89, 156, 255, 0.22);
  color: #eaf2ff;
  border: 1px solid rgba(133, 188, 255, 0.45);
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.project-stats span {
  display: grid;
  gap: 0.15rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  color: #d7e7ff;
}

.project-stats strong {
  color: #ffffff;
}

.partner-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-top: var(--space-5);
  background: #eef5ff;
  border: 1px solid #cfe0fb;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.partner-callout p {
  color: var(--color-muted);
}

.btn-light-alt {
  background: #ffffff;
  color: var(--color-blue-700);
  border: 1px solid #bcd3f3;
}

.advice-section {
  background: #f7faff;
}

.advice-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.5fr);
  gap: var(--space-5);
}

.advice-intro {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
}

.advice-intro p,
.advice-card p {
  color: var(--color-muted);
}

.advice-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.advice-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
}

.advice-card .text-link {
  margin-top: auto;
}

.testimonials-section {
  background: #ffffff;
}

.center-head {
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.testimonial-card {
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--color-text);
  font-size: 1.02rem;
}

.testimonial-card figcaption {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-5);
  color: var(--color-muted);
}

.testimonial-card figcaption span {
  color: #e0a400;
  letter-spacing: 0.08em;
}

/* Homepage inquiry section */
.contact-section {
  background:
    radial-gradient(circle at top left, rgba(190, 18, 60, 0.1), transparent 34%),
    linear-gradient(135deg, #0b203f 0%, #123761 58%, #f6f9fd 58%, #f6f9fd 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: var(--space-8);
  align-items: start;
}

.contact-copy {
  color: #ffffff;
  padding: var(--space-7);
}

.contact-copy .eyebrow,
.contact-copy .section-intro {
  color: rgba(255, 255, 255, 0.82);
}

.contact-copy h2 {
  color: #ffffff;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}

.contact-badges span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.55rem 0.85rem;
}

.contact-note {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.86);
  padding: var(--space-4);
}

.contact-direct {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.contact-direct a,
.contact-direct span {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.contact-direct a:hover {
  text-decoration: underline;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-strong);
  padding: var(--space-3);
}

.contact-form-fallback {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  color: var(--color-muted);
  margin: 0;
  padding: var(--space-6);
}

/* Request forms */
.klarwerk-form {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: var(--space-6);
}

.klarwerk-form h3 {
  color: var(--color-navy);
  margin-bottom: var(--space-5);
}

.klarwerk-form-message {
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 var(--space-5);
  padding: var(--space-4);
}

.klarwerk-form-message strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: var(--space-2);
}

.klarwerk-form-message p {
  color: inherit;
  margin: 0;
}

.klarwerk-form-message--success {
  background: #ecfdf5;
  border-color: rgba(34, 197, 94, 0.35);
  color: #064e3b;
  box-shadow: 0 16px 34px rgba(6, 78, 59, 0.08);
}

.klarwerk-form-message--error {
  background: #fff7ed;
  border-color: rgba(239, 68, 68, 0.32);
  color: #7f1d1d;
  box-shadow: 0 16px 34px rgba(127, 29, 29, 0.07);
}

.klarwerk-form p {
  margin: 0 0 var(--space-4);
}

.klarwerk-form label {
  display: grid;
  gap: var(--space-2);
  color: var(--color-text);
  font-weight: 700;
}

.klarwerk-form input[type="text"],
.klarwerk-form input[type="email"],
.klarwerk-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #f8fbff;
  color: var(--color-text);
  font: inherit;
  padding: 0.82rem 0.95rem;
}

.klarwerk-form textarea {
  resize: vertical;
}

.klarwerk-form input[type="text"]:focus,
.klarwerk-form input[type="email"]:focus,
.klarwerk-form textarea:focus {
  border-color: var(--color-blue-500);
  box-shadow: 0 0 0 3px rgba(51, 121, 221, 0.16);
  outline: none;
}

.klarwerk-form input[type="checkbox"] {
  accent-color: var(--color-blue-600);
  margin-right: var(--space-2);
}

.klarwerk-form p:has(input[type="checkbox"]) label {
  display: block;
  background: var(--color-sky-100);
  border: 1px solid #cfe0fb;
  border-radius: var(--radius-md);
  color: var(--color-muted);
  font-weight: 600;
  line-height: 1.45;
  padding: var(--space-4);
}

.klarwerk-form button[type="submit"] {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--color-blue-500), #1f65dd);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0.9rem 1.35rem;
}

.klarwerk-form button[type="submit"]:hover,
.klarwerk-form button[type="submit"]:focus-visible {
  filter: brightness(1.04);
  outline: 3px solid rgba(51, 121, 221, 0.22);
  outline-offset: 3px;
}

.klarwerk-honeypot {
  display: none;
}

/* Secondary panels */
.split-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.mini-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.shop-teaser-grid {
  display: grid;
  gap: var(--space-3);
}

.shop-item {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 0.85rem 1rem;
  border-radius: 0.7rem;
  background: var(--color-sky-100);
}

/* CTA + anchors */
.cta-band {
  background: linear-gradient(140deg, #0d2f5f, #1f4d8f);
  color: #fff;
}

.cta-band .eyebrow {
  color: #bdd6ff;
}

.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.cta-contact {
  margin: var(--space-4) 0 0;
  color: #d7e7ff;
}

.final-cta {
  background: radial-gradient(circle at 12% 20%, rgba(74, 144, 255, 0.32), transparent 34%),
    linear-gradient(130deg, #06142b, #0d2d58);
}

.final-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-8);
}

.final-cta-copy p {
  max-width: 44rem;
}

.final-cta-actions {
  display: grid;
  gap: var(--space-3);
  min-width: 18rem;
}

.final-cta-actions span {
  color: #bdd6ff;
  font-weight: 700;
  text-align: center;
}

.section-anchor {
  height: 0;
}

/* Footer */
.site-footer {
  background: #06142b;
  color: #d6e4ff;
  padding-top: var(--space-8);
}

.footer-contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.footer-contact-band .eyebrow {
  color: #9fc3ff;
}

.footer-contact-band h2 {
  color: #ffffff;
}

.footer-contact-band p {
  margin-bottom: 0;
  color: #bfd4f6;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  padding-bottom: var(--space-8);
}

.footer-shell h3 {
  margin-bottom: var(--space-3);
  color: #fff;
}

.footer-logo {
  margin: 0 0 var(--space-3);
  font-size: 1.3rem;
  font-weight: 800;
}

.footer-brand p,
.footer-shell p {
  color: #bfd4f6;
}

.footer-shell a {
  color: #d6e4ff;
  text-decoration: none;
}

.footer-shell a:hover,
.footer-shell a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.footer-trust {
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: var(--space-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-menu a {
  color: #d6e4ff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: var(--space-4);
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hero-grid,
  .image-story-grid,
  .business-shell,
  .dashboard-teaser-grid,
  .portal-system-grid,
  .split-head,
  .projects-grid,
  .advice-layout,
  .split-2,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid,
  .security-feature-grid,
  .safe-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safe-work-head {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .site-nav.is-open {
    display: block;
  }

  .primary-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
    background: #0c2548;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: var(--space-4);
  }

  .header-actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .service-grid,
  .trust-strip-grid,
  .security-feature-grid,
  .safe-work-grid,
  .dashboard-card,
  .advice-card-grid,
  .testimonial-grid,
  .contact-layout,
  .final-cta-shell {
    grid-template-columns: 1fr;
  }

  .partner-callout,
  .footer-contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact-actions {
    justify-content: flex-start;
  }

  .contact-section {
    background: linear-gradient(180deg, #0b203f 0%, #123761 52%, #f6f9fd 52%, #f6f9fd 100%);
  }

  .contact-copy {
    padding: var(--space-4) 0 0;
  }

  .lead-service-card {
    grid-template-columns: 1fr;
  }

  .cta-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .network-teaser {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .network-side {
    width: 100%;
  }

  .network-side .btn {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .section-block {
    padding: var(--space-10) 0;
  }

  .hero {
    padding: var(--space-12) 0;
  }

  .hero-segment-switch {
    grid-template-columns: 1fr;
  }

  .hero-visual-media {
    min-height: 18rem;
  }

  .network-service-list {
    grid-template-columns: 1fr;
  }

  .image-card,
  .image-card--hero,
  .image-card--service {
    min-height: 15.5rem;
  }

  .image-card--business {
    min-height: 13rem;
  }

  .image-card--network,
  .image-card--portal {
    min-height: 14.5rem;
  }

  .image-fallback {
    padding: var(--space-5);
  }

  .brand-main {
    font-size: 1.16rem;
  }

  .brand-sub {
    font-size: 0.72rem;
  }

  .status-row,
  .shop-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-stats {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    min-width: 0;
    width: 100%;
  }

  .klarwerk-form {
    padding: var(--space-5);
  }

  .klarwerk-form button[type="submit"] {
    width: 100%;
  }
}

/* Light premium Klarwerk redesign
   Keeps the existing WordPress structure, but shifts the visible homepage from
   dark dashboard styling to a bright dual-audience landing page system. */
:root {
  --kw-white: #ffffff;
  --kw-page: #f7fbff;
  --kw-page-blue: #eef6ff;
  --kw-navy: #0b1f3f;
  --kw-navy-soft: #243a5e;
  --kw-muted: #5d6f8d;
  --kw-line: rgba(31, 68, 118, 0.13);
  --kw-blue: #1769ff;
  --kw-blue-dark: #0d55d8;
  --kw-blue-soft: #e8f2ff;
  --kw-red: #ef4444;
  --kw-red-soft: #fff0ed;
  --kw-cyan: #52b7ff;
  --kw-shadow-soft: 0 24px 70px rgba(18, 45, 88, 0.11);
  --kw-shadow-card: 0 18px 46px rgba(18, 45, 88, 0.09);
  --kw-shadow-glow-blue: 0 22px 70px rgba(23, 105, 255, 0.18);
  --kw-shadow-glow-red: 0 22px 70px rgba(239, 68, 68, 0.16);
  --kw-radius-xl: 2rem;
  --kw-radius-lg: 1.35rem;
}

html {
  scroll-padding-top: 7.5rem;
}

body {
  color: var(--kw-navy);
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 7% 8%, rgba(23, 105, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 94% 11%, rgba(239, 68, 68, 0.12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
}

body::before {
  background:
    linear-gradient(90deg, rgba(23, 105, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 105, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.55;
}

h1,
h2,
h3,
.brand-main {
  color: var(--kw-navy);
  font-family: "Aptos Display", "Segoe UI", sans-serif;
}

p,
li {
  color: var(--kw-muted);
}

.anchor-target {
  display: block;
  position: relative;
  top: -7.5rem;
  visibility: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(31, 68, 118, 0.12);
  box-shadow: 0 16px 42px rgba(18, 45, 88, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 5.4rem;
}

.brand {
  color: var(--kw-navy);
}

.brand-sub {
  color: var(--kw-muted);
}

.brand-it,
.hero-highlight--red {
  color: var(--kw-red);
}

.brand-klar,
.hero-highlight--blue {
  color: var(--kw-blue);
}

.primary-menu a {
  color: var(--kw-navy-soft);
}

.primary-menu a::after {
  background: linear-gradient(90deg, var(--kw-blue), var(--kw-red));
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: var(--kw-blue);
}

.menu-toggle,
.header-portal,
.btn-light {
  color: var(--kw-navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 105, 255, 0.18);
  box-shadow: 0 10px 26px rgba(18, 45, 88, 0.07);
}

.header-portal:hover,
.header-portal:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--kw-blue);
  border-color: rgba(23, 105, 255, 0.34);
  box-shadow: var(--kw-shadow-glow-blue);
}

.header-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--kw-blue), #0d55d8);
  box-shadow: 0 15px 34px rgba(23, 105, 255, 0.24);
}

.header-cta:hover,
.header-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(23, 105, 255, 0.3);
}

.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--kw-red), #c83030);
  box-shadow: 0 15px 34px rgba(239, 68, 68, 0.22);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(239, 68, 68, 0.28);
}

.btn,
.header-portal,
.header-cta,
.hero-link,
.text-link,
.service-link {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.btn:focus-visible,
.header-portal:focus-visible,
.header-cta:focus-visible,
.primary-menu a:focus-visible,
.text-link:focus-visible,
.service-link:focus-visible {
  outline: 3px solid rgba(23, 105, 255, 0.35);
  outline-offset: 4px;
}

.hero,
.hero.hero--light {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(4.5rem, 7vw, 7.8rem) 0 clamp(3.5rem, 6vw, 6.5rem);
  background:
    radial-gradient(circle at 16% 26%, rgba(23, 105, 255, 0.18), transparent 20rem),
    radial-gradient(circle at 86% 20%, rgba(239, 68, 68, 0.16), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.94));
  color: var(--kw-navy);
}

.hero::before,
.hero.hero--light::before {
  content: "";
  position: absolute;
  inset: 1.5rem max(1rem, calc((100vw - var(--container)) / 2)) auto;
  height: min(38rem, 72%);
  border: 1px solid rgba(31, 68, 118, 0.08);
  border-radius: 3rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.76), rgba(255,255,255,0.42));
  box-shadow: var(--kw-shadow-soft);
  z-index: -1;
}

.hero-light-shell {
  display: grid;
  grid-template-columns: minmax(13rem, 0.76fr) minmax(27rem, 1.22fr) minmax(13rem, 0.76fr);
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  align-items: center;
}

.hero-center {
  display: grid;
  gap: var(--space-5);
  text-align: center;
  justify-items: center;
  padding: clamp(1rem, 2.5vw, 2rem) 0;
}

.hero-center h1 {
  max-width: 58rem;
  margin: 0;
  color: var(--kw-navy);
  font-size: clamp(2.65rem, 6vw, 5.55rem);
  line-height: 0.99;
  letter-spacing: -0.075em;
}

.hero-highlight {
  display: inline-block;
}

.hero-center .lead {
  max-width: 49rem;
  margin: 0;
  color: var(--kw-navy-soft);
  font-size: clamp(1.05rem, 1.65vw, 1.33rem);
  line-height: 1.62;
}

.hero-actions--main {
  justify-content: center;
  gap: 0.85rem;
}

.hero-link {
  color: var(--kw-navy-soft);
  font-weight: 800;
  text-decoration-color: rgba(23, 105, 255, 0.32);
}

.hero-link:hover,
.hero-link:focus-visible {
  color: var(--kw-blue);
}

.hero-media {
  min-height: clamp(18rem, 31vw, 31rem);
  border-radius: 2.35rem;
  border: 1px solid rgba(31, 68, 118, 0.11);
  background: var(--kw-white);
  box-shadow: var(--kw-shadow-card);
  overflow: hidden;
  align-self: stretch;
}

.hero-media--private {
  background:
    radial-gradient(circle at 28% 24%, rgba(23, 105, 255, 0.18), transparent 12rem),
    linear-gradient(145deg, #ffffff, #edf6ff);
}

.hero-media--business {
  background:
    radial-gradient(circle at 72% 24%, rgba(239, 68, 68, 0.18), transparent 12rem),
    linear-gradient(145deg, #ffffff, #fff1ef);
}

.hero-media-inner {
  position: relative;
  min-height: inherit;
  display: grid;
  align-content: end;
  padding: clamp(1.2rem, 2vw, 1.8rem);
}

.hero-media-inner p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--kw-navy);
  font-weight: 850;
}

.media-dot {
  position: absolute;
  top: 14%;
  left: 15%;
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.9;
}

.media-dot--blue { background: linear-gradient(135deg, var(--kw-blue), var(--kw-cyan)); }
.media-dot--red { background: linear-gradient(135deg, var(--kw-red), #ff9b7b); }

.media-line {
  position: absolute;
  right: 13%;
  top: 20%;
  width: 45%;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(31, 68, 118, 0.12);
  box-shadow: 0 2rem 0 rgba(31, 68, 118, 0.08), 0 4rem 0 rgba(31, 68, 118, 0.07);
}

.media-line--wide {
  left: 16%;
  right: auto;
  top: 40%;
  width: 68%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1.5rem 0 rgba(255, 255, 255, 0.62), 0 3rem 0 rgba(255, 255, 255, 0.5);
}

.media-card {
  position: absolute;
  inset: auto 12% 22% 12%;
  min-height: 8.5rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(31, 68, 118, 0.11);
  box-shadow: 0 18px 46px rgba(18, 45, 88, 0.12);
}

.media-card--laptop::before,
.media-card--network::before {
  content: "";
  position: absolute;
  inset: 22% 14%;
  border-radius: 0.8rem;
  background: linear-gradient(90deg, rgba(23,105,255,0.9), rgba(82,183,255,0.7));
}

.media-card--network::before {
  background: repeating-linear-gradient(90deg, var(--kw-red) 0 12%, transparent 12% 18%), linear-gradient(90deg, rgba(23,105,255,0.75), rgba(239,68,68,0.7));
}

.hero-audience-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.1rem, 2vw, 2.1rem);
}

.audience-card {
  display: grid;
  gap: var(--space-4);
  align-content: start;
  min-height: 100%;
  border-radius: var(--kw-radius-xl);
  padding: clamp(1.45rem, 2.5vw, 2.2rem);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--kw-line);
  box-shadow: var(--kw-shadow-card);
}

.audience-card--private {
  border-color: rgba(23, 105, 255, 0.18);
  background: linear-gradient(150deg, #ffffff, #eef6ff);
}

.audience-card--business {
  border-color: rgba(239, 68, 68, 0.2);
  background: linear-gradient(150deg, #ffffff, #fff1ef);
}

.audience-card:hover {
  transform: translateY(-3px);
}

.audience-card--private:hover { box-shadow: var(--kw-shadow-glow-blue); }
.audience-card--business:hover { box-shadow: var(--kw-shadow-glow-red); }

.audience-card-top {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.audience-card h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.audience-card p {
  margin: 0;
  color: var(--kw-navy-soft);
  font-size: 1.04rem;
}

.audience-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 1rem;
  color: #fff;
  font-weight: 900;
}

.audience-card--private .audience-mark { background: var(--kw-blue); }
.audience-card--business .audience-mark { background: var(--kw-red); }

.hero-segment-list {
  gap: 0.66rem;
}

.hero-segment-list li {
  color: var(--kw-navy-soft);
}

.hero-segment-list li::before {
  background: currentColor;
  opacity: 0.5;
}

.trust-strip,
.trust-strip--light {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(2.7rem, 5vw, 4.5rem);
  background: transparent;
}

.trust-strip-grid {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--kw-line);
  border-radius: var(--kw-radius-xl);
  box-shadow: var(--kw-shadow-card);
  padding: clamp(1rem, 2vw, 1.35rem);
}

.trust-chip {
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(31, 68, 118, 0.12);
  border-radius: 0;
  color: var(--kw-navy);
  box-shadow: none;
}

.trust-chip:last-child {
  border-right: 0;
}

.trust-icon {
  color: var(--kw-blue);
  background: var(--kw-blue-soft);
}

.trust-chip h3 {
  color: var(--kw-navy);
}

.trust-chip p {
  color: var(--kw-muted);
}

.starter-section {
  padding-top: 0;
  background: transparent;
}

.starter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.starter-card {
  display: grid;
  gap: 1.15rem;
  min-height: 100%;
  padding: 1.15rem;
  border: 1px solid var(--kw-line);
  border-radius: var(--kw-radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--kw-shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.starter-card:hover {
  transform: translateY(-4px);
}

.starter-card--private:hover { border-color: rgba(23, 105, 255, 0.25); box-shadow: var(--kw-shadow-glow-blue); }
.starter-card--business:hover { border-color: rgba(239, 68, 68, 0.25); box-shadow: var(--kw-shadow-glow-red); }
.starter-card--portal:hover { border-color: rgba(23, 105, 255, 0.22); box-shadow: var(--kw-shadow-soft); }

.starter-card-visual {
  min-height: 11rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(31, 68, 118, 0.09);
  background: linear-gradient(145deg, #ffffff, #eef6ff);
  position: relative;
  overflow: hidden;
}

.starter-card-visual::before,
.starter-card-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.starter-card-visual::before {
  width: 7rem;
  height: 7rem;
  left: 12%;
  top: 20%;
  background: rgba(23, 105, 255, 0.18);
}

.starter-card-visual::after {
  width: 54%;
  height: 34%;
  right: 11%;
  bottom: 16%;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(18, 45, 88, 0.09);
}

.starter-card-visual--business {
  background: linear-gradient(145deg, #ffffff, #fff1ef);
}

.starter-card-visual--business::before {
  background: rgba(239, 68, 68, 0.18);
}

.starter-card-visual--portal {
  background: linear-gradient(145deg, #ffffff, #f2f7ff);
}

.starter-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.24rem;
}

.starter-card p {
  margin: 0 0 1rem;
}

.text-link,
.service-link {
  color: var(--kw-blue);
  font-weight: 850;
}

.lead-service-strip,
.lead-service-strip--light,
.section-block,
.section-contrast,
.network-section,
.dashboard-teasers,
.advice-section,
.contact-section,
.final-cta-section,
.project-section {
  background: transparent;
}

.lead-service-card,
.network-teaser,
.service-card,
.security-card,
.business-shell,
.safe-work-strip,
.dashboard-card,
.portal-system-card,
.project-card,
.advice-card,
.testimonial-card,
.contact-form-panel,
.footer-contact-band,
.kw-light-card,
.kw-page-card {
  color: var(--kw-navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--kw-line);
  box-shadow: var(--kw-shadow-card);
}

.lead-service-card {
  border-color: rgba(23, 105, 255, 0.2);
  background:
    radial-gradient(circle at 100% 0%, rgba(23, 105, 255, 0.1), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(239,246,255,0.96));
}

.lead-service-list {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.lead-service-list li {
  color: var(--kw-navy-soft);
}

.lead-service-list li::before {
  content: "\2713";
  margin-right: 0.55rem;
  color: var(--kw-blue);
  font-weight: 900;
}

.lead-service-meta {
  background: var(--kw-white);
  border: 1px solid rgba(23, 105, 255, 0.14);
  border-radius: var(--kw-radius-lg);
  box-shadow: 0 16px 38px rgba(18, 45, 88, 0.08);
}

.lead-service-meta strong {
  color: var(--kw-blue);
}

.lead-service-meta span,
.card-price,
.price-note,
.section-intro,
.service-card p,
.security-card p,
.business-shell p,
.dashboard-card p,
.portal-system-card p,
.project-card p,
.advice-card p,
.testimonial-card p,
.footer-contact-band p {
  color: var(--kw-muted);
}

.network-section--compact .network-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.9fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at 96% 10%, rgba(239, 68, 68, 0.11), transparent 18rem),
    radial-gradient(circle at 0% 95%, rgba(23, 105, 255, 0.1), transparent 16rem),
    rgba(255,255,255,0.94);
}

.network-service-list li {
  color: var(--kw-navy-soft);
  background: #fff;
  border-color: rgba(31, 68, 118, 0.11);
  box-shadow: 0 10px 25px rgba(18, 45, 88, 0.06);
}

.network-service-list li::before {
  background: linear-gradient(135deg, var(--kw-red), var(--kw-blue));
}

.eyebrow {
  color: var(--kw-blue);
}

.section-head h2,
.split-head h2,
.lead-service-copy h2,
.network-copy h2,
.dashboard-card h2,
.footer-contact-band h2 {
  color: var(--kw-navy);
}

.service-card,
.security-card,
.dashboard-card,
.project-card,
.advice-card,
.testimonial-card,
.portal-system-card,
.contact-form-panel,
.business-shell,
.safe-pill,
.starter-card,
.audience-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.security-card:hover,
.dashboard-card:hover,
.project-card:hover,
.advice-card:hover,
.testimonial-card:hover,
.portal-system-card:hover,
.safe-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 105, 255, 0.2);
  box-shadow: var(--kw-shadow-soft);
}

.image-card,
.image-fallback {
  background: linear-gradient(145deg, #ffffff, #f0f7ff);
  border-color: rgba(31, 68, 118, 0.11);
  box-shadow: var(--kw-shadow-card);
}

.image-fallback--business,
.image-fallback--network,
.image-fallback--entry-business {
  background: linear-gradient(145deg, #ffffff, #fff0ed);
}

.visual-kicker,
.image-fallback h3,
.image-fallback h2 {
  color: var(--kw-navy);
}

.image-fallback p {
  color: var(--kw-muted);
}

.contact-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(23, 105, 255, 0.09), transparent 18rem),
    radial-gradient(circle at 92% 10%, rgba(239, 68, 68, 0.09), transparent 18rem);
}

.klarwerk-inquiry-form input,
.klarwerk-inquiry-form textarea,
.klarwerk-inquiry-form select,
.contact-form-panel input,
.contact-form-panel textarea,
.contact-form-panel select {
  background: #fff;
  color: var(--kw-navy);
  border: 1px solid rgba(31, 68, 118, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.klarwerk-inquiry-form input:focus,
.klarwerk-inquiry-form textarea:focus,
.klarwerk-inquiry-form select:focus,
.contact-form-panel input:focus,
.contact-form-panel textarea:focus,
.contact-form-panel select:focus {
  border-color: rgba(23, 105, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.12);
  outline: 0;
}

.site-footer {
  color: var(--kw-navy);
  background:
    radial-gradient(circle at 12% 8%, rgba(23, 105, 255, 0.1), transparent 20rem),
    radial-gradient(circle at 86% 2%, rgba(239, 68, 68, 0.09), transparent 20rem),
    linear-gradient(180deg, #f7fbff, #ffffff);
  border-top: 1px solid rgba(31, 68, 118, 0.1);
}

.footer-shell,
.footer-meta {
  border-color: rgba(31, 68, 118, 0.1);
}

.site-footer p,
.site-footer a,
.footer-menu a {
  color: var(--kw-muted);
}

.site-footer .btn-primary {
  color: #ffffff;
}

.site-footer .btn-light {
  color: var(--kw-navy);
}

.site-footer h3,
.footer-logo {
  color: var(--kw-navy);
}

.kw-page-shell {
  background: var(--kw-page);
  color: var(--kw-navy);
}

.kw-page-hero {
  background: radial-gradient(circle at 20% 15%, rgba(23,105,255,0.12), transparent 22rem), #fff;
  border-bottom: 1px solid var(--kw-line);
}

.kw-page-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.kw-gradient-bg {
  background:
    radial-gradient(circle at 12% 20%, rgba(23,105,255,0.13), transparent 18rem),
    radial-gradient(circle at 88% 18%, rgba(239,68,68,0.1), transparent 18rem),
    #fff;
}

@media (max-width: 1180px) {
  .hero-light-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero-center {
    grid-column: 1 / -1;
    order: -1;
  }

  .hero-media {
    min-height: 19rem;
  }

  .network-section--compact .network-teaser {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-nav {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(31, 68, 118, 0.12);
    box-shadow: var(--kw-shadow-card);
  }

  .primary-menu {
    align-items: stretch;
  }

  .primary-menu a {
    display: block;
    padding: 0.78rem 0;
  }

  .hero-light-shell,
  .hero-audience-cards,
  .starter-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 14rem;
  }

  .hero-media--business {
    order: 3;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-chip {
    border-right: 0;
    border-bottom: 1px solid rgba(31, 68, 118, 0.1);
  }

  .trust-chip:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero,
  .hero.hero--light {
    padding-top: 3rem;
  }

  .hero::before,
  .hero.hero--light::before {
    inset: 0.75rem 0.75rem auto;
    height: 52%;
    border-radius: 2rem;
  }

  .hero-center h1 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
    letter-spacing: -0.055em;
  }

  .hero-actions--main,
  .footer-contact-actions {
    align-items: stretch;
    width: 100%;
  }

  .hero-actions--main .btn,
  .hero-actions--main .hero-link {
    width: 100%;
    text-align: center;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .trust-chip,
  .trust-chip:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(31, 68, 118, 0.1);
  }

  .trust-chip:last-child {
    border-bottom: 0;
  }

  .starter-card,
  .audience-card,
  .lead-service-card,
  .network-teaser {
    border-radius: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .header-portal,
  .header-cta,
  .starter-card,
  .audience-card,
  .service-card,
  .security-card,
  .dashboard-card,
  .project-card,
  .advice-card,
  .testimonial-card,
  .portal-system-card,
  .safe-pill {
    transition: none;
  }

  .btn:hover,
  .starter-card:hover,
  .audience-card:hover,
  .service-card:hover,
  .security-card:hover,
  .dashboard-card:hover,
  .project-card:hover,
  .advice-card:hover,
  .testimonial-card:hover,
  .portal-system-card:hover,
  .safe-pill:hover {
    transform: none;
  }
}

/* Hero desktop zoom repair: keep the light premium style usable at 100% and 125%. */
.hero.hero--light {
  overflow: hidden;
  padding: clamp(3rem, 5vw, 5.35rem) 0 clamp(2.4rem, 4vw, 4.25rem);
}

.hero.hero--light::before {
  inset: 1rem max(0.8rem, calc((100vw - var(--container)) / 2)) auto;
  height: clamp(24rem, 58vw, 39rem);
  border-radius: clamp(1.7rem, 3vw, 3rem);
}

.hero-light-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 2vw, 1.8rem);
  align-items: stretch;
  min-width: 0;
}

.hero-light-head {
  display: grid;
  justify-items: center;
  gap: clamp(0.95rem, 1.6vw, 1.35rem);
  width: min(100%, 61.25rem);
  margin-inline: auto;
  text-align: center;
}

.hero-light-head h1 {
  width: min(100%, 61.25rem);
  margin: 0;
  color: var(--kw-navy);
  font-size: clamp(2.35rem, 4vw, 4.55rem);
  line-height: 1.07;
  letter-spacing: -0.055em;
}

.hero-light-head .lead {
  width: min(100%, 48rem);
  margin: 0;
  color: var(--kw-navy-soft);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.hero-light-head .hero-actions--main {
  justify-content: center;
  gap: 0.8rem;
}

.hero-segment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  width: min(100%, 66rem);
  margin-inline: auto;
}

.hero-segment-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: clamp(0.78rem, 1.4vw, 1rem);
  min-width: 0;
  min-height: 0;
  border-radius: clamp(1.25rem, 2vw, 1.8rem);
  padding: clamp(1.05rem, 1.8vw, 1.55rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--kw-line);
  box-shadow: var(--kw-shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-segment-card--private {
  border-color: rgba(23, 105, 255, 0.2);
  background: linear-gradient(150deg, #ffffff, #eef6ff);
}

.hero-segment-card--business {
  border-color: rgba(239, 68, 68, 0.22);
  background: linear-gradient(150deg, #ffffff, #fff1ef);
}

.hero-segment-card:hover {
  transform: translateY(-2px);
}

.hero-segment-card--private:hover {
  box-shadow: var(--kw-shadow-glow-blue);
}

.hero-segment-card--business:hover {
  box-shadow: var(--kw-shadow-glow-red);
}

.hero-segment-card p {
  margin: 0;
  color: var(--kw-navy-soft);
  font-size: clamp(0.96rem, 1.25vw, 1.05rem);
  line-height: 1.48;
}

.hero-segment-card .hero-segment-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.hero-segment-card .hero-segment-list li {
  font-size: 0.98rem;
  line-height: 1.35;
}

.hero-segment-card .btn {
  justify-self: start;
  padding: 0.76rem 1.12rem;
}

@media (max-width: 1120px) {
  .hero-light-head h1 {
    font-size: clamp(2.25rem, 5.2vw, 4rem);
  }

  .hero-segment-grid {
    width: min(100%, 58rem);
  }
}

@media (max-width: 820px) {
  .hero.hero--light {
    padding: clamp(2.5rem, 7vw, 3.7rem) 0 clamp(2rem, 6vw, 3rem);
  }

  .hero-light-head h1 {
    font-size: clamp(2rem, 8.2vw, 3.3rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
  }

  .hero-segment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-light-head .hero-actions--main {
    width: 100%;
    align-items: stretch;
  }

  .hero-light-head .hero-actions--main .btn,
  .hero-light-head .hero-actions--main .hero-link,
  .hero-segment-card .btn {
    width: 100%;
    text-align: center;
    justify-self: stretch;
  }

  .hero-segment-card {
    padding: 1rem;
  }
}

/* Hero visual balance pass: compact light stage with decorative side visuals. */
.hero.hero--light {
  padding: clamp(2.25rem, 4vw, 4.25rem) 0 clamp(1.85rem, 3vw, 3.2rem);
}

.hero.hero--light::before {
  inset: 0.7rem max(0.7rem, calc((100vw - var(--container)) / 2)) auto;
  height: clamp(20rem, 43vw, 32rem);
}

.hero-light-shell {
  gap: clamp(0.75rem, 1.3vw, 1.2rem);
}

.hero-visual-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  gap: clamp(0.8rem, 1.35vw, 1.25rem);
  min-width: 0;
  padding: clamp(1.25rem, 2.7vw, 2.5rem) clamp(0.35rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.9rem);
}

.hero-visual-stage::before {
  content: "";
  position: absolute;
  inset: 6% 14% 0;
  z-index: -1;
  border-radius: clamp(1.8rem, 3vw, 3rem);
  background:
    radial-gradient(circle at 26% 26%, rgba(23, 105, 255, 0.11), transparent 34%),
    radial-gradient(circle at 76% 22%, rgba(239, 68, 68, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.58);
  filter: blur(0.2px);
}

.hero-light-head {
  position: relative;
  z-index: 2;
  gap: clamp(0.72rem, 1.15vw, 1rem);
  width: min(100%, 55.5rem);
}

.hero-light-head h1 {
  width: min(100%, 55.5rem);
  font-size: clamp(2.16rem, 3.45vw, 4.05rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero-light-head .lead {
  width: min(100%, 41rem);
  font-size: clamp(0.98rem, 1.1vw, 1.09rem);
  line-height: 1.48;
}

.hero-light-head .hero-actions--main {
  margin-top: 0.05rem;
}

.hero-segment-grid {
  position: relative;
  z-index: 2;
  width: min(100%, 58rem);
  gap: clamp(0.85rem, 1.45vw, 1.15rem);
}

.hero-segment-card {
  gap: clamp(0.62rem, 1vw, 0.85rem);
  border-radius: clamp(1.1rem, 1.7vw, 1.55rem);
  padding: clamp(0.95rem, 1.45vw, 1.25rem);
  box-shadow: 0 20px 48px rgba(11, 31, 58, 0.11);
}

.hero-segment-card p {
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.42;
}

.hero-segment-card .hero-segment-list {
  gap: 0.34rem;
}

.hero-segment-card .hero-segment-list li {
  font-size: 0.94rem;
  line-height: 1.3;
}

.hero-segment-card .btn {
  padding: 0.68rem 1.02rem;
}

.hero-side-visual {
  position: absolute;
  top: clamp(1.25rem, 4vw, 2.9rem);
  z-index: 1;
  width: clamp(12rem, 20vw, 19rem);
  height: clamp(10.5rem, 16vw, 15.5rem);
  overflow: hidden;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: clamp(1.45rem, 2.4vw, 2.2rem);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 70px rgba(11, 31, 58, 0.15);
}

.hero-side-visual--private {
  left: clamp(-0.35rem, 1vw, 1.2rem);
  transform: rotate(-2.2deg);
}

.hero-side-visual--business {
  right: clamp(-0.35rem, 1vw, 1.2rem);
  transform: rotate(2.2deg);
}

.hero-side-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-side-visual--private img {
  object-position: 40% center;
}

.hero-side-visual--business img {
  object-position: 62% center;
}

.hero-side-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(242, 248, 255, 0.9)),
    radial-gradient(circle at 25% 20%, rgba(23, 105, 255, 0.18), transparent 34%);
}

.hero-side-visual--business .hero-side-visual-inner {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 242, 0.9)),
    radial-gradient(circle at 78% 20%, rgba(239, 68, 68, 0.18), transparent 34%);
}

.scene-glow,
.scene-person,
.scene-device,
.scene-node,
.scene-line,
.scene-caption {
  position: absolute;
  display: block;
}

.scene-glow {
  inset: 9% 11% auto auto;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.65;
}

.scene-glow--blue {
  background: radial-gradient(circle, rgba(23, 105, 255, 0.28), rgba(23, 105, 255, 0));
}

.scene-glow--red {
  background: radial-gradient(circle, rgba(239, 68, 68, 0.28), rgba(239, 68, 68, 0));
}

.scene-person {
  left: 13%;
  top: 19%;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px 999px 1.5rem 1.5rem;
  background: linear-gradient(145deg, rgba(23, 105, 255, 0.2), rgba(255, 255, 255, 0.9));
  box-shadow: inset -18px -20px 34px rgba(23, 105, 255, 0.1);
}

.scene-device {
  border: 1px solid rgba(31, 68, 118, 0.13);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(11, 31, 58, 0.12);
}

.scene-device--laptop {
  right: 12%;
  bottom: 23%;
  width: 52%;
  height: 34%;
  border-radius: 0.9rem;
}

.scene-device--laptop::after {
  content: "";
  position: absolute;
  left: -9%;
  right: -9%;
  bottom: -0.58rem;
  height: 0.48rem;
  border-radius: 999px;
  background: rgba(23, 105, 255, 0.26);
}

.scene-device--switch {
  left: 14%;
  right: 14%;
  bottom: 22%;
  height: 32%;
  border-radius: 0.9rem;
}

.scene-device--switch::before {
  content: "";
  position: absolute;
  inset: 34% 13% auto;
  height: 0.4rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(239, 68, 68, 0.45), rgba(239, 68, 68, 0.45)) 0 0 / 18% 100% no-repeat,
    linear-gradient(90deg, rgba(23, 105, 255, 0.36), rgba(23, 105, 255, 0.36)) 34% 0 / 18% 100% no-repeat,
    linear-gradient(90deg, rgba(31, 68, 118, 0.18), rgba(31, 68, 118, 0.18)) 68% 0 / 30% 100% no-repeat;
}

.scene-node {
  width: 1.08rem;
  height: 1.08rem;
  border-radius: 999px;
  background: #ffffff;
  border: 0.22rem solid rgba(239, 68, 68, 0.38);
  box-shadow: 0 10px 22px rgba(239, 68, 68, 0.18);
}

.scene-node--one {
  top: 22%;
  left: 22%;
}

.scene-node--two {
  top: 22%;
  right: 22%;
  border-color: rgba(23, 105, 255, 0.36);
  box-shadow: 0 10px 22px rgba(23, 105, 255, 0.16);
}

.scene-line {
  left: 16%;
  right: 16%;
  bottom: 15%;
  height: 0.36rem;
  border-radius: 999px;
  background: rgba(31, 68, 118, 0.09);
}

.scene-line--wide {
  bottom: 11%;
  right: 31%;
  background: rgba(31, 68, 118, 0.065);
}

.scene-caption {
  left: 13%;
  top: 12%;
  color: rgba(11, 31, 58, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero.hero--light .btn-primary:hover {
  box-shadow: 0 18px 40px rgba(23, 105, 255, 0.28);
}

.hero.hero--light .btn-accent:hover {
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.28);
}

.hero.hero--light .hero-link:hover {
  transform: translateY(-1px);
  color: var(--kw-blue);
}

@media (max-width: 1180px) {
  .hero-side-visual {
    width: clamp(9rem, 14vw, 12.5rem);
    height: clamp(10.5rem, 16vw, 14rem);
    opacity: 0.78;
  }

  .hero-light-head {
    width: min(100%, 51rem);
  }

  .hero-light-head h1 {
    width: min(100%, 51rem);
    font-size: clamp(2.1rem, 4vw, 3.65rem);
  }

  .hero-segment-grid {
    width: min(100%, 54rem);
  }
}

@media (max-width: 1040px) {
  .hero-side-visual {
    display: none;
  }

  .hero-visual-stage::before {
    inset: 4% 3% 0;
  }
}

@media (max-width: 820px) {
  .hero.hero--light {
    padding: clamp(2rem, 6vw, 3.1rem) 0 clamp(1.65rem, 5vw, 2.45rem);
  }

  .hero-visual-stage {
    padding: clamp(0.75rem, 4vw, 1.35rem) 0 clamp(0.8rem, 4vw, 1.4rem);
  }

  .hero-light-head h1 {
    font-size: clamp(1.95rem, 7.5vw, 3.05rem);
  }

  .hero-light-head .lead {
    font-size: 0.98rem;
  }
}

/* Wide light hero: full-width premium landingpage stage with real side imagery. */
:root {
  --container: 82.5rem;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
}

.header-inner {
  width: min(100% - 2rem, 82.5rem);
  min-height: clamp(4.35rem, 5vw, 5.15rem);
  margin-inline: auto;
}

.hero.hero--wide-light {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  color: var(--kw-navy);
  background:
    radial-gradient(circle at 11% 15%, rgba(23, 105, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 91% 13%, rgba(239, 68, 68, 0.16), transparent 29rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 58%, #ffffff 100%);
}

.hero.hero--wide-light::before {
  display: none;
}

.hero-wide-bg {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(2.2rem, 4.4vw, 4.9rem) 0 clamp(2rem, 4vw, 4.2rem);
}

.hero-wide-bg::before,
.hero-wide-bg::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(22rem, 42vw, 48rem);
  height: clamp(22rem, 42vw, 48rem);
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
}

.hero-wide-bg::before {
  left: min(-12vw, -5rem);
  top: clamp(0.5rem, 4vw, 3rem);
  background: radial-gradient(circle, rgba(23, 105, 255, 0.16), rgba(23, 105, 255, 0));
}

.hero-wide-bg::after {
  right: min(-12vw, -5rem);
  top: clamp(0.25rem, 3vw, 2.6rem);
  background: radial-gradient(circle, rgba(239, 68, 68, 0.16), rgba(239, 68, 68, 0));
}

.hero-wide-shell {
  width: min(100% - clamp(1.1rem, 3vw, 3rem), 94rem);
  margin-inline: auto;
  position: relative;
}

.hero-wide-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) minmax(31rem, 48rem) minmax(15rem, 1fr);
  gap: clamp(1rem, 2.3vw, 2.15rem);
  align-items: center;
  min-width: 0;
}

.hero-wide-center {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: clamp(1rem, 1.8vw, 1.55rem);
  min-width: 0;
  padding: clamp(0.6rem, 1.4vw, 1.25rem) 0;
}

.hero-wide-center .hero-light-head {
  width: min(100%, 56rem);
  gap: clamp(0.68rem, 1vw, 0.95rem);
}

.hero-wide-center .hero-light-head h1 {
  width: min(100%, 56rem);
  max-width: none;
  font-size: clamp(2.25rem, 3.35vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero-wide-center .hero-light-head .lead {
  width: min(100%, 43rem);
  color: var(--kw-navy-soft);
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  line-height: 1.52;
}

.hero-wide-center .hero-segment-grid {
  width: min(100%, 48rem);
  gap: clamp(0.85rem, 1.4vw, 1.15rem);
}

.hero-wide-center .hero-segment-card {
  padding: clamp(1rem, 1.5vw, 1.28rem);
  border-radius: clamp(1.2rem, 1.8vw, 1.65rem);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.hero-wide-center .hero-segment-card--private {
  border-color: rgba(23, 105, 255, 0.24);
  box-shadow: 0 18px 44px rgba(23, 105, 255, 0.1);
}

.hero-wide-center .hero-segment-card--business {
  border-color: rgba(239, 68, 68, 0.24);
  box-shadow: 0 18px 44px rgba(239, 68, 68, 0.1);
}

.hero-wide-center .hero-segment-card:hover {
  transform: translateY(-3px);
}

.hero-wide-center .hero-segment-card--private:hover {
  border-color: rgba(23, 105, 255, 0.38);
  box-shadow: 0 24px 70px rgba(23, 105, 255, 0.18);
}

.hero-wide-center .hero-segment-card--business:hover {
  border-color: rgba(239, 68, 68, 0.38);
  box-shadow: 0 24px 70px rgba(239, 68, 68, 0.18);
}

.hero-wide-center .hero-segment-card p {
  font-size: clamp(0.94rem, 0.95vw, 1rem);
}

.hero-wide-center .hero-segment-card .hero-segment-list {
  gap: 0.32rem;
}

.hero-wide-center .hero-segment-card .hero-segment-list li {
  font-size: clamp(0.88rem, 0.9vw, 0.95rem);
}

.hero-wide-image-panel {
  position: relative;
  z-index: 1;
  min-height: clamp(18rem, 31vw, 31rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: clamp(2rem, 3.2vw, 3.3rem);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 90px rgba(11, 31, 58, 0.14);
}

.hero-wide-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-wide-image-panel--private {
  transform: translateX(clamp(-1.8rem, -1.7vw, -0.4rem));
}

.hero-wide-image-panel--business {
  transform: translateX(clamp(0.4rem, 1.7vw, 1.8rem));
}

.hero-wide-image-panel--private::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.72) 100%),
    radial-gradient(circle at 20% 18%, rgba(23, 105, 255, 0.16), transparent 35%);
}

.hero-wide-image-panel--business::after {
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.72) 100%),
    radial-gradient(circle at 78% 16%, rgba(239, 68, 68, 0.16), transparent 35%);
}

.hero-wide-image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.hero-wide-image-panel--private img {
  object-position: 42% center;
}

.hero-wide-image-panel--business img {
  object-position: 60% center;
}

.hero-image-fallback {
  position: relative;
  width: 100%;
  min-height: inherit;
  overflow: hidden;
  border-radius: inherit;
}

.hero-image-fallback--private {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(234, 244, 255, 0.9)),
    radial-gradient(circle at 25% 18%, rgba(23, 105, 255, 0.18), transparent 34%);
}

.hero-image-fallback--business {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 238, 0.9)),
    radial-gradient(circle at 76% 18%, rgba(239, 68, 68, 0.18), transparent 34%);
}

.hero.hero--wide-light .btn-primary:hover,
.hero.hero--wide-light .btn-primary:focus-visible {
  box-shadow: 0 22px 52px rgba(23, 105, 255, 0.32);
}

.hero.hero--wide-light .btn-accent:hover,
.hero.hero--wide-light .btn-accent:focus-visible {
  box-shadow: 0 22px 52px rgba(239, 68, 68, 0.32);
}

.trust-strip--light {
  margin-top: clamp(-1.1rem, -1.2vw, -0.35rem);
}

.trust-strip-grid {
  width: min(100% - 2rem, 82.5rem);
  margin-inline: auto;
}

.starter-grid {
  width: min(100% - 2rem, 82.5rem);
  margin-inline: auto;
}

@media (max-width: 1280px) {
  .hero-wide-shell {
    width: min(100% - 1.5rem, 82.5rem);
  }

  .hero-wide-grid {
    grid-template-columns: minmax(12rem, 0.8fr) minmax(29rem, 45rem) minmax(12rem, 0.8fr);
    gap: clamp(0.8rem, 1.6vw, 1.3rem);
  }

  .hero-wide-image-panel {
    min-height: clamp(16rem, 26vw, 25rem);
  }

  .hero-wide-center .hero-light-head h1 {
    font-size: clamp(2.1rem, 3.2vw, 3.8rem);
  }
}

@media (max-width: 1080px) {
  .hero-wide-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .hero-wide-center {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(100%, 54rem);
    margin-inline: auto;
  }

  .hero-wide-image-panel {
    grid-row: 2;
    min-height: clamp(13rem, 24vw, 18rem);
    transform: none;
    border-radius: clamp(1.45rem, 2.8vw, 2.2rem);
  }

  .hero-wide-image-panel--private {
    grid-column: 1;
  }

  .hero-wide-image-panel--business {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .hero-wide-bg {
    padding: clamp(1.7rem, 6vw, 3rem) 0 clamp(1.7rem, 6vw, 3rem);
  }

  .hero-wide-grid {
    grid-template-columns: 1fr;
  }

  .hero-wide-center,
  .hero-wide-image-panel,
  .hero-wide-image-panel--private,
  .hero-wide-image-panel--business {
    grid-column: 1;
  }

  .hero-wide-image-panel {
    min-height: 12.5rem;
  }

  .hero-wide-image-panel--business {
    display: none;
  }

  .hero-wide-center .hero-light-head h1 {
    font-size: clamp(2rem, 7.6vw, 3.15rem);
    letter-spacing: -0.045em;
  }

  .hero-wide-center .hero-segment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header-inner {
    width: min(100% - 1rem, 82.5rem);
  }

  .hero-wide-shell {
    width: min(100% - 1rem, 82.5rem);
  }

  .hero-wide-image-panel {
    min-height: 10.75rem;
    border-radius: 1.35rem;
  }

  .hero-wide-center .hero-segment-card {
    padding: 1rem;
  }
}

/* Hero image proportion refinement: wide soft visuals instead of tall side columns. */
.hero--wide-light .hero-wide-bg {
  padding: clamp(2rem, 3.8vw, 4.25rem) 0 clamp(1.8rem, 3.5vw, 3.75rem);
}

.hero--wide-light .hero-wide-shell {
  width: min(100% - clamp(1rem, 2.3vw, 2.5rem), 96rem);
}

.hero--wide-light .hero-wide-grid {
  position: relative;
  display: block;
  min-height: 0;
}

.hero--wide-light .hero-wide-center {
  width: min(100%, 50rem);
  margin-inline: auto;
  padding: clamp(0.45rem, 1vw, 0.9rem) 0;
}

.hero--wide-light .hero-wide-center .hero-light-head {
  width: min(100%, 57rem);
}

.hero--wide-light .hero-wide-center .hero-light-head h1 {
  width: min(100%, 57rem);
  font-size: clamp(2.28rem, 3.35vw, 4.2rem);
}

.hero--wide-light .hero-wide-center .hero-segment-grid {
  width: min(100%, 49rem);
}

.hero--wide-light .hero-wide-image-panel {
  position: absolute;
  top: clamp(3.3rem, 5.8vw, 5.9rem);
  width: clamp(25rem, 33vw, 40rem);
  min-height: 0;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: none;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}

.hero--wide-light .hero-wide-image-panel--private {
  left: clamp(-9rem, -6.5vw, -3rem);
}

.hero--wide-light .hero-wide-image-panel--business {
  right: clamp(-9rem, -6.5vw, -3rem);
}

.hero--wide-light .hero-wide-image-panel::before {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(24px);
  opacity: 0.95;
}

.hero--wide-light .hero-wide-image-panel--private::before {
  background:
    radial-gradient(ellipse at 24% 52%, rgba(23, 105, 255, 0.28), rgba(23, 105, 255, 0.13) 34%, transparent 68%),
    radial-gradient(ellipse at 78% 50%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72) 35%, transparent 66%);
}

.hero--wide-light .hero-wide-image-panel--business::before {
  background:
    radial-gradient(ellipse at 76% 52%, rgba(239, 68, 68, 0.24), rgba(239, 68, 68, 0.12) 34%, transparent 68%),
    radial-gradient(ellipse at 22% 50%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74) 35%, transparent 66%);
}

.hero--wide-light .hero-wide-image-panel--private::after {
  inset: -1px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.24) 62%, rgba(255, 255, 255, 0.96) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.74) 11%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.74) 89%, rgba(255, 255, 255, 1) 100%),
    radial-gradient(ellipse at 8% 18%, rgba(23, 105, 255, 0.16), transparent 48%);
  border-radius: 0;
}

.hero--wide-light .hero-wide-image-panel--business::after {
  inset: -1px;
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.25) 62%, rgba(255, 255, 255, 0.96) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.74) 11%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.74) 89%, rgba(255, 255, 255, 1) 100%),
    radial-gradient(ellipse at 92% 18%, rgba(239, 68, 68, 0.16), transparent 48%);
  border-radius: 0;
}

.hero--wide-light .hero-wide-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image:
    radial-gradient(ellipse 92% 80% at 50% 50%, #000 0%, #000 52%, rgba(0, 0, 0, 0.65) 68%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(ellipse 92% 80% at 50% 50%, #000 0%, #000 52%, rgba(0, 0, 0, 0.65) 68%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
  mask-composite: intersect;
}

.hero--wide-light .hero-wide-image-panel--private img {
  object-position: 50% center;
}

.hero--wide-light .hero-wide-image-panel--business img {
  object-position: 56% center;
}

@media (min-width: 1500px) {
  .hero--wide-light .hero-wide-center {
    width: min(100%, 51rem);
  }

  .hero--wide-light .hero-wide-image-panel {
    width: clamp(31rem, 34vw, 43rem);
  }
}

@media (max-width: 1240px) {
  .hero--wide-light .hero-wide-image-panel {
    top: clamp(3.2rem, 5vw, 4.8rem);
    width: clamp(22rem, 30vw, 29rem);
  }

  .hero--wide-light .hero-wide-image-panel--private {
    left: clamp(-8rem, -7vw, -4rem);
  }

  .hero--wide-light .hero-wide-image-panel--business {
    right: clamp(-8rem, -7vw, -4rem);
  }

  .hero--wide-light .hero-wide-center {
    width: min(100%, 48rem);
  }
}

@media (max-width: 1080px) {
  .hero--wide-light .hero-wide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.9rem, 2vw, 1.4rem);
  }

  .hero--wide-light .hero-wide-center {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero--wide-light .hero-wide-image-panel {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    grid-row: 2;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: clamp(1.5rem, 3vw, 2.3rem);
  }

  .hero--wide-light .hero-wide-image-panel--private {
    grid-column: 1;
  }

  .hero--wide-light .hero-wide-image-panel--business {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .hero--wide-light .hero-wide-grid {
    grid-template-columns: 1fr;
  }

  .hero--wide-light .hero-wide-image-panel {
    grid-column: 1;
    width: 100%;
    aspect-ratio: 16 / 8.5;
  }

  .hero--wide-light .hero-wide-image-panel--business {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero--wide-light .hero-wide-image-panel {
    aspect-ratio: 16 / 9.5;
  }
}

/* Hero mockup alignment: atmospheric image worlds with asymmetric glow arcs. */
.hero.hero--wide-light {
  background:
    radial-gradient(ellipse at 0% 48%, rgba(23, 105, 255, 0.16), rgba(23, 105, 255, 0.06) 24rem, transparent 38rem),
    radial-gradient(ellipse at 100% 48%, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.055) 24rem, transparent 38rem),
    linear-gradient(180deg, #ffffff 0%, #f9fcff 58%, #ffffff 100%);
}

.hero--wide-light .hero-wide-bg {
  overflow: hidden;
  min-height: clamp(40rem, 45vw, 50rem);
  padding: clamp(2rem, 3.2vw, 3.9rem) 0 clamp(2.4rem, 4vw, 4.9rem);
  background:
    radial-gradient(ellipse at 8% 18%, rgba(23, 105, 255, 0.12), transparent 24rem),
    radial-gradient(ellipse at 92% 18%, rgba(239, 68, 68, 0.11), transparent 24rem);
}

.hero--wide-light .hero-wide-bg::before,
.hero--wide-light .hero-wide-bg::after {
  z-index: 0;
  display: block;
  width: clamp(42rem, 62vw, 76rem);
  height: clamp(28rem, 46vw, 55rem);
  border-radius: 999px;
  filter: blur(8px);
  opacity: 1;
}

.hero--wide-light .hero-wide-bg::before {
  left: clamp(-34rem, -22vw, -13rem);
  top: clamp(2rem, 4.2vw, 5.4rem);
  background:
    radial-gradient(ellipse at 74% 50%, rgba(23, 105, 255, 0.22) 0%, rgba(23, 105, 255, 0.12) 33%, rgba(23, 105, 255, 0.045) 52%, transparent 72%),
    radial-gradient(ellipse at 86% 52%, rgba(255, 255, 255, 0.9), transparent 48%);
}

.hero--wide-light .hero-wide-bg::after {
  right: clamp(-34rem, -22vw, -13rem);
  top: clamp(1.6rem, 4vw, 5rem);
  background:
    radial-gradient(ellipse at 26% 50%, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.11) 33%, rgba(239, 68, 68, 0.04) 52%, transparent 72%),
    radial-gradient(ellipse at 12% 52%, rgba(255, 255, 255, 0.92), transparent 48%);
}

.hero--wide-light .hero-wide-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 112rem);
}

.hero--wide-light .hero-wide-grid {
  min-height: clamp(34rem, 39vw, 44rem);
}

.hero--wide-light .hero-wide-center {
  z-index: 4;
  width: min(100% - clamp(1.5rem, 4vw, 3rem), 54rem);
  padding: clamp(1.4rem, 2.8vw, 3.4rem) 0 0;
}

.hero--wide-light .hero-wide-center .hero-light-head {
  width: min(100%, 58rem);
}

.hero--wide-light .hero-wide-center .hero-light-head h1 {
  width: min(100%, 58rem);
  font-size: clamp(2.45rem, 3.9vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.hero--wide-light .hero-wide-center .hero-light-head .lead {
  width: min(100%, 46rem);
  margin-top: clamp(0.2rem, 0.5vw, 0.45rem);
  font-size: clamp(1rem, 1.05vw, 1.14rem);
}

.hero--wide-light .hero-wide-center .hero-segment-grid {
  width: min(100%, 52rem);
  gap: clamp(1rem, 1.55vw, 1.35rem);
  margin-top: clamp(0.45rem, 1.1vw, 0.95rem);
}

.hero--wide-light .hero-wide-center .hero-segment-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 1.75vw, 1.6rem);
  border-radius: clamp(1.35rem, 2vw, 1.85rem);
  border-width: 1px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  box-shadow:
    0 24px 72px rgba(11, 31, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero--wide-light .hero-wide-center .hero-segment-card--private {
  border-color: rgba(23, 105, 255, 0.26);
  box-shadow:
    0 24px 80px rgba(23, 105, 255, 0.13),
    0 10px 34px rgba(11, 31, 58, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero--wide-light .hero-wide-center .hero-segment-card--business {
  border-color: rgba(239, 68, 68, 0.24);
  box-shadow:
    0 24px 80px rgba(239, 68, 68, 0.12),
    0 10px 34px rgba(11, 31, 58, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero--wide-light .hero-wide-image-panel {
  z-index: 1;
  top: clamp(5rem, 6.4vw, 7.2rem);
  width: clamp(36rem, 47vw, 59rem);
  aspect-ratio: 16 / 8.8;
  pointer-events: none;
}

.hero--wide-light .hero-wide-image-panel--private {
  left: clamp(-12rem, -7vw, -4rem);
  transform: rotate(-0.4deg);
}

.hero--wide-light .hero-wide-image-panel--business {
  right: clamp(-12rem, -7vw, -4rem);
  transform: rotate(0.35deg);
}

.hero--wide-light .hero-wide-image-panel::before {
  inset: -28% -24%;
  z-index: -1;
  filter: blur(18px);
  border-radius: 999px;
}

.hero--wide-light .hero-wide-image-panel--private::before {
  background:
    radial-gradient(ellipse at 24% 55%, rgba(23, 105, 255, 0.28), rgba(23, 105, 255, 0.14) 34%, transparent 68%),
    radial-gradient(ellipse at 82% 52%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78) 36%, transparent 65%);
}

.hero--wide-light .hero-wide-image-panel--business::before {
  background:
    radial-gradient(ellipse at 76% 55%, rgba(239, 68, 68, 0.25), rgba(239, 68, 68, 0.13) 34%, transparent 68%),
    radial-gradient(ellipse at 18% 52%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78) 36%, transparent 65%);
}

.hero--wide-light .hero-wide-image-panel--private::after {
  inset: -2px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.64) 73%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 9%, rgba(255, 255, 255, 0) 29%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.86) 91%, #ffffff 100%),
    radial-gradient(ellipse at 0% 52%, rgba(23, 105, 255, 0.13), transparent 56%);
}

.hero--wide-light .hero-wide-image-panel--business::after {
  inset: -2px;
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.64) 73%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 9%, rgba(255, 255, 255, 0) 29%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.86) 91%, #ffffff 100%),
    radial-gradient(ellipse at 100% 52%, rgba(239, 68, 68, 0.12), transparent 56%);
}

.hero--wide-light .hero-wide-image-panel img {
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  -webkit-mask-image:
    radial-gradient(ellipse 96% 76% at 50% 52%, #000 0%, #000 50%, rgba(0, 0, 0, 0.68) 66%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(ellipse 96% 76% at 50% 52%, #000 0%, #000 50%, rgba(0, 0, 0, 0.68) 66%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.hero--wide-light .hero-wide-image-panel--private img {
  object-position: 45% 50%;
}

.hero--wide-light .hero-wide-image-panel--business img {
  object-position: 50% 50%;
}

@media (min-width: 1680px) {
  .hero--wide-light .hero-wide-image-panel {
    width: clamp(48rem, 45vw, 62rem);
  }

  .hero--wide-light .hero-wide-image-panel--private {
    left: clamp(-14rem, -8vw, -5rem);
  }

  .hero--wide-light .hero-wide-image-panel--business {
    right: clamp(-14rem, -8vw, -5rem);
  }
}

@media (max-width: 1320px) {
  .hero--wide-light .hero-wide-center {
    width: min(100% - 2rem, 50rem);
  }

  .hero--wide-light .hero-wide-center .hero-light-head h1 {
    font-size: clamp(2.25rem, 3.6vw, 4.15rem);
  }

  .hero--wide-light .hero-wide-image-panel {
    top: clamp(5.6rem, 7vw, 7.4rem);
    width: clamp(31rem, 41vw, 39rem);
  }
}

@media (max-width: 1120px) {
  .hero--wide-light .hero-wide-bg {
    min-height: auto;
  }

  .hero--wide-light .hero-wide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.9rem, 2vw, 1.4rem);
    min-height: 0;
  }

  .hero--wide-light .hero-wide-center {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero--wide-light .hero-wide-image-panel,
  .hero--wide-light .hero-wide-image-panel--private,
  .hero--wide-light .hero-wide-image-panel--business {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    grid-row: 2;
    width: 100%;
    aspect-ratio: 16 / 9;
    transform: none;
  }

  .hero--wide-light .hero-wide-image-panel--private {
    grid-column: 1;
  }

  .hero--wide-light .hero-wide-image-panel--business {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .hero--wide-light .hero-wide-center {
    width: min(100% - 1rem, 50rem);
    padding-top: clamp(1rem, 5vw, 2rem);
  }

  .hero--wide-light .hero-wide-grid {
    grid-template-columns: 1fr;
  }

  .hero--wide-light .hero-wide-image-panel {
    grid-column: 1;
    aspect-ratio: 16 / 8.5;
  }

  .hero--wide-light .hero-wide-image-panel--business {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero--wide-light .hero-wide-bg {
    padding-top: 1.35rem;
  }

  .hero--wide-light .hero-wide-center .hero-light-head h1 {
    font-size: clamp(2rem, 7.4vw, 3rem);
  }
}

/* Hero vertical balance refinement: compact first viewport without losing the wide mockup stage. */
.hero.hero--wide-light {
  background:
    radial-gradient(ellipse at -3% 47%, rgba(23, 105, 255, 0.2), rgba(23, 105, 255, 0.075) 23rem, transparent 37rem),
    radial-gradient(ellipse at 103% 48%, rgba(239, 68, 68, 0.18), rgba(239, 68, 68, 0.07) 23rem, transparent 37rem),
    linear-gradient(180deg, #ffffff 0%, #f9fcff 58%, #ffffff 100%);
}

.hero--wide-light .hero-wide-bg {
  min-height: clamp(32rem, 36vw, 40rem);
  padding: clamp(0.65rem, 1.55vw, 1.85rem) 0 clamp(0.9rem, 2.1vw, 2.45rem);
  background:
    radial-gradient(ellipse at 7% 12%, rgba(23, 105, 255, 0.15), transparent 25rem),
    radial-gradient(ellipse at 93% 12%, rgba(239, 68, 68, 0.135), transparent 25rem);
}

.hero--wide-light .hero-wide-bg::before,
.hero--wide-light .hero-wide-bg::after {
  opacity: 1;
  filter: blur(7px);
}

.hero--wide-light .hero-wide-bg::before {
  top: clamp(0.4rem, 2.2vw, 2.4rem);
  background:
    radial-gradient(ellipse at 73% 50%, rgba(23, 105, 255, 0.255) 0%, rgba(23, 105, 255, 0.145) 32%, rgba(23, 105, 255, 0.055) 53%, transparent 73%),
    radial-gradient(ellipse at 86% 52%, rgba(255, 255, 255, 0.86), transparent 48%);
}

.hero--wide-light .hero-wide-bg::after {
  top: clamp(0.3rem, 2vw, 2.2rem);
  background:
    radial-gradient(ellipse at 27% 50%, rgba(239, 68, 68, 0.235) 0%, rgba(239, 68, 68, 0.135) 32%, rgba(239, 68, 68, 0.05) 53%, transparent 73%),
    radial-gradient(ellipse at 12% 52%, rgba(255, 255, 255, 0.88), transparent 48%);
}

.hero--wide-light .hero-wide-grid {
  min-height: clamp(27rem, 31vw, 35rem);
}

.hero--wide-light .hero-wide-center {
  width: min(100% - clamp(1.5rem, 4vw, 3rem), 50rem);
  gap: clamp(0.55rem, 1vw, 0.9rem);
  padding: clamp(0.2rem, 0.75vw, 0.85rem) 0 0;
}

.hero--wide-light .hero-wide-center .hero-light-head h1 {
  width: min(100%, 52rem);
  font-size: clamp(2.1rem, 3.22vw, 4.05rem);
  line-height: 1.045;
  letter-spacing: -0.055em;
}

.hero--wide-light .hero-wide-center .hero-light-head .lead {
  width: min(100%, 41rem);
  margin-top: 0;
  font-size: clamp(0.94rem, 0.98vw, 1.06rem);
  line-height: 1.46;
}

.hero--wide-light .hero-wide-center .hero-segment-grid {
  width: min(100%, 49rem);
  gap: clamp(0.78rem, 1.25vw, 1.05rem);
  margin-top: clamp(0.15rem, 0.55vw, 0.45rem);
}

.hero--wide-light .hero-wide-center .hero-segment-card {
  gap: clamp(0.56rem, 0.85vw, 0.78rem);
  padding: clamp(0.92rem, 1.22vw, 1.18rem);
  border-radius: clamp(1.15rem, 1.65vw, 1.55rem);
}

.hero--wide-light .hero-wide-center .hero-segment-card h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.25vw, 2.28rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero--wide-light .hero-wide-center .hero-segment-card p {
  font-size: clamp(0.9rem, 0.88vw, 0.96rem);
  line-height: 1.38;
}

.hero--wide-light .hero-wide-center .hero-segment-card .hero-segment-list {
  gap: 0.24rem;
}

.hero--wide-light .hero-wide-center .hero-segment-card .hero-segment-list li {
  font-size: clamp(0.84rem, 0.84vw, 0.91rem);
  line-height: 1.28;
}

.hero--wide-light .hero-wide-center .hero-segment-card .btn {
  padding: 0.66rem 1.02rem;
}

.hero--wide-light .hero-wide-image-panel {
  top: clamp(2.9rem, 4.35vw, 5rem);
  width: clamp(35rem, 46vw, 58rem);
}

.hero--wide-light .hero-wide-image-panel--private::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.48) 76%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.72) 8%, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 74%, rgba(255, 255, 255, 0.72) 92%, #ffffff 100%),
    radial-gradient(ellipse at 0% 52%, rgba(23, 105, 255, 0.15), transparent 57%);
}

.hero--wide-light .hero-wide-image-panel--business::after {
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.48) 76%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.72) 8%, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 74%, rgba(255, 255, 255, 0.72) 92%, #ffffff 100%),
    radial-gradient(ellipse at 100% 52%, rgba(239, 68, 68, 0.14), transparent 57%);
}

.hero--wide-light .hero-wide-image-panel img {
  opacity: 0.99;
  -webkit-mask-image:
    radial-gradient(ellipse 100% 82% at 50% 52%, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 74%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 100% 82% at 50% 52%, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 74%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.trust-strip--light {
  margin-top: clamp(-2.2rem, -2vw, -0.85rem);
}

@media (max-width: 1320px) {
  .hero--wide-light .hero-wide-bg {
    min-height: clamp(31rem, 40vw, 38rem);
  }

  .hero--wide-light .hero-wide-grid {
    min-height: clamp(27rem, 35vw, 34rem);
  }

  .hero--wide-light .hero-wide-center .hero-light-head h1 {
    font-size: clamp(2rem, 3.1vw, 3.55rem);
  }

  .hero--wide-light .hero-wide-image-panel {
    top: clamp(3.15rem, 4.2vw, 4.3rem);
    width: clamp(30rem, 40vw, 38rem);
  }
}

@media (max-width: 1120px) {
  .hero--wide-light .hero-wide-bg {
    padding-top: clamp(1rem, 3vw, 1.8rem);
  }

  .hero--wide-light .hero-wide-image-panel {
    top: auto;
  }
}

@media (max-width: 820px) {
  .hero--wide-light .hero-wide-center {
    padding-top: clamp(0.65rem, 3.5vw, 1.3rem);
  }

  .trust-strip--light {
    margin-top: -0.65rem;
  }
}

/* Hero image blending refinement: stronger motive clarity, softer organic edges. */
.hero.hero--wide-light {
  background:
    radial-gradient(ellipse at -5% 43%, rgba(23, 105, 255, 0.22), rgba(23, 105, 255, 0.08) 22rem, rgba(239, 68, 68, 0.035) 33rem, transparent 42rem),
    radial-gradient(ellipse at 105% 44%, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.075) 22rem, rgba(23, 105, 255, 0.035) 33rem, transparent 42rem),
    linear-gradient(180deg, #ffffff 0%, #f9fcff 58%, #ffffff 100%);
}

.hero--wide-light .hero-wide-bg::before {
  background:
    radial-gradient(ellipse at 72% 48%, rgba(23, 105, 255, 0.29) 0%, rgba(23, 105, 255, 0.15) 31%, rgba(239, 68, 68, 0.035) 48%, transparent 73%),
    radial-gradient(ellipse at 88% 52%, rgba(255, 255, 255, 0.9), transparent 48%);
}

.hero--wide-light .hero-wide-bg::after {
  background:
    radial-gradient(ellipse at 28% 48%, rgba(239, 68, 68, 0.265) 0%, rgba(239, 68, 68, 0.145) 31%, rgba(23, 105, 255, 0.035) 48%, transparent 73%),
    radial-gradient(ellipse at 10% 52%, rgba(255, 255, 255, 0.91), transparent 48%);
}

.hero--wide-light .hero-wide-image-panel::before {
  filter: blur(20px);
  opacity: 1;
}

.hero--wide-light .hero-wide-image-panel--private::before {
  background:
    radial-gradient(ellipse at 20% 54%, rgba(23, 105, 255, 0.32), rgba(23, 105, 255, 0.15) 34%, rgba(239, 68, 68, 0.035) 50%, transparent 70%),
    radial-gradient(ellipse at 83% 52%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.76) 37%, transparent 66%);
}

.hero--wide-light .hero-wide-image-panel--business::before {
  background:
    radial-gradient(ellipse at 80% 54%, rgba(239, 68, 68, 0.29), rgba(239, 68, 68, 0.14) 34%, rgba(23, 105, 255, 0.035) 50%, transparent 70%),
    radial-gradient(ellipse at 17% 52%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.76) 37%, transparent 66%);
}

.hero--wide-light .hero-wide-image-panel--private::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.38) 77%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.64) 7%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, 0.72) 92%, #ffffff 100%),
    radial-gradient(ellipse at -4% 48%, rgba(23, 105, 255, 0.18), rgba(239, 68, 68, 0.035) 42%, transparent 60%);
}

.hero--wide-light .hero-wide-image-panel--business::after {
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.38) 77%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.64) 7%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, 0.72) 92%, #ffffff 100%),
    radial-gradient(ellipse at 104% 48%, rgba(239, 68, 68, 0.17), rgba(23, 105, 255, 0.035) 42%, transparent 60%);
}

.hero--wide-light .hero-wide-image-panel img {
  opacity: 1;
  filter: saturate(1.08) contrast(1.065) brightness(1.015);
}

.hero--wide-light .hero-wide-image-panel--private img {
  -webkit-mask-image:
    radial-gradient(ellipse 91% 72% at 41% 54%, #000 0%, #000 54%, rgba(0, 0, 0, 0.72) 70%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 91% 72% at 41% 54%, #000 0%, #000 54%, rgba(0, 0, 0, 0.72) 70%, transparent 100%);
}

.hero--wide-light .hero-wide-image-panel--business img {
  -webkit-mask-image:
    radial-gradient(ellipse 91% 72% at 59% 54%, #000 0%, #000 54%, rgba(0, 0, 0, 0.72) 70%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 91% 72% at 59% 54%, #000 0%, #000 54%, rgba(0, 0, 0, 0.72) 70%, transparent 100%);
}

/* Hero supplied image integration: keep the new mockup-style visuals broad and soft. */
.hero--wide-light .hero-wide-image-panel {
  width: clamp(37rem, 48vw, 61rem);
  aspect-ratio: 16 / 9;
}

.hero--wide-light .hero-wide-image-panel--private {
  left: clamp(-11rem, -6.6vw, -4rem);
}

.hero--wide-light .hero-wide-image-panel--business {
  right: clamp(-11rem, -6.6vw, -4rem);
}

.hero--wide-light .hero-wide-image-panel::before {
  inset: -18% -14%;
  filter: blur(14px);
  opacity: 0.72;
}

.hero--wide-light .hero-wide-image-panel--private::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.22) 82%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.42) 7%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.45) 94%, #ffffff 100%),
    radial-gradient(ellipse at -2% 48%, rgba(23, 105, 255, 0.13), rgba(239, 68, 68, 0.025) 46%, transparent 64%);
}

.hero--wide-light .hero-wide-image-panel--business::after {
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.22) 82%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.42) 7%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.45) 94%, #ffffff 100%),
    radial-gradient(ellipse at 102% 48%, rgba(239, 68, 68, 0.13), rgba(23, 105, 255, 0.025) 46%, transparent 64%);
}

.hero--wide-light .hero-wide-image-panel img {
  opacity: 1;
  filter: saturate(1.035) contrast(1.045) brightness(1.01);
  object-position: 50% 50%;
  -webkit-mask-image:
    radial-gradient(ellipse 116% 94% at 50% 52%, #000 0%, #000 68%, rgba(0, 0, 0, 0.72) 84%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 116% 94% at 50% 52%, #000 0%, #000 68%, rgba(0, 0, 0, 0.72) 84%, transparent 100%);
}

.hero--wide-light .hero-wide-image-panel--private img {
  object-position: 51% 50%;
  -webkit-mask-image:
    radial-gradient(ellipse 118% 94% at 50% 52%, #000 0%, #000 68%, rgba(0, 0, 0, 0.72) 84%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 118% 94% at 50% 52%, #000 0%, #000 68%, rgba(0, 0, 0, 0.72) 84%, transparent 100%);
}

.hero--wide-light .hero-wide-image-panel--business img {
  object-position: 49% 50%;
  -webkit-mask-image:
    radial-gradient(ellipse 118% 94% at 50% 52%, #000 0%, #000 68%, rgba(0, 0, 0, 0.72) 84%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 118% 94% at 50% 52%, #000 0%, #000 68%, rgba(0, 0, 0, 0.72) 84%, transparent 100%);
}

@media (max-width: 1320px) {
  .hero--wide-light .hero-wide-image-panel {
    width: clamp(31rem, 41vw, 40rem);
  }
}

@media (max-width: 1120px) {
  .hero--wide-light .hero-wide-image-panel {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }
}

/* Hero atmosphere refinement: more premium fog, glow arcs and soft depth. */
.hero.hero--wide-light {
  background:
    radial-gradient(ellipse at -7% 38%, rgba(23, 105, 255, 0.28), rgba(23, 105, 255, 0.11) 20rem, rgba(239, 68, 68, 0.04) 34rem, transparent 47rem),
    radial-gradient(ellipse at 107% 38%, rgba(239, 68, 68, 0.25), rgba(239, 68, 68, 0.1) 20rem, rgba(23, 105, 255, 0.04) 34rem, transparent 47rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 54%, #ffffff 100%);
}

.hero--wide-light .hero-wide-bg {
  background:
    radial-gradient(ellipse at 14% 20%, rgba(23, 105, 255, 0.2), rgba(255, 255, 255, 0.55) 21rem, transparent 34rem),
    radial-gradient(ellipse at 86% 20%, rgba(239, 68, 68, 0.18), rgba(255, 255, 255, 0.58) 21rem, transparent 34rem),
    radial-gradient(ellipse at 50% 38%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74) 24rem, transparent 39rem);
}

.hero--wide-light .hero-wide-bg::before,
.hero--wide-light .hero-wide-bg::after {
  filter: blur(8px);
  opacity: 1;
}

.hero--wide-light .hero-wide-bg::before {
  left: clamp(-36rem, -23vw, -14rem);
  top: clamp(-0.4rem, 1.6vw, 1.5rem);
  transform: rotate(-7deg);
  background:
    conic-gradient(from 214deg at 76% 52%, transparent 0deg, rgba(23, 105, 255, 0.02) 18deg, rgba(23, 105, 255, 0.22) 38deg, rgba(23, 105, 255, 0.1) 56deg, transparent 86deg, transparent 360deg),
    radial-gradient(ellipse at 76% 50%, rgba(23, 105, 255, 0.31) 0%, rgba(23, 105, 255, 0.16) 30%, rgba(239, 68, 68, 0.055) 50%, transparent 74%),
    radial-gradient(ellipse at 88% 52%, rgba(255, 255, 255, 0.9), transparent 50%);
}

.hero--wide-light .hero-wide-bg::after {
  right: clamp(-36rem, -23vw, -14rem);
  top: clamp(-0.2rem, 1.45vw, 1.35rem);
  transform: rotate(7deg);
  background:
    conic-gradient(from 62deg at 24% 52%, transparent 0deg, rgba(239, 68, 68, 0.02) 18deg, rgba(239, 68, 68, 0.2) 38deg, rgba(239, 68, 68, 0.095) 58deg, transparent 88deg, transparent 360deg),
    radial-gradient(ellipse at 24% 50%, rgba(239, 68, 68, 0.29) 0%, rgba(239, 68, 68, 0.15) 30%, rgba(23, 105, 255, 0.052) 50%, transparent 74%),
    radial-gradient(ellipse at 10% 52%, rgba(255, 255, 255, 0.92), transparent 50%);
}

.hero--wide-light .hero-wide-center {
  position: relative;
}

.hero--wide-light .hero-wide-center::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: clamp(-1rem, -1.5vw, -0.6rem) clamp(-2.5rem, -3vw, -1.2rem) clamp(-1.4rem, -2vw, -0.9rem);
  border-radius: 42% 42% 38% 38% / 34% 34% 44% 44%;
  background:
    radial-gradient(ellipse at 50% 22%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82) 44%, transparent 72%),
    radial-gradient(ellipse at 48% 80%, rgba(255, 255, 255, 0.9), transparent 66%);
  filter: blur(2px);
  pointer-events: none;
}

.hero--wide-light .hero-wide-image-panel::before {
  inset: -24% -20% -30%;
  filter: blur(22px);
  opacity: 0.9;
}

.hero--wide-light .hero-wide-image-panel--private::before {
  background:
    radial-gradient(ellipse at 18% 46%, rgba(23, 105, 255, 0.36), rgba(23, 105, 255, 0.16) 34%, rgba(239, 68, 68, 0.045) 52%, transparent 72%),
    radial-gradient(ellipse at 24% 85%, rgba(239, 68, 68, 0.13), transparent 48%),
    radial-gradient(ellipse at 82% 54%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78) 36%, transparent 66%);
}

.hero--wide-light .hero-wide-image-panel--business::before {
  background:
    radial-gradient(ellipse at 82% 46%, rgba(239, 68, 68, 0.34), rgba(239, 68, 68, 0.15) 34%, rgba(23, 105, 255, 0.045) 52%, transparent 72%),
    radial-gradient(ellipse at 76% 85%, rgba(23, 105, 255, 0.12), transparent 48%),
    radial-gradient(ellipse at 18% 54%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78) 36%, transparent 66%);
}

.hero--wide-light .hero-wide-image-panel--private::after {
  background:
    radial-gradient(ellipse at 54% 102%, rgba(11, 31, 58, 0.12), transparent 44%),
    radial-gradient(ellipse at 18% 22%, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.3) 84%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.36) 7%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 79%, rgba(255, 255, 255, 0.56) 95%, #ffffff 100%),
    radial-gradient(ellipse at -3% 48%, rgba(23, 105, 255, 0.2), rgba(239, 68, 68, 0.04) 46%, transparent 64%);
}

.hero--wide-light .hero-wide-image-panel--business::after {
  background:
    radial-gradient(ellipse at 46% 102%, rgba(11, 31, 58, 0.115), transparent 44%),
    radial-gradient(ellipse at 82% 22%, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.3) 84%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.36) 7%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 79%, rgba(255, 255, 255, 0.56) 95%, #ffffff 100%),
    radial-gradient(ellipse at 103% 48%, rgba(239, 68, 68, 0.19), rgba(23, 105, 255, 0.04) 46%, transparent 64%);
}

.hero--wide-light .hero-wide-image-panel img {
  filter:
    saturate(1.06)
    contrast(1.055)
    brightness(1.012)
    drop-shadow(0 1.6rem 2.8rem rgba(11, 31, 58, 0.13));
  -webkit-mask-image:
    radial-gradient(ellipse 120% 96% at 50% 52%, #000 0%, #000 69%, rgba(0, 0, 0, 0.7) 84%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 120% 96% at 50% 52%, #000 0%, #000 69%, rgba(0, 0, 0, 0.7) 84%, transparent 100%);
}

.hero--wide-light .hero-wide-center .hero-segment-card--private {
  box-shadow:
    0 28px 90px rgba(23, 105, 255, 0.16),
    0 12px 36px rgba(11, 31, 58, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.hero--wide-light .hero-wide-center .hero-segment-card--business {
  box-shadow:
    0 28px 90px rgba(239, 68, 68, 0.145),
    0 12px 36px rgba(11, 31, 58, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.hero--wide-light .hero-wide-center .hero-segment-card--private:hover {
  box-shadow:
    0 34px 105px rgba(23, 105, 255, 0.22),
    0 16px 42px rgba(11, 31, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hero--wide-light .hero-wide-center .hero-segment-card--business:hover {
  box-shadow:
    0 34px 105px rgba(239, 68, 68, 0.2),
    0 16px 42px rgba(11, 31, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

@media (max-width: 1320px) {
  .hero--wide-light .hero-wide-bg::before,
  .hero--wide-light .hero-wide-bg::after {
    opacity: 0.78;
  }

  .hero--wide-light .hero-wide-image-panel::before {
    opacity: 0.72;
  }
}

@media (max-width: 820px) {
  .hero--wide-light .hero-wide-center::before {
    inset: -0.5rem -0.7rem -0.9rem;
  }

  .hero--wide-light .hero-wide-image-panel::before,
  .hero--wide-light .hero-wide-bg::before,
  .hero--wide-light .hero-wide-bg::after {
    opacity: 0.55;
  }
}

/* Hero stage polish: airy light curtains over the side visuals, protected center. */
.hero--wide-light .hero-wide-grid {
  isolation: isolate;
}

.hero--wide-light .hero-wide-grid::before,
.hero--wide-light .hero-wide-grid::after {
  content: "";
  position: absolute;
  top: clamp(2.6rem, 4.2vw, 4.9rem);
  width: clamp(31rem, 40vw, 52rem);
  height: clamp(18rem, 30vw, 36rem);
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(0.4px);
  opacity: 0.82;
}

.hero--wide-light .hero-wide-grid::before {
  left: clamp(-7rem, -5vw, -2.6rem);
  transform: rotate(-8deg);
  background:
    conic-gradient(from 205deg at 45% 54%, transparent 0deg, rgba(23, 105, 255, 0.04) 16deg, rgba(23, 105, 255, 0.18) 34deg, rgba(255, 255, 255, 0.46) 47deg, transparent 72deg, transparent 360deg),
    radial-gradient(ellipse at 30% 48%, rgba(23, 105, 255, 0.13), rgba(255, 255, 255, 0.62) 42%, transparent 68%),
    radial-gradient(ellipse at 14% 86%, rgba(239, 68, 68, 0.1), transparent 48%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.24) 48%, transparent 78%);
}

.hero--wide-light .hero-wide-grid::after {
  right: clamp(-7rem, -5vw, -2.6rem);
  transform: rotate(8deg);
  background:
    conic-gradient(from 335deg at 55% 54%, transparent 0deg, rgba(239, 68, 68, 0.04) 16deg, rgba(239, 68, 68, 0.17) 34deg, rgba(255, 255, 255, 0.48) 48deg, transparent 74deg, transparent 360deg),
    radial-gradient(ellipse at 70% 48%, rgba(239, 68, 68, 0.13), rgba(255, 255, 255, 0.62) 42%, transparent 68%),
    radial-gradient(ellipse at 86% 86%, rgba(23, 105, 255, 0.1), transparent 48%),
    linear-gradient(270deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.24) 48%, transparent 78%);
}

.hero--wide-light .hero-wide-center {
  z-index: 5;
}

.hero--wide-light .hero-wide-center::before {
  opacity: 0.98;
  filter: blur(3px);
}

.hero--wide-light .hero-wide-image-panel::before {
  opacity: 1;
  filter: blur(26px);
}

.hero--wide-light .hero-wide-image-panel--private::after {
  background:
    radial-gradient(ellipse at 52% 104%, rgba(11, 31, 58, 0.15), transparent 43%),
    radial-gradient(ellipse at 6% 48%, rgba(23, 105, 255, 0.18), rgba(255, 255, 255, 0.2) 34%, transparent 62%),
    radial-gradient(ellipse at 23% 86%, rgba(239, 68, 68, 0.08), transparent 44%),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, 0.36) 83%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 8%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.58) 95%, #ffffff 100%);
}

.hero--wide-light .hero-wide-image-panel--business::after {
  background:
    radial-gradient(ellipse at 48% 104%, rgba(11, 31, 58, 0.145), transparent 43%),
    radial-gradient(ellipse at 94% 48%, rgba(239, 68, 68, 0.17), rgba(255, 255, 255, 0.2) 34%, transparent 62%),
    radial-gradient(ellipse at 77% 86%, rgba(23, 105, 255, 0.08), transparent 44%),
    linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, 0.36) 83%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 8%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.58) 95%, #ffffff 100%);
}

.hero--wide-light .hero-wide-image-panel img {
  filter:
    saturate(1.07)
    contrast(1.06)
    brightness(1.012)
    drop-shadow(0 2rem 3.4rem rgba(11, 31, 58, 0.16));
  -webkit-mask-image:
    radial-gradient(ellipse 122% 98% at 50% 52%, #000 0%, #000 71%, rgba(0, 0, 0, 0.68) 86%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 122% 98% at 50% 52%, #000 0%, #000 71%, rgba(0, 0, 0, 0.68) 86%, transparent 100%);
}

.hero--wide-light .hero-wide-center .hero-segment-card--private {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(23, 105, 255, 0.08), transparent 44%),
    linear-gradient(150deg, #ffffff, #f7fbff);
}

.hero--wide-light .hero-wide-center .hero-segment-card--business {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(239, 68, 68, 0.075), transparent 44%),
    linear-gradient(150deg, #ffffff, #fff8f7);
}

@media (max-width: 1320px) {
  .hero--wide-light .hero-wide-grid::before,
  .hero--wide-light .hero-wide-grid::after {
    opacity: 0.68;
    width: clamp(24rem, 38vw, 38rem);
  }
}

@media (max-width: 1120px) {
  .hero--wide-light .hero-wide-grid::before,
  .hero--wide-light .hero-wide-grid::after {
    z-index: 0;
    opacity: 0.5;
  }
}

@media (max-width: 820px) {
  .hero--wide-light .hero-wide-grid::before,
  .hero--wide-light .hero-wide-grid::after {
    display: none;
  }
}

/* Hero glow spacing and card polish: final light-stage tuning. */
.hero.hero--wide-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.92) 18%, rgba(255, 255, 255, 0.98) 100%),
    radial-gradient(ellipse at -12% 30%, rgba(23, 105, 255, 0.42), rgba(23, 105, 255, 0.18) 18rem, rgba(239, 68, 68, 0.07) 34rem, transparent 52rem),
    radial-gradient(ellipse at 112% 30%, rgba(239, 68, 68, 0.38), rgba(239, 68, 68, 0.16) 18rem, rgba(23, 105, 255, 0.07) 34rem, transparent 52rem),
    #ffffff;
}

.hero.hero--wide-light::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, transparent 12%, transparent 82%, rgba(255, 255, 255, 0.98) 100%),
    radial-gradient(ellipse at 50% -12%, rgba(255, 255, 255, 0.98), transparent 44%),
    radial-gradient(ellipse at 50% 112%, rgba(255, 255, 255, 0.95), transparent 42%);
  opacity: 0.92;
}

.hero--wide-light .hero-wide-bg {
  background:
    radial-gradient(ellipse at 50% 12%, rgba(255, 255, 255, 0.98), transparent 48%),
    radial-gradient(ellipse at 50% 88%, rgba(255, 255, 255, 0.96), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(246, 250, 255, 0.48) 46%, rgba(255, 255, 255, 0.9));
}

.hero--wide-light .hero-wide-bg::before,
.hero--wide-light .hero-wide-bg::after {
  width: clamp(42rem, 48vw, 72rem);
  height: clamp(28rem, 42vw, 56rem);
  filter: blur(18px);
  opacity: 0.98;
}

.hero--wide-light .hero-wide-bg::before {
  left: clamp(-36rem, -30vw, -18rem);
  background:
    radial-gradient(ellipse at 42% 46%, rgba(23, 105, 255, 0.34), rgba(23, 105, 255, 0.16) 32%, rgba(239, 68, 68, 0.075) 58%, transparent 76%),
    conic-gradient(from 210deg at 58% 52%, transparent 0deg, rgba(23, 105, 255, 0.08) 18deg, rgba(23, 105, 255, 0.32) 38deg, rgba(255, 255, 255, 0.58) 54deg, transparent 86deg, transparent 360deg);
}

.hero--wide-light .hero-wide-bg::after {
  right: clamp(-36rem, -30vw, -18rem);
  background:
    radial-gradient(ellipse at 58% 46%, rgba(239, 68, 68, 0.32), rgba(239, 68, 68, 0.15) 32%, rgba(23, 105, 255, 0.075) 58%, transparent 76%),
    conic-gradient(from 330deg at 42% 52%, transparent 0deg, rgba(239, 68, 68, 0.08) 18deg, rgba(239, 68, 68, 0.3) 38deg, rgba(255, 255, 255, 0.58) 54deg, transparent 86deg, transparent 360deg);
}

.hero--wide-light .hero-wide-image-panel {
  width: clamp(39rem, 50vw, 64rem);
  filter: drop-shadow(0 2rem 4.4rem rgba(11, 31, 58, 0.12));
}

.hero--wide-light .hero-wide-image-panel--private {
  left: clamp(-14.2rem, -8.8vw, -5.8rem);
}

.hero--wide-light .hero-wide-image-panel--business {
  right: clamp(-14.2rem, -8.8vw, -5.8rem);
}

.hero--wide-light .hero-wide-grid::before,
.hero--wide-light .hero-wide-grid::after {
  top: clamp(2rem, 3.5vw, 4.2rem);
  width: clamp(33rem, 43vw, 56rem);
  height: clamp(19rem, 31vw, 38rem);
  opacity: 0.92;
  filter: blur(0);
}

.hero--wide-light .hero-wide-grid::before {
  left: clamp(-9.2rem, -6.2vw, -3.1rem);
  background:
    conic-gradient(from 202deg at 43% 54%, transparent 0deg, rgba(23, 105, 255, 0.06) 14deg, rgba(23, 105, 255, 0.24) 35deg, rgba(255, 255, 255, 0.5) 50deg, transparent 80deg, transparent 360deg),
    radial-gradient(ellipse at 26% 46%, rgba(23, 105, 255, 0.18), rgba(255, 255, 255, 0.62) 43%, transparent 70%),
    radial-gradient(ellipse at 16% 88%, rgba(239, 68, 68, 0.13), transparent 48%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.24) 48%, transparent 80%);
}

.hero--wide-light .hero-wide-grid::after {
  right: clamp(-9.2rem, -6.2vw, -3.1rem);
  background:
    conic-gradient(from 338deg at 57% 54%, transparent 0deg, rgba(239, 68, 68, 0.06) 14deg, rgba(239, 68, 68, 0.23) 35deg, rgba(255, 255, 255, 0.52) 50deg, transparent 80deg, transparent 360deg),
    radial-gradient(ellipse at 74% 46%, rgba(239, 68, 68, 0.18), rgba(255, 255, 255, 0.62) 43%, transparent 70%),
    radial-gradient(ellipse at 84% 88%, rgba(23, 105, 255, 0.13), transparent 48%),
    linear-gradient(270deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.24) 48%, transparent 80%);
}

.hero--wide-light .hero-wide-image-panel::before {
  inset: -31% -27% -38%;
  filter: blur(32px);
  opacity: 1;
}

.hero--wide-light .hero-wide-image-panel--private::before {
  background:
    radial-gradient(ellipse at 12% 48%, rgba(23, 105, 255, 0.46), rgba(23, 105, 255, 0.2) 34%, rgba(239, 68, 68, 0.075) 56%, transparent 78%),
    radial-gradient(ellipse at 23% 86%, rgba(239, 68, 68, 0.18), transparent 50%),
    radial-gradient(ellipse at 82% 54%, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.65) 36%, transparent 68%);
}

.hero--wide-light .hero-wide-image-panel--business::before {
  background:
    radial-gradient(ellipse at 88% 48%, rgba(239, 68, 68, 0.43), rgba(239, 68, 68, 0.19) 34%, rgba(23, 105, 255, 0.075) 56%, transparent 78%),
    radial-gradient(ellipse at 77% 86%, rgba(23, 105, 255, 0.17), transparent 50%),
    radial-gradient(ellipse at 18% 54%, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.65) 36%, transparent 68%);
}

.hero--wide-light .hero-wide-image-panel--private::after {
  background:
    radial-gradient(ellipse at 52% 104%, rgba(11, 31, 58, 0.18), transparent 42%),
    radial-gradient(ellipse at 4% 48%, rgba(23, 105, 255, 0.24), rgba(255, 255, 255, 0.16) 34%, transparent 64%),
    radial-gradient(ellipse at 22% 86%, rgba(239, 68, 68, 0.1), transparent 46%),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.28) 84%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.32) 7%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.5) 95%, #ffffff 100%);
}

.hero--wide-light .hero-wide-image-panel--business::after {
  background:
    radial-gradient(ellipse at 48% 104%, rgba(11, 31, 58, 0.17), transparent 42%),
    radial-gradient(ellipse at 96% 48%, rgba(239, 68, 68, 0.23), rgba(255, 255, 255, 0.16) 34%, transparent 64%),
    radial-gradient(ellipse at 78% 86%, rgba(23, 105, 255, 0.1), transparent 46%),
    linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.28) 84%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.32) 7%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.5) 95%, #ffffff 100%);
}

.hero--wide-light .hero-wide-image-panel img {
  filter:
    saturate(1.13)
    contrast(1.075)
    brightness(1.018)
    drop-shadow(0 2.3rem 3.9rem rgba(11, 31, 58, 0.18));
  -webkit-mask-image:
    radial-gradient(ellipse 125% 101% at 50% 52%, #000 0%, #000 74%, rgba(0, 0, 0, 0.66) 88%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 125% 101% at 50% 52%, #000 0%, #000 74%, rgba(0, 0, 0, 0.66) 88%, transparent 100%);
}

.hero--wide-light .hero-wide-center .hero-segment-grid {
  gap: clamp(0.9rem, 1.35vw, 1.15rem);
}

.hero--wide-light .hero-wide-center .hero-segment-card {
  border-width: 1.5px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow:
    0 24px 80px rgba(11, 31, 58, 0.09),
    0 8px 24px rgba(11, 31, 58, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.hero--wide-light .hero-wide-center .hero-segment-card--private {
  border-color: rgba(23, 105, 255, 0.38);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(23, 105, 255, 0.14), transparent 46%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.88));
  box-shadow:
    0 32px 100px rgba(23, 105, 255, 0.2),
    0 12px 34px rgba(11, 31, 58, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.hero--wide-light .hero-wide-center .hero-segment-card--business {
  border-color: rgba(239, 68, 68, 0.36);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(239, 68, 68, 0.13), transparent 46%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 245, 0.88));
  box-shadow:
    0 32px 100px rgba(239, 68, 68, 0.18),
    0 12px 34px rgba(11, 31, 58, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.hero--wide-light .hero-wide-center .hero-segment-card h2 {
  font-size: clamp(1.38rem, 1.68vw, 1.76rem);
  line-height: 1.08;
  letter-spacing: -0.026em;
  text-align: center;
}

.hero--wide-light .hero-wide-center .hero-segment-card .audience-card-top {
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
}

.hero--wide-light .hero-wide-center .hero-segment-card .audience-mark {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  font-size: 0;
  line-height: 0;
}

.hero--wide-light .hero-wide-center .hero-segment-card--private .audience-mark {
  background: var(--kw-blue);
  box-shadow: 0 0 0 0.35rem rgba(23, 105, 255, 0.1), 0 0 1.35rem rgba(23, 105, 255, 0.28);
}

.hero--wide-light .hero-wide-center .hero-segment-card--business .audience-mark {
  background: var(--kw-red);
  box-shadow: 0 0 0 0.35rem rgba(239, 68, 68, 0.1), 0 0 1.35rem rgba(239, 68, 68, 0.26);
}

.hero--wide-light .hero-wide-center .hero-segment-card p {
  font-size: clamp(0.9rem, 0.86vw, 0.95rem);
  line-height: 1.42;
}

.hero--wide-light .hero-wide-center .hero-segment-card .hero-segment-list {
  padding-left: 1.5rem;
  gap: 0.34rem;
  margin-top: 0.05rem;
}

.hero--wide-light .hero-wide-center .hero-segment-card .hero-segment-list li {
  padding-left: 0.2rem;
  font-size: clamp(0.84rem, 0.8vw, 0.9rem);
  line-height: 1.32;
}

.hero--wide-light .hero-wide-center .hero-segment-card .btn {
  margin-top: 0.12rem;
}

.hero--wide-light .hero-wide-center .hero-segment-card--private:hover {
  border-color: rgba(23, 105, 255, 0.52);
  box-shadow:
    0 38px 116px rgba(23, 105, 255, 0.26),
    0 16px 42px rgba(11, 31, 58, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hero--wide-light .hero-wide-center .hero-segment-card--business:hover {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow:
    0 38px 116px rgba(239, 68, 68, 0.24),
    0 16px 42px rgba(11, 31, 58, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

@media (max-width: 1320px) {
  .hero--wide-light .hero-wide-image-panel {
    width: clamp(30rem, 40vw, 40rem);
  }

  .hero--wide-light .hero-wide-image-panel--private {
    left: clamp(-10rem, -7.6vw, -5rem);
  }

  .hero--wide-light .hero-wide-image-panel--business {
    right: clamp(-10rem, -7.6vw, -5rem);
  }

  .hero--wide-light .hero-wide-bg::before,
  .hero--wide-light .hero-wide-bg::after {
    opacity: 0.82;
  }

  .hero--wide-light .hero-wide-grid::before,
  .hero--wide-light .hero-wide-grid::after {
    opacity: 0.72;
  }
}

@media (max-width: 1120px) {
  .hero--wide-light .hero-wide-image-panel {
    filter: none;
  }

  .hero--wide-light .hero-wide-grid::before,
  .hero--wide-light .hero-wide-grid::after {
    opacity: 0.48;
  }
}

@media (max-width: 820px) {
  .hero.hero--wide-light::after {
    display: none;
  }

  .hero--wide-light .hero-wide-shell,
  .hero--wide-light .hero-wide-grid,
  .hero--wide-light .hero-wide-center,
  .hero--wide-light .hero-wide-center .hero-light-head,
  .hero--wide-light .hero-wide-center .hero-segment-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero--wide-light .hero-wide-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero--wide-light .hero-wide-image-panel,
  .hero--wide-light .hero-wide-image-panel--private,
  .hero--wide-light .hero-wide-image-panel--business {
    width: 100%;
    max-width: 100%;
    left: auto;
    right: auto;
    transform: none;
  }

  .hero--wide-light .hero-wide-center .hero-segment-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: rgba(255, 255, 255, 0.96);
  }

  .hero--wide-light .hero-wide-center .hero-segment-card h2 {
    font-size: clamp(1.42rem, 5.8vw, 1.82rem);
    overflow-wrap: anywhere;
  }

  .hero--wide-light .hero-wide-center .hero-segment-card .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero--wide-light,
  .hero--wide-light .hero-wide-bg,
  .hero--wide-light .hero-wide-shell,
  .hero--wide-light .hero-wide-grid,
  .hero--wide-light .hero-wide-center {
    overflow-x: hidden;
  }

  .hero--wide-light .hero-wide-shell {
    width: calc(100% - 1rem);
    max-width: calc(100vw - 1rem);
  }

  .hero--wide-light .hero-wide-center .hero-light-head h1 {
    width: calc(100vw - 1.5rem);
    max-width: calc(100vw - 1.5rem);
    font-size: clamp(1.75rem, 8vw, 2.1rem);
    line-height: 1.08;
    letter-spacing: -0.042em;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
  }

  .hero--wide-light .hero-highlight {
    display: inline;
  }

  .hero--wide-light .hero-wide-center .hero-light-head .lead {
    width: calc(100vw - 1.5rem);
    max-width: calc(100vw - 1.5rem);
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .hero--wide-light .hero-wide-center .hero-segment-grid {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, calc(100vw - 1rem));
    max-width: calc(100vw - 1rem);
    justify-self: center;
    margin-inline: auto;
  }

  .hero--wide-light .hero-wide-center .hero-segment-card {
    box-sizing: border-box;
    justify-self: center;
    width: min(100%, calc(100vw - 1rem));
    max-width: calc(100vw - 1rem);
    padding: 0.95rem;
    border-radius: 1.1rem;
  }

  .hero--wide-light .hero-wide-center .hero-segment-card .audience-card-top {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    max-width: calc(100vw - 3rem);
  }

  .hero--wide-light .hero-wide-center .hero-segment-card h2 {
    width: 100%;
    max-width: calc(100vw - 4rem);
    font-size: clamp(1.2rem, 5.2vw, 1.42rem);
    line-height: 1.12;
    text-align: left;
    overflow-wrap: normal;
  }

  .hero--wide-light .hero-wide-center .hero-segment-card .hero-segment-list {
    padding-left: 1.24rem;
  }

  .hero--wide-light .hero-wide-center .hero-segment-card p,
  .hero--wide-light .hero-wide-center .hero-segment-card .hero-segment-list li {
    width: 100%;
    max-width: calc(100vw - 3rem);
    font-size: 0.86rem;
    overflow-wrap: anywhere;
  }
}

/* Hero background smoothing: remove visible horizontal bands while keeping the blue/red glow stage. */
.hero.hero--wide-light {
  background:
    radial-gradient(ellipse 64% 28% at 50% 0%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 42%, transparent 78%),
    radial-gradient(ellipse 50% 46% at 10% 50%, rgba(23, 105, 255, 0.34) 0%, rgba(23, 105, 255, 0.16) 36%, rgba(239, 68, 68, 0.07) 58%, transparent 82%),
    radial-gradient(ellipse 50% 46% at 90% 50%, rgba(239, 68, 68, 0.32) 0%, rgba(239, 68, 68, 0.15) 36%, rgba(23, 105, 255, 0.07) 58%, transparent 82%),
    radial-gradient(ellipse 72% 36% at 50% 100%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 46%, transparent 82%),
    #fbfdff;
}

.hero--wide-light .hero-wide-bg {
  background:
    radial-gradient(ellipse 70% 38% at 50% 14%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.58) 42%, transparent 76%),
    radial-gradient(ellipse 74% 42% at 50% 89%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.52) 44%, transparent 82%);
}

.hero--wide-light .hero-wide-bg::before,
.hero--wide-light .hero-wide-bg::after {
  top: clamp(2.4rem, 5vw, 4.8rem);
  width: clamp(44rem, 54vw, 78rem);
  height: clamp(26rem, 38vw, 52rem);
  filter: blur(28px);
  opacity: 0.9;
}

.hero--wide-light .hero-wide-bg::before {
  left: clamp(-42rem, -34vw, -22rem);
  background:
    radial-gradient(ellipse at 46% 52%, rgba(23, 105, 255, 0.36), rgba(23, 105, 255, 0.15) 34%, rgba(239, 68, 68, 0.06) 60%, transparent 82%),
    conic-gradient(from 214deg at 61% 53%, transparent 0deg, rgba(23, 105, 255, 0.08) 20deg, rgba(23, 105, 255, 0.28) 42deg, rgba(255, 255, 255, 0.45) 58deg, transparent 92deg, transparent 360deg);
}

.hero--wide-light .hero-wide-bg::after {
  right: clamp(-42rem, -34vw, -22rem);
  background:
    radial-gradient(ellipse at 54% 52%, rgba(239, 68, 68, 0.34), rgba(239, 68, 68, 0.14) 34%, rgba(23, 105, 255, 0.06) 60%, transparent 82%),
    conic-gradient(from 326deg at 39% 53%, transparent 0deg, rgba(239, 68, 68, 0.08) 20deg, rgba(239, 68, 68, 0.26) 42deg, rgba(255, 255, 255, 0.45) 58deg, transparent 92deg, transparent 360deg);
}

.hero--wide-light .hero-wide-grid::before,
.hero--wide-light .hero-wide-grid::after {
  opacity: 0.84;
}

.hero--wide-light .hero-wide-grid::before {
  background:
    conic-gradient(from 202deg at 43% 54%, transparent 0deg, rgba(23, 105, 255, 0.05) 14deg, rgba(23, 105, 255, 0.22) 35deg, rgba(255, 255, 255, 0.48) 52deg, transparent 84deg, transparent 360deg),
    radial-gradient(ellipse at 24% 50%, rgba(23, 105, 255, 0.17), rgba(255, 255, 255, 0.56) 45%, transparent 72%),
    radial-gradient(ellipse at 18% 88%, rgba(239, 68, 68, 0.11), transparent 52%);
}

.hero--wide-light .hero-wide-grid::after {
  background:
    conic-gradient(from 338deg at 57% 54%, transparent 0deg, rgba(239, 68, 68, 0.05) 14deg, rgba(239, 68, 68, 0.21) 35deg, rgba(255, 255, 255, 0.5) 52deg, transparent 84deg, transparent 360deg),
    radial-gradient(ellipse at 76% 50%, rgba(239, 68, 68, 0.17), rgba(255, 255, 255, 0.56) 45%, transparent 72%),
    radial-gradient(ellipse at 82% 88%, rgba(23, 105, 255, 0.11), transparent 52%);
}

.hero--wide-light .hero-wide-image-panel--private::after {
  background:
    radial-gradient(ellipse at 52% 104%, rgba(11, 31, 58, 0.16), transparent 42%),
    radial-gradient(ellipse at 4% 48%, rgba(23, 105, 255, 0.22), rgba(255, 255, 255, 0.14) 34%, transparent 64%),
    radial-gradient(ellipse at 22% 86%, rgba(239, 68, 68, 0.09), transparent 46%),
    radial-gradient(ellipse at 100% 50%, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.34) 34%, transparent 66%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.8), transparent 42%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.84), transparent 42%);
}

.hero--wide-light .hero-wide-image-panel--business::after {
  background:
    radial-gradient(ellipse at 48% 104%, rgba(11, 31, 58, 0.16), transparent 42%),
    radial-gradient(ellipse at 96% 48%, rgba(239, 68, 68, 0.21), rgba(255, 255, 255, 0.14) 34%, transparent 64%),
    radial-gradient(ellipse at 78% 86%, rgba(23, 105, 255, 0.09), transparent 46%),
    radial-gradient(ellipse at 0% 50%, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.34) 34%, transparent 66%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.8), transparent 42%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.84), transparent 42%);
}

.hero--wide-light .hero-wide-center .hero-segment-card--business h2 {
  white-space: nowrap;
}

@media (max-width: 560px) {
  .hero--wide-light .hero-wide-center .hero-segment-card--business h2 {
    white-space: normal;
  }
}

/* Final seam pass: soften the visible top and bottom edges of the hero image stage. */
.hero.hero--wide-light {
  background:
    radial-gradient(ellipse 52% 46% at 9% 58%, rgba(23, 105, 255, 0.34) 0%, rgba(23, 105, 255, 0.15) 38%, rgba(239, 68, 68, 0.065) 60%, transparent 84%),
    radial-gradient(ellipse 52% 46% at 91% 58%, rgba(239, 68, 68, 0.32) 0%, rgba(239, 68, 68, 0.14) 38%, rgba(23, 105, 255, 0.065) 60%, transparent 84%),
    radial-gradient(ellipse 74% 26% at 50% 96%, rgba(244, 248, 255, 0.95), rgba(255, 255, 255, 0.76) 52%, transparent 88%),
    #ffffff;
}

.hero--wide-light .hero-wide-bg {
  background: transparent;
}

.hero--wide-light .hero-wide-shell::before,
.hero--wide-light .hero-wide-shell::after {
  display: none;
}

.hero--wide-light .hero-wide-center {
  position: relative;
  z-index: 5;
}

.hero--wide-light .hero-wide-center::before {
  inset: clamp(-3.6rem, -5vw, -2rem) clamp(-4.8rem, -6vw, -2.2rem) clamp(-3rem, -4.5vw, -1.6rem);
  border-radius: 48% 48% 46% 46% / 42% 42% 50% 50%;
  background:
    radial-gradient(ellipse 72% 54% at 50% 35%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.54) 48%, transparent 84%),
    radial-gradient(ellipse 76% 58% at 50% 72%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42) 44%, transparent 82%);
  filter: blur(24px);
  opacity: 0.94;
}

.hero--wide-light .hero-wide-bg::before,
.hero--wide-light .hero-wide-bg::after {
  top: clamp(7.5rem, 12vw, 12rem);
}

.hero--wide-light .hero-wide-grid::before,
.hero--wide-light .hero-wide-grid::after {
  top: clamp(6.5rem, 10vw, 9.5rem);
  opacity: 0.78;
}

.hero--wide-light .hero-wide-image-panel {
  z-index: 1;
}

.hero--wide-light .hero-wide-image-panel--private::after {
  background:
    radial-gradient(ellipse at 52% 104%, rgba(11, 31, 58, 0.15), transparent 42%),
    radial-gradient(ellipse at 4% 48%, rgba(23, 105, 255, 0.22), rgba(255, 255, 255, 0.14) 34%, transparent 64%),
    radial-gradient(ellipse at 22% 86%, rgba(239, 68, 68, 0.09), transparent 46%),
    radial-gradient(ellipse 108% 34% at 50% 0%, #ffffff 0%, rgba(255, 255, 255, 0.72) 38%, transparent 76%),
    radial-gradient(ellipse 108% 34% at 50% 100%, #ffffff 0%, rgba(255, 255, 255, 0.7) 38%, transparent 76%),
    radial-gradient(ellipse at 100% 50%, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.34) 34%, transparent 66%);
}

.hero--wide-light .hero-wide-image-panel--business::after {
  background:
    radial-gradient(ellipse at 48% 104%, rgba(11, 31, 58, 0.15), transparent 42%),
    radial-gradient(ellipse at 96% 48%, rgba(239, 68, 68, 0.21), rgba(255, 255, 255, 0.14) 34%, transparent 64%),
    radial-gradient(ellipse at 78% 86%, rgba(23, 105, 255, 0.09), transparent 46%),
    radial-gradient(ellipse 108% 34% at 50% 0%, #ffffff 0%, rgba(255, 255, 255, 0.72) 38%, transparent 76%),
    radial-gradient(ellipse 108% 34% at 50% 100%, #ffffff 0%, rgba(255, 255, 255, 0.7) 38%, transparent 76%),
    radial-gradient(ellipse at 0% 50%, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.34) 34%, transparent 66%);
}

@media (max-width: 820px) {
  .hero--wide-light .hero-wide-shell::before,
  .hero--wide-light .hero-wide-shell::after {
    display: none;
  }
}

/* Seam cleanup: keep glow as soft side light instead of rectangular color bands. */
.hero.hero--wide-light {
  background:
    radial-gradient(ellipse 44% 48% at -4% 55%, rgba(23, 105, 255, 0.32) 0%, rgba(23, 105, 255, 0.14) 38%, rgba(239, 68, 68, 0.055) 58%, transparent 84%),
    radial-gradient(ellipse 44% 48% at 104% 55%, rgba(239, 68, 68, 0.3) 0%, rgba(239, 68, 68, 0.13) 38%, rgba(23, 105, 255, 0.055) 58%, transparent 84%),
    radial-gradient(ellipse 72% 22% at 50% 94%, rgba(238, 245, 255, 0.72), rgba(255, 255, 255, 0.5) 48%, transparent 86%),
    #ffffff;
}

.hero.hero--wide-light::before,
.hero.hero--wide-light::after {
  content: "";
  position: absolute;
  inset: auto;
  left: 0;
  right: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero.hero--wide-light::before {
  top: 0;
  height: clamp(9rem, 16vw, 16rem);
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 255, 255, 0.74) 67%, transparent 100%);
}

.hero.hero--wide-light::after {
  bottom: 0;
  height: clamp(7rem, 14vw, 13rem);
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 38%, rgba(255, 255, 255, 0.58) 70%, transparent 100%);
  opacity: 1;
}

.hero--wide-light .hero-wide-bg {
  position: relative;
  z-index: 2;
  background: transparent;
}

.hero--wide-light .hero-wide-bg::before,
.hero--wide-light .hero-wide-bg::after {
  top: clamp(12.5rem, 18vw, 17rem);
  opacity: 0.8;
}

.hero--wide-light .hero-wide-grid::before,
.hero--wide-light .hero-wide-grid::after {
  top: clamp(10.8rem, 15vw, 14rem);
  opacity: 0.62;
}

/* Final strip removal: no full-width linear fade planes in the hero background. */
.hero.hero--wide-light {
  background: #ffffff;
}

.hero.hero--wide-light::before,
.hero.hero--wide-light::after {
  display: none;
}

.hero--wide-light .hero-wide-bg::before,
.hero--wide-light .hero-wide-bg::after,
.hero--wide-light .hero-wide-grid::before,
.hero--wide-light .hero-wide-grid::after {
  display: none;
}

body {
  background: #ffffff;
}

.hero--wide-light .hero-wide-image-panel::before {
  display: none;
}

/* Hero color recovery: stronger local glow without full-width color bands. */
.hero.hero--wide-light {
  background:
    radial-gradient(ellipse 30% 46% at -3% 63%, rgba(23, 105, 255, 0.2), rgba(23, 105, 255, 0.08) 48%, rgba(239, 68, 68, 0.035) 66%, transparent 88%),
    radial-gradient(ellipse 30% 46% at 103% 63%, rgba(239, 68, 68, 0.19), rgba(239, 68, 68, 0.075) 48%, rgba(23, 105, 255, 0.035) 66%, transparent 88%),
    #ffffff;
}

.hero--wide-light .hero-wide-image-panel::before {
  content: "";
  position: absolute;
  inset: 7% -12% -18%;
  z-index: -1;
  display: block;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.96;
  pointer-events: none;
}

.hero--wide-light .hero-wide-image-panel--private::before {
  background:
    radial-gradient(ellipse at 16% 58%, rgba(23, 105, 255, 0.42), rgba(23, 105, 255, 0.18) 36%, rgba(239, 68, 68, 0.08) 57%, transparent 78%),
    radial-gradient(ellipse at 30% 94%, rgba(239, 68, 68, 0.16), transparent 54%);
}

.hero--wide-light .hero-wide-image-panel--business::before {
  background:
    radial-gradient(ellipse at 84% 58%, rgba(239, 68, 68, 0.39), rgba(239, 68, 68, 0.17) 36%, rgba(23, 105, 255, 0.08) 57%, transparent 78%),
    radial-gradient(ellipse at 70% 94%, rgba(23, 105, 255, 0.15), transparent 54%);
}

.hero--wide-light .hero-wide-image-panel img {
  filter:
    saturate(1.2)
    contrast(1.12)
    brightness(1.025)
    drop-shadow(0 2rem 3.4rem rgba(11, 31, 58, 0.16));
}

.hero--wide-light .hero-wide-image-panel--private::after {
  background:
    radial-gradient(ellipse at 52% 104%, rgba(11, 31, 58, 0.14), transparent 43%),
    radial-gradient(ellipse at 4% 52%, rgba(23, 105, 255, 0.24), rgba(255, 255, 255, 0.1) 35%, transparent 65%),
    radial-gradient(ellipse at 20% 90%, rgba(239, 68, 68, 0.1), transparent 48%),
    radial-gradient(ellipse 112% 28% at 50% 0%, rgba(255, 255, 255, 0.68), transparent 74%),
    radial-gradient(ellipse 112% 28% at 50% 100%, rgba(255, 255, 255, 0.62), transparent 76%),
    radial-gradient(ellipse at 100% 50%, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.24) 35%, transparent 67%);
}

.hero--wide-light .hero-wide-image-panel--business::after {
  background:
    radial-gradient(ellipse at 48% 104%, rgba(11, 31, 58, 0.14), transparent 43%),
    radial-gradient(ellipse at 96% 52%, rgba(239, 68, 68, 0.23), rgba(255, 255, 255, 0.1) 35%, transparent 65%),
    radial-gradient(ellipse at 80% 90%, rgba(23, 105, 255, 0.1), transparent 48%),
    radial-gradient(ellipse 112% 28% at 50% 0%, rgba(255, 255, 255, 0.68), transparent 74%),
    radial-gradient(ellipse 112% 28% at 50% 100%, rgba(255, 255, 255, 0.62), transparent 76%),
    radial-gradient(ellipse at 0% 50%, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.24) 35%, transparent 67%);
}

.hero--wide-light .hero-wide-center .hero-segment-card--private {
  box-shadow:
    0 34px 94px rgba(23, 105, 255, 0.22),
    0 12px 32px rgba(11, 31, 58, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hero--wide-light .hero-wide-center .hero-segment-card--business {
  box-shadow:
    0 34px 94px rgba(239, 68, 68, 0.2),
    0 12px 32px rgba(11, 31, 58, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.trust-strip--light {
  margin-top: clamp(0.75rem, 1.6vw, 1.6rem);
}

.trust-strip--light .trust-strip-grid {
  box-shadow:
    0 28px 82px rgba(11, 31, 58, 0.095),
    0 10px 30px rgba(23, 105, 255, 0.055);
}

/* Unified hero field: remove rectangular background strata without moving the existing Hero layout. */
body,
main {
  background: #ffffff;
}

.hero.hero--wide-light {
  background:
    radial-gradient(ellipse 32% 48% at -2% 58%, rgba(23, 105, 255, 0.22) 0%, rgba(23, 105, 255, 0.09) 48%, rgba(239, 68, 68, 0.035) 66%, transparent 88%),
    radial-gradient(ellipse 32% 48% at 102% 58%, rgba(239, 68, 68, 0.21) 0%, rgba(239, 68, 68, 0.085) 48%, rgba(23, 105, 255, 0.035) 66%, transparent 88%),
    #ffffff;
}

.hero.hero--wide-light::before,
.hero.hero--wide-light::after,
.hero--wide-light .hero-wide-bg::before,
.hero--wide-light .hero-wide-bg::after,
.hero--wide-light .hero-wide-grid::before,
.hero--wide-light .hero-wide-grid::after,
.hero--wide-light .hero-wide-shell::before,
.hero--wide-light .hero-wide-shell::after {
  display: none !important;
}

.hero--wide-light .hero-wide-bg,
.hero--wide-light .hero-wide-shell,
.hero--wide-light .hero-wide-grid {
  background: transparent !important;
}

.hero--wide-light .hero-wide-image-panel::before {
  display: block;
  inset: 7% -12% -18%;
  filter: blur(30px);
  opacity: 0.92;
}

.hero--wide-light .hero-wide-image-panel--private::before {
  background:
    radial-gradient(ellipse at 16% 58%, rgba(23, 105, 255, 0.4), rgba(23, 105, 255, 0.16) 36%, rgba(239, 68, 68, 0.07) 57%, transparent 78%),
    radial-gradient(ellipse at 30% 94%, rgba(239, 68, 68, 0.13), transparent 54%);
}

.hero--wide-light .hero-wide-image-panel--business::before {
  background:
    radial-gradient(ellipse at 84% 58%, rgba(239, 68, 68, 0.37), rgba(239, 68, 68, 0.155) 36%, rgba(23, 105, 255, 0.07) 57%, transparent 78%),
    radial-gradient(ellipse at 70% 94%, rgba(23, 105, 255, 0.13), transparent 54%);
}

.hero--wide-light .hero-wide-image-panel--private::after {
  background:
    radial-gradient(ellipse at 52% 104%, rgba(11, 31, 58, 0.13), transparent 43%),
    radial-gradient(ellipse at 4% 52%, rgba(23, 105, 255, 0.22), rgba(255, 255, 255, 0.1) 35%, transparent 65%),
    radial-gradient(ellipse at 20% 90%, rgba(239, 68, 68, 0.085), transparent 48%),
    radial-gradient(ellipse at 100% 50%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.24) 36%, transparent 68%);
}

.hero--wide-light .hero-wide-image-panel--business::after {
  background:
    radial-gradient(ellipse at 48% 104%, rgba(11, 31, 58, 0.13), transparent 43%),
    radial-gradient(ellipse at 96% 52%, rgba(239, 68, 68, 0.21), rgba(255, 255, 255, 0.1) 35%, transparent 65%),
    radial-gradient(ellipse at 80% 90%, rgba(23, 105, 255, 0.085), transparent 48%),
    radial-gradient(ellipse at 0% 50%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.24) 36%, transparent 68%);
}

.trust-strip--light {
  position: relative;
  z-index: 3;
  margin-top: clamp(1rem, 1.8vw, 1.8rem);
  background: transparent;
}

/* Hard seam removal: keep the Hero stage plain white; glows are local only. */
html,
body,
main {
  background: #ffffff !important;
}

.hero.hero--wide-light,
.hero.hero--wide-light.section-block,
.hero--wide-light .hero-wide-bg,
.hero--wide-light .hero-wide-shell,
.hero--wide-light .hero-wide-grid,
.hero--wide-light .hero-wide-center,
.trust-strip,
.trust-strip--light,
.starter-section {
  background: #ffffff !important;
  background-image: none !important;
}

.hero.hero--wide-light::before,
.hero.hero--wide-light::after,
.hero--wide-light .hero-wide-bg::before,
.hero--wide-light .hero-wide-bg::after,
.hero--wide-light .hero-wide-shell::before,
.hero--wide-light .hero-wide-shell::after,
.hero--wide-light .hero-wide-grid::before,
.hero--wide-light .hero-wide-grid::after,
.hero--wide-light .hero-wide-center::before,
.hero--wide-light .hero-wide-center::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

.hero.hero--wide-light {
  overflow: hidden;
}

.hero--wide-light .hero-wide-bg {
  overflow: visible;
  padding-bottom: clamp(1.6rem, 3vw, 3rem);
}

.hero--wide-light .hero-wide-image-panel {
  background: transparent !important;
  box-shadow: none !important;
}

.hero--wide-light .hero-wide-image-panel::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: 8% -9% -12%;
  z-index: -1;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.78;
  pointer-events: none;
}

.hero--wide-light .hero-wide-image-panel--private::before {
  background:
    radial-gradient(ellipse at 20% 58%, rgba(23, 105, 255, 0.34), rgba(23, 105, 255, 0.12) 38%, transparent 76%),
    radial-gradient(ellipse at 30% 92%, rgba(239, 68, 68, 0.08), transparent 54%);
}

.hero--wide-light .hero-wide-image-panel--business::before {
  background:
    radial-gradient(ellipse at 80% 58%, rgba(239, 68, 68, 0.32), rgba(239, 68, 68, 0.115) 38%, transparent 76%),
    radial-gradient(ellipse at 70% 92%, rgba(23, 105, 255, 0.08), transparent 54%);
}

.hero--wide-light .hero-wide-image-panel--private::after {
  background:
    radial-gradient(ellipse at 100% 52%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.28) 36%, transparent 70%),
    radial-gradient(ellipse at 6% 52%, rgba(23, 105, 255, 0.18), rgba(255, 255, 255, 0.08) 36%, transparent 68%);
}

.hero--wide-light .hero-wide-image-panel--business::after {
  background:
    radial-gradient(ellipse at 0% 52%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.28) 36%, transparent 70%),
    radial-gradient(ellipse at 94% 52%, rgba(239, 68, 68, 0.17), rgba(255, 255, 255, 0.08) 36%, transparent 68%);
}

.hero--wide-light .hero-wide-image-panel img {
  -webkit-mask-image: radial-gradient(ellipse 86% 74% at 50% 55%, #000 0%, #000 54%, rgba(0, 0, 0, 0.72) 68%, rgba(0, 0, 0, 0.24) 84%, transparent 100%) !important;
  mask-image: radial-gradient(ellipse 86% 74% at 50% 55%, #000 0%, #000 54%, rgba(0, 0, 0, 0.72) 68%, rgba(0, 0, 0, 0.24) 84%, transparent 100%) !important;
}

.trust-strip--light {
  margin-top: clamp(1.5rem, 2.6vw, 2.8rem);
  padding-top: 0;
}

/* Final image seam clamp: prevent the JPG/overlay stage from ending as a visible rectangle. */
.hero--wide-light .hero-wide-image-panel {
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero--wide-light .hero-wide-image-panel::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

.hero--wide-light .hero-wide-image-panel::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.hero--wide-light .hero-wide-image-panel img {
  border-radius: 0 !important;
  filter: saturate(1.12) contrast(1.06) brightness(1.02) !important;
  -webkit-mask-image: radial-gradient(ellipse 74% 50% at 50% 46%, #000 0%, #000 34%, rgba(0, 0, 0, 0.74) 50%, rgba(0, 0, 0, 0.18) 64%, transparent 78%) !important;
  mask-image: radial-gradient(ellipse 74% 50% at 50% 46%, #000 0%, #000 34%, rgba(0, 0, 0, 0.74) 50%, rgba(0, 0, 0, 0.18) 64%, transparent 78%) !important;
}

.hero--wide-light .hero-wide-center .hero-segment-card,
.hero--wide-light .hero-wide-center .hero-segment-card--private,
.hero--wide-light .hero-wide-center .hero-segment-card--business {
  box-shadow:
    0 18px 38px rgba(11, 31, 58, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

/* Hero composition rebalance: stronger side imagery, clear content layer, no full-width backgrounds. */
.hero--wide-light .hero-wide-grid {
  isolation: isolate;
}

.hero--wide-light .hero-wide-center {
  position: relative;
  z-index: 5 !important;
}

.hero--wide-light .hero-wide-center .hero-light-head,
.hero--wide-light .hero-wide-center .hero-segment-grid,
.hero--wide-light .hero-wide-center .hero-segment-card {
  position: relative;
  z-index: 6;
}

.hero--wide-light .hero-wide-image-panel {
  z-index: 1 !important;
  width: clamp(35rem, 44vw, 58rem) !important;
  pointer-events: none;
}

.hero--wide-light .hero-wide-image-panel--private {
  left: clamp(-17rem, -12vw, -8rem) !important;
}

.hero--wide-light .hero-wide-image-panel--business {
  right: clamp(-17rem, -12vw, -8rem) !important;
}

.hero--wide-light .hero-wide-image-panel img {
  opacity: 1 !important;
  filter: saturate(1.22) contrast(1.13) brightness(1.025) !important;
}

.hero--wide-light .hero-wide-image-panel--private img {
  -webkit-mask-image: radial-gradient(ellipse 128% 88% at 34% 48%, #000 0%, #000 50%, rgba(0, 0, 0, 0.74) 62%, rgba(0, 0, 0, 0.22) 78%, transparent 94%) !important;
  mask-image: radial-gradient(ellipse 128% 88% at 34% 48%, #000 0%, #000 50%, rgba(0, 0, 0, 0.74) 62%, rgba(0, 0, 0, 0.22) 78%, transparent 94%) !important;
}

.hero--wide-light .hero-wide-image-panel--business img {
  -webkit-mask-image: radial-gradient(ellipse 128% 88% at 66% 48%, #000 0%, #000 50%, rgba(0, 0, 0, 0.74) 62%, rgba(0, 0, 0, 0.22) 78%, transparent 94%) !important;
  mask-image: radial-gradient(ellipse 128% 88% at 66% 48%, #000 0%, #000 50%, rgba(0, 0, 0, 0.74) 62%, rgba(0, 0, 0, 0.22) 78%, transparent 94%) !important;
}

.hero--wide-light .hero-wide-center .hero-segment-card--private {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 255, 0.92)) !important;
}

.hero--wide-light .hero-wide-center .hero-segment-card--business {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 245, 244, 0.92)) !important;
}

@media (max-width: 1320px) {
  .hero--wide-light .hero-wide-image-panel {
    width: clamp(29rem, 38vw, 35rem) !important;
  }

  .hero--wide-light .hero-wide-image-panel--private {
    left: clamp(-13rem, -10vw, -7rem) !important;
  }

  .hero--wide-light .hero-wide-image-panel--business {
    right: clamp(-13rem, -10vw, -7rem) !important;
  }
}

@media (max-width: 820px) {
  .hero--wide-light .hero-wide-image-panel {
    display: none !important;
  }
}

/* Hero no-box pass: only the two audience cards and the trustbar may remain card-like. */
html,
body,
main,
.site-main,
.hero.hero--wide-light,
.hero.hero--wide-light.section-block,
.hero--wide-light .hero-wide-bg {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

.hero--wide-light,
.hero--wide-light .hero-wide-shell,
.hero--wide-light .hero-wide-grid,
.hero--wide-light .hero-wide-center,
.hero--wide-light .hero-light-head,
.hero--wide-light .hero-segment-grid {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.hero.hero--wide-light::before,
.hero.hero--wide-light::after,
.hero--wide-light::before,
.hero--wide-light::after,
.hero--wide-light .hero-wide-bg::before,
.hero--wide-light .hero-wide-bg::after,
.hero--wide-light .hero-wide-shell::before,
.hero--wide-light .hero-wide-shell::after,
.hero--wide-light .hero-wide-grid::before,
.hero--wide-light .hero-wide-grid::after,
.hero--wide-light .hero-wide-center::before,
.hero--wide-light .hero-wide-center::after,
.hero--wide-light .hero-light-head::before,
.hero--wide-light .hero-light-head::after,
.hero--wide-light .hero-segment-grid::before,
.hero--wide-light .hero-segment-grid::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

.hero--wide-light .hero-wide-image-panel,
.hero--wide-light .hero-wide-image-panel--private,
.hero--wide-light .hero-wide-image-panel--business {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.hero--wide-light .hero-wide-image-panel::before,
.hero--wide-light .hero-wide-image-panel::after,
.hero--wide-light .hero-wide-image-panel--private::before,
.hero--wide-light .hero-wide-image-panel--private::after,
.hero--wide-light .hero-wide-image-panel--business::before,
.hero--wide-light .hero-wide-image-panel--business::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

.hero--wide-light .hero-wide-image-panel img {
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero--wide-light .hero-wide-image-panel--private img {
  -webkit-mask-image: radial-gradient(ellipse 112% 76% at 31% 48%, #000 0%, #000 42%, rgba(0, 0, 0, 0.72) 55%, rgba(0, 0, 0, 0.24) 70%, transparent 88%) !important;
  mask-image: radial-gradient(ellipse 112% 76% at 31% 48%, #000 0%, #000 42%, rgba(0, 0, 0, 0.72) 55%, rgba(0, 0, 0, 0.24) 70%, transparent 88%) !important;
}

.hero--wide-light .hero-wide-image-panel--business img {
  -webkit-mask-image: radial-gradient(ellipse 112% 76% at 69% 48%, #000 0%, #000 42%, rgba(0, 0, 0, 0.72) 55%, rgba(0, 0, 0, 0.24) 70%, transparent 88%) !important;
  mask-image: radial-gradient(ellipse 112% 76% at 69% 48%, #000 0%, #000 42%, rgba(0, 0, 0, 0.72) 55%, rgba(0, 0, 0, 0.24) 70%, transparent 88%) !important;
}

/* Transparent hero asset pass: local image aura only, no section-wide background layers. */
.hero--wide-light .hero-wide-image-panel {
  isolation: isolate !important;
}

.hero--wide-light .hero-wide-image-panel::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  z-index: 0 !important;
  pointer-events: none !important;
  inset: 7% -3% 6% -3% !important;
  border: 0 !important;
  border-radius: 56% 44% 58% 42% / 48% 56% 44% 52% !important;
  background: none !important;
  box-shadow: none !important;
  filter: blur(30px) !important;
  opacity: 0.82 !important;
}

.hero--wide-light .hero-wide-image-panel--private::before {
  inset: 8% -2% 3% -9% !important;
  transform: rotate(-6deg) scale(1.08, 0.98) !important;
  background:
    radial-gradient(ellipse at 18% 42%, rgba(28, 123, 255, 0.46) 0%, rgba(28, 123, 255, 0.24) 34%, transparent 72%),
    radial-gradient(ellipse at 38% 82%, rgba(238, 66, 72, 0.2) 0%, rgba(238, 66, 72, 0.1) 36%, transparent 74%) !important;
}

.hero--wide-light .hero-wide-image-panel--business::before {
  inset: 7% -9% 3% -2% !important;
  transform: rotate(5deg) scale(1.08, 0.98) !important;
  background:
    radial-gradient(ellipse at 82% 40%, rgba(238, 66, 72, 0.46) 0%, rgba(238, 66, 72, 0.24) 34%, transparent 72%),
    radial-gradient(ellipse at 58% 84%, rgba(28, 123, 255, 0.18) 0%, rgba(28, 123, 255, 0.09) 36%, transparent 74%) !important;
}

.hero--wide-light .hero-wide-image-panel img {
  position: relative !important;
  z-index: 1 !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-size: 100% 100% !important;
  mask-size: 100% 100% !important;
}

.hero--wide-light .hero-wide-image-panel .hero-wide-image--soft {
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.hero--wide-light .hero-wide-image-panel--private .hero-wide-image--soft {
  filter: brightness(1.01) contrast(1.035) saturate(1.06) drop-shadow(-18px 24px 42px rgba(29, 126, 255, 0.18)) !important;
}

.hero--wide-light .hero-wide-image-panel--business .hero-wide-image--soft {
  filter: brightness(1.01) contrast(1.035) saturate(1.06) drop-shadow(18px 24px 42px rgba(238, 66, 72, 0.18)) !important;
}

.hero--wide-light .hero-wide-image-panel--private .hero-wide-image--jpg {
  filter: brightness(1.01) contrast(1.035) saturate(1.06) !important;
  -webkit-mask-image: radial-gradient(ellipse 116% 78% at 31% 49%, #000 0%, #000 40%, rgba(0, 0, 0, 0.78) 54%, rgba(0, 0, 0, 0.28) 72%, transparent 91%) !important;
  mask-image: radial-gradient(ellipse 116% 78% at 31% 49%, #000 0%, #000 40%, rgba(0, 0, 0, 0.78) 54%, rgba(0, 0, 0, 0.28) 72%, transparent 91%) !important;
}

.hero--wide-light .hero-wide-image-panel--business .hero-wide-image--jpg {
  filter: brightness(1.01) contrast(1.035) saturate(1.06) !important;
  -webkit-mask-image: radial-gradient(ellipse 116% 78% at 69% 49%, #000 0%, #000 40%, rgba(0, 0, 0, 0.78) 54%, rgba(0, 0, 0, 0.28) 72%, transparent 91%) !important;
  mask-image: radial-gradient(ellipse 116% 78% at 69% 49%, #000 0%, #000 40%, rgba(0, 0, 0, 0.78) 54%, rgba(0, 0, 0, 0.28) 72%, transparent 91%) !important;
}

/* Hero segment color swap: private is warm red-orange, KMU/event is blue. */
:root,
.hero--wide-light {
  --kw-hero-private: #ff5a36;
  --kw-hero-private-deep: #e94022;
  --kw-hero-private-soft: rgba(255, 90, 54, 0.2);
  --kw-hero-business: #2563ff;
  --kw-hero-business-deep: #0d55d8;
  --kw-hero-business-soft: rgba(37, 99, 255, 0.2);
}

.hero--wide-light .hero-highlight--blue {
  color: var(--kw-hero-private);
}

.hero--wide-light .hero-highlight--red {
  color: var(--kw-hero-business);
}

.hero--wide-light .hero-wide-image-panel--private::before {
  background:
    radial-gradient(ellipse at 20% 43%, rgba(255, 90, 54, 0.62) 0%, rgba(255, 106, 61, 0.33) 35%, transparent 74%),
    radial-gradient(ellipse at 36% 82%, rgba(255, 122, 69, 0.28) 0%, rgba(255, 122, 69, 0.14) 38%, transparent 76%) !important;
  opacity: 0.96 !important;
}

.hero--wide-light .hero-wide-image-panel--business::before {
  background:
    radial-gradient(ellipse at 82% 40%, rgba(37, 99, 255, 0.64) 0%, rgba(59, 130, 246, 0.34) 35%, transparent 74%),
    radial-gradient(ellipse at 58% 84%, rgba(79, 141, 255, 0.28) 0%, rgba(79, 141, 255, 0.14) 38%, transparent 76%) !important;
  opacity: 0.96 !important;
}

.hero--wide-light .hero-wide-image-panel--private .hero-wide-image--soft {
  filter: brightness(1.015) contrast(1.04) saturate(1.08) drop-shadow(-20px 25px 52px rgba(255, 90, 54, 0.26)) !important;
}

.hero--wide-light .hero-wide-image-panel--business .hero-wide-image--soft {
  filter: brightness(1.015) contrast(1.04) saturate(1.08) drop-shadow(20px 25px 52px rgba(37, 99, 255, 0.26)) !important;
}

.site-header .header-cta,
.hero--wide-light .hero-wide-center .hero-segment-card--private .btn-primary {
  background: linear-gradient(135deg, var(--kw-hero-private), var(--kw-hero-private-deep)) !important;
  box-shadow: 0 16px 36px rgba(255, 90, 54, 0.28) !important;
}

.site-header .header-cta:hover,
.site-header .header-cta:focus-visible,
.hero--wide-light .hero-wide-center .hero-segment-card--private .btn-primary:hover,
.hero--wide-light .hero-wide-center .hero-segment-card--private .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(255, 90, 54, 0.42), 0 0 0 1px rgba(255, 122, 69, 0.18) !important;
}

.hero--wide-light .hero-wide-center .hero-segment-card--business .btn-accent {
  background: linear-gradient(135deg, var(--kw-hero-business), var(--kw-hero-business-deep)) !important;
  box-shadow: 0 16px 36px rgba(37, 99, 255, 0.28) !important;
}

.hero--wide-light .hero-wide-center .hero-segment-card--business .btn-accent:hover,
.hero--wide-light .hero-wide-center .hero-segment-card--business .btn-accent:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(37, 99, 255, 0.42), 0 0 0 1px rgba(79, 141, 255, 0.18) !important;
}

.hero--wide-light .hero-wide-center .hero-segment-card--private {
  border-color: rgba(255, 90, 54, 0.42) !important;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 90, 54, 0.16), transparent 48%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 245, 0.88)) !important;
  box-shadow:
    0 32px 100px rgba(255, 90, 54, 0.18),
    0 12px 34px rgba(11, 31, 58, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
}

.hero--wide-light .hero-wide-center .hero-segment-card--business {
  border-color: rgba(37, 99, 255, 0.42) !important;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(37, 99, 255, 0.15), transparent 48%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 255, 0.88)) !important;
  box-shadow:
    0 32px 100px rgba(37, 99, 255, 0.18),
    0 12px 34px rgba(11, 31, 58, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
}

.hero--wide-light .hero-wide-center .hero-segment-card--private .audience-mark {
  background: var(--kw-hero-private) !important;
  box-shadow: 0 0 0 0.35rem rgba(255, 90, 54, 0.12), 0 0 1.4rem rgba(255, 90, 54, 0.34) !important;
}

.hero--wide-light .hero-wide-center .hero-segment-card--business .audience-mark {
  background: var(--kw-hero-business) !important;
  box-shadow: 0 0 0 0.35rem rgba(37, 99, 255, 0.12), 0 0 1.4rem rgba(37, 99, 255, 0.34) !important;
}

.hero--wide-light .hero-wide-center .hero-segment-card--private:hover {
  border-color: rgba(255, 90, 54, 0.58) !important;
  box-shadow:
    0 40px 120px rgba(255, 90, 54, 0.25),
    0 16px 42px rgba(11, 31, 58, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.hero--wide-light .hero-wide-center .hero-segment-card--business:hover {
  border-color: rgba(37, 99, 255, 0.58) !important;
  box-shadow:
    0 40px 120px rgba(37, 99, 255, 0.25),
    0 16px 42px rgba(11, 31, 58, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

/* Phase 2I: compact homepage polish without changing the Hero structure. */
.site-header .header-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 0.5rem;
}

.site-header .header-portal,
.site-header .header-cta {
  white-space: nowrap;
}

.site-header .header-partner {
  border-color: rgba(255, 90, 54, 0.22);
  background: rgba(255, 250, 247, 0.86);
}

.site-header .header-partner:hover,
.site-header .header-partner:focus-visible {
  color: var(--kw-hero-private);
  border-color: rgba(255, 90, 54, 0.36);
  box-shadow: 0 18px 44px rgba(255, 90, 54, 0.18);
}

.trust-strip--light {
  margin-top: clamp(1.1rem, 2vw, 2.1rem);
  padding-bottom: clamp(2rem, 4vw, 3.35rem);
}

.starter-section {
  padding-top: clamp(0.25rem, 1vw, 0.85rem);
}

@media (min-width: 981px) {
  .starter-grid > .starter-card:last-child:nth-child(3n + 1) {
    grid-column: 2 / span 1;
  }
}

.safe-work-strip {
  background:
    radial-gradient(ellipse at 12% 0%, rgba(37, 99, 255, 0.08), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94)) !important;
  border-color: rgba(31, 68, 118, 0.14);
  box-shadow: 0 26px 72px rgba(11, 31, 58, 0.09);
}

.safe-work-head h2 {
  color: var(--kw-navy);
}

.safe-work-head p {
  color: rgba(34, 58, 92, 0.86);
}

.safe-pill {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(37, 99, 255, 0.18);
  box-shadow: 0 16px 42px rgba(11, 31, 58, 0.075);
}

.safe-pill span {
  color: var(--kw-blue);
  background: rgba(37, 99, 255, 0.12);
  border-color: rgba(37, 99, 255, 0.22);
  box-shadow: 0 0 0 0.35rem rgba(37, 99, 255, 0.06);
}

.safe-pill strong {
  color: var(--kw-navy);
}

.safe-pill p {
  color: rgba(54, 76, 109, 0.88);
}

.contact-copy,
.contact-copy h2 {
  color: var(--kw-navy);
}

.contact-copy .eyebrow,
.contact-copy .section-intro,
.contact-note,
.contact-direct a,
.contact-direct span {
  color: rgba(34, 58, 92, 0.9);
}

.contact-badges span {
  color: var(--kw-navy-soft);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(31, 68, 118, 0.13);
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.055);
}

.contact-note {
  background: rgba(255, 255, 255, 0.9);
  border-left-color: var(--kw-hero-private);
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.055);
}

/* Phase 3B: reusable bright page templates for real WordPress subpages. */
.kw-page {
  background:
    radial-gradient(circle at 8% 8%, rgba(37, 99, 255, 0.08), transparent 24rem),
    radial-gradient(circle at 92% 10%, rgba(255, 90, 54, 0.075), transparent 24rem),
    #ffffff;
  color: var(--kw-navy);
}

.kw-page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.6rem, 5vw, 4.5rem);
  border-bottom: 1px solid rgba(31, 68, 118, 0.1);
  background:
    radial-gradient(ellipse at 18% 20%, rgba(37, 99, 255, 0.12), transparent 28rem),
    radial-gradient(ellipse at 88% 18%, rgba(255, 90, 54, 0.1), transparent 26rem),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.kw-page-hero-inner {
  display: grid;
  justify-items: center;
  gap: clamp(0.95rem, 1.8vw, 1.35rem);
  text-align: center;
}

.kw-page-hero--visual .kw-page-hero-inner {
  gap: clamp(1.5rem, 4vw, 3rem);
}

.kw-page-hero-split {
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
}

.kw-page-hero-copy {
  display: grid;
  justify-items: center;
  gap: clamp(0.95rem, 1.8vw, 1.35rem);
  text-align: center;
}

.kw-page-hero-copy h1 {
  width: min(100%, 42rem);
}

.kw-page-hero-copy .kw-page-lead {
  width: min(100%, 40rem);
}

.kw-page-hero-copy .kw-page-actions {
  justify-content: center;
}

.kw-page-hero-media {
  position: relative;
  width: min(100%, 35rem);
  justify-self: center;
}

.kw-page-visual {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-height: clamp(15rem, 34vw, 25rem);
  overflow: hidden;
  border: 1px solid rgba(31, 68, 118, 0.12);
  border-radius: clamp(1.45rem, 3vw, 2.35rem);
  background:
    radial-gradient(circle at 15% 12%, rgba(37, 99, 255, 0.18), transparent 16rem),
    radial-gradient(circle at 88% 18%, rgba(255, 90, 54, 0.12), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.92));
  box-shadow: 0 28px 70px rgba(18, 45, 88, 0.14);
}

.kw-page-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -40px 80px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.kw-page-visual picture,
.kw-page-visual .kw-soft-image {
  position: relative;
  z-index: 1;
}

.kw-page-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.kw-soft-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: inherit;
}

.kw-page-image-glow {
  position: absolute;
  inset: auto -12% -20% 18%;
  z-index: 0;
  height: 45%;
  border-radius: 999px;
  background: rgba(37, 99, 255, 0.28);
  filter: blur(34px);
  pointer-events: none;
}

.kw-page-visual--private {
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 90, 54, 0.24), transparent 17rem),
    radial-gradient(circle at 86% 18%, rgba(255, 155, 123, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 245, 242, 0.92));
}

.kw-page-visual--private .kw-page-image-glow {
  background: rgba(255, 90, 54, 0.3);
}

.kw-page-visual--business {
  background:
    radial-gradient(circle at 12% 14%, rgba(37, 99, 255, 0.26), transparent 17rem),
    radial-gradient(circle at 86% 18%, rgba(87, 142, 255, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(238, 246, 255, 0.92));
}

.kw-page-visual--business .kw-page-image-glow {
  background: rgba(37, 99, 255, 0.3);
}

.kw-page-visual--portal {
  background:
    radial-gradient(circle at 12% 14%, rgba(37, 99, 255, 0.22), transparent 17rem),
    radial-gradient(circle at 82% 22%, rgba(14, 165, 233, 0.13), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(242, 247, 255, 0.94));
}

.kw-page-visual--portal .kw-page-image-glow {
  background: rgba(14, 116, 220, 0.28);
}

.kw-page-visual--neutral {
  background:
    radial-gradient(circle at 14% 14%, rgba(37, 99, 255, 0.16), transparent 17rem),
    radial-gradient(circle at 86% 18%, rgba(255, 90, 54, 0.1), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(247, 251, 255, 0.94));
}

.kw-page-visual--neutral .kw-page-image-glow {
  background: rgba(81, 116, 158, 0.2);
}

.kw-page-icon-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(31, 68, 118, 0.1);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(18, 45, 88, 0.08);
}

.kw-page-icon-card::before {
  content: "";
  position: absolute;
  inset: -3rem auto auto -3rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: rgba(37, 99, 255, 0.09);
  filter: blur(16px);
  pointer-events: none;
}

.kw-page-icon-mark {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(37, 99, 255, 0.2);
  border-radius: 0.85rem;
  color: var(--kw-blue);
  background: rgba(37, 99, 255, 0.1);
  font-weight: 900;
}

.kw-page-icon-card > :not(.kw-page-icon-mark) {
  position: relative;
  z-index: 1;
}

.kw-page-kicker {
  margin: 0;
  color: var(--kw-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kw-page-hero--fallback {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 16% 16%, rgba(255, 90, 54, 0.13), transparent 27rem),
    radial-gradient(ellipse at 86% 18%, rgba(37, 99, 255, 0.15), transparent 29rem),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.kw-page-hero--fallback::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 255, 0.24), rgba(255, 90, 54, 0.18), transparent);
  pointer-events: none;
}

.kw-page--leistungen .kw-page-hero-inner {
  position: relative;
  z-index: 1;
}

.kw-page--leistungen .kw-page-hero-media {
  width: min(100%, 31.5rem);
}

.kw-page--leistungen .kw-page-visual--leistungen {
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-color: rgba(31, 68, 118, 0.1);
  border-radius: clamp(1.25rem, 2.4vw, 2rem);
  background:
    radial-gradient(circle at 12% 82%, rgba(255, 90, 54, 0.12), transparent 14rem),
    radial-gradient(circle at 88% 12%, rgba(37, 99, 255, 0.13), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92));
  box-shadow: 0 22px 58px rgba(18, 45, 88, 0.13);
}

.kw-page--leistungen .kw-page-visual--leistungen .kw-soft-image {
  min-height: 0;
}

.kw-page-hero h1 {
  width: min(100%, 62rem);
  margin: 0;
  color: var(--kw-navy);
  font-size: clamp(2.25rem, 4.6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.kw-page-lead {
  width: min(100%, 52rem);
  margin: 0;
  color: rgba(34, 58, 92, 0.88);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
}

.kw-page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.kw-trust-row {
  padding: clamp(1rem, 2.4vw, 1.5rem) 0 0;
  background: #ffffff;
}

.kw-trust-row-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 68, 118, 0.1);
  border-radius: var(--kw-radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--kw-shadow-card);
}

.kw-trust-row-grid span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 4.65rem;
  padding: 1rem 1.15rem;
  color: var(--kw-navy);
  font-weight: 850;
}

.kw-trust-row-grid span::before {
  content: "\2713";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid rgba(37, 99, 255, 0.24);
  border-radius: 0.55rem;
  color: var(--kw-blue);
  background: rgba(37, 99, 255, 0.1);
}

.kw-trust-row-grid span + span {
  border-left: 1px solid rgba(31, 68, 118, 0.1);
}

.kw-page-content {
  background: #ffffff;
}

.kw-page--standard .kw-page-content .container {
  width: min(100% - 2rem, 58rem);
}

.kw-page-card,
.kw-service-card,
.kw-page-note-card,
.kw-page-cta-card {
  border: 1px solid rgba(31, 68, 118, 0.11);
  border-radius: var(--kw-radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--kw-shadow-card);
}

.kw-page-card {
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.kw-page-card h2,
.kw-page-card h3,
.kw-service-card h3,
.kw-page-note-card h2,
.kw-page-cta-card h2 {
  color: var(--kw-navy);
}

.kw-page-card p,
.kw-service-card p,
.kw-page-note-card p,
.kw-page-cta-card p {
  color: rgba(54, 76, 109, 0.9);
}

.kw-service-overview {
  background: #ffffff;
}

.kw-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: clamp(1.5rem, 3vw, 2.3rem);
}

.kw-service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.95rem;
  min-height: 100%;
  padding: clamp(1.15rem, 2vw, 1.55rem);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.kw-service-card .kw-page-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(9.5rem, 18vw, 13rem);
  margin: 0 0 0.1rem;
  border-radius: 1.15rem;
  box-shadow: 0 16px 36px rgba(18, 45, 88, 0.1);
}

.kw-service-card .kw-page-visual .kw-soft-image {
  aspect-ratio: 16 / 9;
  min-height: inherit;
}

.kw-service-card .kw-page-image-glow {
  inset: auto -18% -26% 12%;
  height: 52%;
  filter: blur(26px);
}

.kw-service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: rgba(37, 99, 255, 0.11);
  filter: blur(18px);
  transform: translate(-28%, -28%);
  pointer-events: none;
}

.kw-service-card--private::before,
.kw-service-card--event::before {
  background: rgba(255, 90, 54, 0.13);
}

.kw-service-card--business::before,
.kw-service-card--portal::before {
  background: rgba(37, 99, 255, 0.13);
}

.kw-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 255, 0.2);
  box-shadow: var(--kw-shadow-soft);
}

.kw-service-card h3,
.kw-service-card p,
.kw-service-card a {
  position: relative;
  z-index: 1;
}

.kw-service-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.18;
}

.kw-service-card p {
  margin: 0;
  line-height: 1.58;
}

.kw-service-boundary {
  align-self: start;
  padding: 0.85rem;
  border: 1px solid rgba(31, 68, 118, 0.1);
  border-radius: 1rem;
  background: rgba(247, 251, 255, 0.92);
  font-size: 0.95rem;
}

.kw-page-note,
.kw-page-cta {
  background: #ffffff;
}

.kw-page-note-card {
  padding: clamp(1.35rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 90, 54, 0.1), transparent 18rem),
    rgba(255, 255, 255, 0.96);
}

.kw-page-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.35rem, 3vw, 2.25rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 255, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.96);
}

.kw-page-cta-card .btn {
  justify-self: end;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .kw-page-hero-split {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.74fr);
    text-align: left;
  }

  .kw-page-hero-copy {
    justify-items: start;
    text-align: left;
  }

  .kw-page-hero-copy .kw-page-actions {
    justify-content: flex-start;
  }

  .kw-page-hero-media {
    justify-self: end;
  }
}

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

  .kw-service-grid > .kw-service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .kw-page-hero {
    padding: clamp(3rem, 12vw, 4rem) 0 clamp(2rem, 8vw, 2.8rem);
  }

  .kw-page-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .kw-page-hero-media {
    width: 100%;
  }

  .kw-page-visual {
    min-height: clamp(13rem, 62vw, 20rem);
    border-radius: 1.35rem;
  }

  .kw-page-actions,
  .kw-page-actions .btn,
  .kw-page-cta-card .btn {
    width: 100%;
  }

  .kw-page-actions .btn,
  .kw-page-cta-card .btn {
    justify-self: stretch;
    text-align: center;
  }

  .kw-trust-row-grid,
  .kw-service-grid,
  .kw-page-cta-card {
    grid-template-columns: 1fr;
  }

  .kw-trust-row-grid span + span {
    border-left: 0;
    border-top: 1px solid rgba(31, 68, 118, 0.1);
  }

  .kw-service-grid > .kw-service-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

/* Freigestellte Unterseiten-Visuals */
.kw-page-visual--cutout {
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.kw-page-visual--cutout::after {
  display: none;
}

.kw-page-visual--cutout .kw-page-image-glow {
  display: none;
}

.kw-page-visual--cutout .kw-soft-image {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 24px 42px rgba(18, 45, 88, 0.11));
}

.kw-page-hero-media .kw-page-visual--cutout .kw-soft-image {
  max-height: min(54vh, 34rem);
}

.kw-service-card .kw-page-visual--cutout {
  min-height: 0;
  margin: -0.45rem -0.35rem 0.1rem;
  box-shadow: none;
}

.kw-service-card .kw-page-visual--cutout .kw-soft-image {
  aspect-ratio: 16 / 9;
  max-height: 14rem;
}

@media (min-width: 900px) {
  .kw-page-hero-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.95fr);
  }

  .kw-page-hero-media {
    width: min(100%, 44rem);
  }

  .kw-page--leistungen .kw-page-hero-media {
    width: min(100%, 48rem);
  }
}

@media (max-width: 720px) {
  .kw-page-visual--cutout {
    min-height: 0;
  }

  .kw-page-hero-media .kw-page-visual--cutout .kw-soft-image {
    max-height: none;
  }

  .kw-service-card .kw-page-visual--cutout {
    margin: -0.2rem -0.15rem 0.1rem;
  }
}

/* Leistungen: freigestellte Visuals ohne Panel-Optik */
.kw-page--leistungen .kw-page-hero {
  overflow: hidden;
}

.kw-page--leistungen .kw-page-hero-split {
  gap: clamp(1.75rem, 5vw, 5rem);
}

.kw-page--leistungen .kw-page-hero-media {
  width: min(100%, 43rem);
}

.kw-page--leistungen .kw-leistungen-hero-cutout {
  width: min(112%, 50rem);
  margin: clamp(0.5rem, 2vw, 1rem) auto 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.kw-page--leistungen .kw-leistungen-hero-cutout .kw-soft-image {
  width: min(112%, 50rem);
  max-width: none;
  filter: drop-shadow(0 30px 42px rgba(18, 45, 88, 0.13));
}

.kw-page--leistungen .kw-service-card {
  grid-template-rows: auto auto 1fr auto auto;
}

.kw-page--leistungen .kw-service-card .kw-page-visual--cutout {
  width: min(108%, 23rem);
  margin: -0.65rem auto 0.1rem;
}

.kw-page--leistungen .kw-service-card .kw-page-visual--cutout .kw-soft-image {
  max-height: clamp(8.5rem, 13vw, 12.5rem);
  filter: drop-shadow(0 16px 26px rgba(18, 45, 88, 0.1));
}

@media (min-width: 900px) {
  .kw-page--leistungen .kw-page-hero-split {
    grid-template-columns: minmax(0, 0.86fr) minmax(24rem, 1.14fr);
  }

  .kw-page--leistungen .kw-page-hero-media {
    width: min(54vw, 54rem);
    justify-self: end;
  }

  .kw-page--leistungen .kw-leistungen-hero-cutout {
    transform: translateX(clamp(0.5rem, 2vw, 1.7rem));
  }
}

@media (max-width: 720px) {
  .kw-page--leistungen .kw-leistungen-hero-cutout,
  .kw-page--leistungen .kw-leistungen-hero-cutout .kw-soft-image {
    width: 100%;
  }

  .kw-page--leistungen .kw-service-card .kw-page-visual--cutout {
    width: 100%;
    margin-top: -0.2rem;
  }
}

/* Privatkunden & Senioren: warme freigestellte Visuals */
.kw-page--privatkunden .kw-page-hero {
  overflow: hidden;
}

.kw-page--privatkunden .kw-page-hero-split {
  gap: clamp(1.75rem, 5vw, 4.75rem);
}

.kw-page--privatkunden .kw-page-hero-media {
  width: min(100%, 44rem);
}

.kw-page--privatkunden .kw-senioren-hero-cutout {
  width: min(116%, 52rem);
  margin: clamp(0.5rem, 2vw, 1rem) auto 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.kw-page--privatkunden .kw-senioren-hero-cutout .kw-soft-image {
  width: min(116%, 52rem);
  max-width: none;
  filter: drop-shadow(0 30px 42px rgba(110, 45, 34, 0.12));
}

.kw-page--privatkunden .kw-service-card {
  grid-template-rows: auto auto 1fr auto;
}

.kw-page--privatkunden .kw-senioren-service-visual {
  width: min(104%, 21rem);
  margin: -0.55rem auto 0.05rem;
}

.kw-page--privatkunden .kw-senioren-service-visual .kw-soft-image {
  max-height: clamp(6.5rem, 10vw, 8.75rem);
  filter: drop-shadow(0 16px 26px rgba(110, 45, 34, 0.1));
}

.kw-page--privatkunden .kw-service-card:first-child .kw-senioren-service-visual {
  width: min(116%, 24rem);
  margin-top: -0.9rem;
  margin-bottom: -0.15rem;
}

.kw-page--privatkunden .kw-service-card:first-child .kw-senioren-service-visual .kw-soft-image {
  max-height: clamp(7.75rem, 12vw, 10.25rem);
}

@media (min-width: 900px) {
  .kw-page--privatkunden .kw-page-hero-split {
    grid-template-columns: minmax(0, 0.88fr) minmax(24rem, 1.12fr);
  }

  .kw-page--privatkunden .kw-page-hero-media {
    width: min(55vw, 55rem);
    justify-self: end;
  }

  .kw-page--privatkunden .kw-senioren-hero-cutout {
    transform: translateX(clamp(0.35rem, 1.8vw, 1.5rem));
  }
}

@media (max-width: 720px) {
  .kw-page--privatkunden .kw-senioren-hero-cutout,
  .kw-page--privatkunden .kw-senioren-hero-cutout .kw-soft-image {
    width: 100%;
  }

  .kw-page--privatkunden .kw-senioren-service-visual {
    width: 100%;
    margin-top: -0.2rem;
  }

  .kw-page--privatkunden .kw-service-card:first-child .kw-senioren-service-visual {
    width: 108%;
    margin-left: -4%;
    margin-top: -0.35rem;
  }
}

/* Unternehmen & KMU: klare Business-Visuals ohne Bildboxen */
.kw-page--unternehmen .kw-page-hero {
  overflow: hidden;
}

.kw-page--unternehmen .kw-page-hero-split {
  gap: clamp(1.75rem, 5vw, 4.75rem);
}

.kw-page--unternehmen .kw-page-hero-media {
  width: min(100%, 42rem);
}

.kw-page--unternehmen .kw-business-hero-cutout {
  width: min(114%, 50rem);
  margin: clamp(0.5rem, 2vw, 1rem) auto 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.kw-page--unternehmen .kw-business-hero-cutout .kw-soft-image {
  width: min(114%, 50rem);
  max-width: none;
  filter: drop-shadow(0 30px 42px rgba(18, 45, 88, 0.13));
}

.kw-page--unternehmen .kw-service-card {
  grid-template-rows: auto auto 1fr auto;
}

.kw-page--unternehmen .kw-business-service-visual {
  width: min(104%, 21.5rem);
  margin: -0.55rem auto 0.05rem;
}

.kw-page--unternehmen .kw-business-service-visual .kw-soft-image {
  max-height: clamp(6.75rem, 10vw, 9rem);
  filter: drop-shadow(0 16px 26px rgba(18, 45, 88, 0.1));
}

.kw-page--unternehmen .kw-business-note-visual {
  width: min(100%, 28rem);
  margin: -0.35rem auto clamp(0.65rem, 2vw, 1rem);
}

.kw-page--unternehmen .kw-business-note-visual .kw-soft-image {
  max-height: clamp(7rem, 14vw, 11rem);
  filter: drop-shadow(0 18px 30px rgba(18, 45, 88, 0.1));
}

@media (min-width: 900px) {
  .kw-page--unternehmen .kw-page-hero-split {
    grid-template-columns: minmax(0, 0.88fr) minmax(24rem, 1.12fr);
  }

  .kw-page--unternehmen .kw-page-hero-media {
    width: min(53vw, 53rem);
    justify-self: end;
  }

  .kw-page--unternehmen .kw-business-hero-cutout {
    transform: translateX(clamp(0.35rem, 1.8vw, 1.5rem));
  }
}

@media (max-width: 720px) {
  .kw-page--unternehmen .kw-business-hero-cutout,
  .kw-page--unternehmen .kw-business-hero-cutout .kw-soft-image,
  .kw-page--unternehmen .kw-business-service-visual {
    width: 100%;
  }

  .kw-page--unternehmen .kw-business-service-visual {
    margin-top: -0.2rem;
  }

  .kw-page--unternehmen .kw-business-note-visual {
    width: 100%;
    margin-top: -0.2rem;
  }
}

/* Ueber uns: persoenliche Visuals ruhig und freigestellt */
.kw-page--ueber .kw-page-hero {
  overflow: hidden;
}

.kw-page--ueber .kw-page-hero-split {
  gap: clamp(1.75rem, 5vw, 4.5rem);
}

.kw-page--ueber .kw-page-hero-media {
  width: min(100%, 41rem);
}

.kw-page--ueber .kw-about-hero-cutout {
  width: min(112%, 48rem);
  margin: clamp(0.5rem, 2vw, 1rem) auto 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.kw-page--ueber .kw-about-hero-cutout .kw-soft-image {
  width: min(112%, 48rem);
  max-width: none;
  filter: drop-shadow(0 30px 42px rgba(18, 45, 88, 0.11));
}

.kw-page--ueber .kw-about-note-visual {
  width: min(100%, 27rem);
  margin: -0.35rem auto clamp(0.65rem, 2vw, 1rem);
}

.kw-page--ueber .kw-about-note-visual .kw-soft-image {
  max-height: clamp(7rem, 14vw, 10.5rem);
  filter: drop-shadow(0 18px 30px rgba(18, 45, 88, 0.09));
}

@media (min-width: 900px) {
  .kw-page--ueber .kw-page-hero-split {
    grid-template-columns: minmax(0, 0.9fr) minmax(23rem, 1.1fr);
  }

  .kw-page--ueber .kw-page-hero-media {
    width: min(52vw, 51rem);
    justify-self: end;
  }

  .kw-page--ueber .kw-about-hero-cutout {
    transform: translateX(clamp(0.25rem, 1.5vw, 1.25rem));
  }
}

@media (max-width: 720px) {
  .kw-page--ueber .kw-about-hero-cutout,
  .kw-page--ueber .kw-about-hero-cutout .kw-soft-image,
  .kw-page--ueber .kw-about-note-visual {
    width: 100%;
  }

  .kw-page--ueber .kw-about-note-visual {
    margin-top: -0.2rem;
  }
}

/* Startseite: kontrollierter Conversion-Ausbau unterhalb des bestehenden Heroes */
.kw-home-offers,
.kw-home-targets,
.kw-home-services,
.kw-home-flow,
.kw-home-trust,
.kw-home-testimonials,
.kw-home-faq,
.kw-home-final-cta {
  position: relative;
  overflow: hidden;
}

.kw-home-offers {
  padding-top: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(23, 105, 255, 0.1), transparent 20rem),
    radial-gradient(circle at 88% 4%, rgba(239, 68, 68, 0.08), transparent 20rem);
}

.kw-home-offer-grid,
.kw-home-target-grid,
.kw-home-flow-grid,
.kw-home-trust-grid,
.kw-home-testimonial-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.kw-home-offer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kw-home-offer-card,
.kw-home-target-card,
.kw-home-service-card,
.kw-home-flow-card,
.kw-home-testimonial-card,
.kw-home-faq-item {
  color: var(--kw-navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--kw-line);
  border-radius: var(--kw-radius-xl);
  box-shadow: var(--kw-shadow-card);
}

.kw-home-offer-card,
.kw-home-target-card,
.kw-home-service-card,
.kw-home-flow-card,
.kw-home-testimonial-card {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  min-height: 100%;
  padding: clamp(1rem, 2vw, 1.3rem);
}

.kw-home-offer-card--blue,
.kw-home-target-card--private {
  border-color: rgba(23, 105, 255, 0.16);
}

.kw-home-offer-card--warm {
  border-color: rgba(239, 68, 68, 0.18);
}

.kw-home-offer-card--business,
.kw-home-target-card--business {
  border-color: rgba(31, 68, 118, 0.16);
}

.kw-home-offer-card--neutral,
.kw-home-target-card--portal {
  border-color: rgba(23, 105, 255, 0.12);
}

.kw-home-offer-label {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  color: var(--kw-blue);
  background: rgba(23, 105, 255, 0.09);
  font-size: 0.82rem;
  font-weight: 900;
}

.kw-home-offer-card--warm .kw-home-offer-label,
.kw-home-offer-card--business .kw-home-offer-label {
  color: var(--kw-red);
  background: rgba(239, 68, 68, 0.09);
}

.kw-home-offer-card h3,
.kw-home-target-card h3,
.kw-home-service-card h3,
.kw-home-flow-card h3,
.kw-home-testimonial-card h3 {
  margin: 0;
  color: var(--kw-navy);
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
}

.kw-home-offer-card p,
.kw-home-target-card p,
.kw-home-service-card p,
.kw-home-flow-card p,
.kw-home-testimonial-card p,
.kw-home-faq-item p,
.kw-home-final-cta-card p {
  margin: 0;
  color: var(--kw-muted);
}

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

.kw-home-target-card {
  grid-template-rows: auto auto 1fr auto;
  padding-top: 0.65rem;
}

.kw-home-target-visual {
  width: min(108%, 26rem);
  margin: -0.4rem auto 0.1rem;
}

.kw-home-target-visual .kw-soft-image {
  max-height: clamp(8rem, 14vw, 12rem);
  filter: drop-shadow(0 18px 30px rgba(18, 45, 88, 0.1));
}

.kw-home-services {
  background:
    radial-gradient(circle at 8% 18%, rgba(23, 105, 255, 0.08), transparent 18rem),
    radial-gradient(circle at 92% 8%, rgba(239, 68, 68, 0.07), transparent 18rem);
}

.kw-home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.95rem, 1.8vw, 1.25rem);
}

.kw-home-service-card {
  grid-template-rows: auto auto 1fr;
  padding-top: 0.7rem;
}

.kw-home-service-visual {
  width: min(105%, 18.5rem);
  margin: -0.45rem auto 0.05rem;
}

.kw-home-service-visual .kw-soft-image {
  max-height: clamp(6.5rem, 10vw, 8.5rem);
  filter: drop-shadow(0 15px 24px rgba(18, 45, 88, 0.09));
}

.kw-home-section-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.35rem, 3vw, 2.2rem);
}

.kw-home-flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kw-home-flow-card {
  align-content: start;
}

.kw-home-flow-number {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--kw-blue), var(--kw-red));
  font-weight: 900;
}

.kw-home-trust-card {
  padding: clamp(1.35rem, 3vw, 2.25rem);
  border: 1px solid rgba(31, 68, 118, 0.1);
  border-radius: var(--kw-radius-xl);
  background:
    radial-gradient(circle at 12% 20%, rgba(23, 105, 255, 0.1), transparent 18rem),
    radial-gradient(circle at 88% 14%, rgba(239, 68, 68, 0.08), transparent 18rem),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--kw-shadow-card);
}

.kw-home-trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kw-home-trust-point {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  padding: 0.8rem 0.9rem;
  border-radius: var(--kw-radius-lg);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(31, 68, 118, 0.08);
}

.kw-home-trust-point span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.55rem;
  color: var(--kw-blue);
  background: rgba(23, 105, 255, 0.1);
  font-weight: 900;
}

.kw-home-trust-point strong {
  color: var(--kw-navy);
  font-size: 0.95rem;
  line-height: 1.25;
}

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

.kw-home-testimonial-card {
  position: relative;
}

.kw-home-testimonial-card::before {
  content: "";
  width: 2.25rem;
  height: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--kw-blue), var(--kw-red));
}

.kw-home-faq-list {
  display: grid;
  gap: 0.85rem;
  width: min(100%, 58rem);
  margin-inline: auto;
}

.kw-home-faq-item {
  padding: 0;
  overflow: hidden;
}

.kw-home-faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  color: var(--kw-navy);
  font-weight: 850;
  list-style: none;
}

.kw-home-faq-item summary::-webkit-details-marker {
  display: none;
}

.kw-home-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--kw-blue);
  font-weight: 900;
}

.kw-home-faq-item[open] summary::after {
  content: "\2013";
}

.kw-home-faq-item p {
  padding: 0 1.15rem 1rem;
}

/* Leistungsdetailseiten: SEO-tauglich, lesbar und conversion-orientiert */
.kw-service-detail {
  background:
    radial-gradient(ellipse at 10% 8%, rgba(37, 99, 255, 0.08), transparent 30rem),
    radial-gradient(ellipse at 92% 12%, rgba(255, 90, 54, 0.08), transparent 30rem),
    #ffffff;
}

.kw-service-detail-hero {
  overflow: hidden;
}

.kw-service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: rgba(54, 76, 109, 0.78);
  font-size: 0.95rem;
  font-weight: 800;
}

.kw-service-breadcrumb a {
  color: var(--kw-blue);
  text-decoration: none;
}

.kw-service-breadcrumb a:hover {
  text-decoration: underline;
}

.kw-service-detail-visual {
  width: min(116%, 52rem);
  margin: clamp(0.5rem, 2vw, 1rem) auto 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.kw-service-detail-visual .kw-soft-image {
  width: min(116%, 52rem);
  max-width: none;
  max-height: min(54vh, 34rem);
  filter: drop-shadow(0 30px 42px rgba(18, 45, 88, 0.11));
}

.kw-service-detail-main {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.kw-service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.34fr);
  gap: clamp(1.4rem, 3.5vw, 2.5rem);
  align-items: start;
}

.kw-service-detail-content {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.4rem);
}

.kw-service-detail-card,
.kw-service-detail-side-card {
  border: 1px solid rgba(31, 68, 118, 0.11);
  border-radius: var(--kw-radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 90, 54, 0.08), transparent 18rem),
    radial-gradient(circle at 100% 0%, rgba(37, 99, 255, 0.08), transparent 18rem),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(18, 45, 88, 0.08);
}

.kw-service-detail-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.kw-service-detail-card h2,
.kw-service-detail-side-card h2 {
  margin: 0 0 0.85rem;
  color: var(--kw-navy);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.16;
}

.kw-service-detail-card p,
.kw-service-detail-side-card p,
.kw-service-detail-card li,
.kw-service-detail-side-card li {
  color: rgba(54, 76, 109, 0.94);
  font-size: clamp(1.03rem, 1.2vw, 1.14rem);
  line-height: 1.68;
}

.kw-service-detail-intro p {
  width: min(100%, 66ch);
  margin: 0;
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
}

.kw-service-detail-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.3rem);
}

.kw-check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.kw-check-list li {
  position: relative;
  padding-left: 2rem;
}

.kw-check-list li::before {
  content: "\2713";
  position: absolute;
  top: 0.15rem;
  left: 0;
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 0.45rem;
  color: var(--kw-blue);
  background: rgba(37, 99, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 900;
}

.kw-check-list--blue li::before {
  color: #f5533d;
  background: rgba(255, 90, 54, 0.12);
}

.kw-service-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.kw-service-steps li {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(31, 68, 118, 0.1);
  border-radius: var(--kw-radius-lg);
  background: rgba(255, 255, 255, 0.78);
}

.kw-service-steps span {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border-radius: 0.8rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--kw-blue), #f5533d);
  font-weight: 900;
}

.kw-service-steps p {
  margin: 0;
}

.kw-service-detail-sidebar {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 1rem;
}

.kw-service-detail-side-card {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.1rem, 2.3vw, 1.5rem);
}

.kw-service-detail-side-card .btn {
  min-height: 3.2rem;
  justify-self: stretch;
}

.kw-service-detail-boundaries ul,
.kw-related-links {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.kw-service-detail-boundaries li {
  padding: 0.78rem 0.85rem;
  border: 1px solid rgba(31, 68, 118, 0.1);
  border-radius: var(--kw-radius-md);
  background: rgba(248, 251, 255, 0.82);
}

.kw-related-links a {
  display: block;
  min-height: 3rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(31, 68, 118, 0.1);
  border-radius: var(--kw-radius-md);
  color: var(--kw-navy);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  text-decoration: none;
}

.kw-related-links a:hover {
  color: var(--kw-blue);
  border-color: rgba(37, 99, 255, 0.25);
}

.kw-card-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-top: 0.15rem;
}

.kw-card-actions .text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.kw-home-service-card .text-link {
  position: relative;
  z-index: 1;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

@media (max-width: 1100px) {
  .kw-service-detail-layout,
  .kw-service-detail-two {
    grid-template-columns: 1fr;
  }

  .kw-service-detail-sidebar {
    position: static;
  }

  .kw-service-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .kw-service-detail-visual,
  .kw-service-detail-visual .kw-soft-image {
    width: 100%;
    max-height: none;
  }

  .kw-service-steps {
    grid-template-columns: 1fr;
  }

  .kw-service-detail-card,
  .kw-service-detail-side-card {
    border-radius: var(--kw-radius-lg);
  }

  .kw-card-actions,
  .kw-card-actions .text-link,
  .kw-home-service-card .text-link {
    width: 100%;
  }
}

.kw-home-final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.35rem, 3vw, 2.35rem);
  border: 1px solid rgba(31, 68, 118, 0.1);
  border-radius: var(--kw-radius-xl);
  background:
    radial-gradient(circle at 8% 18%, rgba(23, 105, 255, 0.13), transparent 18rem),
    radial-gradient(circle at 92% 8%, rgba(239, 68, 68, 0.1), transparent 18rem),
    #fff;
  box-shadow: var(--kw-shadow-card);
}

.kw-home-final-cta-card h2 {
  margin: 0 0 0.55rem;
  color: var(--kw-navy);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  letter-spacing: -0.045em;
}

.kw-home-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

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

@media (max-width: 820px) {
  .kw-home-target-grid,
  .kw-home-testimonial-grid,
  .kw-home-final-cta-card {
    grid-template-columns: 1fr;
  }

  .kw-home-final-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .kw-home-offer-grid,
  .kw-home-service-grid,
  .kw-home-flow-grid,
  .kw-home-trust-grid {
    grid-template-columns: 1fr;
  }

  .kw-home-target-visual,
  .kw-home-service-visual {
    width: 100%;
  }

  .kw-home-final-cta-actions,
  .kw-home-final-cta-actions .btn,
  .kw-home-section-action .btn {
    width: 100%;
  }
}

/* Kontakt: gefuehrte Anfrageformulare */
.kw-contact-forms {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 90, 54, 0.09), transparent 20rem),
    radial-gradient(circle at 86% 8%, rgba(37, 99, 255, 0.1), transparent 22rem),
    #ffffff;
}

.kw-contact-form-shell {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.kw-contact-form-shell > p:not(.kw-page-kicker),
.kw-contact-form-privacy-note {
  max-width: 58rem;
  margin: 0;
  color: rgba(54, 76, 109, 0.9);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.kw-contact-form-tabs {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.kw-contact-tab-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.kw-contact-tab {
  display: grid;
  gap: 0.32rem;
  min-height: 5.25rem;
  padding: 1rem;
  border: 1px solid rgba(31, 68, 118, 0.12);
  border-radius: 1.25rem;
  color: var(--kw-navy);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--kw-shadow-card);
  cursor: pointer;
  text-align: left;
}

.kw-contact-tab span {
  font-weight: 900;
  font-size: 1.02rem;
}

.kw-contact-tab small {
  color: rgba(54, 76, 109, 0.82);
  font-size: 0.88rem;
  line-height: 1.35;
}

.kw-contact-tab.is-active,
.kw-contact-tab:hover,
.kw-contact-tab:focus-visible {
  border-color: rgba(37, 99, 255, 0.35);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 90, 54, 0.12), transparent 9rem),
    radial-gradient(circle at 100% 12%, rgba(37, 99, 255, 0.12), transparent 10rem),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 58px rgba(18, 45, 88, 0.11);
  outline: none;
}

.kw-contact-form-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: start;
}

.kw-contact-form-panel[hidden] {
  display: none;
}

.kw-contact-form-helper {
  position: sticky;
  top: 6rem;
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border: 1px solid rgba(31, 68, 118, 0.11);
  border-radius: var(--kw-radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 90, 54, 0.1), transparent 12rem),
    radial-gradient(circle at 100% 0%, rgba(37, 99, 255, 0.1), transparent 12rem),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--kw-shadow-card);
}

.kw-contact-form-helper h3 {
  margin: 0 0 0.55rem;
  color: var(--kw-navy);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
}

.kw-contact-form-helper p {
  margin: 0;
  color: rgba(54, 76, 109, 0.9);
  line-height: 1.65;
}

.klarwerk-form-intro,
.klarwerk-form-sensitive-note {
  color: rgba(54, 76, 109, 0.88);
  line-height: 1.58;
}

.klarwerk-form-sensitive-note {
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(239, 68, 68, 0.16);
  border-radius: 0.9rem;
  background: rgba(255, 90, 54, 0.07);
  font-weight: 750;
}

.klarwerk-form input[type="text"],
.klarwerk-form input[type="email"],
.klarwerk-form textarea,
.klarwerk-form select {
  min-height: 3.15rem;
  font-size: 1rem;
}

.klarwerk-form select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #f8fbff;
  color: var(--color-text);
  font: inherit;
  padding: 0.82rem 0.95rem;
}

.klarwerk-form input[type="text"]:focus,
.klarwerk-form input[type="email"]:focus,
.klarwerk-form textarea:focus,
.klarwerk-form select:focus {
  border-color: var(--color-blue-500);
  box-shadow: 0 0 0 3px rgba(51, 121, 221, 0.16);
  outline: none;
}

/* Unternehmen: technische Blueprint-Skizzen */
.kw-business-blueprints {
  background:
    radial-gradient(circle at 10% 8%, rgba(37, 99, 255, 0.1), transparent 22rem),
    radial-gradient(circle at 92% 0%, rgba(255, 90, 54, 0.08), transparent 20rem),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.kw-business-blueprint-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: clamp(1.5rem, 3vw, 2.3rem);
}

.kw-business-blueprint-card,
.kw-business-event-map {
  border: 1px solid rgba(31, 68, 118, 0.11);
  border-radius: var(--kw-radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--kw-shadow-card);
}

.kw-business-blueprint-card {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 2vw, 1.3rem);
}

.kw-business-blueprint-visual,
.kw-business-event-map-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 255, 0.14);
  border-radius: 1.2rem;
  background:
    linear-gradient(rgba(37, 99, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 8% 92%, rgba(255, 90, 54, 0.12), transparent 10rem),
    radial-gradient(circle at 90% 12%, rgba(37, 99, 255, 0.12), transparent 10rem),
    rgba(255, 255, 255, 0.96);
  background-size: 26px 26px, 26px 26px, auto, auto, auto;
}

.kw-business-blueprint-svg,
.kw-business-event-svg {
  display: block;
  width: 100%;
  height: auto;
}

.kw-bp-area {
  fill: rgba(37, 99, 255, 0.055);
  stroke: rgba(37, 99, 255, 0.24);
  stroke-width: 2;
}

.kw-bp-area--warm {
  fill: rgba(255, 90, 54, 0.055);
  stroke: rgba(255, 90, 54, 0.24);
}

.kw-bp-node {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(37, 99, 255, 0.34);
  stroke-width: 2;
  filter: drop-shadow(0 10px 18px rgba(18, 45, 88, 0.08));
}

.kw-bp-node--external {
  stroke: rgba(255, 90, 54, 0.42);
}

.kw-bp-line,
.kw-bp-dot {
  fill: none;
  stroke: rgba(37, 99, 255, 0.72);
  stroke-width: 4;
  stroke-linecap: round;
}

.kw-bp-line--warm,
.kw-bp-dot--warm {
  stroke: rgba(255, 90, 54, 0.72);
}

.kw-bp-line--dashed {
  stroke-dasharray: 9 9;
}

.kw-bp-label {
  fill: rgba(37, 99, 255, 0.9);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.kw-bp-text {
  fill: var(--kw-navy);
  font-size: 19px;
  font-weight: 900;
}

.kw-business-blueprint-card h3,
.kw-business-event-map h3 {
  margin: 0;
  color: var(--kw-navy);
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
}

.kw-business-blueprint-card p,
.kw-business-event-map p,
.kw-business-event-map li {
  margin: 0;
  color: rgba(54, 76, 109, 0.9);
  line-height: 1.58;
}

.kw-business-event-map {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  margin-top: clamp(1rem, 2vw, 1.4rem);
  padding: clamp(1rem, 2vw, 1.35rem);
}

.kw-business-event-map-copy {
  display: grid;
  gap: 0.85rem;
}

.kw-business-event-map-copy ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kw-business-event-map-copy li {
  position: relative;
  padding-left: 1.35rem;
}

.kw-business-event-map-copy li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--kw-red), var(--kw-blue));
}

.kw-business-event-map-visual {
  display: grid;
  gap: 0.75rem;
  padding: 0.8rem;
}

.kw-business-event-image {
  width: min(100%, 24rem);
  min-height: 8rem;
  margin: 0 auto -1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.kw-business-event-image .kw-soft-image {
  min-height: 8rem;
}

.kw-business-event-svg {
  margin-top: -0.25rem;
}

/* Cookie-Hinweis */
.kw-cookie-notice {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 1200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: min(calc(100% - 2rem), 48rem);
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(31, 68, 118, 0.14);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 90, 54, 0.12), transparent 12rem),
    radial-gradient(circle at 100% 0%, rgba(37, 99, 255, 0.14), transparent 12rem),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(18, 45, 88, 0.18);
}

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

.kw-cookie-notice__content {
  display: grid;
  gap: 0.35rem;
}

.kw-cookie-notice__eyebrow {
  margin: 0;
  color: var(--kw-blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kw-cookie-notice h2 {
  margin: 0;
  color: var(--kw-navy);
  font-size: 1.08rem;
}

.kw-cookie-notice p {
  margin: 0;
  color: rgba(54, 76, 109, 0.9);
  line-height: 1.55;
}

.kw-cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

@media (max-width: 920px) {
  .kw-contact-tab-list,
  .kw-contact-form-panel,
  .kw-business-blueprint-grid,
  .kw-business-event-map,
  .kw-cookie-notice {
    grid-template-columns: 1fr;
  }

  .kw-contact-form-helper {
    position: static;
  }

  .kw-cookie-notice__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .kw-contact-tab,
  .klarwerk-form input[type="text"],
  .klarwerk-form input[type="email"],
  .klarwerk-form textarea,
  .klarwerk-form select,
  .klarwerk-form button[type="submit"],
  .kw-cookie-notice .btn {
    width: 100%;
  }

  .kw-cookie-notice {
    right: 1rem;
    bottom: 1rem;
  }
}


/* Klarwerk final offer additions: additive sections below the protected live-style hero. */
.kw-offer-finder,
.kw-home-packages,
.kw-quick-inquiry-section,
.kw-feature-section,
.kw-digital-addons,
.kw-subscription-teaser {
  position: relative;
  overflow: hidden;
}

.kw-home-offer-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kw-compact-offer-card {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 0.72rem;
}

.kw-compact-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-grid;
  place-items: center;
  border-radius: 1rem;
  font-weight: 900;
  color: var(--kw-blue);
  background: rgba(23, 105, 255, 0.1);
}

.kw-guide-section {
  padding: clamp(1.1rem, 3vw, 1.65rem) 0 0;
  background: linear-gradient(180deg, #ffffff, rgba(248, 251, 255, 0.7));
}

.kw-mobile-guide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
  margin-top: clamp(1rem, 2.4vw, 1.4rem);
}

.kw-mobile-guide-item {
  min-width: 0;
  border: 1px solid rgba(145, 168, 204, 0.2);
  border-radius: 1.1rem;
  padding: 0.78rem 0.92rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(23, 105, 255, 0.09), transparent 8rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(11, 31, 58, 0.06);
}

.kw-mobile-guide-item strong,
.kw-mobile-guide-item small {
  display: block;
}

.kw-mobile-guide-item strong {
  color: var(--kw-navy);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.kw-mobile-guide-item small {
  margin-top: 0.25rem;
  color: var(--kw-navy-soft);
  line-height: 1.35;
}

.kw-card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.68rem;
  min-width: 0;
}

.kw-card-title-row h3 {
  margin: 0;
  min-width: 0;
}

.kw-card-mark {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.85rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.75), transparent 55%),
    linear-gradient(135deg, rgba(23, 105, 255, 0.16), rgba(245, 101, 71, 0.13));
  color: var(--kw-blue-dark);
  font-size: 0.92rem;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(23, 105, 255, 0.08);
}

.kw-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.kw-quick-inquiry-section {
  padding-block: clamp(2.15rem, 5vw, 3.6rem);
  background:
    radial-gradient(circle at 14% 12%, rgba(23, 105, 255, 0.08), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.82));
}

.kw-quick-inquiry-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1.08fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  border: 1px solid rgba(145, 168, 204, 0.2);
  border-radius: clamp(1.45rem, 3vw, 2.1rem);
  background:
    radial-gradient(circle at 92% 8%, rgba(245, 101, 71, 0.1), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.88));
  box-shadow: 0 22px 64px rgba(11, 31, 58, 0.08);
  padding: clamp(1.1rem, 3vw, 2rem);
}

.kw-quick-inquiry-copy h2 {
  margin-bottom: 0.55rem;
}

.kw-quick-inquiry-copy p {
  color: var(--kw-navy-soft);
}

.kw-quick-inquiry-note {
  margin-top: 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.78rem 0.9rem;
  font-size: 0.94rem;
  line-height: 1.5;
}

.kw-quick-inquiry-preview {
  min-width: 0;
  border: 1px solid rgba(23, 105, 255, 0.1);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(0.9rem, 2vw, 1.2rem);
  box-shadow: 0 16px 42px rgba(11, 31, 58, 0.06);
}

.kw-quick-inquiry-fields,
.kw-quick-category-grid {
  display: grid;
  gap: 0.58rem;
}

.kw-quick-inquiry-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kw-quick-inquiry-fields span {
  min-width: 0;
  border: 1px solid rgba(145, 168, 204, 0.22);
  border-radius: 0.92rem;
  background: #ffffff;
  color: rgba(11, 31, 58, 0.58);
  font-weight: 780;
  padding: 0.68rem 0.82rem;
}

.kw-quick-inquiry-fields span:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 4.25rem;
}

.kw-quick-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.78rem;
}

.kw-quick-category-grid span {
  min-width: 0;
  border-radius: 999px;
  background: rgba(23, 105, 255, 0.08);
  color: var(--kw-blue-dark);
  font-size: 0.88rem;
  font-weight: 860;
  line-height: 1.25;
  padding: 0.52rem 0.68rem;
  text-align: center;
}

.kw-quick-inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
}

.kw-package-grid--featured {
  align-items: stretch;
  gap: clamp(0.85rem, 1.8vw, 1.2rem);
}

.kw-section-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin: clamp(1rem, 2.2vw, 1.45rem) 0 clamp(1rem, 2.2vw, 1.35rem);
  padding: 0.72rem;
  border: 1px solid rgba(145, 168, 204, 0.18);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 10% 20%, rgba(23, 105, 255, 0.08), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.86));
  box-shadow: 0 14px 42px rgba(11, 31, 58, 0.055);
}

.kw-section-visual span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  border-radius: 999px;
  padding: 0.5rem 0.78rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--kw-navy-soft);
  font-size: 0.92rem;
  font-weight: 760;
}

.kw-section-visual strong {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(23, 105, 255, 0.1);
  color: var(--kw-blue-dark);
  font-size: 0.8rem;
}

.kw-visual-break {
  padding-block: clamp(1.2rem, 3vw, 2rem);
}

.kw-visual-break--compact {
  padding-block: clamp(0.6rem, 2vw, 1.2rem);
}

.kw-section-image-strip {
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.25rem);
  margin-top: clamp(1rem, 2.5vw, 1.55rem);
}

.kw-section-image-strip--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kw-section-image {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(145, 168, 204, 0.18);
  border-radius: clamp(1.2rem, 2vw, 1.75rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(23, 105, 255, 0.1), transparent 16rem),
    radial-gradient(circle at 86% 8%, rgba(245, 101, 71, 0.1), transparent 15rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(11, 31, 58, 0.08);
}

.kw-section-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(10.5rem, 20vw, 15.5rem);
  object-fit: cover;
}

.kw-section-image--wide {
  margin-bottom: clamp(1rem, 2.5vw, 1.45rem);
}

.kw-section-image--wide img {
  height: clamp(12rem, 24vw, 18rem);
}

.kw-feature-shell > .kw-section-image {
  grid-column: 2;
}

.kw-feature-shell > .kw-section-image + .kw-feature-list {
  grid-column: 2;
}

.contact-shell .kw-section-image {
  margin-top: 1rem;
}

.kw-package-card,
.kw-mini-service-card,
.kw-simple-target-card,
.kw-addon-card,
.kw-future-check-card,
.kw-subscription-list article,
.kw-fallback-contact-card {
  border: 1px solid rgba(145, 168, 204, 0.22);
  border-radius: clamp(1.3rem, 2vw, 1.85rem);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 42px rgba(11, 31, 58, 0.065);
}

.kw-package-card,
.kw-mini-service-card,
.kw-simple-target-card,
.kw-subscription-list article,
.kw-fallback-contact-card {
  padding: clamp(1.05rem, 2vw, 1.45rem);
}

.kw-package-card--rich {
  display: grid;
  align-content: start;
  gap: 0.72rem;
}

.kw-package-card h3,
.kw-mini-service-card h3,
.kw-simple-target-card h3,
.kw-subscription-list h3,
.kw-addon-card h2,
.kw-future-check-card h3 {
  margin: 0 0 0.6rem;
  color: var(--kw-navy);
}

.kw-package-card .kw-card-title-row h3,
.kw-mini-service-card .kw-card-title-row h3,
.kw-simple-target-card .kw-card-title-row h3,
.kw-subscription-list .kw-card-title-row h3,
.kw-public-info-card .kw-card-title-row h3 {
  margin: 0;
}

.kw-card-title-row + p,
.kw-card-title-row + .kw-public-price {
  margin-top: 0.62rem;
}

.kw-package-card--rich .kw-card-title-row + .kw-price-pair {
  margin-top: 0;
}

.kw-package-card p,
.kw-mini-service-card p,
.kw-simple-target-card p,
.kw-subscription-list p,
.kw-addon-card p,
.kw-future-check-card p,
.kw-feature-copy p,
.kw-feature-list p {
  color: var(--kw-navy-soft);
}

.kw-price-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.8rem;
}

.kw-price-pair span {
  width: fit-content;
  border-radius: 999px;
  padding: 0.36rem 0.64rem;
  background: rgba(23, 105, 255, 0.065);
  color: var(--kw-blue-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.kw-price-pair span:first-child {
  background: rgba(245, 101, 71, 0.08);
  color: #9d3e2a;
}

.kw-package-benefit {
  margin: 0;
  font-weight: 720;
  line-height: 1.5;
}

.kw-card-bullets {
  display: grid;
  gap: 0.34rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--kw-navy-soft);
  line-height: 1.4;
  font-size: 0.95rem;
}

.kw-card-bullets li::marker {
  color: rgba(23, 105, 255, 0.62);
}

.kw-card-details {
  margin-top: 0.1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(145, 168, 204, 0.18);
  background: rgba(248, 251, 255, 0.62);
  overflow: hidden;
}

.kw-card-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.62rem 0.78rem;
  color: var(--kw-blue-dark);
  font-size: 0.92rem;
  font-weight: 780;
  list-style: none;
}

.kw-card-details summary::-webkit-details-marker {
  display: none;
}

.kw-card-details summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.28rem;
  height: 1.28rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(23, 105, 255, 0.075);
  color: var(--kw-blue);
  font-size: 0.9rem;
  font-weight: 850;
}

.kw-card-details[open] summary::after {
  content: "-";
}

.kw-card-details ul {
  display: grid;
  gap: 0.38rem;
  margin: 0;
  padding: 0 0.85rem 0.82rem 1.55rem;
  color: var(--kw-navy-soft);
  line-height: 1.45;
  font-size: 0.92rem;
}

.kw-card-cta {
  align-self: start;
  width: fit-content;
  margin-top: 0.1rem;
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  background: rgba(23, 105, 255, 0.07);
}

.kw-offer-finder--compact .section-head {
  max-width: 48rem;
  margin-inline: auto;
}

.kw-offer-finder--compact .kw-home-offer-grid {
  gap: clamp(0.8rem, 1.8vw, 1.1rem);
}

.kw-offer-finder--compact .kw-compact-offer-card {
  gap: 0.46rem;
  box-shadow: 0 12px 34px rgba(11, 31, 58, 0.055);
}

.kw-feature-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1.2rem, 3vw, 2.25rem);
  align-items: start;
  border: 1px solid rgba(145, 168, 204, 0.22);
  border-radius: clamp(1.7rem, 3vw, 2.55rem);
  padding: clamp(1.35rem, 3vw, 2.35rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.9));
  box-shadow: 0 24px 70px rgba(11, 31, 58, 0.09);
}

.kw-feature-shell--warm {
  background: radial-gradient(circle at 15% 12%, rgba(245, 101, 71, 0.12), transparent 28rem), linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 245, 0.9));
}

.kw-feature-list,
.kw-subscription-list {
  display: grid;
  gap: 0.72rem;
}

.kw-feature-visual-list {
  display: grid;
  gap: 0.9rem;
}

.kw-network-visual {
  position: relative;
  min-height: 8.8rem;
  border: 1px solid rgba(145, 168, 204, 0.18);
  border-radius: 1.35rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 25%, rgba(23, 105, 255, 0.13), transparent 5rem),
    radial-gradient(circle at 80% 20%, rgba(245, 101, 71, 0.12), transparent 5rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.84));
}

.kw-network-node,
.kw-network-line {
  position: absolute;
  display: block;
}

.kw-network-node {
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  border: 0.42rem solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: var(--kw-blue);
  box-shadow: 0 12px 26px rgba(23, 105, 255, 0.18);
}

.kw-network-node--router {
  left: 12%;
  top: 42%;
}

.kw-network-node--mesh {
  right: 17%;
  top: 20%;
  background: #f56547;
}

.kw-network-node--device {
  right: 24%;
  bottom: 18%;
  width: 1.75rem;
  height: 1.75rem;
  background: #10b981;
}

.kw-network-line {
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(23, 105, 255, 0.12), rgba(245, 101, 71, 0.18));
  transform-origin: left center;
}

.kw-network-line--one {
  left: 22%;
  top: 52%;
  width: 48%;
  transform: rotate(-18deg);
}

.kw-network-line--two {
  left: 22%;
  bottom: 34%;
  width: 46%;
  transform: rotate(12deg);
}

.kw-feature-list p {
  margin: 0;
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(145, 168, 204, 0.15);
  padding: 0.76rem 0.9rem;
  font-weight: 720;
}

.kw-feature-note {
  margin: 1rem 0 0;
  grid-column: 1 / -1;
  border-radius: 1rem;
  background: rgba(11, 31, 58, 0.045);
  padding: 0.85rem 1rem;
  font-size: 0.94rem;
  line-height: 1.6;
}

.kw-feature-details {
  grid-column: 1 / -1;
  margin-top: 0.3rem;
}

.kw-home-service-grid--compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.kw-future-check-card,
.kw-addon-card {
  margin-top: clamp(1rem, 2.2vw, 1.6rem);
  padding: clamp(1.2rem, 2.5vw, 1.85rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.kw-addon-card {
  margin-top: 0;
  background: radial-gradient(circle at 12% 12%, rgba(23, 105, 255, 0.11), transparent 22rem), rgba(255, 255, 255, 0.94);
}

.kw-digital-addons--quiet {
  padding-block: clamp(1.7rem, 4vw, 2.5rem);
}

.kw-addon-card--quiet {
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: clamp(1.2rem, 2vw, 1.6rem);
  box-shadow: 0 14px 38px rgba(11, 31, 58, 0.06);
}

.kw-addon-card--quiet h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.kw-home-target-grid--simple {
  align-items: stretch;
}

.kw-simple-target-card {
  min-height: 0;
}

.kw-subscription-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kw-subscription-teaser .kw-subscription-list {
  grid-column: 1 / -1;
}

.kw-care-visual {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 0.55rem;
  border: 1px solid rgba(245, 101, 71, 0.13);
  border-radius: 1.35rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 14% 10%, rgba(245, 101, 71, 0.1), transparent 10rem),
    rgba(255, 255, 255, 0.72);
}

.kw-care-visual span {
  border-radius: 999px;
  padding: 0.48rem 0.68rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--kw-navy-soft);
  font-size: 0.88rem;
  font-weight: 760;
}

.kw-subscription-teaser .kw-public-price {
  margin-block: 0.55rem 0.2rem;
}

.kw-hero-fallback-mark {
  position: absolute;
  inset: auto 1.4rem 1.2rem auto;
  width: 4.8rem;
  height: 4.8rem;
  display: grid;
  place-items: center;
  border-radius: 1.65rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--kw-blue);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(11, 31, 58, 0.12);
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

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

  .kw-home-offer-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kw-mobile-guide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .kw-home-offer-grid--six,
  .kw-package-grid,
  .kw-home-service-grid--compact,
  .kw-feature-shell,
  .kw-subscription-list {
    grid-template-columns: 1fr;
  }

  .kw-future-check-card,
  .kw-addon-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .kw-home-offers,
  .kw-home-packages,
  .kw-quick-inquiry-section,
  .kw-feature-section,
  .kw-home-services,
  .kw-digital-addons,
  .kw-home-targets,
  .kw-subscription-teaser,
  .kw-home-flow,
  .kw-home-trust,
  .kw-home-final-cta {
    padding-block: clamp(2.15rem, 8vw, 3rem);
  }

  .kw-mobile-guide {
    grid-template-columns: 1fr;
    gap: 0.58rem;
    margin-top: 0.9rem;
  }

  .kw-mobile-guide-item {
    padding: 0.72rem 0.82rem;
  }

  .kw-package-card,
  .kw-quick-inquiry-card,
  .kw-quick-inquiry-preview,
  .kw-mini-service-card,
  .kw-simple-target-card,
  .kw-public-info-card,
  .kw-subscription-list article,
  .kw-fallback-contact-card {
    padding: 1rem;
  }

  .kw-package-card--rich {
    gap: 0.68rem;
  }

  .kw-section-visual {
    display: grid;
    gap: 0.48rem;
    margin-block: 0.9rem 1rem;
    padding: 0.58rem;
  }

  .kw-section-visual span {
    padding: 0.46rem 0.62rem;
    font-size: 0.86rem;
  }

  .kw-visual-break {
    padding-block: clamp(0.85rem, 4vw, 1.35rem);
  }

  .kw-section-image-strip--two {
    grid-template-columns: 1fr;
  }

  .kw-section-image {
    border-radius: 1.15rem;
  }

  .kw-section-image img,
  .kw-section-image--wide img {
    height: clamp(10.2rem, 48vw, 14rem);
  }

  .kw-section-image--wide {
    margin-bottom: 0.95rem;
  }

  .kw-feature-shell > .kw-section-image,
  .kw-feature-shell > .kw-section-image + .kw-feature-list {
    grid-column: auto;
  }

  .kw-network-visual {
    min-height: 7.4rem;
  }

  .kw-quick-inquiry-card,
  .kw-quick-inquiry-fields,
  .kw-quick-category-grid {
    grid-template-columns: 1fr;
  }

  .kw-quick-inquiry-fields span:nth-child(3) {
    min-height: 3.75rem;
  }

  .kw-quick-category-grid span {
    text-align: left;
  }

  .kw-quick-inquiry-actions,
  .kw-quick-inquiry-actions .btn {
    width: 100%;
  }

  .kw-card-mark,
  .kw-compact-icon {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.78rem;
  }

  .kw-price-pair,
  .kw-public-info-card {
    gap: 0.56rem;
  }

  .kw-price-pair span,
  .kw-public-price,
  .kw-public-status {
    max-width: 100%;
    padding: 0.48rem 0.64rem;
    line-height: 1.25;
  }

  .kw-price-pair span {
    width: fit-content;
  }

  .kw-public-price,
  .kw-public-status {
    width: 100%;
  }

  .kw-feature-list p {
    padding: 0.72rem 0.82rem;
    line-height: 1.35;
  }

  .kw-feature-note {
    padding: 0.72rem 0.82rem;
    line-height: 1.48;
  }

  .kw-card-details summary {
    min-height: 2.9rem;
    padding: 0.68rem 0.78rem;
  }

  .kw-card-details ul {
    padding: 0 0.78rem 0.78rem 1.55rem;
  }

  .kw-public-chip-grid {
    gap: 0.5rem;
  }

  .kw-public-chip-grid span {
    border-radius: 0.9rem;
    padding: 0.46rem 0.6rem;
    line-height: 1.25;
  }
}

/* Mobile guardrails for the public header and wide hero preview. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 1rem, 82.5rem);
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.65rem;
  }

  .site-nav {
    width: 100%;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.45rem;
  }

  .header-partner {
    display: none;
  }

  .header-portal,
  .header-cta {
    min-width: 0;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    padding-inline: 0.7rem;
    font-size: 0.84rem;
  }

  .hero-wide-center .hero-light-head h1 {
    overflow-wrap: anywhere;
  }

  .hero-wide-center,
  .hero-wide-center .hero-light-head,
  .hero-wide-center .hero-light-head .lead {
    max-width: 100%;
    min-width: 0;
  }

  .hero-wide-center .hero-light-head .lead {
    overflow-wrap: break-word;
  }
}

@media (max-width: 420px) {
  .header-portal,
  .header-cta {
    font-size: 0.78rem;
    padding-inline: 0.55rem;
  }
}

@media (max-width: 760px) {
  .site-header .header-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    justify-content: stretch !important;
  }

  .site-header .header-partner {
    display: none !important;
  }

  .site-header .header-portal,
  .site-header .header-cta {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 420px) {
  .site-header .header-cta {
    font-size: 0 !important;
  }

  .site-header .header-cta::after {
    content: "Hilfe anfragen";
    font-size: 0.78rem;
  }

  .hero-wide-center .hero-light-head h1 {
    font-size: clamp(2rem, 8.6vw, 2.65rem);
  }
}

/* Audit correction: keep the live-like mobile header actions visible. */
@media (max-width: 760px) {
  .site-header .header-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    gap: 0.55rem !important;
  }

  .site-header .header-partner {
    display: inline-flex !important;
  }

  .site-header .header-portal,
  .site-header .header-cta {
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 420px) {
  .site-header .header-cta {
    font-size: 0.86rem !important;
  }

  .site-header .header-cta::after {
    content: none !important;
  }

  .site-header .header-actions {
    justify-content: flex-start !important;
  }

  .site-header .header-portal,
  .site-header .header-cta {
    flex: 1 1 calc(50% - 0.3rem) !important;
    justify-content: center !important;
    text-align: center;
  }

  .site-header .header-cta {
    flex-basis: 100% !important;
  }
}

/* Public subpages: additive offer pages in the existing light Klarwerk style. */
.kw-public-page-hero {
  background:
    radial-gradient(circle at 10% 12%, rgba(23, 105, 255, 0.1), transparent 22rem),
    radial-gradient(circle at 90% 0%, rgba(245, 101, 71, 0.1), transparent 22rem),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.kw-public-page-hero-card {
  max-width: 58rem;
}

.kw-public-page-hero-card h1 {
  margin: 0;
  max-width: 13.5ch;
  color: var(--kw-navy);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  letter-spacing: -0.065em;
}

.kw-public-page-hero-card .lead {
  color: rgba(54, 76, 109, 0.92);
}

.kw-public-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.kw-public-card-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.kw-public-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kw-public-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kw-public-info-card,
.kw-public-category-card {
  border: 1px solid rgba(145, 168, 204, 0.22);
  border-radius: clamp(1.3rem, 2vw, 1.85rem);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 56px rgba(11, 31, 58, 0.08);
}

.kw-public-info-card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: clamp(1.05rem, 2vw, 1.45rem);
}

.kw-public-info-card h3,
.kw-public-category-card h2 {
  margin: 0;
  color: var(--kw-navy);
}

.kw-public-info-card p {
  margin: 0;
  color: var(--kw-navy-soft);
}

.kw-public-price,
.kw-public-status {
  width: fit-content;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: rgba(23, 105, 255, 0.08);
  color: var(--kw-blue-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.kw-public-status {
  background: rgba(245, 101, 71, 0.12);
  color: #b73d25;
}

.kw-public-category-card {
  padding: clamp(1.2rem, 2.5vw, 1.85rem);
}

.kw-public-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.kw-public-chip-grid--compact {
  margin-top: 1.2rem;
}

.kw-public-chip-grid span {
  border-radius: 999px;
  padding: 0.52rem 0.78rem;
  background: rgba(23, 105, 255, 0.08);
  color: var(--kw-blue-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

/* KMU page polish: airy business cards, safer image crops and quiet blue depth. */
.kw-business-page-hero {
  background:
    radial-gradient(circle at 8% 8%, rgba(23, 105, 255, 0.13), transparent 24rem),
    radial-gradient(circle at 88% 6%, rgba(23, 105, 255, 0.09), transparent 20rem),
    linear-gradient(180deg, #ffffff, #f6faff);
}

.kw-business-section {
  position: relative;
  isolation: isolate;
}

.kw-business-section::before {
  content: "";
  position: absolute;
  inset: 2rem auto auto 50%;
  z-index: -1;
  width: min(54rem, 82vw);
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(23, 105, 255, 0.08), transparent 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.kw-business-section .section-head {
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.kw-business-section .split-head {
  gap: clamp(1.6rem, 4vw, 3.1rem);
  align-items: start;
}

.kw-business-section--intro .kw-public-chip-grid {
  margin-bottom: clamp(1.15rem, 3vw, 2rem);
}

.kw-business-section--intro .kw-feature-note {
  margin-top: clamp(1.1rem, 2.5vw, 1.75rem);
}

.kw-business-visual-strip {
  gap: clamp(1.25rem, 2.8vw, 2rem);
  margin: clamp(1.4rem, 3vw, 2.1rem) 0 clamp(1.65rem, 3vw, 2.35rem);
}

.kw-business-visual {
  overflow: hidden;
  border-color: rgba(82, 132, 214, 0.18);
  background:
    radial-gradient(circle at 15% 18%, rgba(23, 105, 255, 0.12), transparent 18rem),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.9), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.86));
  box-shadow: 0 24px 68px rgba(11, 31, 58, 0.095);
}

.kw-business-visual::after {
  content: "";
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: inherit;
  pointer-events: none;
}

.kw-business-visual img,
.kw-business-visual.kw-section-image--wide img {
  width: 100%;
  height: clamp(13rem, 24vw, 19rem);
  object-fit: contain;
  object-position: center bottom;
  padding: clamp(0.65rem, 2vw, 1.15rem);
  filter: drop-shadow(0 22px 32px rgba(11, 31, 58, 0.11));
}

.kw-business-visual.kw-business-visual--hero img {
  height: clamp(15.5rem, 23vw, 20.5rem);
  object-fit: cover;
  object-position: center 23%;
  padding: 0;
  filter: saturate(1.02) drop-shadow(0 18px 30px rgba(11, 31, 58, 0.1));
}

.kw-business-section--intro .kw-business-visual--hero {
  margin-top: clamp(1.15rem, 3vw, 2rem);
  margin-bottom: clamp(1.25rem, 3vw, 2.1rem);
}

.kw-business-section--offers {
  padding-top: clamp(0.8rem, 2.6vw, 1.7rem);
}

.kw-business-visual--digital img {
  object-position: center center;
}

.kw-business-offer-grid,
.kw-business-plan-grid {
  gap: clamp(1.35rem, 2.8vw, 2.1rem);
}

.kw-business-compact-grid {
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}

.kw-business-offer-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  gap: clamp(0.82rem, 1.6vw, 1.08rem);
  padding: clamp(1.25rem, 2.4vw, 1.9rem);
  border-color: rgba(82, 132, 214, 0.2);
  background:
    radial-gradient(circle at 96% 0%, rgba(23, 105, 255, 0.085), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92));
  box-shadow: 0 22px 64px rgba(11, 31, 58, 0.075);
}

.kw-business-offer-card::before {
  content: "";
  position: absolute;
  right: -3rem;
  top: -4rem;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(23, 105, 255, 0.13), transparent 68%);
  pointer-events: none;
}

.kw-business-offer-card > * {
  position: relative;
  z-index: 1;
}

.kw-business-offer-card .kw-card-title-row {
  gap: 0.82rem;
  align-items: center;
}

.kw-business-offer-card .kw-card-mark {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.95rem;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.82), transparent 56%),
    linear-gradient(135deg, rgba(23, 105, 255, 0.2), rgba(23, 105, 255, 0.08));
  color: var(--kw-blue-dark);
  box-shadow: inset 0 0 0 1px rgba(23, 105, 255, 0.1), 0 10px 24px rgba(23, 105, 255, 0.08);
}

.kw-business-offer-card .kw-public-price {
  margin-top: 0.1rem;
  border: 1px solid rgba(23, 105, 255, 0.12);
  background: rgba(23, 105, 255, 0.075);
  color: var(--kw-blue-dark);
  line-height: 1.32;
}

.kw-business-offer-card p:not(.kw-public-price):not(.kw-feature-note) {
  line-height: 1.66;
}

.kw-business-offer-card .kw-feature-note {
  margin-top: 0.2rem;
  padding: 0.95rem 1rem 0.95rem 1.22rem;
  background: rgba(23, 105, 255, 0.045);
}

.kw-business-offer-card .kw-feature-note li + li {
  margin-top: 0.35rem;
}

.kw-business-offer-card .text-link {
  justify-self: start;
  margin-top: 0.25rem;
  border-radius: 999px;
  padding: 0.62rem 0.92rem;
  background: linear-gradient(135deg, var(--kw-role-business, #2563ff), var(--kw-role-business-deep, #0d55d8));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(23, 105, 255, 0.18);
}

.kw-business-offer-card--compact {
  min-height: auto;
}

.kw-business-plan-card {
  background:
    radial-gradient(circle at 92% 4%, rgba(23, 105, 255, 0.1), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
}

.kw-business-section--events .kw-feature-shell {
  grid-template-columns: 1fr;
}

.kw-business-section--events .kw-feature-copy {
  max-width: 54rem;
}

.kw-business-section--events .kw-public-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kw-business-section--events .kw-business-offer-card--compact {
  padding: clamp(1.2rem, 2vw, 1.65rem);
}

.kw-business-section--events .kw-business-offer-card .text-link {
  justify-self: stretch;
  justify-content: center;
  text-align: center;
}

.kw-business-section--startup .kw-feature-shell {
  grid-template-columns: minmax(15rem, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(1.5rem, 3.2vw, 2.75rem);
}

.kw-business-section--startup .kw-feature-copy {
  max-width: 31rem;
}

.kw-business-section--startup .kw-public-card-grid--three {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.75rem);
}

.kw-business-section--startup .kw-business-offer-card .text-link {
  justify-self: stretch;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1060px) {
  .kw-public-card-grid--four,
  .kw-public-card-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .kw-public-card-grid--four,
  .kw-public-card-grid--three {
    grid-template-columns: 1fr;
  }

  .kw-public-hero-actions,
  .kw-public-hero-actions .btn {
    width: 100%;
  }

  .kw-public-page-hero {
    padding-block: clamp(2.4rem, 10vw, 3.2rem);
  }

  .kw-public-page-hero-card h1 {
    max-width: 12.5ch;
    font-size: clamp(2rem, 11vw, 3rem);
    letter-spacing: -0.055em;
  }

  .kw-public-page-hero-card .lead,
  .section-intro,
  .kw-feature-copy p {
    line-height: 1.55;
  }

  .kw-business-section .section-head {
    margin-bottom: 1.35rem;
  }

  .kw-business-visual-strip {
    gap: 0.85rem;
    margin-block: 1rem 1.25rem;
  }

  .kw-business-visual img,
  .kw-business-visual.kw-section-image--wide img {
    height: clamp(11.4rem, 54vw, 15.5rem);
    padding: 0.55rem;
  }

  .kw-business-visual.kw-business-visual--hero img {
    height: clamp(12rem, 52vw, 14.5rem);
    object-position: center 28%;
  }

  .kw-business-offer-grid,
  .kw-business-plan-grid,
  .kw-business-compact-grid {
    gap: 1rem;
  }

  .kw-business-section--events .kw-public-card-grid--three {
    grid-template-columns: 1fr;
  }

  .kw-business-section--startup .kw-feature-shell {
    grid-template-columns: 1fr;
  }

  .kw-business-section--startup .kw-public-card-grid--three {
    grid-template-columns: 1fr;
  }

  .kw-business-offer-card {
    padding: 1.12rem;
  }

  .kw-business-offer-card .text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Mobile homepage polish: tighter header and a very quiet hero watermark. */
@media (max-width: 760px) {
  .site-header .header-inner {
    width: min(100% - 0.85rem, 82.5rem) !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 0.32rem 0.48rem !important;
    padding: 0.42rem 0 0.5rem !important;
  }

  .site-header .brand {
    grid-column: 1;
    min-width: 0;
  }

  .site-header .brand-main {
    font-size: 1.13rem;
    letter-spacing: 0.024em;
  }

  .site-header .brand-sub {
    margin-top: 0.04rem;
    font-size: 0.68rem;
  }

  .site-header .menu-toggle {
    grid-column: 2;
    justify-self: end;
    align-self: center;
    min-height: 2.05rem;
    padding: 0.34rem 0.7rem;
    font-size: 0.84rem;
  }

  .site-header .site-nav {
    grid-column: 1 / -1;
  }

  .site-header .header-actions {
    grid-column: 1 / -1;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.34rem !important;
    justify-content: stretch !important;
    margin-top: 0.04rem;
  }

  .site-header .header-partner {
    display: inline-flex !important;
  }

  .site-header .header-portal,
  .site-header .header-cta {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
    text-align: center;
    line-height: 1.1;
  }

  .site-header .header-portal {
    min-height: 1.95rem;
    padding: 0.36rem 0.56rem;
    font-size: 0.76rem;
  }

  .site-header .header-cta {
    grid-column: 1 / -1;
    min-height: 2.16rem;
    padding: 0.46rem 0.72rem;
    font-size: 0.82rem !important;
  }

  .hero--wide-light .hero-wide-center {
    position: relative !important;
    isolation: isolate;
  }

  .hero--wide-light .hero-wide-center::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    z-index: 0 !important;
    top: 0.35rem !important;
    right: -4.2rem !important;
    width: min(72vw, 18rem) !important;
    height: min(52vw, 13.5rem) !important;
    pointer-events: none;
    border-radius: 46% 54% 52% 48% / 48% 44% 56% 52%;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.68) 42%, rgba(255, 255, 255, 0.42)),
      url("../img/klarwerk-private-help-home.webp") center / cover no-repeat !important;
    opacity: 0.24 !important;
    filter: blur(1.6px) saturate(0.88) contrast(0.96);
    transform: rotate(-3deg);
  }

  .hero--wide-light .hero-wide-center > * {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 420px) {
  .site-header .header-inner {
    width: min(100% - 0.72rem, 82.5rem) !important;
    gap: 0.28rem 0.42rem !important;
    padding: 0.36rem 0 0.42rem !important;
  }

  .site-header .brand-main {
    font-size: 1.04rem;
  }

  .site-header .brand-sub {
    font-size: 0.63rem;
  }

  .site-header .menu-toggle {
    min-height: 1.95rem;
    padding: 0.32rem 0.62rem;
    font-size: 0.8rem;
  }

  .site-header .header-actions {
    gap: 0.3rem !important;
  }

  .site-header .header-portal {
    min-height: 1.88rem;
    padding: 0.34rem 0.48rem;
    font-size: 0.72rem;
  }

  .site-header .header-cta {
    min-height: 2.08rem;
    padding: 0.42rem 0.62rem;
    font-size: 0.78rem !important;
  }

  .hero--wide-light .hero-wide-center::before {
    right: -4.8rem !important;
    top: 0.2rem !important;
    width: min(78vw, 17.5rem) !important;
    height: min(56vw, 12.5rem) !important;
    opacity: 0.22 !important;
  }
}

/* Klarwerk color roles: private/help warm, business/portal blue, partner active amber. */
:root {
  --kw-role-private: #ff5a36;
  --kw-role-private-deep: #e94022;
  --kw-role-business: #2563ff;
  --kw-role-business-deep: #0d55d8;
  --kw-role-partner: #f6b51e;
  --kw-role-partner-mid: #ff7a35;
  --kw-role-partner-deep: #e94022;
}

.kw-price-pair--single {
  align-items: center;
}

.kw-price-pair--single .kw-main-price,
.kw-price-pair--single span.kw-main-price:first-child {
  background: rgba(23, 105, 255, 0.085);
  color: var(--kw-blue-dark);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.kw-price-pair--single .kw-discount-badge {
  background: linear-gradient(135deg, rgba(255, 90, 54, 0.14), rgba(255, 122, 53, 0.14));
  color: #9d3e2a;
}

.kw-discount-note {
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  padding: 0.36rem 0.64rem;
  background: linear-gradient(135deg, rgba(255, 90, 54, 0.12), rgba(255, 122, 53, 0.12));
  color: #9d3e2a;
  font-size: 0.84rem;
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header .site-nav.is-open {
    margin-top: 0.35rem;
  }

  .site-header .site-nav.is-open .primary-menu {
    border-color: rgba(255, 255, 255, 0.2);
    background:
      radial-gradient(circle at 16% 0%, rgba(37, 99, 255, 0.24), transparent 14rem),
      linear-gradient(145deg, rgba(11, 31, 63, 0.98), rgba(10, 37, 72, 0.98));
    box-shadow: 0 18px 44px rgba(11, 31, 63, 0.22);
  }

  .site-header .site-nav.is-open .primary-menu a {
    border-radius: 0.85rem;
    color: rgba(255, 255, 255, 0.94) !important;
    font-weight: 800;
  }

  .site-header .site-nav.is-open .primary-menu a:hover,
  .site-header .site-nav.is-open .primary-menu a:focus-visible,
  .site-header .site-nav.is-open .primary-menu .current-menu-item > a {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 760px) {
  .site-header .header-portal:not(.header-partner) {
    border-color: rgba(37, 99, 255, 0.36);
    background: linear-gradient(135deg, var(--kw-role-business), var(--kw-role-business-deep)) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(37, 99, 255, 0.2);
  }

  .site-header .header-partner {
    border-color: rgba(246, 181, 30, 0.4);
    background: linear-gradient(135deg, var(--kw-role-partner), var(--kw-role-partner-mid) 56%, var(--kw-role-partner-deep)) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(255, 122, 53, 0.2);
  }

  .site-header .header-cta {
    border: 0;
    background: linear-gradient(135deg, var(--kw-role-private), var(--kw-role-private-deep)) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 32px rgba(255, 90, 54, 0.27);
  }

  .site-header .header-portal:hover,
  .site-header .header-portal:focus-visible,
  .site-header .header-cta:hover,
  .site-header .header-cta:focus-visible {
    color: #ffffff !important;
    transform: translateY(-1px);
  }
}
