

/* Start:/local/templates/nadelai_uni/template_styles.css?178637985837606*/
:root {
  --bg: #05070d;
  --bg-soft: #070b14;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: #94a3b8;
  --muted-strong: #c9d3e7;
  --cobalt: #1e3a8a;
  --cobalt-bright: #3569ff;
  --orange: #f97316;
  --orange-soft: rgba(249, 115, 22, 0.16);
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --font: Inter, Manrope, Onest, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body.nadelai-platform-page {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(30, 58, 138, 0.38), transparent 28rem),
    radial-gradient(circle at 84% 12%, rgba(249, 115, 22, 0.12), transparent 22rem),
    linear-gradient(180deg, #05070d 0%, #080d18 42%, #05070d 100%);
  font-family: var(--font);
  line-height: 1.5;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.nadelai-platform-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  background: rgba(5, 7, 13, 0.7);
  backdrop-filter: blur(22px);
  transition: background 0.22s ease, border-color 0.22s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(5, 7, 13, 0.92);
}

.header-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 178px;
  height: auto;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.main-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn,
.mobile-sticky-cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 999px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.3), transparent 24%),
    linear-gradient(135deg, #ff8a2a 0%, #f97316 56%, #d95409 100%);
  box-shadow: 0 18px 48px rgba(249, 115, 22, 0.28);
  font-weight: 780;
  font-size: 15px;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible,
.mobile-sticky-cta:hover,
.mobile-sticky-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(249, 115, 22, 0.44);
  box-shadow: 0 24px 62px rgba(249, 115, 22, 0.36);
  outline: none;
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  margin: 3px 0;
  background: currentColor;
}

.section {
  position: relative;
  padding: 104px 0;
}

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: 86px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f8a25f;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
}

.eyebrow::before,
.section-kicker::before,
.panel-label::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.hero-title,
.section-title {
  max-width: 980px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(42px, 6.1vw, 84px);
  line-height: 0.95;
  font-weight: 860;
  letter-spacing: 0;
}

.hero-title .accent,
.section-title .accent {
  color: #ff8c2a;
}

.hero-title-part {
  display: inline;
}

.hero-subtitle,
.section-text {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

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

.hero-note {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span,
.status-pill,
.mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.orbit-system {
  position: relative;
  min-height: 590px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(53, 105, 255, 0.24), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.orbit-system::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.orbit-system::after {
  content: "";
  position: absolute;
  inset: 88px;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 999px;
}

.specialist-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 210px;
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 28px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.16), transparent 54%),
    rgba(5, 7, 13, 0.78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  text-align: center;
}

.avatar-ring {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(249, 115, 22, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(30, 58, 138, 0.9), rgba(5, 7, 13, 0.95));
  color: #ff9340;
}

.avatar-ring svg {
  width: 52px;
  height: 52px;
}

.specialist-core strong {
  margin-top: 18px;
  font-size: 19px;
}

.specialist-core small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.orbit-card {
  position: absolute;
  z-index: 4;
  width: 148px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(7, 11, 20, 0.72);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.orbit-card svg {
  width: 23px;
  height: 23px;
  color: #ff8a2a;
}

.orbit-card strong {
  display: block;
  margin-top: 9px;
  color: var(--text);
  font-size: 14px;
}

.orbit-card span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.orbit-card:nth-child(2) { left: 48px; top: 72px; }
.orbit-card:nth-child(3) { right: 52px; top: 74px; }
.orbit-card:nth-child(4) { right: 24px; top: 250px; }
.orbit-card:nth-child(5) { right: 78px; bottom: 62px; }
.orbit-card:nth-child(6) { left: 82px; bottom: 54px; }
.orbit-card:nth-child(7) { left: 28px; top: 250px; }

.section-head {
  margin-bottom: 46px;
}

.section-title {
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1;
}

.team-section {
  padding-top: 82px;
}

.team-hero {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.team-hero .section-kicker {
  justify-content: center;
}

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

.team-role {
  min-height: 232px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.11), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.028));
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.28);
}

.team-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 14px;
  color: var(--orange);
  background: rgba(249, 115, 22, 0.1);
}

.team-icon svg {
  width: 25px;
  height: 25px;
}

.team-role h3 {
  margin: 22px 0 0;
  font-size: 22px;
  line-height: 1.14;
}

.team-role p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.team-promise {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 100%, rgba(30, 58, 138, 0.24), transparent 22rem),
    rgba(255, 255, 255, 0.055);
}

.team-promise strong {
  max-width: 720px;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.12;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 48px;
}

.glass-panel,
.feature-card,
.form-panel,
.product-shot,
.flow-board,
.proof-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.problem-panel {
  padding: 28px;
}

.problem-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.problem-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.problem-item svg {
  color: var(--orange);
}

.problem-item strong {
  display: block;
  color: var(--text);
  font-size: 16px;
}

.problem-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.statement {
  padding: 34px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.14), transparent 32rem),
    rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 780;
}

.site-preview {
  position: relative;
  padding: 28px;
}

.browser-bar,
.phone-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 28px;
}

.browser-bar span,
.phone-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.browser-bar span:nth-child(1) { background: #ff7b55; }
.browser-bar span:nth-child(2) { background: #ffcf5a; }
.browser-bar span:nth-child(3) { background: #48d597; }

.site-mock {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.86), rgba(7, 11, 20, 0.78));
}

.site-mock h3 {
  margin: 0;
  color: var(--text);
  font-size: 31px;
  line-height: 1.05;
}

.site-mock p {
  max-width: 360px;
  margin: 14px 0 0;
  color: var(--muted);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.service-row strong {
  display: block;
}

.service-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.service-row b {
  color: #ff9850;
}

.phone-overlay {
  position: absolute;
  right: 20px;
  bottom: -34px;
  width: 190px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #05070d;
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.48);
}

.phone-screen {
  min-height: 250px;
  padding: 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 75% 0%, rgba(249, 115, 22, 0.18), transparent 8rem),
    linear-gradient(180deg, rgba(30, 58, 138, 0.32), rgba(255, 255, 255, 0.035));
}

.phone-screen h4 {
  margin: 18px 0 0;
  font-size: 18px;
}

.phone-screen p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.mini-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 0 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

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

.feature-card {
  min-height: 244px;
  padding: 24px;
}

.feature-card svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.feature-card h3 {
  margin: 20px 0 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.16;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.interview-board {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.interview-board::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 80% 10%, rgba(249, 115, 22, 0.12), transparent 20rem);
  pointer-events: none;
}

.chat-card,
.result-card {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.chat-card + .chat-card,
.result-card {
  margin-top: 14px;
}

.chat-card small,
.result-card small {
  color: #ff9d54;
  font-weight: 780;
}

.chat-card p,
.result-card p {
  margin: 8px 0 0;
  color: var(--muted-strong);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.result-grid span {
  padding: 10px 11px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(30, 58, 138, 0.42);
  font-size: 13px;
}

.cards-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.12), transparent 12rem),
    rgba(255, 255, 255, 0.055);
}

.service-card h3 {
  margin: 20px 0 0;
  font-size: 21px;
}

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

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted-strong);
  font-size: 13px;
}

.service-meta b {
  color: #ff9750;
}

.calendar-preview {
  padding: 24px;
}

.calendar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-grid span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
}

.calendar-grid .active {
  color: #fff;
  border-color: rgba(249, 115, 22, 0.34);
  background: rgba(249, 115, 22, 0.18);
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.16);
}

.booking-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(5, 7, 13, 0.66);
}

.booking-card strong,
.payment-card strong {
  display: block;
  color: var(--text);
}

.booking-card span,
.payment-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.payment-stack {
  display: grid;
  gap: 14px;
}

.payment-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.payment-card svg {
  color: var(--orange);
}

.payment-card b {
  color: #ff9850;
}

.flow-board {
  padding: 28px;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.flow-step {
  position: relative;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.052);
}

.flow-step span {
  color: #ff9850;
  font-size: 13px;
  font-weight: 800;
}

.flow-step strong {
  display: block;
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.15;
}

.flow-step p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.legal-card {
  min-height: 184px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.legal-card svg {
  color: var(--orange);
}

.legal-card h3 {
  margin: 18px 0 0;
  font-size: 21px;
}

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

.system-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.system-flow .flow-step {
  min-height: 138px;
}

.form-section {
  padding-bottom: 130px;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 26px;
  align-items: stretch;
}

.form-copy,
.form-panel {
  padding: 34px;
}

.form-copy {
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.16), transparent 22rem),
    rgba(255, 255, 255, 0.055);
}

.form-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.form-copy p {
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-size: 19px;
}

.next-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.next-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--muted-strong);
}

.next-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(249, 115, 22, 0.18);
  font-weight: 800;
}

.form-panel {
  position: relative;
  overflow: hidden;
}

.form-panel::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.26);
  filter: blur(28px);
}

.b24-form-wrapper {
  position: relative;
  z-index: 1;
  min-height: 360px;
}

.form-legal-note {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-legal-note a {
  color: #ffac6d;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-legal-note a:hover,
.form-legal-note a:focus-visible {
  color: #ffd3b4;
  outline: none;
}

.final-cta {
  padding: 70px 0 110px;
}

.final-card {
  padding: 54px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.16), transparent 28rem),
    radial-gradient(circle at 0% 100%, rgba(30, 58, 138, 0.28), transparent 30rem),
    rgba(255, 255, 255, 0.055);
  text-align: center;
  box-shadow: var(--shadow);
}

.final-card h2 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1;
}

.final-card p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted-strong);
  font-size: 20px;
}

.final-card .btn {
  margin-top: 30px;
}

.legal-page {
  padding-top: 72px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.legal-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a:focus-visible,
.legal-nav a.is-active {
  color: var(--text);
  border-color: rgba(249, 115, 22, 0.36);
  background: rgba(249, 115, 22, 0.12);
  outline: none;
}

.legal-document {
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.12), transparent 28rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
  box-shadow: var(--shadow);
}

.legal-document .section-title {
  max-width: 960px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.legal-meta span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
}

.legal-lead {
  max-width: 920px;
  margin: 26px 0 0;
  color: var(--muted-strong);
  font-size: 20px;
  line-height: 1.58;
}

.legal-document h2 {
  margin: 42px 0 0;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.14;
}

.legal-document h3 {
  margin: 28px 0 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.2;
}

.legal-document p,
.legal-document li,
.legal-requisites dd,
.legal-requisites dt {
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.68;
}

.legal-document p {
  margin: 16px 0 0;
}

.legal-document ul,
.legal-document ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.legal-document a {
  color: #ffac6d;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-document a:hover,
.legal-document a:focus-visible {
  color: #ffd3b4;
  outline: none;
}

.legal-requisites {
  margin-top: 48px;
  padding: 28px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 16px;
  background: rgba(5, 7, 13, 0.45);
}

.legal-requisites h2 {
  margin-top: 0;
}

.legal-requisites dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
}

.legal-requisites dl > div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.legal-requisites dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.legal-requisites dd {
  margin: 6px 0 0;
  overflow-wrap: anywhere;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.site-footer {
  padding: 42px 0 72px;
  border-top: 1px solid var(--line);
  background: rgba(3, 5, 10, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand img {
  width: 160px;
}

.footer-brand p {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  outline: none;
}

.mobile-sticky-cta {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 90;
  display: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.nadelai-platform-page.is-lead-visible .mobile-sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.cookie-notice {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  width: min(470px, calc(100% - 44px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(5, 7, 13, 0.94);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

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

.cookie-notice p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-notice-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cookie-notice a {
  color: #ffac6d;
  font-size: 13px;
  text-decoration: none;
}

.cookie-notice button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(249, 115, 22, 0.9);
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
}

.cookie-notice a:hover,
.cookie-notice a:focus-visible,
.cookie-notice button:hover,
.cookie-notice button:focus-visible {
  outline: none;
  filter: brightness(1.08);
}

.communication-hero {
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: 92px 0 86px;
}

.communication-hero-grid,
.communication-next-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 46px;
}

.communication-hero-copy {
  max-width: 760px;
}

.communication-title {
  margin: 18px 0 0;
  font-size: 72px;
  line-height: 0.94;
  letter-spacing: 0;
}

.communication-subtitle {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 21px;
  line-height: 1.52;
}

.communication-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.communication-status {
  position: relative;
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 18px;
}

.communication-status::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: -1;
  border: 1px solid rgba(53, 105, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  box-shadow: inset 0 0 70px rgba(30, 58, 138, 0.2);
}

.status-card,
.communication-panel,
.communication-widget-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)),
    rgba(5, 7, 13, 0.72);
  box-shadow: var(--shadow);
}

.status-card {
  position: relative;
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 30px;
}

.status-pulse {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.12), 0 0 28px rgba(249, 115, 22, 0.55);
}

.status-card strong {
  display: block;
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.1;
}

.status-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.status-route {
  width: min(100%, 410px);
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
}

.status-route i {
  height: 1px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.7), rgba(53, 105, 255, 0.2));
}

.communication-section {
  padding: 96px 0;
}

.communication-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.communication-section-head h2,
.communication-panel h2,
.communication-widget-panel h2 {
  margin: 12px 0 0;
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: 0;
}

.communication-section-head p,
.communication-panel p,
.communication-widget-panel p {
  margin: 16px 0 0;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.56;
}

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

.communication-card {
  min-height: 240px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  text-decoration: none;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.communication-card:hover,
.communication-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.34);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.42);
  outline: none;
}

.communication-card-icon {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(30, 58, 138, 0.38);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0;
}

.communication-card-max .communication-card-icon {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(249, 115, 22, 0.86));
}

.communication-card-telegram .communication-card-icon {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(53, 105, 255, 0.72));
}

.communication-card-body strong {
  display: block;
  font-size: 30px;
  line-height: 1.06;
}

.communication-card-body small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.communication-card-action {
  grid-column: 1 / -1;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 0 18px;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(249, 115, 22, 0.12);
  font-weight: 780;
}

.communication-next {
  padding-top: 40px;
  padding-bottom: 118px;
}

.communication-panel,
.communication-widget-panel {
  min-height: 360px;
  padding: 34px;
}

.communication-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted-strong);
  list-style: none;
}

.communication-list li {
  position: relative;
  padding-left: 24px;
}

.communication-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.48);
}

.widget-preview {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 6px 14px;
  align-items: center;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(53, 105, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(30, 58, 138, 0.16);
}

.widget-preview span {
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #ff8a2a, #1e3a8a);
  box-shadow: 0 18px 42px rgba(30, 58, 138, 0.34);
}

.widget-preview strong {
  font-size: 18px;
}

.widget-preview small {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .mobile-sticky-cta {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .form-grid,
  .communication-hero-grid,
  .communication-next-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .feature-grid,
  .cards-showcase,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-line,
  .system-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .communication-title {
    font-size: 58px;
  }

  .communication-status {
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
  }

  .header-shell {
    min-height: 68px;
  }

  .brand img {
    width: 146px;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 18px;
    padding: 10px;
    background: rgba(5, 7, 13, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    min-height: 46px;
    justify-content: center;
  }

  .header-cta,
  .btn-small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 80px;
  }

  .hero-title {
    font-size: clamp(42px, 11vw, 58px);
  }

  .section {
    padding: 74px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .orbit-system {
    min-height: 560px;
  }

  .orbit-card {
    width: 136px;
  }

  .phone-overlay {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(250px, 86%);
    margin: 20px auto 0;
  }

  .site-preview {
    padding: 18px;
  }

  .feature-grid,
  .cards-showcase,
  .team-grid,
  .legal-grid,
  .flow-line,
  .system-flow,
  .communication-channel-grid {
    grid-template-columns: 1fr;
  }

  .team-promise {
    align-items: stretch;
    flex-direction: column;
  }

  .form-copy,
  .form-panel,
  .final-card,
  .legal-document {
    padding: 26px;
  }

  .legal-requisites dl {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-items: start;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }

  .communication-hero {
    min-height: auto;
    padding: 58px 0 64px;
  }

  .communication-title {
    font-size: 44px;
    line-height: 1;
  }

  .communication-subtitle {
    font-size: 18px;
  }

  .communication-section {
    padding: 72px 0;
  }

  .communication-section-head h2,
  .communication-panel h2,
  .communication-widget-panel h2 {
    font-size: 34px;
  }

  .communication-card {
    min-height: 220px;
  }

  .communication-next {
    padding-top: 20px;
    padding-bottom: 104px;
  }

  .cookie-notice {
    right: 14px;
    bottom: 84px;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .cookie-notice-actions {
    justify-content: space-between;
  }
}

@media (max-width: 560px) {
  .shell {
    width: auto;
    max-width: none;
    margin-right: 14px;
    margin-left: 14px;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .hero-title-part {
    display: block;
  }

  .eyebrow,
  .hero-title,
  .hero-subtitle,
  .hero-note {
    max-width: 100%;
  }

  .eyebrow {
    align-items: flex-start;
    line-height: 1.25;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .eyebrow::before {
    flex: 0 0 26px;
    margin-top: 0.62em;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    min-height: 31px;
    font-size: 12px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .orbit-system {
    min-height: 620px;
  }

  .specialist-core {
    width: 188px;
    min-height: 230px;
  }

  .orbit-system::before,
  .orbit-system::after {
    inset: 50px 18px;
  }

  .orbit-card {
    width: calc(50% - 26px);
    min-height: 86px;
    padding: 12px;
  }

  .orbit-card:nth-child(2) { left: 15px; top: 25px; }
  .orbit-card:nth-child(3) { right: 15px; top: 25px; }
  .orbit-card:nth-child(4) { right: 15px; top: 205px; }
  .orbit-card:nth-child(5) { right: 15px; bottom: 28px; }
  .orbit-card:nth-child(6) { left: 15px; bottom: 28px; }
  .orbit-card:nth-child(7) { left: 15px; top: 205px; }

  .site-mock {
    padding: 20px;
  }

  .site-mock h3 {
    font-size: 25px;
  }

  .payment-card {
    grid-template-columns: 36px 1fr;
  }

  .payment-card b {
    grid-column: 2;
  }

  .communication-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .communication-actions .btn {
    width: 100%;
  }

  .communication-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .communication-card-icon {
    width: 64px;
    height: 64px;
  }

  .communication-card-body strong {
    font-size: 25px;
  }

  .communication-panel,
  .communication-widget-panel,
  .status-card {
    padding: 24px;
  }

  .status-route {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .status-route i {
    width: 1px;
    height: 18px;
  }
}

/* End */


/* Start:/local/templates/nadelai_uni/brand-refresh.css?178637985817717*/
/* NadelAI public product art direction: light, human, and conversion-focused. */
body.nadelai-platform-page.product-refresh {
  --na-ink: #303942;
  --na-muted: #69737d;
  --na-paper: #fbfcfd;
  --na-white: #ffffff;
  --na-line: #dfe5e8;
  --na-teal: #557a73;
  --na-teal-dark: #456760;
  --na-coral: #d8836c;
  --na-blue: #849eb7;
  background: var(--na-paper);
  color: var(--na-ink);
  font-family: "Manrope", Arial, sans-serif;
}

body.nadelai-platform-page.product-refresh,
body.nadelai-platform-page.product-refresh * {
  letter-spacing: 0;
}

body.nadelai-platform-page.product-refresh .site-header {
  background: rgba(251, 252, 253, 0.94);
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

body.nadelai-platform-page.product-refresh .site-header.is-scrolled {
  border-color: var(--na-line);
  box-shadow: 0 8px 24px rgba(74, 89, 101, 0.07);
}

body.nadelai-platform-page.product-refresh .header-shell { min-height: 82px; }
body.nadelai-platform-page.product-refresh .main-nav a {
  color: #69757e;
  font-size: 13px;
  font-weight: 700;
}
body.nadelai-platform-page.product-refresh .main-nav a:hover,
body.nadelai-platform-page.product-refresh .main-nav a:focus-visible { color: #456d69; }

body.nadelai-platform-page.product-refresh .btn,
body.nadelai-platform-page.product-refresh .mobile-purchase-main {
  background: #557a73;
  border-color: #557a73;
  border-radius: 7px;
  box-shadow: 0 10px 20px rgba(74, 115, 107, 0.16);
  color: #fff;
}

body.nadelai-platform-page.product-refresh .btn:hover,
body.nadelai-platform-page.product-refresh .btn:focus-visible,
body.nadelai-platform-page.product-refresh .mobile-purchase-main:hover,
body.nadelai-platform-page.product-refresh .mobile-purchase-main:focus-visible {
  background: #456760;
  border-color: #456760;
  box-shadow: 0 12px 24px rgba(74, 115, 107, 0.2);
}

body.nadelai-platform-page.product-refresh .section-kicker,
body.nadelai-platform-page.product-refresh .eyebrow {
  color: #6d899d;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.nadelai-platform-page.product-refresh .section { padding: 132px 0; }

/* Hero: one bright human scene, with product evidence layered gently over it. */
body.nadelai-platform-page.product-refresh .product-hero {
  background: #fbfcfd;
  border-bottom: 0;
  padding: 124px 0 118px;
}

body.nadelai-platform-page.product-refresh .product-hero-grid {
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  grid-template-columns: minmax(0, 0.91fr) minmax(440px, 1.09fr);
}

body.nadelai-platform-page.product-refresh .product-hero h1 {
  color: #303942;
  font-size: clamp(48px, 4.4vw, 66px);
  font-weight: 800;
  line-height: 1.06;
  max-width: 660px;
}

body.nadelai-platform-page.product-refresh .hero-lead {
  color: #626f79;
  font-size: 18px;
  line-height: 1.66;
  max-width: 590px;
}

body.nadelai-platform-page.product-refresh .hero-note { color: #859099; font-size: 13px; }
body.nadelai-platform-page.product-refresh .hero-proof { gap: 8px; }
body.nadelai-platform-page.product-refresh .hero-proof span {
  background: #f0f4f7;
  border: 1px solid #e0e8ed;
  border-radius: 5px;
  color: #627681;
  font-size: 11px;
  font-weight: 800;
  min-height: 32px;
  padding: 7px 10px;
}

.hero-visual { min-height: 562px; position: relative; }
.hero-photo { border-radius: 8px; height: 100%; margin: 0; min-height: 562px; overflow: hidden; }
.hero-photo img { display: block; height: 100%; object-fit: cover; width: 100%; }
.hero-offer-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #edf1f3;
  border-radius: 8px;
  bottom: 24px;
  box-shadow: 0 18px 42px rgba(69, 85, 98, 0.14);
  left: -28px;
  max-width: 295px;
  padding: 20px;
  position: absolute;
}
.hero-offer-card > span,
.hero-offer-card small {
  color: #78909f;
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-offer-card strong { color: #34434e; display: block; font-size: 20px; line-height: 1.2; margin-top: 9px; }
.hero-offer-card p { color: #73808a; font-size: 12px; line-height: 1.52; margin: 9px 0 0; }
.hero-offer-card > div { border-top: 1px solid #e5eaed; display: flex; gap: 13px; margin-top: 15px; padding-top: 13px; }
.hero-offer-card i { align-items: center; color: #63777b; display: inline-flex; font-size: 10px; font-style: normal; gap: 5px; }
.hero-offer-card i svg { color: #d4836d; height: 14px; width: 14px; }
.hero-result-card {
  align-items: flex-start;
  background: #eef4f1;
  border: 1px solid #d9e8e1;
  border-radius: 8px;
  box-shadow: 0 12px 27px rgba(69, 104, 96, 0.12);
  display: flex;
  gap: 9px;
  max-width: 244px;
  padding: 14px;
  position: absolute;
  right: -24px;
  top: 27px;
}
.hero-result-card > span { color: #5b837b; flex: 0 0 18px; }
.hero-result-card > span svg,
.hero-result-card > svg { height: 18px; width: 18px; }
.hero-result-card > svg { color: #6a9a87; flex: 0 0 17px; margin-top: 6px; }
.hero-result-card p { margin: 0; }
.hero-result-card small { color: #7d958e; display: block; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.hero-result-card strong { color: #4c655e; display: block; font-size: 12px; line-height: 1.38; margin-top: 4px; }

/* Soft rhythm through the whole story instead of black and green jumps. */
.permission-section { background: #f2f6f8; border: 0; padding: 128px 0; }
.permission-heading h2,
.identity-copy h2 { color: #34414b; }
.permission-heading > p,
.identity-copy > p { color: #67747d; }
.permission-card { border-color: #c7d8df; }
.permission-card + .permission-card { border-color: #d4e0e5; }
.permission-card > span { color: #c88372; }
.permission-card h3 { color: #394750; }
.permission-card p { color: #6b7a83; }
.permission-map { background: #edf2f6; border: 1px solid #d7e2e8; color: #3c505b; margin-left: 12px; }
.permission-map-label { color: #7490a2; }
.permission-map > div { border-color: #d5e0e6; }
.permission-map i { color: #c88372; }
.permission-map strong { color: #405360; }
.permission-map small { color: #71808a; }

.identity-section { background: #fbfcfd; }
.identity-photo { background: #e7edf2; border-radius: 8px; }
.identity-photo::after { display: none; }
.identity-photo figcaption {
  background: rgba(255, 255, 255, 0.93);
  bottom: 18px;
  color: #3c4952;
  left: 18px;
  max-width: 405px;
  padding: 16px;
  right: auto;
}
.identity-photo figcaption > span { color: #d3846d; }
.identity-photo figcaption small { color: #8096a3; }
.identity-photo figcaption strong { color: #45545f; }
.translation-grid { border-color: #dce5ea; }
.translation-grid > div { border-color: #dce5ea; }
.translation-grid span { color: #7c929e; }
.translation-grid strong { color: #40515d; }
body.nadelai-platform-page.product-refresh .text-action { color: #587c78; }
body.nadelai-platform-page.product-refresh .text-action svg { color: #d3836b; }

.unpack-section { background: #f7f4f7; }
.interview-card { background: #edf1f6; box-shadow: none; color: #3e4d59; }
.interview-label { color: #6a879c; }
.interview-card h3 { color: #3a4753; }
.interview-card > p { color: #6a7781; }
.answer-lines i { background: #c9d7e0; }
.interview-footer { border-color: #d5e0e7; color: #6a7b83; }
.interview-footer svg { color: #6f9b88; }
.interview-card small { color: #7c8992; }

.offer-section { background: #fbfcfd; }
.service-preview { background: #f2f5f8; border-color: #e0e7ec; box-shadow: none; }
.service-preview-head > span { color: #7692a2; }
.service-preview-head b { color: #668c7b; }
.service-preview h3 { color: #394854; }
.service-preview > p { color: #6a7982; }
.service-specs div { background: #fff; border-color: #e1e8ed; }
.service-specs span { color: #8495a0; }
.service-specs strong { color: #4c5b65; }
.service-preview-footer { border-color: #dbe5e9; color: #66817c; }
.service-preview-footer svg { color: #6d9d8a; }
.offer-points { border-color: #d9e4e8; }
.offer-points > div { border-color: #d9e4e8; }
.offer-points > div > span { color: #d1836c; }
.offer-points p { color: #6a7881; }
.offer-points strong { color: #3e4e5a; }

.system-section { background: #f5f8fa; }
.system-card { background: rgba(255, 255, 255, 0.76); border-color: #e0e7eb; box-shadow: none; }
.system-card:hover { border-color: #c7d8df; box-shadow: 0 12px 24px rgba(72, 89, 103, 0.07); }
.system-icon { background: #edf2f6; color: #718fa2; }
.system-card h3 { color: #3d4d58; }
.system-card p { color: #6b7983; }

.journey-section { background: #fbfcfd; }
.journey-copy p,
.journey-map p { color: #6b7982; }
.journey-map li { border-color: #dce5e9; }
.journey-map li > span { color: #cf826c; font-family: "Manrope", Arial, sans-serif; font-weight: 800; }
.journey-map strong { color: #3e4e59; }

.tracks-section { background: #f2f6f8; }
.track-card,
body.nadelai-platform-page.product-refresh .track-card--accent,
.track-card--dark {
  background: #ffffff;
  border: 1px solid #e0e7eb;
  box-shadow: none;
}
.track-card:nth-child(2),
body.nadelai-platform-page.product-refresh .track-card--accent { background: #eef3f7; }
.track-card--dark { background: #f5eef3; }
.track-card > span,
.track-card--dark > span,
body.nadelai-platform-page.product-refresh .track-card--accent span { color: #7692a2; font-family: "Manrope", Arial, sans-serif; }
.track-card h3,
.track-card--dark h3,
body.nadelai-platform-page.product-refresh .track-card--accent h3 { color: #3d4b56; }
.track-card p,
.track-card--dark p,
body.nadelai-platform-page.product-refresh .track-card--accent p { color: #6b7881; }
.track-card--dark .text-action,
body.nadelai-platform-page.product-refresh .track-card--accent .text-action { color: #587c78; }

.pricing-section { background: #f2f5f8; }
.pricing-copy p { color: #6b7982; }
.price-card { background: #fff; border-color: #dce5ea; box-shadow: 0 16px 32px rgba(72, 89, 103, 0.06); }
.price-card-top { color: #788994; font-family: "Manrope", Arial, sans-serif; }
.price-status { background: #edf4f1; color: #66877b; }
.price-card h3 { color: #3d4d58; }
.price-value { border-color: #e0e7eb; }
.price-value strong { color: #597f78; }
.price-value span,
.price-note { color: #75838c; }
.price-card li { color: #687780; }
.price-card li svg { color: #729b89; }

body.nadelai-platform-page.product-refresh .consultation-section { background: #eef4f1; }
.consultation-layout { min-height: 450px; }
.consultation-photo { background: #dce8e4; }
.consultation-copy { background: #f7faf9; color: #42525b; }
.consultation-copy .section-kicker { color: #7c9d91; }
.consultation-copy h2 { color: #3e4e58; }
.consultation-copy p { color: #6a7980; }
body.nadelai-platform-page.product-refresh .consultation-points { background: #e1ece7; }
body.nadelai-platform-page.product-refresh .consultation-points > span { color: #5f726f; }
body.nadelai-platform-page.product-refresh .consultation-points > span svg { color: #c9826d; }
body.nadelai-platform-page.product-refresh .consultation-points .btn-light { background: #557a73; border-color: #557a73; box-shadow: 0 10px 20px rgba(74, 115, 107, 0.14); color: #fff; }

.faq-section { background: #fbfcfd; }
.faq-item { border-color: #dce5e9; }
.faq-item summary { color: #42505a; }
.faq-item summary span { color: #6f919c; }
.faq-item p { color: #6d7a83; }

.start-section { background: #f3f6f8; }
.start-copy p,
.start-trust span { color: #6b7982; }
.start-trust svg { color: #6f9c8b; }
.form-panel { background: #fff; border-color: #dce5ea; }
.form-panel-head { background: #e8f0f5; color: #43535e; }
.form-panel-head span { color: #7b94a5; font-family: "Manrope", Arial, sans-serif; }
.order-preview-line { color: #42515b; }
.order-preview-line strong { color: #597f78; font-family: "Manrope", Arial, sans-serif; }
.order-preview-meta,
.form-note { color: #77858e; }
.order-preview-divider,
.promo-preview { border-color: #dfe7eb; }
.order-preview-next > span,
.promo-preview summary { color: #648b83; font-family: "Manrope", Arial, sans-serif; }
.order-preview-next p,
.promo-preview p { color: #6c7a83; }

body.nadelai-platform-page.product-refresh .site-footer {
  background: #eef2f5;
  border-top: 1px solid #dce4e9;
  padding: 62px 0 96px;
}
body.nadelai-platform-page.product-refresh .site-footer .footer-brand p { color: #68757e; }
body.nadelai-platform-page.product-refresh .site-footer .footer-links a { color: #556d72; }
body.nadelai-platform-page.product-refresh .site-footer .footer-links a:hover,
body.nadelai-platform-page.product-refresh .site-footer .footer-links a:focus-visible { color: #c87d67; }

body.nadelai-platform-page.product-refresh .cookie-notice {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #e0e7eb;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(71, 86, 100, 0.14);
  color: #68757e;
}
body.nadelai-platform-page.product-refresh .cookie-notice a { color: #698b96; }
body.nadelai-platform-page.product-refresh .cookie-notice button { background: #d9866d; border-color: #d9866d; color: #fff; }

body.nadelai-platform-page.product-refresh .mobile-purchase-bar {
  background: rgba(251, 252, 253, 0.98);
  border-color: #dce5ea;
}
body.nadelai-platform-page.product-refresh .mobile-purchase-bar > div span { color: #7b8891; }
body.nadelai-platform-page.product-refresh .mobile-purchase-bar > div strong { color: #3d4c56; }
body.nadelai-platform-page.product-refresh .mobile-purchase-link { color: #66847d; }

/* A concise proof layer before the visitor enters the longer product story. */
.outcome-section { background: #ffffff; padding: 126px 0 132px; }
.outcome-heading { max-width: 820px; }
.outcome-heading h2 {
  color: #36434d;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  margin: 15px 0 0;
}
.outcome-heading > p { color: #6a7881; font-size: 17px; line-height: 1.68; margin: 23px 0 0; max-width: 720px; }
.outcome-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 54px; }
.outcome-card { background: #f5f8fa; border: 1px solid #e2e9ed; border-radius: 8px; min-height: 242px; padding: 22px; }
.outcome-card:nth-child(2) { background: #f4f2f8; }
.outcome-card:nth-child(3) { background: #eef5f2; }
.outcome-card:nth-child(4) { background: #faf3f0; }
.outcome-icon { align-items: center; background: #ffffff; border: 1px solid #e4ebee; border-radius: 6px; color: #7895a5; display: inline-flex; height: 39px; justify-content: center; width: 39px; }
.outcome-icon svg { height: 20px; width: 20px; }
.outcome-card:nth-child(3) .outcome-icon { color: #6f9a88; }
.outcome-card:nth-child(4) .outcome-icon { color: #cd826b; }
.outcome-card h3 { color: #42515c; font-size: 18px; line-height: 1.3; margin: 27px 0 0; }
.outcome-card p { color: #6d7b84; font-size: 13px; line-height: 1.6; margin: 11px 0 0; }
.scenario-switch { align-items: center; background: #edf3f6; border: 1px solid #dde7ec; border-radius: 8px; display: grid; gap: 10px 26px; grid-template-columns: minmax(210px, .72fr) 1fr 1fr; margin-top: 40px; padding: 19px 22px; }
.scenario-switch p { margin: 0; }
.scenario-switch p span { color: #7c96a5; display: block; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.scenario-switch p strong { color: #485964; display: block; font-size: 16px; margin-top: 4px; }
.scenario-switch a { align-items: center; color: #557a73; display: flex; font-size: 13px; font-weight: 800; gap: 12px; justify-content: space-between; line-height: 1.35; }
.scenario-switch a + a { border-left: 1px solid #d7e3e8; padding-left: 26px; }
.scenario-switch a svg { color: #cf826b; flex: 0 0 17px; height: 17px; width: 17px; }

@media (max-width: 1080px) {
  body.nadelai-platform-page.product-refresh .product-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr); }
  .hero-offer-card { left: 18px; }
  .hero-result-card { right: 18px; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .scenario-switch { grid-template-columns: 1fr 1fr; }
  .scenario-switch p { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  body.nadelai-platform-page.product-refresh .product-hero { padding: 104px 0 84px; }
  body.nadelai-platform-page.product-refresh .product-hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 8px; min-height: 480px; }
  .hero-photo { min-height: 480px; }
  .permission-section { padding: 82px 0; }
  .permission-map { margin: 24px 0 0; }
  .identity-section { padding: 84px 0; }
  .outcome-section { padding: 82px 0; }
  .scenario-switch { grid-template-columns: 1fr; }
  .scenario-switch a + a { border-left: 0; border-top: 1px solid #d7e3e8; padding-left: 0; padding-top: 14px; }
  .consultation-layout { grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1fr); }
  body.nadelai-platform-page.product-refresh .consultation-points { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body.nadelai-platform-page.product-refresh .product-hero { padding: 93px 0 70px; }
  body.nadelai-platform-page.product-refresh .product-hero h1 { font-size: 40px; }
  body.nadelai-platform-page.product-refresh .hero-lead { font-size: 16px; }
  .hero-visual { min-height: 410px; }
  .hero-photo { min-height: 410px; }
  .hero-offer-card { bottom: 15px; left: 12px; max-width: 226px; padding: 15px; }
  .hero-offer-card strong { font-size: 16px; }
  .hero-result-card { display: none; }
  .outcome-heading h2 { font-size: 31px; }
  .outcome-heading > p { font-size: 16px; }
  .outcome-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .outcome-card { min-height: 0; padding: 20px; }
  .outcome-card h3 { margin-top: 19px; }
  .identity-photo figcaption { bottom: 12px; left: 12px; max-width: calc(100% - 24px); padding: 13px; }
  .consultation-layout { display: block; }
  .consultation-copy { padding: 38px 18px; }
}

/* End */


/* Start:/local/templates/nadelai_uni/sales-refresh.css?178637985821453*/
/* Final sales direction: precise typography, calm blue surfaces, and one visible conversion path. */
body.nadelai-platform-page.product-refresh {
  --na-ink: #1d2939;
  --na-muted: #66758a;
  --na-paper: #ffffff;
  --na-surface: #f4f7fb;
  --na-line: #dce5f0;
  --na-blue: #315fd6;
  --na-blue-dark: #244bb7;
  --na-blue-soft: #e9efff;
  --na-coral: #ec765a;
  background: var(--na-paper);
  color: var(--na-ink);
  font-family: "Onest", Arial, sans-serif;
}

body.nadelai-platform-page.product-refresh * { letter-spacing: 0; }
body.nadelai-platform-page.product-refresh .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  box-shadow: none;
}
body.nadelai-platform-page.product-refresh .site-header.is-scrolled {
  border-color: var(--na-line);
  box-shadow: 0 6px 20px rgba(29, 41, 57, 0.06);
}
body.nadelai-platform-page.product-refresh .header-shell { min-height: 72px; }
body.nadelai-platform-page.product-refresh .main-nav { gap: 25px; }
body.nadelai-platform-page.product-refresh .main-nav a {
  color: #57677a;
  font-size: 13px;
  font-weight: 600;
}
body.nadelai-platform-page.product-refresh .main-nav a:hover,
body.nadelai-platform-page.product-refresh .main-nav a:focus-visible { color: var(--na-blue); }

/* The approved SVG mark remains intact. The wordmark receives a readable light-surface treatment. */
body.nadelai-platform-page.product-refresh .brand--nadelai { gap: 9px; min-height: 54px; }
body.nadelai-platform-page.product-refresh .brand--nadelai .brand-mark { flex-basis: 46px; height: 46px; width: 46px; }
body.nadelai-platform-page.product-refresh .brand--nadelai .brand-name { color: var(--na-ink); font-size: 34px; text-shadow: none; }
body.nadelai-platform-page.product-refresh .brand--nadelai .brand-name-main {
  background: none;
  color: var(--na-ink);
  -webkit-text-fill-color: var(--na-ink);
}
body.nadelai-platform-page.product-refresh .brand--nadelai .brand-name-accent {
  background: none;
  color: var(--nadel-orange);
  -webkit-text-fill-color: var(--nadel-orange);
}
body.nadelai-platform-page.product-refresh .footer-logo.brand--nadelai .brand-mark { flex-basis: 38px; height: 38px; width: 38px; }
body.nadelai-platform-page.product-refresh .footer-logo.brand--nadelai .brand-name { font-size: 28px; }

body.nadelai-platform-page.product-refresh .btn,
body.nadelai-platform-page.product-refresh .mobile-purchase-main {
  background: var(--na-blue);
  border-color: var(--na-blue);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(49, 95, 214, 0.16);
  color: #fff;
  font-family: "Onest", Arial, sans-serif;
  font-weight: 700;
}
body.nadelai-platform-page.product-refresh .btn:hover,
body.nadelai-platform-page.product-refresh .btn:focus-visible,
body.nadelai-platform-page.product-refresh .mobile-purchase-main:hover,
body.nadelai-platform-page.product-refresh .mobile-purchase-main:focus-visible {
  background: var(--na-blue-dark);
  border-color: var(--na-blue-dark);
  box-shadow: 0 10px 20px rgba(49, 95, 214, 0.22);
}

.sales-kicker {
  color: var(--na-blue);
  display: block;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}
.sales-heading { max-width: 780px; }
.sales-heading h2,
.sales-method-copy h2,
.sales-system-lead h2,
.sales-showcase-copy h2,
.sales-price-copy h2,
.sales-consultation-copy h2,
.sales-start-copy h2 {
  color: var(--na-ink);
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.13;
  margin: 15px 0 0;
}
.sales-heading > p,
.sales-method-copy > p,
.sales-system-lead > p,
.sales-showcase-copy > p,
.sales-price-copy > p,
.sales-consultation-copy > p,
.sales-start-copy > p {
  color: var(--na-muted);
  font-size: 17px;
  line-height: 1.62;
  margin: 20px 0 0;
}
.sales-icon {
  align-items: center;
  background: var(--na-blue-soft);
  border: 1px solid #d8e4ff;
  border-radius: 8px;
  color: var(--na-blue);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.sales-icon svg { height: 21px; width: 21px; }

.sales-hero { background: #fff; padding: 130px 0 94px; }
.sales-hero-grid { align-items: center; display: grid; gap: clamp(38px, 6vw, 94px); grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr); }
.sales-hero-copy { max-width: 620px; }
.sales-hero h1 {
  color: var(--na-ink);
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(42px, 4.2vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  margin: 17px 0 0;
}
.sales-hero h1 em { color: var(--na-blue); font-style: normal; }
.sales-hero-copy > p { color: #5f6f83; font-size: 18px; line-height: 1.58; margin: 24px 0 0; max-width: 570px; }
.sales-hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 31px; }
.sales-primary { min-height: 50px; padding: 0 22px; }
.sales-secondary { align-items: center; color: var(--na-blue); display: inline-flex; font-size: 14px; font-weight: 700; gap: 9px; }
.sales-secondary svg { height: 17px; width: 17px; }
.sales-hero-facts { display: flex; flex-wrap: wrap; gap: 10px 19px; margin-top: 29px; }
.sales-hero-facts span { align-items: center; color: #637287; display: inline-flex; font-size: 12px; font-weight: 600; gap: 7px; }
.sales-hero-facts svg { color: var(--na-coral); height: 16px; width: 16px; }
.sales-hero-visual { margin: 0; }
.sales-hero-visual img { aspect-ratio: 1.08 / 1; border-radius: 8px; display: block; object-fit: cover; width: 100%; }
.sales-hero-visual figcaption { align-items: baseline; border-top: 1px solid var(--na-line); display: flex; gap: 12px; margin-top: 15px; padding-top: 14px; }
.sales-hero-visual figcaption span { color: #7b899a; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.sales-hero-visual figcaption strong { color: #334257; font-size: 14px; }

.sales-benefits { background: var(--na-surface); padding: 88px 0 94px; }
.sales-benefit-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 44px; }
.sales-benefit { background: #fff; border: 1px solid #e3eaf2; border-radius: 8px; min-height: 244px; padding: 24px; }
.sales-benefit:nth-child(2) .sales-icon { background: #fff0eb; border-color: #ffe0d7; color: var(--na-coral); }
.sales-benefit:nth-child(3) .sales-icon { background: #eef2ff; color: #5d62c7; }
.sales-benefit:nth-child(4) .sales-icon { background: #eef8f9; color: #2d8392; }
.sales-benefit h3 { color: #29374a; font-size: 18px; line-height: 1.32; margin: 26px 0 0; }
.sales-benefit p { color: #708095; font-size: 13px; line-height: 1.62; margin: 11px 0 0; }

.sales-scenarios { background: #fff; padding: 100px 0; }
.sales-scenarios-top { align-items: end; display: flex; gap: 40px; justify-content: space-between; }
.sales-scenario-note { color: #78879a; font-size: 12px; line-height: 1.55; margin: 0; max-width: 300px; }
.sales-scenario-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 46px; }
.sales-scenario { border: 1px solid var(--na-line); border-radius: 8px; min-height: 276px; overflow: hidden; padding: 22px 22px 20px; position: relative; }
.sales-scenario::before { background: var(--na-blue); content: ""; height: 4px; left: 0; position: absolute; right: 0; top: 0; }
.sales-scenario:nth-child(2)::before { background: var(--na-coral); }
.sales-scenario:nth-child(3)::before { background: #5d62c7; }
.sales-scenario:nth-child(4)::before { background: #2d8392; }
.sales-scenario-number { color: #9eabbc; display: block; font-size: 12px; font-weight: 800; }
.sales-scenario-role { color: var(--na-blue); display: block; font-size: 12px; font-weight: 800; margin-top: 22px; text-transform: uppercase; }
.sales-scenario:nth-child(2) .sales-scenario-role { color: var(--na-coral); }
.sales-scenario:nth-child(3) .sales-scenario-role { color: #5d62c7; }
.sales-scenario:nth-child(4) .sales-scenario-role { color: #2d8392; }
.sales-scenario h3 { color: #2a384b; font-size: 18px; line-height: 1.3; margin: 8px 0 0; }
.sales-scenario p { color: #6d7d91; font-size: 13px; line-height: 1.58; margin: 11px 0 0; }
.sales-scenario a { align-items: center; color: var(--na-blue); display: inline-flex; font-size: 12px; font-weight: 800; gap: 8px; margin-top: 18px; }
.sales-scenario a svg { height: 15px; width: 15px; }

.sales-method { background: #f7f9fc; padding: 102px 0; }
.sales-method-grid { align-items: start; display: grid; gap: clamp(40px, 7vw, 110px); grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr); }
.sales-method-photo { margin: 0; }
.sales-method-photo img { aspect-ratio: 0.94 / 1; border-radius: 8px; display: block; object-fit: cover; width: 100%; }
.sales-method-copy { max-width: 620px; padding-top: 22px; }
.sales-steps { display: grid; gap: 0; list-style: none; margin: 32px 0 0; padding: 0; }
.sales-steps li { border-top: 1px solid #dce5ee; display: grid; gap: 18px; grid-template-columns: 34px 1fr; padding: 17px 0; }
.sales-steps li:last-child { border-bottom: 1px solid #dce5ee; }
.sales-steps li > span { color: var(--na-blue); font-size: 12px; font-weight: 800; padding-top: 2px; }
.sales-steps h3 { color: #2a384b; font-size: 16px; margin: 0; }
.sales-steps p { color: #6d7d91; font-size: 13px; line-height: 1.55; margin: 6px 0 0; }

.sales-system { background: #eaf0ff; padding: 102px 0; }
.sales-system-lead { max-width: 760px; }
.sales-system-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 44px; }
.sales-system-card { background: rgba(255, 255, 255, 0.8); border: 1px solid #d7e2fd; border-radius: 8px; min-height: 214px; padding: 23px; }
.sales-system-card h3 { color: #29374a; font-size: 17px; line-height: 1.32; margin: 20px 0 0; }
.sales-system-card p { color: #64758b; font-size: 13px; line-height: 1.6; margin: 9px 0 0; }

.sales-showcase { background: #fff; padding: 106px 0; }
.sales-showcase-grid { align-items: center; display: grid; gap: clamp(42px, 7vw, 108px); grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1.15fr); }
.sales-showcase-copy { max-width: 570px; }
.sales-showcase-copy .sales-primary { display: inline-flex; margin-top: 29px; }
.sales-offer-board { background: #f3f6fb; border: 1px solid #d9e3f2; border-radius: 8px; padding: 27px; }
.sales-board-top { align-items: center; display: flex; gap: 16px; justify-content: space-between; }
.sales-board-top > span { color: #76869b; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.sales-board-top i { align-items: center; color: var(--na-blue); display: inline-flex; font-size: 11px; font-style: normal; font-weight: 700; gap: 6px; }
.sales-board-top svg { height: 15px; width: 15px; }
.sales-offer-board h3 { color: #25354a; font-size: clamp(26px, 2.6vw, 37px); line-height: 1.1; margin: 52px 0 0; }
.sales-offer-board > p { color: #64758a; font-size: 15px; line-height: 1.58; margin: 14px 0 0; max-width: 530px; }
.sales-board-specs { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); margin-top: 32px; }
.sales-board-specs span { background: #fff; border: 1px solid #e0e8f2; border-radius: 6px; color: #718095; font-size: 11px; line-height: 1.4; padding: 13px; }
.sales-board-specs b { color: #33445a; display: block; font-size: 14px; margin-bottom: 3px; }
.sales-board-footer { align-items: center; border-top: 1px solid #dbe4f0; display: flex; flex-wrap: wrap; gap: 15px; justify-content: space-between; margin-top: 28px; padding-top: 18px; }
.sales-board-footer > span { align-items: center; color: #63748a; display: inline-flex; font-size: 12px; font-weight: 600; gap: 7px; }
.sales-board-footer > span svg { color: var(--na-coral); height: 16px; width: 16px; }
.sales-board-footer a { align-items: center; color: var(--na-blue); display: inline-flex; font-size: 12px; font-weight: 800; gap: 7px; }
.sales-board-footer a svg { height: 15px; width: 15px; }

.sales-price { background: #f1f5ff; padding: 104px 0; }
.sales-price-grid { align-items: center; display: grid; gap: clamp(42px, 8vw, 130px); grid-template-columns: minmax(0, 0.9fr) minmax(370px, 0.85fr); }
.sales-price-copy { max-width: 590px; }
.sales-price-trust { display: grid; gap: 11px; margin-top: 29px; }
.sales-price-trust span { align-items: center; color: #55677d; display: flex; font-size: 13px; font-weight: 600; gap: 8px; }
.sales-price-trust svg { color: var(--na-coral); height: 17px; width: 17px; }
.sales-price-card { background: var(--na-blue); border-radius: 8px; box-shadow: 0 20px 44px rgba(49, 95, 214, 0.19); color: #fff; padding: 30px; }
.sales-price-label { color: #cbd8ff; display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.sales-price-card h3 { font-size: 23px; line-height: 1.24; margin: 25px 0 0; }
.sales-price-value { display: block; font-size: clamp(39px, 4vw, 52px); line-height: 1; margin-top: 31px; }
.sales-price-period { color: #d7e1ff; display: block; font-size: 13px; margin-top: 7px; }
.sales-price-card ul { border-top: 1px solid rgba(255, 255, 255, 0.24); display: grid; gap: 11px; list-style: none; margin: 28px 0 0; padding: 23px 0 0; }
.sales-price-card li { align-items: flex-start; color: #f8faff; display: flex; font-size: 13px; gap: 9px; line-height: 1.45; }
.sales-price-card li svg { color: #9ec0ff; flex: 0 0 17px; height: 17px; width: 17px; }
.sales-price-card .sales-primary { background: #fff; border-color: #fff; box-shadow: none; color: var(--na-blue); display: flex; justify-content: center; margin-top: 28px; }
.sales-price-card .sales-primary:hover,
.sales-price-card .sales-primary:focus-visible { background: #eaf0ff; border-color: #eaf0ff; color: var(--na-blue-dark); }
.sales-price-card > p { color: #d7e1ff; font-size: 11px; line-height: 1.48; margin: 15px 0 0; }

.sales-consultation { background: #fff; padding: 104px 0; }
.sales-consultation-grid { align-items: center; display: grid; gap: clamp(40px, 7vw, 104px); grid-template-columns: minmax(360px, 0.94fr) minmax(0, 1.06fr); }
.sales-consultation-photo { margin: 0; }
.sales-consultation-photo img { aspect-ratio: 1.1 / 1; border-radius: 8px; display: block; object-fit: cover; width: 100%; }
.sales-consultation-copy { max-width: 570px; }
.sales-consultation-points { display: grid; gap: 12px; margin-top: 27px; }
.sales-consultation-points span { align-items: center; color: #506277; display: flex; font-size: 14px; font-weight: 600; gap: 9px; }
.sales-consultation-points svg { color: var(--na-coral); height: 18px; width: 18px; }
.sales-consultation-copy .sales-primary { display: inline-flex; margin-top: 30px; }

.sales-faq { background: var(--na-surface); padding: 95px 0 104px; }
.sales-faq-list { display: grid; gap: 10px; margin-top: 43px; max-width: 850px; }
.sales-faq-item { background: #fff; border: 1px solid #e0e8f1; border-radius: 8px; padding: 0 20px; }
.sales-faq-item summary { align-items: center; color: #2d3c50; cursor: pointer; display: flex; font-size: 15px; font-weight: 700; gap: 16px; justify-content: space-between; list-style: none; min-height: 63px; }
.sales-faq-item summary::-webkit-details-marker { display: none; }
.sales-faq-item summary span { color: var(--na-blue); font-size: 22px; font-weight: 400; transition: transform .18s ease; }
.sales-faq-item[open] summary span { transform: rotate(45deg); }
.sales-faq-item p { color: #6c7c91; font-size: 14px; line-height: 1.6; margin: 0; padding: 0 0 19px; }

.sales-start { background: #fff; padding: 112px 0 124px; }
.sales-start-grid { align-items: center; display: grid; gap: clamp(40px, 8vw, 130px); grid-template-columns: minmax(0, 0.94fr) minmax(365px, 0.8fr); }
.sales-start-copy { max-width: 600px; }
.sales-start-facts { display: grid; gap: 11px; margin-top: 30px; }
.sales-start-facts span { align-items: center; color: #55677c; display: flex; font-size: 13px; font-weight: 600; gap: 9px; }
.sales-start-facts svg { color: var(--na-coral); height: 18px; width: 18px; }
.sales-order-card { background: #f3f6fb; border: 1px solid #dbe4ef; border-radius: 8px; padding: 29px; }
.sales-order-card > span { color: #73849a; display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.sales-order-card h3 { color: #2c3d52; font-size: 24px; margin: 12px 0 0; }
.sales-order-price { align-items: end; border-bottom: 1px solid #dce5ee; display: flex; gap: 11px; justify-content: space-between; margin-top: 29px; padding-bottom: 19px; }
.sales-order-price strong { color: var(--na-blue); font-size: 31px; line-height: 1; }
.sales-order-price small { color: #718196; font-size: 12px; }
.sales-order-route { border-bottom: 1px solid #dce5ee; padding: 20px 0; }
.sales-order-route b { color: #42536a; font-size: 13px; }
.sales-order-route p { color: #738297; font-size: 13px; line-height: 1.55; margin: 7px 0 0; }
.sales-order-card details { border-bottom: 1px solid #dce5ee; padding: 17px 0; }
.sales-order-card summary { color: var(--na-blue); cursor: pointer; display: flex; font-size: 13px; font-weight: 700; justify-content: space-between; list-style: none; }
.sales-order-card summary::-webkit-details-marker { display: none; }
.sales-order-card summary span { font-size: 18px; font-weight: 400; line-height: .7; }
.sales-order-card details[open] summary span { transform: rotate(45deg); }
.sales-order-card details p { color: #718196; font-size: 12px; line-height: 1.5; margin: 12px 0 0; }
.sales-order-card .sales-primary { display: flex; justify-content: center; margin-top: 22px; }

body.nadelai-platform-page.product-refresh .site-footer { background: #f4f7fb; border-top: 1px solid var(--na-line); padding: 52px 0 94px; }
body.nadelai-platform-page.product-refresh .site-footer .footer-brand p { color: #617187; }
body.nadelai-platform-page.product-refresh .site-footer .footer-links a { color: #53647a; }
body.nadelai-platform-page.product-refresh .site-footer .footer-links a:hover,
body.nadelai-platform-page.product-refresh .site-footer .footer-links a:focus-visible { color: var(--na-blue); }
body.nadelai-platform-page.product-refresh .mobile-purchase-bar { background: rgba(255, 255, 255, 0.98); border-color: #dce5ee; }
body.nadelai-platform-page.product-refresh .mobile-purchase-bar > div span { color: #738297; }
body.nadelai-platform-page.product-refresh .mobile-purchase-bar > div strong { color: #24354c; }
body.nadelai-platform-page.product-refresh .mobile-purchase-link { color: var(--na-blue); }
body.nadelai-platform-page.product-refresh .cookie-notice { border-color: #dce5ee; color: #617187; }
body.nadelai-platform-page.product-refresh .cookie-notice a { color: var(--na-blue); }
body.nadelai-platform-page.product-refresh .cookie-notice button { background: var(--na-blue); border-color: var(--na-blue); }

@media (max-width: 1080px) {
  .sales-hero-grid { gap: 42px; grid-template-columns: minmax(0, 1fr) minmax(380px, .95fr); }
  .sales-benefit-grid,
  .sales-scenario-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sales-system-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  body.nadelai-platform-page.product-refresh .header-shell { min-height: 66px; }
  body.nadelai-platform-page.product-refresh .brand--nadelai .brand-mark { flex-basis: 40px; height: 40px; width: 40px; }
  body.nadelai-platform-page.product-refresh .brand--nadelai .brand-name { font-size: 30px; }
  .sales-hero { padding: 102px 0 76px; }
  .sales-hero-grid,
  .sales-method-grid,
  .sales-showcase-grid,
  .sales-price-grid,
  .sales-consultation-grid,
  .sales-start-grid { grid-template-columns: 1fr; }
  .sales-hero-copy { max-width: 680px; }
  .sales-hero-visual { max-width: 680px; }
  .sales-scenarios-top { align-items: start; flex-direction: column; gap: 18px; }
  .sales-scenario-note { max-width: 560px; }
  .sales-method-copy { padding-top: 0; }
  .sales-method-photo,
  .sales-consultation-photo { max-width: 680px; }
  .sales-price-card { max-width: 580px; }
}

@media (max-width: 560px) {
  .sales-heading h2,
  .sales-method-copy h2,
  .sales-system-lead h2,
  .sales-showcase-copy h2,
  .sales-price-copy h2,
  .sales-consultation-copy h2,
  .sales-start-copy h2 { font-size: 31px; }
  .sales-hero { padding: 92px 0 64px; }
  .sales-hero h1 { font-size: 40px; }
  .sales-hero-copy > p { font-size: 16px; }
  .sales-hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .sales-primary { justify-content: center; width: 100%; }
  .sales-secondary { justify-content: center; }
  .sales-hero-facts { display: grid; gap: 10px; }
  .sales-hero-visual img { aspect-ratio: 1 / 1.03; }
  .sales-benefits,
  .sales-scenarios,
  .sales-method,
  .sales-system,
  .sales-showcase,
  .sales-price,
  .sales-consultation,
  .sales-faq,
  .sales-start { padding: 76px 0; }
  .sales-benefit-grid,
  .sales-scenario-grid,
  .sales-system-grid { grid-template-columns: 1fr; margin-top: 34px; }
  .sales-benefit,
  .sales-scenario,
  .sales-system-card { min-height: 0; }
  .sales-method-photo img,
  .sales-consultation-photo img { aspect-ratio: 1 / 1.03; }
  .sales-board-top { align-items: start; flex-direction: column; gap: 9px; }
  .sales-offer-board { padding: 20px; }
  .sales-offer-board h3 { margin-top: 34px; }
  .sales-board-specs { grid-template-columns: 1fr; }
  .sales-price-card,
  .sales-order-card { padding: 23px 20px; }
  .sales-price-value { font-size: 42px; }
  .sales-order-price { align-items: start; flex-direction: column; gap: 7px; }
  .sales-faq-item { padding: 0 16px; }
  .sales-faq-item summary { font-size: 14px; }
}

/* End */


/* Start:/local/templates/nadelai_uni/feature-story.css?178637985863722*/
/* Feature-story direction: a warm, human product narrative built around service professionals. */
body.nadelai-platform-page.product-refresh {
  --feature-ink: #172033;
  --feature-muted: #65728a;
  --feature-line: #dce4ef;
  --feature-blue: #315fd6;
  --feature-blue-dark: #274db2;
  --feature-blue-soft: #edf3ff;
  --feature-coral: #ec765a;
  --feature-coral-soft: #fff0eb;
  --feature-mint: #e9f7f2;
  --feature-paper: #ffffff;
  background: var(--feature-paper);
  color: var(--feature-ink);
}

body.nadelai-platform-page.product-refresh .site-header { background: rgba(255, 255, 255, .97); overflow-x: clip; }
body.nadelai-platform-page.product-refresh .header-shell { min-height: 72px; }
body.nadelai-platform-page.product-refresh .main-nav { gap: 20px; }
body.nadelai-platform-page.product-refresh .main-nav a { color: #536177; font-size: 12px; }
body.nadelai-platform-page.product-refresh .main-nav a:hover,
body.nadelai-platform-page.product-refresh .main-nav a:focus-visible { color: var(--feature-blue); }

@media (min-width: 821px) and (max-width: 1024px) {
  body.nadelai-platform-page.product-refresh .main-nav { gap: 8px; }
}

body.nadelai-platform-page.product-refresh .site-header .brand--nadelai {
  gap: 10px;
  min-height: 56px;
}

body.nadelai-platform-page.product-refresh .site-header .brand--nadelai .brand-mark {
  flex-basis: 48px;
  height: 48px;
  width: 48px;
}

body.nadelai-platform-page.product-refresh .site-header .brand--nadelai .brand-name {
  font-size: 38px;
  text-shadow: none;
}

body.nadelai-platform-page.product-refresh .site-header .brand--nadelai .brand-mark-blue-structure,
body.nadelai-platform-page.product-refresh .site-footer .brand--nadelai .brand-mark-blue-structure {
  filter: drop-shadow(0 4px 12px rgba(49, 95, 174, .13));
}

body.nadelai-platform-page.product-refresh .site-header .brand--nadelai .brand-mark-core,
body.nadelai-platform-page.product-refresh .site-footer .brand--nadelai .brand-mark-core {
  filter: drop-shadow(0 4px 10px rgba(201, 98, 78, .12));
}

body.nadelai-platform-page.product-refresh .brand--nadelai .brand-mark-frame {
  fill: rgba(53, 79, 133, .045);
}

body.nadelai-platform-page.product-refresh .brand--nadelai .brand-mark-blue {
  opacity: .82;
}

body.nadelai-platform-page.product-refresh .brand--nadelai .brand-name-main {
  background: none;
  color: var(--feature-ink);
  -webkit-text-fill-color: var(--feature-ink);
}

body.nadelai-platform-page.product-refresh .brand--nadelai .brand-name-accent {
  background: none;
  color: #c9624e;
  -webkit-text-fill-color: #c9624e;
}

body.nadelai-platform-page.product-refresh .site-footer .brand--nadelai {
  gap: 9px;
  min-height: 44px;
}

body.nadelai-platform-page.product-refresh .site-footer .brand--nadelai .brand-mark {
  flex-basis: 40px;
  height: 40px;
  width: 40px;
}

body.nadelai-platform-page.product-refresh .site-footer .brand--nadelai .brand-name {
  font-size: 31px;
  text-shadow: none;
}

body.nadelai-platform-page.product-refresh .site-header .brand--nadelai:hover .brand-mark-blue-structure,
body.nadelai-platform-page.product-refresh .site-header .brand--nadelai:focus-visible .brand-mark-blue-structure {
  filter: drop-shadow(0 6px 16px rgba(49, 95, 174, .18));
}

body.nadelai-platform-page.product-refresh .site-header .brand--nadelai:hover .brand-mark-core,
body.nadelai-platform-page.product-refresh .site-header .brand--nadelai:focus-visible .brand-mark-core {
  filter: drop-shadow(0 6px 14px rgba(201, 98, 78, .16));
}

@media (max-width: 520px) {
  body.nadelai-platform-page.product-refresh .site-header .brand--nadelai {
    gap: 8px;
    min-height: 44px;
  }

  body.nadelai-platform-page.product-refresh .site-header .brand--nadelai .brand-mark {
    flex-basis: 38px;
    height: 38px;
    width: 38px;
  }

  body.nadelai-platform-page.product-refresh .site-header .brand--nadelai .brand-name {
    font-size: 30px;
  }
}

body.nadelai-platform-page.product-refresh .btn,
body.nadelai-platform-page.product-refresh .mobile-purchase-main {
  background: var(--feature-blue);
  border-color: var(--feature-blue);
  box-shadow: 0 10px 22px rgba(49, 95, 214, .18);
}
body.nadelai-platform-page.product-refresh .btn:hover,
body.nadelai-platform-page.product-refresh .btn:focus-visible,
body.nadelai-platform-page.product-refresh .mobile-purchase-main:hover,
body.nadelai-platform-page.product-refresh .mobile-purchase-main:focus-visible {
  background: var(--feature-blue-dark);
  border-color: var(--feature-blue-dark);
}

.feature-hero,
.feature-team,
.feature-interviewer,
.feature-site,
.feature-booking,
.feature-clients,
.feature-route,
.feature-stories,
.feature-consultation,
.feature-faq,
.feature-start { overflow: hidden; }

.feature-kicker {
  color: var(--feature-blue);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.feature-section-heading,
.feature-team-heading { max-width: 790px; }
.feature-section-heading h2,
.feature-team-heading h2,
.feature-site-copy h2,
.feature-clients-copy h2,
.feature-consultation-copy h2,
.feature-start-copy h2 {
  color: var(--feature-ink);
  font-size: clamp(32px, 3.35vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  margin: 15px 0 0;
  text-wrap: balance;
}
.feature-section-heading > p,
.feature-team-heading > p,
.feature-site-copy > p,
.feature-clients-copy > p,
.feature-consultation-copy > p,
.feature-start-copy > p {
  color: var(--feature-muted);
  font-size: 17px;
  line-height: 1.62;
  margin: 20px 0 0;
}
.feature-primary { align-items: center; display: inline-flex; justify-content: center; min-height: 51px; padding: 0 22px; }
.feature-link { align-items: center; color: var(--feature-blue); display: inline-flex; font-size: 14px; font-weight: 800; gap: 9px; }
.feature-link svg { height: 17px; transition: transform .18s ease; width: 17px; }
.feature-link:hover svg,
.feature-link:focus-visible svg { transform: translateX(4px); }

.feature-hero { background: #fff; padding: 116px 0 88px; }
.feature-hero-grid { align-items: center; display: grid; gap: clamp(42px, 6vw, 96px); grid-template-columns: minmax(0, .93fr) minmax(430px, 1.07fr); }
.feature-hero-copy { max-width: 610px; }
.feature-hero h1 { color: var(--feature-ink); font-size: clamp(42px, 4vw, 60px); font-weight: 700; line-height: 1.06; margin: 17px 0 0; text-wrap: balance; }
.feature-hero h1 em { color: var(--feature-blue); font-style: normal; }
.feature-hero-copy > p { color: #5d6b80; font-size: 18px; line-height: 1.58; margin: 24px 0 0; max-width: 580px; }
.feature-hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 16px 25px; margin-top: 30px; }
.feature-hero-points { display: flex; flex-wrap: wrap; gap: 11px 17px; margin-top: 28px; }
.feature-hero-points span { align-items: center; color: #5b6a80; display: inline-flex; font-size: 12px; font-weight: 650; gap: 7px; }
.feature-hero-points svg { color: var(--feature-coral); height: 16px; width: 16px; }
.feature-hero-visual { margin: 0; }
.feature-hero-visual figure { margin: 0; }
.feature-hero-visual figure img { aspect-ratio: 1.18 / 1; border-radius: 8px; display: block; object-fit: cover; object-position: center; width: 100%; }
.feature-hero-service { background: #fff; border: 1px solid var(--feature-line); border-radius: 8px; margin: 14px 0 0 auto; max-width: 430px; padding: 17px 19px; }
.feature-hero-service > span { color: var(--feature-coral); display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.feature-hero-service strong { color: #26364d; display: block; font-size: 17px; line-height: 1.25; margin-top: 5px; }
.feature-hero-service p { color: #68778b; font-size: 12px; line-height: 1.5; margin: 7px 0 0; }

.feature-team { background: #f5f8ff; padding: 104px 0 108px; }
.feature-team-heading { margin: 0 auto; max-width: 920px; text-align: center; }
.feature-team-heading h2 { margin-left: auto; margin-right: auto; max-width: 885px; }
.feature-team-heading > p { margin-left: auto; margin-right: auto; max-width: 790px; }
.team-value-points { display: flex; flex-wrap: wrap; gap: 10px 25px; justify-content: center; margin-top: 28px; }
.team-value-points span { align-items: center; color: #526783; display: inline-flex; font-size: 13px; font-weight: 700; gap: 8px; line-height: 1.4; }
.team-value-points span::before { background: #e7785c; border-radius: 50%; content: ''; flex: 0 0 7px; height: 7px; width: 7px; }
.team-experience { align-items: stretch; display: grid; gap: clamp(24px, 3.4vw, 46px); grid-template-columns: minmax(290px, .8fr) minmax(0, 1.2fr); margin-top: 46px; }
.team-practice { background: #fff; border: 1px solid #d8e2f3; border-radius: 8px; box-shadow: 0 20px 42px rgba(36, 58, 105, .1); overflow: hidden; }
.team-practice figure { aspect-ratio: 1.1 / .98; margin: 0; overflow: hidden; position: relative; }
.team-practice figure::after { background: linear-gradient(180deg, rgba(31, 53, 98, 0), rgba(31, 53, 98, .22)); content: ''; inset: 0; pointer-events: none; position: absolute; }
.team-practice figure img { display: block; height: 100%; object-fit: cover; object-position: center 52%; width: 100%; }
.team-practice figcaption { background: rgba(255, 255, 255, .94); border: 1px solid rgba(214, 226, 245, .96); border-radius: 4px; bottom: 16px; color: #345691; font-size: 11px; font-weight: 800; left: 16px; padding: 8px 10px; position: absolute; text-transform: uppercase; z-index: 1; }
.team-practice-copy { padding: 27px 27px 29px; }
.team-practice-copy > span,
.team-console-head span,
.team-active-copy > span,
.team-outcome span { color: #5570ad; display: block; font-size: 10px; font-weight: 800; line-height: 1.3; text-transform: uppercase; }
.team-practice-copy h3 { color: #233a66; font-size: clamp(27px, 2.25vw, 36px); line-height: 1.08; margin: 10px 0 0; text-wrap: balance; }
.team-practice-copy p { color: #5c6f88; font-size: 15px; line-height: 1.56; margin: 16px 0 0; }
.team-practice-copy b { align-items: center; color: #38548f; display: inline-flex; font-size: 12px; gap: 8px; margin-top: 23px; }
.team-practice-copy b i { background: #e7785c; border-radius: 50%; height: 8px; width: 8px; }
.team-console { background: #fff; border: 1px solid #d8e2f3; border-radius: 8px; box-shadow: 0 20px 42px rgba(36, 58, 105, .1); min-width: 0; overflow: hidden; padding: clamp(20px, 2.35vw, 30px); position: relative; }
.team-console::before { background: #3d68c7; content: ''; height: 3px; left: 0; position: absolute; top: 0; width: 148px; }
.team-console-head { align-items: flex-start; border-bottom: 1px solid #e3eaf6; display: flex; gap: 20px; justify-content: space-between; padding-bottom: 20px; }
.team-console-head strong { color: #263b60; display: block; font-size: clamp(19px, 1.8vw, 25px); line-height: 1.18; margin-top: 7px; max-width: 420px; text-wrap: balance; }
.team-console-head small { color: #5674b3; font-size: 11px; font-weight: 800; padding-top: 4px; white-space: nowrap; }
.team-active { align-items: center; display: grid; gap: clamp(20px, 2.5vw, 36px); grid-template-columns: minmax(176px, .75fr) minmax(0, 1.25fr); padding: 25px 0 27px; }
.team-active-visual { align-self: stretch; background: #edf3ff; border: 1px solid #d9e5fa; border-radius: 6px; min-height: 242px; overflow: hidden; position: relative; }
.team-active-visual::after { border: 1px solid rgba(74, 115, 203, .28); border-radius: 50%; content: ''; height: 48px; position: absolute; right: -14px; top: -14px; width: 48px; }
.team-active-visual img { display: block; height: 100%; object-fit: cover; object-position: center 56%; width: 100%; }
.team-active-copy h3 { color: #263b60; font-size: clamp(23px, 2.15vw, 32px); line-height: 1.12; margin: 9px 0 0; text-wrap: balance; }
.team-active-copy > p { color: #5e6f86; font-size: 14px; line-height: 1.56; margin: 13px 0 0; max-width: 430px; }
.team-active-copy > div { border-left: 3px solid #e7785c; margin-top: 20px; padding-left: 13px; }
.team-active-copy > div b { color: #4e6ca8; display: block; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.team-active-copy > div strong { color: #314a77; display: block; font-size: 14px; line-height: 1.38; margin-top: 5px; }
.team-role-tabs { border-top: 1px solid #e3eaf6; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.team-role-tab { align-items: center; background: transparent; border: 0; border-bottom: 1px solid #e3eaf6; color: #405577; cursor: pointer; display: grid; font: inherit; gap: 10px; grid-template-columns: 25px minmax(0, 1fr) 16px; min-height: 63px; padding: 12px 10px 12px 0; text-align: left; transition: background-color .24s ease, color .24s ease, padding .24s ease; }
.team-role-tab:nth-child(odd) { border-right: 1px solid #e3eaf6; padding-right: 18px; }
.team-role-tab:nth-child(even) { padding-left: 18px; }
.team-role-tab:nth-last-child(-n + 2) { border-bottom: 0; }
.team-role-tab > span { color: #8294b5; font-size: 10px; font-weight: 800; }
.team-role-tab > strong { font-size: 13px; font-weight: 800; line-height: 1.25; }
.team-role-tab svg { color: #8ca0c4; height: 15px; width: 15px; }
.team-role-tab:hover,
.team-role-tab:focus-visible,
.team-role-tab.is-active { color: #285bc5; outline: 0; }
.team-role-tab:hover > span,
.team-role-tab:focus-visible > span,
.team-role-tab.is-active > span { color: #e7785c; }
.team-role-tab:hover svg,
.team-role-tab:focus-visible svg,
.team-role-tab.is-active svg { color: #315fd0; transform: translateX(2px); }
.team-role-tab.is-active { background: #f4f7ff; box-shadow: inset 3px 0 0 #e7785c; padding-left: 12px; }
.team-role-tab:nth-child(even).is-active { padding-left: 27px; }
.team-outcome { align-items: center; border-top: 1px solid #d7e2f4; display: flex; gap: 32px; justify-content: space-between; margin-top: 44px; padding-top: 29px; }
.team-outcome strong { color: #283d61; display: block; font-size: clamp(20px, 2vw, 28px); line-height: 1.18; margin-top: 7px; max-width: 720px; text-wrap: balance; }
.team-outcome .feature-primary { flex: 0 0 auto; }

@keyframes team-role-change {
  0% { opacity: .35; transform: translate3d(0, 8px, 0) scale(.985); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@media (prefers-reduced-motion: no-preference) {
  .team-practice figure img { animation: feature-float 7s ease-in-out 1s infinite; }
  .team-active.is-changing .team-active-visual img,
  .team-active.is-changing .team-active-copy { animation: team-role-change .48s cubic-bezier(.2, .72, .2, 1) both; }
  .team-active.is-changing .team-active-copy { animation-delay: .05s; }
}

@media (max-width: 900px) {
  .team-experience { grid-template-columns: 1fr; max-width: 680px; }
  .team-practice { display: grid; grid-template-columns: minmax(220px, .78fr) minmax(0, 1.22fr); }
  .team-practice figure { aspect-ratio: auto; min-height: 310px; }
  .team-practice-copy { align-self: center; }
}

@media (max-width: 620px) {
  .feature-team { padding: 76px 0; }
  .team-value-points { align-items: flex-start; display: grid; gap: 10px; justify-content: stretch; margin-top: 24px; text-align: left; }
  .team-experience { gap: 20px; margin-top: 34px; }
  .team-practice { display: block; }
  .team-practice figure { aspect-ratio: 1.08 / .94; min-height: 0; }
  .team-practice-copy { padding: 23px 20px 24px; }
  .team-console { padding: 20px; }
  .team-console-head { gap: 14px; padding-bottom: 17px; }
  .team-console-head strong { font-size: 20px; }
  .team-active { grid-template-columns: 1fr; padding: 19px 0 22px; }
  .team-active-visual { aspect-ratio: 1.26 / .9; min-height: 0; }
  .team-active-copy h3 { font-size: 27px; }
  .team-role-tabs { grid-template-columns: 1fr; }
  .team-role-tab,
  .team-role-tab:nth-child(odd),
  .team-role-tab:nth-child(even),
  .team-role-tab:nth-last-child(-n + 2) { border-bottom: 1px solid #e3eaf6; border-right: 0; padding-left: 0; padding-right: 0; }
  .team-role-tab.is-active,
  .team-role-tab:nth-child(even).is-active { padding-left: 12px; }
  .team-role-tab:last-child { border-bottom: 0; }
  .team-outcome { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 34px; padding-top: 25px; }
  .team-outcome .feature-primary { width: 100%; }
}

.feature-interviewer { background: var(--feature-blue-soft); padding: 92px 0 98px; }
.interviewer-showcase { align-items: stretch; display: grid; gap: clamp(26px, 5vw, 70px); grid-template-columns: minmax(0, 1.18fr) minmax(300px, .75fr); margin-top: 43px; }
.interviewer-board { background: #213f91; border: 1px solid #3159c5; border-radius: 8px; box-shadow: 0 24px 48px rgba(37, 65, 147, .18); color: #fff; overflow: hidden; padding: 25px; }
.interviewer-board-top { align-items: center; border-bottom: 1px solid rgba(255, 255, 255, .2); display: flex; font-size: 13px; font-weight: 750; gap: 8px; justify-content: space-between; padding-bottom: 16px; }
.interviewer-board-top > span { align-items: center; display: inline-flex; gap: 8px; }
.interviewer-board-top svg { color: #9ec0ff; height: 19px; width: 19px; }
.interviewer-board-top small { color: #cbd8ff; font-size: 10px; font-weight: 650; }
.interviewer-thread { display: grid; gap: 12px; padding: 25px 0 19px; }
.interviewer-message { border-radius: 7px; max-width: 82%; padding: 13px 15px; }
.interviewer-message--ai { background: rgba(255, 255, 255, .14); }
.interviewer-message--user { background: #fff; color: #2e4694; justify-self: end; }
.interviewer-message b { display: block; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.interviewer-message p { font-size: 14px; line-height: 1.45; margin: 5px 0 0; }
.interviewer-input { align-items: center; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .24); border-radius: 6px; color: #cfdcff; display: flex; font-size: 12px; justify-content: space-between; padding: 13px 14px; }
.interviewer-input svg { color: #fff; height: 17px; width: 17px; }
.interviewer-summary { align-self: center; padding: 18px 0; }
.interviewer-summary h3 { color: #25354c; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.14; margin: 14px 0 0; text-wrap: balance; }
.interviewer-summary-list { display: grid; gap: 12px; margin-top: 25px; }
.interviewer-summary-list span { align-items: center; color: #4d5d73; display: flex; font-size: 14px; font-weight: 650; gap: 9px; }
.interviewer-summary-list svg { color: var(--feature-coral); height: 18px; width: 18px; }
.interviewer-summary .feature-link { margin-top: 27px; }
.interview-result-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 38px; }
.interview-result { background: rgba(255, 255, 255, .86); border: 1px solid #d7e3fb; border-radius: 8px; min-height: 212px; padding: 22px; }
.interview-result > span { align-items: center; background: #fff; border: 1px solid #d5e2ff; border-radius: 7px; color: var(--feature-blue); display: inline-flex; height: 41px; justify-content: center; width: 41px; }
.interview-result svg { height: 20px; width: 20px; }
.interview-result h3 { color: #28384f; font-size: 17px; line-height: 1.28; margin: 21px 0 0; }
.interview-result p { color: #6c7a90; font-size: 13px; line-height: 1.56; margin: 9px 0 0; }

.feature-site { background: #fff; padding: 105px 0; }
.feature-site-grid { align-items: center; display: grid; gap: clamp(44px, 7vw, 108px); grid-template-columns: minmax(0, .83fr) minmax(410px, 1.17fr); }
.feature-site-copy { max-width: 565px; }
.feature-site-copy ul { display: grid; gap: 13px; list-style: none; margin: 28px 0 0; padding: 0; }
.feature-site-copy li { align-items: flex-start; color: #526177; display: flex; font-size: 14px; font-weight: 600; gap: 9px; line-height: 1.45; }
.feature-site-copy li svg { color: var(--feature-coral); flex: 0 0 18px; height: 18px; width: 18px; }
.feature-site-copy .feature-primary { margin-top: 29px; }
.feature-site-preview { background: #f3f6ff; border: 1px solid #d8e2f7; border-radius: 8px; box-shadow: 0 22px 44px rgba(25, 47, 101, .09); overflow: hidden; padding: 15px; }
.site-preview-nav { align-items: center; color: #75839a; display: flex; font-size: 10px; gap: 16px; padding: 5px 8px 17px; }
.site-preview-nav b { color: #263756; font-size: 14px; margin-right: auto; }
.site-preview-hero { align-items: stretch; background: #fff; border: 1px solid #e0e8f5; display: grid; grid-template-columns: .82fr 1.18fr; overflow: hidden; }
.site-preview-hero img { display: block; height: 100%; min-height: 265px; object-fit: cover; object-position: center top; width: 100%; }
.site-preview-hero > div { display: flex; flex-direction: column; justify-content: center; padding: 31px; }
.site-preview-hero > div > span { color: var(--feature-coral); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.site-preview-hero h3 { color: #25365a; font-size: clamp(24px, 2.5vw, 36px); line-height: 1.06; margin: 11px 0 0; }
.site-preview-hero p { color: #68758a; font-size: 13px; line-height: 1.55; margin: 13px 0 0; }
.site-preview-hero a { align-items: center; color: var(--feature-blue); display: inline-flex; font-size: 12px; font-weight: 800; gap: 8px; margin-top: 23px; }
.site-preview-hero a svg { height: 15px; width: 15px; }
.site-preview-services { display: grid; gap: 9px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 11px; }
.site-preview-services article { background: #fff; border: 1px solid #e0e8f5; min-height: 100px; padding: 14px; }
.site-preview-services span { color: #8490a2; display: block; font-size: 10px; }
.site-preview-services b { color: #304158; display: block; font-size: 13px; line-height: 1.25; margin-top: 7px; }
.site-preview-services strong { color: var(--feature-blue); display: block; font-size: 12px; margin-top: 10px; }

.feature-booking { background: #f8fbff; padding: 96px 0 102px; }
.booking-stage { align-items: center; display: grid; gap: clamp(22px, 4vw, 54px); grid-template-columns: minmax(270px, 1fr) minmax(218px, .63fr) minmax(260px, .85fr); margin-top: 43px; }
.booking-calendar { background: #fff; border: 1px solid #dce5f2; border-radius: 8px; box-shadow: 0 18px 38px rgba(32, 52, 91, .07); padding: 22px; }
.booking-calendar-head { align-items: center; color: #7c899e; display: flex; font-size: 11px; justify-content: space-between; }
.booking-calendar-head strong { color: #2b3b53; font-size: 15px; }
.booking-calendar-head i { color: var(--feature-blue); display: inline-flex; }
.booking-calendar-head svg { height: 18px; width: 18px; }
.booking-days { display: grid; gap: 6px; grid-template-columns: repeat(7, 1fr); margin-top: 21px; text-align: center; }
.booking-days span { color: #8b97a8; font-size: 9px; font-weight: 700; }
.booking-days b { align-items: center; color: #3d4d63; display: flex; font-size: 11px; font-weight: 600; height: 30px; justify-content: center; }
.booking-days .booking-day--active { background: var(--feature-blue); border-radius: 50%; color: #fff; }
.booking-slots { display: grid; gap: 7px; grid-template-columns: repeat(4, 1fr); margin-top: 20px; }
.booking-slots span { border: 1px solid #d9e3f0; border-radius: 5px; color: #4c5c71; font-size: 11px; font-weight: 700; padding: 9px 3px; text-align: center; }
.booking-slots .booking-slot--selected { background: var(--feature-coral-soft); border-color: #f2b2a2; color: #c55339; }
.booking-service-line { align-items: center; border-top: 1px solid #e1e8f1; color: #5c6b7e; display: flex; font-size: 11px; gap: 7px; justify-content: space-between; margin-top: 20px; padding-top: 15px; }
.booking-service-line > span { align-items: center; display: inline-flex; gap: 6px; }
.booking-service-line svg { color: var(--feature-coral); height: 16px; width: 16px; }
.booking-service-line strong { color: #304158; }
.booking-phone { align-self: end; background: #1d2941; border: 7px solid #1d2941; border-radius: 23px; box-shadow: 0 18px 35px rgba(24, 39, 68, .22); margin: 0 auto; max-width: 190px; min-height: 348px; padding: 9px; position: relative; width: 100%; }
.booking-phone::before { background: #1d2941; border-radius: 0 0 9px 9px; content: ''; height: 13px; left: 50%; position: absolute; top: -1px; transform: translateX(-50%); width: 78px; z-index: 1; }
.booking-phone-top { color: #7a8aa3; display: flex; font-size: 9px; font-weight: 700; justify-content: space-between; padding: 5px 5px 15px; }
.booking-phone-top i { background: #7a8aa3; border-radius: 50%; height: 7px; width: 7px; }
.booking-phone-chat { background: #f6f8fc; border-radius: 14px; display: grid; gap: 7px; margin-top: 24px; padding: 17px 13px; }
.booking-phone-chat small { color: var(--feature-blue); font-size: 9px; font-weight: 800; }
.booking-phone-chat p { color: #2f4059; font-size: 12px; font-weight: 750; line-height: 1.35; margin: 0; }
.booking-phone-chat b { color: #53647a; font-size: 10px; line-height: 1.4; }
.booking-phone-chat span { color: #7a899d; font-size: 9px; line-height: 1.45; }
.booking-phone-home { background: #718099; border-radius: 3px; bottom: 8px; height: 3px; left: 50%; position: absolute; transform: translateX(-50%); width: 50px; }
.booking-copy h3 { color: #28384f; font-size: clamp(25px, 2.5vw, 35px); line-height: 1.1; margin: 12px 0 0; text-wrap: balance; }
.booking-copy > div { align-items: flex-start; display: flex; gap: 12px; margin-top: 21px; }
.booking-copy > div > span { align-items: center; background: #fff; border: 1px solid #dce6f3; border-radius: 7px; color: var(--feature-blue); display: inline-flex; flex: 0 0 39px; height: 39px; justify-content: center; }
.booking-copy svg { height: 18px; width: 18px; }
.booking-copy p { color: #6a788b; font-size: 13px; line-height: 1.5; margin: 0; }
.booking-copy p b { color: #33445a; display: block; font-size: 14px; margin-bottom: 3px; }

.feature-clients { background: #fff; padding: 104px 0; }
.feature-clients-grid { align-items: center; display: grid; gap: clamp(42px, 7vw, 106px); grid-template-columns: minmax(0, .82fr) minmax(400px, 1.18fr); }
.feature-clients-copy { max-width: 570px; }
.feature-clients-copy .feature-link { margin-top: 28px; }
.client-workspace { background: #f6f8fd; border: 1px solid #dce4f0; border-radius: 8px; box-shadow: 0 20px 42px rgba(38, 55, 92, .08); padding: 20px; }
.client-workspace-top { align-items: center; color: #33445b; display: flex; font-size: 14px; font-weight: 800; justify-content: space-between; }
.client-workspace-top b { align-items: center; background: #e9f7f2; border: 1px solid #c9eadf; color: #347460; display: inline-flex; font-size: 10px; font-weight: 800; gap: 5px; padding: 7px 9px; }
.client-workspace-top svg { height: 14px; width: 14px; }
.client-profile { align-items: center; background: #fff; border: 1px solid #e0e7f1; display: flex; gap: 12px; margin-top: 17px; padding: 15px; }
.client-profile > span { align-items: center; background: #ffe5da; border-radius: 50%; color: #c55d41; display: inline-flex; flex: 0 0 39px; font-size: 12px; font-weight: 800; height: 39px; justify-content: center; }
.client-profile strong { color: #35455c; display: block; font-size: 14px; }
.client-profile small { color: #7c899a; display: block; font-size: 11px; margin-top: 4px; }
.client-profile i { background: #eef3ff; color: var(--feature-blue); font-size: 10px; font-style: normal; font-weight: 800; margin-left: auto; padding: 6px 8px; }
.client-timeline { background: #fff; border: 1px solid #e0e7f1; border-top: 0; padding: 6px 16px; }
.client-timeline > div { display: grid; gap: 16px; grid-template-columns: 53px 1fr; padding: 15px 0; position: relative; }
.client-timeline > div + div { border-top: 1px solid #e9eef5; }
.client-timeline > div > span { color: #8290a1; font-size: 10px; font-weight: 800; }
.client-timeline p { color: #748196; font-size: 11px; line-height: 1.48; margin: 0; }
.client-timeline p b { color: #3c4d65; display: block; font-size: 12px; margin-bottom: 2px; }
.client-workspace-footer { align-items: center; color: #69788c; display: flex; font-size: 11px; gap: 8px; justify-content: space-between; padding: 17px 3px 3px; }
.client-workspace-footer > span { align-items: center; display: inline-flex; gap: 6px; }
.client-workspace-footer svg { color: var(--feature-coral); height: 15px; width: 15px; }
.client-workspace-footer a { align-items: center; color: var(--feature-blue); display: inline-flex; font-size: 11px; font-weight: 800; gap: 6px; }

.feature-route { background: #fff5f1; padding: 89px 0 97px; }
.feature-route .feature-kicker { color: #c75b42; }
.route-map { display: grid; gap: 0; grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 41px; }
.route-map article { background: rgba(255, 255, 255, .78); border: 1px solid #f0d9d2; min-height: 216px; padding: 20px; position: relative; }
.route-map article + article { border-left: 0; }
.route-map article > span { align-items: center; background: var(--feature-coral-soft); border-radius: 7px; color: var(--feature-coral); display: inline-flex; height: 39px; justify-content: center; width: 39px; }
.route-map article:nth-child(2) > span { background: #eef3ff; color: var(--feature-blue); }
.route-map article:nth-child(3) > span { background: #eff8f5; color: #3f8b75; }
.route-map article:nth-child(4) > span { background: #fff2d9; color: #bd7b21; }
.route-map article:nth-child(5) > span { background: #f2efff; color: #725ac0; }
.route-map svg { height: 19px; width: 19px; }
.route-map b { color: #334257; display: block; font-size: 15px; line-height: 1.3; margin-top: 28px; }
.route-map p { color: #758196; font-size: 12px; line-height: 1.5; margin: 8px 0 0; }

.feature-stories { background: #fff; padding: 108px 0; }
.feature-story-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 44px; }
.feature-story-card { background: #fff; border: 1px solid #dfe6ee; border-radius: 8px; display: grid; grid-template-columns: minmax(180px, .78fr) minmax(0, 1.22fr); min-height: 310px; overflow: hidden; }
.feature-story-card > img { display: block; height: 100%; min-height: 310px; object-fit: cover; object-position: center; width: 100%; }
.feature-story-copy { display: flex; flex-direction: column; padding: 27px 25px 23px; }
.feature-story-copy > span { color: var(--feature-coral); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.feature-story-card:nth-child(2n) .feature-story-copy > span { color: var(--feature-blue); }
.feature-story-copy h3 { color: #2a3a51; font-size: clamp(20px, 2vw, 26px); line-height: 1.12; margin: 10px 0 0; }
.feature-story-copy p { color: #6a788c; font-size: 13px; line-height: 1.55; margin: 13px 0 0; }
.feature-story-copy small { color: #7b889a; font-size: 10px; font-weight: 700; line-height: 1.42; margin-top: auto; padding-top: 16px; text-transform: uppercase; }
.feature-story-copy a { align-items: center; color: var(--feature-blue); display: inline-flex; font-size: 12px; font-weight: 800; gap: 7px; margin-top: 15px; }
.feature-story-copy a svg { height: 15px; width: 15px; }

.feature-consultation { background: #edf3ff; padding: 94px 0; }
.feature-consultation-grid { align-items: center; display: grid; gap: clamp(42px, 7vw, 106px); grid-template-columns: minmax(360px, .93fr) minmax(0, 1.07fr); }
.feature-consultation figure { margin: 0; }
.feature-consultation figure img { aspect-ratio: 1.12 / 1; border-radius: 8px; display: block; object-fit: cover; width: 100%; }
.feature-consultation-copy { max-width: 580px; }
.feature-consultation-list { display: grid; gap: 12px; margin-top: 27px; }
.feature-consultation-list span { align-items: center; color: #536278; display: flex; font-size: 14px; font-weight: 650; gap: 9px; }
.feature-consultation-list svg { color: var(--feature-coral); height: 18px; width: 18px; }
.feature-consultation-copy .feature-primary { margin-top: 29px; }

.feature-faq { background: #fff; padding: 96px 0; }
.feature-faq-list { display: grid; gap: 10px; margin-top: 41px; max-width: 860px; }
.feature-faq-item { background: #f9fbff; border: 1px solid #dfe7f2; border-radius: 8px; padding: 0 20px; }
.feature-faq-item summary { align-items: center; color: #2f4058; cursor: pointer; display: flex; font-size: 15px; font-weight: 750; gap: 16px; justify-content: space-between; list-style: none; min-height: 63px; }
.feature-faq-item summary::-webkit-details-marker { display: none; }
.feature-faq-item summary > span { color: var(--feature-blue); font-size: 23px; font-weight: 400; transition: transform .18s ease; }
.feature-faq-item[open] summary > span { transform: rotate(45deg); }
.feature-faq-item p { color: #6c7a8e; font-size: 14px; line-height: 1.58; margin: 0; padding: 0 0 19px; }

.feature-start { background: #fff; padding: 104px 0 118px; }
.feature-start-grid { align-items: center; display: grid; gap: clamp(42px, 8vw, 130px); grid-template-columns: minmax(0, .94fr) minmax(370px, .8fr); }
.feature-start-copy { max-width: 590px; }
.feature-start-copy > div { display: grid; gap: 11px; margin-top: 29px; }
.feature-start-copy > div span { align-items: center; color: #55647a; display: flex; font-size: 13px; font-weight: 650; gap: 9px; }
.feature-start-copy svg { color: var(--feature-coral); height: 18px; width: 18px; }
.feature-order-card { background: #274cae; border: 1px solid #315bc5; border-radius: 8px; box-shadow: 0 23px 45px rgba(32, 61, 145, .22); color: #fff; padding: 29px; }
.feature-order-card > span { color: #cddaff; display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.feature-order-card h3 { font-size: 23px; line-height: 1.23; margin: 15px 0 0; }
.feature-order-card > strong { display: block; font-size: clamp(39px, 4vw, 52px); line-height: 1; margin-top: 29px; }
.feature-order-card > small { color: #cfdbff; display: block; font-size: 12px; margin-top: 7px; }
.feature-order-card ul { border-top: 1px solid rgba(255, 255, 255, .24); display: grid; gap: 11px; list-style: none; margin: 25px 0 0; padding: 22px 0 0; }
.feature-order-card li { align-items: flex-start; color: #f6f8ff; display: flex; font-size: 13px; gap: 9px; line-height: 1.45; }
.feature-order-card li svg { color: #9ec0ff; flex: 0 0 17px; height: 17px; width: 17px; }
.feature-order-card details { border-top: 1px solid rgba(255, 255, 255, .24); margin-top: 21px; padding-top: 17px; }
.feature-order-card summary { color: #fff; cursor: pointer; display: flex; font-size: 12px; font-weight: 800; justify-content: space-between; list-style: none; }
.feature-order-card summary::-webkit-details-marker { display: none; }
.feature-order-card summary i { color: #cbd9ff; font-size: 19px; font-style: normal; font-weight: 400; line-height: .7; }
.feature-order-card details[open] summary i { transform: rotate(45deg); }
.feature-order-card details p { color: #cedaff; font-size: 11px; line-height: 1.48; margin: 11px 0 0; }
.feature-order-card .feature-primary { background: #fff; border-color: #fff; box-shadow: none; color: var(--feature-blue); display: flex; margin-top: 22px; width: 100%; }
.feature-order-card .feature-primary:hover,
.feature-order-card .feature-primary:focus-visible { background: #e8efff; border-color: #e8efff; color: var(--feature-blue-dark); }

body.nadelai-platform-page.product-refresh .site-footer { background: #f5f8fd; border-top: 1px solid var(--feature-line); }
body.nadelai-platform-page.product-refresh .site-footer .footer-brand p { color: #64738a; }
body.nadelai-platform-page.product-refresh .site-footer .footer-links a { color: #536278; }
body.nadelai-platform-page.product-refresh .site-footer .footer-links a:hover,
body.nadelai-platform-page.product-refresh .site-footer .footer-links a:focus-visible { color: var(--feature-blue); }
body.nadelai-platform-page.product-refresh .mobile-purchase-bar { border-color: var(--feature-line); }
body.nadelai-platform-page.product-refresh .mobile-purchase-link { color: var(--feature-blue); }
body.nadelai-platform-page.product-refresh .cookie-notice {
  background: rgba(255, 255, 255, .97);
  border-color: var(--feature-line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(30, 46, 78, .13);
}
body.nadelai-platform-page.product-refresh .cookie-notice p { color: #68768b; }
body.nadelai-platform-page.product-refresh .cookie-notice a { color: var(--feature-blue); font-weight: 700; }
body.nadelai-platform-page.product-refresh .cookie-notice button {
  background: var(--feature-blue);
  border-color: var(--feature-blue);
  border-radius: 6px;
}

@media (max-width: 1100px) {
  .feature-hero-grid { gap: 46px; grid-template-columns: minmax(0, 1fr) minmax(380px, .95fr); }
  .feature-team-map { grid-template-columns: minmax(245px, .76fr) minmax(0, 1.24fr); }
  .team-role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .interview-result-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-story-card { grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr); }
  .feature-story-copy { padding: 22px 20px; }
}

@media (max-width: 820px) {
  .feature-hero { padding: 97px 0 76px; }
  .feature-hero-grid,
  .feature-team-map,
  .feature-site-grid,
  .feature-clients-grid,
  .feature-consultation-grid,
  .feature-start-grid { grid-template-columns: 1fr; }
  .feature-hero-copy,
  .feature-team-heading,
  .feature-hero-visual,
  .feature-site-copy,
  .feature-site-preview,
  .feature-clients-copy,
  .client-workspace,
  .feature-consultation figure,
  .feature-consultation-copy { max-width: 680px; }
  .interviewer-showcase { grid-template-columns: 1fr; }
  .team-master { min-height: 0; }
  .interviewer-summary { padding: 0; }
  .booking-stage { grid-template-columns: minmax(0, 1fr) 185px; }
  .booking-copy { grid-column: 1 / -1; max-width: 600px; }
  .route-map { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .route-map article + article { border-left: 1px solid #f0d9d2; }
  .route-map article:nth-child(4),
  .route-map article:nth-child(5) { border-top: 0; }
}

@media (max-width: 560px) {
  body.nadelai-platform-page.product-refresh .header-shell { min-height: 66px; }
  .feature-section-heading h2,
  .feature-team-heading h2,
  .feature-site-copy h2,
  .feature-clients-copy h2,
  .feature-consultation-copy h2,
  .feature-start-copy h2 { font-size: 31px; }
  .feature-hero { padding: 91px 0 68px; }
  .feature-hero h1 { font-size: 40px; }
  .feature-hero-copy > p,
  .feature-team-heading > p,
  .feature-section-heading > p,
  .feature-site-copy > p,
  .feature-clients-copy > p,
  .feature-consultation-copy > p,
  .feature-start-copy > p { font-size: 16px; }
  .feature-hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .feature-primary { width: 100%; }
  .feature-link { justify-content: center; }
  .feature-hero-points { display: grid; gap: 10px; }
  .feature-hero-visual figure img { aspect-ratio: 1 / 1.05; }
  .feature-hero-service { max-width: none; }
  .feature-interviewer,
  .feature-team,
  .feature-site,
  .feature-booking,
  .feature-clients,
  .feature-route,
  .feature-stories,
  .feature-consultation,
  .feature-faq,
  .feature-start { padding: 74px 0; }
  .interviewer-showcase { margin-top: 34px; }
  .feature-team-map { margin-top: 34px; }
  .team-master-copy { padding: 23px 20px 24px; }
  .team-role-grid { grid-template-columns: 1fr; }
  .team-role { grid-template-rows: 185px minmax(0, 1fr); min-height: 0; }
  .team-role-copy { padding: 18px 18px 20px; }
  .interviewer-board { padding: 17px; }
  .interviewer-board-top { align-items: flex-start; gap: 9px; }
  .interviewer-board-top small { max-width: 90px; text-align: right; }
  .interviewer-message { max-width: 94%; }
  .interview-result-grid { grid-template-columns: 1fr; margin-top: 29px; }
  .interview-result { min-height: 0; }
  .feature-site-preview { padding: 9px; }
  .site-preview-nav { gap: 8px; overflow: hidden; padding-bottom: 11px; white-space: nowrap; }
  .site-preview-nav span:nth-of-type(2) { display: none; }
  .site-preview-hero { grid-template-columns: 1fr; }
  .site-preview-hero img { max-height: 238px; min-height: 0; object-position: center 25%; }
  .site-preview-hero > div { padding: 23px 20px; }
  .site-preview-hero h3 { font-size: 27px; }
  .site-preview-services { grid-template-columns: 1fr; }
  .site-preview-services article { min-height: 0; }
  .booking-stage { grid-template-columns: 1fr; margin-top: 34px; }
  .booking-phone { margin: 0 auto; }
  .booking-copy { grid-column: auto; }
  .client-workspace { padding: 13px; }
  .client-workspace-top { align-items: flex-start; gap: 8px; }
  .client-workspace-top b { font-size: 9px; }
  .client-profile i { display: none; }
  .client-workspace-footer { align-items: flex-start; flex-direction: column; }
  .route-map { grid-template-columns: 1fr; margin-top: 33px; }
  .route-map article,
  .route-map article + article { border-left: 1px solid #f0d9d2; border-top: 0; min-height: 0; }
  .route-map b { margin-top: 17px; }
  .feature-story-grid { grid-template-columns: 1fr; margin-top: 34px; }
  .feature-story-card { grid-template-columns: 1fr; min-height: 0; }
  .feature-story-card > img { aspect-ratio: 1.32 / 1; min-height: 0; object-position: center 30%; }
  .feature-story-copy { min-height: 270px; padding: 22px 20px; }
  .feature-consultation figure img { aspect-ratio: 1 / 1.03; }
  .feature-faq-item { padding: 0 16px; }
  .feature-faq-item summary { font-size: 14px; }
  .feature-order-card { padding: 23px 20px; }
  body.nadelai-platform-page.product-refresh .cookie-notice {
    bottom: 104px;
    gap: 10px;
    padding: 13px 16px;
  }
  body.nadelai-platform-page.product-refresh .cookie-notice p { font-size: 11px; line-height: 1.42; }
  body.nadelai-platform-page.product-refresh .cookie-notice button { min-height: 34px; }
}

/* Second visual pass: the site, booking and client journey read as one premium service experience. */
.feature-operations,
.feature-business-start { overflow: hidden; }

.site-preview-feature { align-items: stretch; background: #fff; border: 1px solid #e0e8f5; display: grid; grid-template-columns: .93fr 1.07fr; min-height: 340px; overflow: hidden; }
.site-preview-portrait { min-height: 340px; overflow: hidden; position: relative; }
.site-preview-portrait img { display: block; height: 100%; object-fit: cover; object-position: center 18%; width: 100%; }
.site-preview-role { background: rgba(23, 32, 51, .9); bottom: 15px; color: #fff; font-size: 10px; font-weight: 800; left: 15px; letter-spacing: 0; padding: 8px 10px; position: absolute; text-transform: uppercase; }
.site-preview-intro { display: flex; flex-direction: column; justify-content: center; padding: 30px 29px 27px; }
.site-preview-label { color: var(--feature-coral); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.site-preview-intro h3 { color: #25365a; font-size: clamp(25px, 2.55vw, 37px); line-height: 1.05; margin: 11px 0 0; }
.site-preview-intro > p { color: #68758a; font-size: 13px; line-height: 1.55; margin: 13px 0 0; }
.site-preview-numbers { align-items: stretch; border-top: 1px solid #e2e9f3; display: grid; gap: 10px; grid-template-columns: 1.1fr 1fr 1fr; margin-top: 21px; padding-top: 18px; }
.site-preview-numbers strong { color: var(--feature-blue); font-size: 42px; font-weight: 800; line-height: .8; }
.site-preview-numbers strong small { color: #68758a; display: block; font-size: 9px; font-weight: 700; line-height: 1.25; margin-top: 8px; text-transform: uppercase; }
.site-preview-numbers > span { border-left: 1px solid #e2e9f3; color: #7b889b; font-size: 9px; line-height: 1.35; padding-left: 10px; }
.site-preview-numbers b { color: #32445d; display: block; font-size: 15px; line-height: 1; margin-bottom: 5px; }
.site-preview-intro > a { align-items: center; color: var(--feature-blue); display: inline-flex; font-size: 12px; font-weight: 800; gap: 8px; margin-top: 22px; }
.site-preview-intro > a svg { height: 15px; width: 15px; }

.booking-phone.booking-phone--iphone { align-self: center; background: #171d27; border: 4px solid #2a3443; border-radius: 34px; box-shadow: 0 24px 42px rgba(24, 37, 63, .22); max-width: 226px; min-height: 442px; overflow: hidden; padding: 5px; }
.booking-phone.booking-phone--iphone::before { display: none; }
.iphone-screen { background: #f5f8fd; border-radius: 26px; display: flex; flex-direction: column; min-height: 425px; overflow: hidden; padding: 9px 10px 18px; }
.iphone-island { background: #090c12; border-radius: 20px; height: 17px; left: 50%; position: absolute; top: 10px; transform: translateX(-50%); width: 85px; z-index: 2; }
.iphone-status { align-items: center; color: #314157; display: flex; font-size: 9px; font-weight: 800; justify-content: space-between; padding: 1px 8px 18px; }
.iphone-status i { background: #314157; border-radius: 50%; height: 7px; position: relative; width: 7px; }
.iphone-status i::after { border: 1px solid #314157; border-radius: 50%; content: ''; height: 9px; position: absolute; right: -5px; top: -2px; width: 9px; }
.iphone-app-head { align-items: center; display: flex; gap: 8px; padding: 0 4px; }
.iphone-app-head > span { align-items: center; background: var(--feature-blue); border-radius: 7px; color: #fff; display: inline-flex; flex: 0 0 29px; font-size: 12px; font-weight: 800; height: 29px; justify-content: center; }
.iphone-app-head b { color: #293a52; display: block; font-size: 11px; }
.iphone-app-head small { color: #8995a7; display: block; font-size: 8px; margin-top: 1px; }
.iphone-app-head i { color: var(--feature-blue); display: inline-flex; margin-left: auto; }
.iphone-app-head svg { height: 17px; width: 17px; }
.iphone-push { background: #fff; border: 1px solid #dce6f2; border-radius: 9px; box-shadow: 0 10px 20px rgba(37, 53, 85, .08); display: grid; gap: 8px; grid-template-columns: 26px 1fr; margin-top: 18px; padding: 11px; }
.iphone-push > span { align-items: center; background: #eef3ff; border-radius: 6px; color: var(--feature-blue); display: inline-flex; height: 26px; justify-content: center; }
.iphone-push svg { height: 14px; width: 14px; }
.iphone-push small { color: #8491a4; display: block; font-size: 8px; font-weight: 700; }
.iphone-push b { color: #314259; display: block; font-size: 10px; line-height: 1.28; margin-top: 3px; }
.iphone-push p { color: #718095; font-size: 9px; line-height: 1.36; margin: 3px 0 0; }
.iphone-chat { background: #eaf0ff; border-radius: 10px 10px 10px 3px; display: grid; gap: 6px; margin: 17px 3px 0; padding: 13px 12px; }
.iphone-chat small { color: var(--feature-blue); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.iphone-chat p { color: #40516a; font-size: 10px; line-height: 1.42; margin: 0; }
.iphone-chat > span { align-items: center; color: #687891; display: flex; font-size: 8px; font-weight: 700; gap: 4px; }
.iphone-chat svg { color: var(--feature-coral); height: 12px; width: 12px; }
.iphone-chat > b { color: #51637e; font-size: 8px; line-height: 1.34; }
.iphone-home { background: #55657a; border-radius: 8px; bottom: 8px; height: 3px; left: 50%; position: absolute; transform: translateX(-50%); width: 67px; }

.client-message { background: #eaf0ff; border: 1px solid #d6e2fb; border-radius: 8px 8px 8px 2px; display: grid; gap: 7px; margin: 14px 0 0 auto; max-width: 88%; padding: 13px 14px; }
.client-message small { color: var(--feature-blue); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.client-message p { color: #40516a; font-size: 12px; line-height: 1.48; margin: 0; }
.client-message > span { align-items: center; color: #657791; display: flex; font-size: 10px; font-weight: 700; gap: 5px; }
.client-message svg { color: var(--feature-coral); height: 14px; width: 14px; }

.feature-operations { background: #f3f7ff; padding: 100px 0; }
.operations-grid { align-items: center; display: grid; gap: clamp(42px, 7vw, 106px); grid-template-columns: minmax(410px, 1.08fr) minmax(0, .92fr); margin-top: 43px; }
.operations-board { background: #fff; border: 1px solid #d8e3f4; border-radius: 8px; box-shadow: 0 20px 42px rgba(33, 55, 102, .09); overflow: hidden; }
.operations-board-head { align-items: center; background: #294faf; color: #fff; display: flex; font-size: 12px; font-weight: 800; gap: 8px; justify-content: space-between; padding: 17px 19px; }
.operations-board-head > span { align-items: center; display: inline-flex; gap: 7px; }
.operations-board-head svg { color: #bbd1ff; height: 17px; width: 17px; }
.operations-board-head small { color: #cbd9ff; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.operations-flow { display: grid; gap: 0; padding: 7px 19px; }
.operations-flow article { align-items: center; border-bottom: 1px solid #e5ebf4; display: grid; gap: 12px; grid-template-columns: 38px 1fr 22px; min-height: 82px; }
.operations-flow article:last-child { border-bottom: 0; }
.operations-flow article > span { align-items: center; background: #edf3ff; border-radius: 7px; color: var(--feature-blue); display: inline-flex; height: 38px; justify-content: center; width: 38px; }
.operations-flow article:nth-child(2) > span { background: #eff8f5; color: #3f8b75; }
.operations-flow article:nth-child(3) > span { background: #fff0eb; color: var(--feature-coral); }
.operations-flow article:nth-child(4) > span { background: #f2efff; color: #725ac0; }
.operations-flow svg { height: 18px; width: 18px; }
.operations-flow b { color: #314259; display: block; font-size: 13px; }
.operations-flow p { color: #758397; font-size: 11px; line-height: 1.4; margin: 4px 0 0; }
.operations-flow i { align-items: center; background: #f1f5fb; border-radius: 50%; color: #748399; display: inline-flex; font-size: 10px; font-style: normal; font-weight: 800; height: 22px; justify-content: center; width: 22px; }
.operations-copy { max-width: 530px; }
.operations-copy h3 { color: #27384f; font-size: clamp(26px, 2.7vw, 37px); line-height: 1.1; margin: 13px 0 0; text-wrap: balance; }
.operations-copy > div { align-items: flex-start; display: flex; gap: 12px; margin-top: 21px; }
.operations-copy > div > span { align-items: center; background: #fff; border: 1px solid #dbe5f2; border-radius: 7px; color: var(--feature-blue); display: inline-flex; flex: 0 0 39px; height: 39px; justify-content: center; }
.operations-copy > div:nth-of-type(2) > span { color: #3f8b75; }
.operations-copy > div:nth-of-type(3) > span { color: var(--feature-coral); }
.operations-copy svg { height: 18px; width: 18px; }
.operations-copy p { color: #6b798d; font-size: 13px; line-height: 1.5; margin: 0; }
.operations-copy p b { color: #34455c; display: block; font-size: 14px; margin-bottom: 3px; }
.operations-copy .feature-link { margin-top: 28px; }

.feature-business-start { background: #fff5f1; padding: 96px 0; }
.feature-business-start .feature-kicker { color: #c25c42; }
.business-start-grid { align-items: center; display: grid; gap: clamp(42px, 7vw, 106px); grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); }
.business-start-copy { max-width: 570px; }
.business-start-copy h2 { color: var(--feature-ink); font-size: clamp(33px, 3.55vw, 51px); line-height: 1.08; margin: 15px 0 0; }
.business-start-copy p { color: var(--feature-muted); font-size: 17px; line-height: 1.61; margin: 20px 0 0; }
.business-start-copy .feature-primary { margin-top: 29px; }
.business-start-map { background: rgba(255, 255, 255, .76); border: 1px solid #f0d9d2; border-radius: 8px; padding: 8px 21px; }
.business-start-map article { align-items: center; border-bottom: 1px solid #f0ded8; display: grid; gap: 14px; grid-template-columns: 33px 1fr; min-height: 82px; }
.business-start-map article:last-child { border-bottom: 0; }
.business-start-map article > span { color: #ca705a; font-size: 11px; font-weight: 800; }
.business-start-map article > div { align-items: center; display: grid; gap: 10px; grid-template-columns: 38px 1fr auto; }
.business-start-map article svg { color: var(--feature-coral); height: 19px; width: 19px; }
.business-start-map article > div > svg { align-items: center; background: #fff0eb; border-radius: 7px; display: inline-flex; height: 38px; justify-content: center; padding: 9px; width: 38px; }
.business-start-map b { color: #36465b; font-size: 14px; }
.business-start-map p { color: #758195; font-size: 11px; margin: 0; text-align: right; }

@media (max-width: 820px) {
  .site-preview-feature { max-width: 680px; }
  .booking-stage { grid-template-columns: minmax(0, 1fr) 218px; }
  .operations-grid,
  .business-start-grid { grid-template-columns: 1fr; }
  .operations-board,
  .business-start-map { max-width: 680px; }
}

@media (max-width: 560px) {
  .site-preview-feature { grid-template-columns: 1fr; min-height: 0; }
  .site-preview-portrait { min-height: 275px; }
  .site-preview-intro { padding: 23px 20px; }
  .site-preview-intro h3 { font-size: 29px; }
  .site-preview-numbers { margin-top: 18px; }
  .booking-stage { grid-template-columns: 1fr; }
  .booking-phone.booking-phone--iphone { max-width: 222px; min-height: 435px; }
  .iphone-screen { min-height: 418px; }
  .client-message { max-width: 100%; }
  .feature-operations,
  .feature-business-start { padding: 74px 0; }
  .operations-grid { margin-top: 34px; }
  .operations-board-head { align-items: flex-start; gap: 8px; }
  .operations-board-head small { max-width: 105px; text-align: right; }
  .operations-flow { padding: 7px 14px; }
  .operations-flow article { grid-template-columns: 36px 1fr 21px; }
  .operations-copy h3 { font-size: 28px; }
  .business-start-copy h2 { font-size: 31px; }
  .business-start-copy p { font-size: 16px; }
  .business-start-map { padding: 7px 14px; }
  .business-start-map article > div { gap: 8px; grid-template-columns: 38px 1fr; }
  .business-start-map p { grid-column: 2; text-align: left; }
}

/* Motion system: scroll-led entrances and tactile micro-interactions without a heavy runtime. */
@keyframes feature-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@keyframes feature-pop {
  0% { opacity: 0; transform: translate3d(0, 13px, 0) scale(.98); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes feature-pulse {
  0%, 100% { box-shadow: 0 10px 20px rgba(37, 53, 85, .08); }
  50% { box-shadow: 0 14px 28px rgba(49, 95, 214, .22); }
}

@keyframes feature-line-in {
  0% { opacity: 0; transform: translate3d(-14px, 0, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }

  body.nadelai-platform-page.product-refresh .reveal {
    filter: none;
    opacity: 1;
    transform: none;
  }

  body.nadelai-platform-page.product-refresh .reveal.motion-pending {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .72s ease, transform .72s cubic-bezier(.2, .72, .2, 1), filter .55s ease;
  }

  body.nadelai-platform-page.product-refresh .feature-hero-copy.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .feature-hero-visual.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .feature-section-heading.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .feature-site-copy.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .feature-site-preview.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .feature-clients-copy.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .client-workspace.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .feature-consultation-copy.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .feature-consultation figure.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .feature-start-copy.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .feature-order-card.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .operations-board.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .operations-copy.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .business-start-copy.reveal.motion-pending,
  body.nadelai-platform-page.product-refresh .business-start-map.reveal.motion-pending {
    filter: blur(2px);
    transform: translate3d(0, 30px, 0) scale(.985);
  }

  body.nadelai-platform-page.product-refresh .feature-hero-copy.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .feature-hero-visual.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .feature-section-heading.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .feature-site-copy.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .feature-site-preview.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .feature-clients-copy.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .client-workspace.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .feature-consultation-copy.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .feature-consultation figure.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .feature-start-copy.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .feature-order-card.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .operations-board.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .operations-copy.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .business-start-copy.reveal.motion-pending.is-visible,
  body.nadelai-platform-page.product-refresh .business-start-map.reveal.motion-pending.is-visible {
    filter: none;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .feature-hero-copy.reveal.is-visible { transition-delay: .04s; }
  .feature-hero-visual.reveal.is-visible { transition-delay: .14s; }
  .feature-site-preview.reveal.is-visible,
  .client-workspace.reveal.is-visible,
  .operations-board.reveal.is-visible,
  .business-start-map.reveal.is-visible { transition-delay: .1s; }

  .interview-result.reveal,
  .feature-story-card.reveal,
  .feature-faq-item.reveal { transition-duration: .62s; }
  .interview-result.reveal:nth-child(2),
  .feature-story-card.reveal:nth-child(2) { transition-delay: .08s; }
  .interview-result.reveal:nth-child(3),
  .feature-story-card.reveal:nth-child(3) { transition-delay: .16s; }
  .interview-result.reveal:nth-child(4),
  .feature-story-card.reveal:nth-child(4) { transition-delay: .24s; }
  .feature-story-card.reveal:nth-child(5) { transition-delay: .08s; }
  .feature-story-card.reveal:nth-child(6) { transition-delay: .16s; }

  .feature-hero-visual.reveal.is-visible figure { animation: feature-float 6s ease-in-out 1s infinite; }
  .feature-hero-visual.reveal.is-visible .feature-hero-service { animation: feature-pop .62s cubic-bezier(.2, .8, .2, 1) .28s both; }
  .interviewer-board.reveal.is-visible .interviewer-message { animation: feature-pop .46s ease both; }
  .interviewer-board.reveal.is-visible .interviewer-message:nth-child(2) { animation-delay: .16s; }
  .interviewer-board.reveal.is-visible .interviewer-message:nth-child(3) { animation-delay: .3s; }
  .interviewer-board.reveal.is-visible .interviewer-input { animation: feature-pop .48s ease .42s both; }
  .booking-phone--iphone.reveal.is-visible { animation: feature-float 5s ease-in-out .45s infinite; }
  .booking-phone--iphone.reveal.is-visible .iphone-push { animation: feature-pulse 2.8s ease-in-out 1.1s infinite; }
  .client-workspace.reveal.is-visible .client-message { animation: feature-pop .56s ease .32s both; }
  .route-map.reveal.is-visible article,
  .operations-board.reveal.is-visible .operations-flow article,
  .business-start-map.reveal.is-visible article { animation: feature-line-in .5s ease both; }
  .route-map.reveal.is-visible article:nth-child(2),
  .operations-board.reveal.is-visible .operations-flow article:nth-child(2),
  .business-start-map.reveal.is-visible article:nth-child(2) { animation-delay: .08s; }
  .route-map.reveal.is-visible article:nth-child(3),
  .operations-board.reveal.is-visible .operations-flow article:nth-child(3),
  .business-start-map.reveal.is-visible article:nth-child(3) { animation-delay: .16s; }
  .route-map.reveal.is-visible article:nth-child(4),
  .operations-board.reveal.is-visible .operations-flow article:nth-child(4),
  .business-start-map.reveal.is-visible article:nth-child(4) { animation-delay: .24s; }
  .route-map.reveal.is-visible article:nth-child(5) { animation-delay: .32s; }

  .feature-primary,
  .team-master,
  .team-role,
  .feature-story-card,
  .interview-result,
  .route-map article,
  .operations-flow article,
  .business-start-map article,
  .feature-site-preview,
  .client-workspace,
  .operations-board,
  .feature-order-card,
  .booking-calendar,
  .booking-phone--iphone,
  .feature-consultation figure img { transition: transform .28s cubic-bezier(.2, .72, .2, 1), box-shadow .28s ease, border-color .28s ease; }
  .site-preview-portrait img,
  .feature-story-card > img { transition: transform .6s cubic-bezier(.2, .72, .2, 1); }

  @media (hover: hover) and (pointer: fine) {
    .feature-primary:hover,
    .feature-primary:focus-visible { transform: translateY(-3px); }
    .feature-site-preview.reveal.is-visible:hover,
    .client-workspace.reveal.is-visible:hover,
    .operations-board.reveal.is-visible:hover,
    .feature-order-card.reveal.is-visible:hover,
    .team-master.reveal.is-visible:hover { box-shadow: 0 26px 50px rgba(29, 50, 95, .16); transform: translateY(-6px); }
    .team-role.reveal.is-visible:hover { border-color: #bdd0ee; box-shadow: 0 17px 31px rgba(29, 50, 95, .13); transform: translateY(-5px); }
    .team-role:hover figure img { transform: scale(1.055); }
    .feature-site-preview:hover .site-preview-portrait img { transform: scale(1.045); }
    .feature-story-card.reveal.is-visible:hover { border-color: #bfd0ee; box-shadow: 0 18px 35px rgba(30, 50, 88, .12); transform: translateY(-7px); }
    .feature-story-card:hover > img { transform: scale(1.055); }
    .interview-result.reveal.is-visible:hover { border-color: #bcd0f2; box-shadow: 0 16px 30px rgba(38, 61, 112, .1); transform: translateY(-5px); }
    .route-map article:hover { box-shadow: inset 0 4px 0 var(--feature-coral), 0 14px 24px rgba(153, 84, 64, .1); transform: translateY(-5px); z-index: 1; }
    .operations-flow article:hover,
    .business-start-map article:hover { transform: translateX(6px); }
    .booking-calendar.reveal.is-visible:hover { box-shadow: 0 23px 42px rgba(32, 52, 91, .13); transform: translateY(-5px); }
    .booking-phone--iphone.reveal.is-visible:hover { animation-play-state: paused; box-shadow: 0 29px 48px rgba(24, 37, 63, .28); transform: translateY(-8px) rotate(1deg); }
    .feature-consultation figure:hover img { box-shadow: 0 22px 38px rgba(35, 58, 105, .14); transform: scale(1.018); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-hero-visual figure,
  .feature-hero-service,
  .interviewer-message,
  .interviewer-input,
  .booking-phone--iphone,
  .iphone-push,
  .client-message,
  .route-map article,
  .operations-flow article,
  .business-start-map article { animation: none !important; }

  .feature-primary,
  .team-master,
  .team-role,
  .feature-story-card,
  .interview-result,
  .route-map article,
  .operations-flow article,
  .business-start-map article,
  .feature-site-preview,
  .client-workspace,
  .operations-board,
  .feature-order-card,
  .booking-calendar,
  .booking-phone--iphone,
  .feature-consultation figure img,
  .site-preview-portrait img,
  .feature-story-card > img { transition: none !important; }
  .team-active-visual img,
  .team-active-copy,
  .team-role-tab svg { animation: none !important; transition: none !important; }
}

/* End */


/* Start:/local/templates/nadelai_uni/launch-commerce.css?178645384614548*/
body.nadelai-platform-page:has(.nadelai-launch-shell) {
  background: #f5f7fb;
  color: #202940;
}

.nadelai-launch-shell,
.nadelai-launch-shell * {
  box-sizing: border-box;
}

.nadelai-launch-shell {
  --launch-ink: #202940;
  --launch-muted: #6e7890;
  --launch-blue: #3465df;
  --launch-blue-dark: #244db7;
  --launch-coral: #ef8268;
  --launch-border: #dbe2ef;
  --launch-surface: #ffffff;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 68px;
  color: var(--launch-ink);
}

.nadelai-launch-shell a {
  color: inherit;
}

.nadelai-commerce-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  margin-bottom: 54px;
}

.nadelai-commerce-topbar .brand {
  color: var(--launch-ink);
}

.nadelai-commerce-topbar .brand svg {
  max-height: 40px;
}

.nadelai-commerce-back {
  color: var(--launch-muted) !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nadelai-commerce-back:hover {
  color: var(--launch-blue) !important;
}

.nadelai-launch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 26px;
  align-items: stretch;
}

.nadelai-launch-copy {
  padding: 30px 0 30px 18px;
}

.nadelai-launch-kicker {
  margin: 0 0 14px;
  color: var(--launch-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nadelai-launch-copy h1,
.nadelai-checkout-head h1,
.nadelai-cabinet-intro h1,
.nadelai-interview-head h1 {
  max-width: 800px;
  margin: 0;
  color: var(--launch-ink);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.nadelai-launch-copy p:not(.nadelai-launch-kicker),
.nadelai-checkout-head p,
.nadelai-cabinet-intro p,
.nadelai-interview-head p,
.nadelai-order-note p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--launch-muted);
  font-size: 18px;
  line-height: 1.55;
}

.nadelai-launch-card,
.nadelai-order-note,
.nadelai-cabinet-card,
.nadelai-interview-form,
.nadelai-payment-state {
  border: 1px solid var(--launch-border);
  border-radius: 8px;
  background: var(--launch-surface);
  box-shadow: 0 18px 42px rgba(34, 55, 102, .08);
}

.nadelai-launch-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 438px;
  padding: 28px;
}

.nadelai-product-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--launch-blue);
  background: #eef3ff;
  font-size: 21px;
  font-weight: 800;
}

.nadelai-launch-card h2 {
  margin: 24px 0 8px;
  font-size: 28px;
  line-height: 1.15;
}

.nadelai-launch-card p {
  margin: 0;
  color: var(--launch-muted);
  font-size: 16px;
  line-height: 1.48;
}

.nadelai-launch-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 8px;
}

.nadelai-launch-price strong {
  font-size: 42px;
  line-height: 1;
}

.nadelai-launch-price span {
  color: var(--launch-muted);
  font-size: 14px;
}

.nadelai-primary-action,
.nadelai-secondary-action,
.nadelai-launch-shell .bx-soa-cart-total-button-container .btn,
.nadelai-launch-shell .btn.btn-default,
.nadelai-launch-shell .btn.btn-lg.btn-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--launch-blue);
  color: #fff !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  cursor: pointer;
}

.nadelai-primary-action:hover,
.nadelai-launch-shell .bx-soa-cart-total-button-container .btn:hover,
.nadelai-launch-shell .btn.btn-default:hover,
.nadelai-launch-shell .btn.btn-lg.btn-block:hover {
  background: var(--launch-blue-dark);
  color: #fff !important;
  box-shadow: 0 12px 22px rgba(52, 101, 223, .24);
  transform: translateY(-1px);
}

.nadelai-secondary-action {
  border: 1px solid var(--launch-border);
  background: #fff;
  color: var(--launch-ink) !important;
}

.nadelai-secondary-action:hover {
  border-color: #b9c8eb;
  background: #f7f9ff;
  color: var(--launch-blue) !important;
}

.nadelai-launch-smallprint {
  margin: 14px 0 0;
  color: var(--launch-muted);
  font-size: 12px;
  line-height: 1.45;
}

.nadelai-launch-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 56px;
}

.nadelai-launch-benefit {
  min-width: 0;
  padding: 20px;
  border-top: 2px solid var(--launch-coral);
}

.nadelai-launch-benefit b {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.nadelai-launch-benefit span {
  color: var(--launch-muted);
  font-size: 15px;
  line-height: 1.45;
}

.nadelai-checkout-head,
.nadelai-cabinet-intro,
.nadelai-interview-head {
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
}

.nadelai-checkout-head h1,
.nadelai-cabinet-intro h1,
.nadelai-interview-head h1 {
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(31px, 4vw, 50px);
}

.nadelai-checkout-head p,
.nadelai-cabinet-intro p,
.nadelai-interview-head p {
  margin-right: auto;
  margin-left: auto;
}

.nadelai-checkout-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--launch-border);
  border-radius: 8px;
  background: #fff;
}

.nadelai-checkout-product h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.nadelai-checkout-product p {
  margin: 0;
  color: var(--launch-muted);
  font-size: 14px;
}

.nadelai-checkout-product strong {
  white-space: nowrap;
  font-size: 25px;
}

.nadelai-sale-checkout,
.nadelai-sale-basket,
.nadelai-sale-payment,
.nadelai-cabinet-content {
  max-width: 980px;
  margin: 30px auto 0;
}

.nadelai-launch-shell .bx-soa,
.nadelai-launch-shell .bx-soa-cart-total,
.nadelai-launch-shell .sale-order-detail,
.nadelai-launch-shell .sale-personal-section-index-block {
  color: var(--launch-ink);
}

.nadelai-launch-shell .bx-soa-section,
.nadelai-launch-shell .bx-soa-cart-total,
.nadelai-launch-shell .sale-order-detail,
.nadelai-launch-shell .sale-personal-section-index-block,
.nadelai-launch-shell .sale-order-detail-about-order,
.nadelai-launch-shell .sale-order-detail-payment-options {
  margin-bottom: 14px;
  border: 1px solid var(--launch-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(34, 55, 102, .05);
}

.nadelai-launch-shell .bx-soa-section-title,
.nadelai-launch-shell .bx-soa-cart-total-line,
.nadelai-launch-shell .sale-order-detail-about-order-inner-container,
.nadelai-launch-shell .sale-personal-section-index-block-link {
  color: var(--launch-ink) !important;
}

.nadelai-launch-shell .bx-soa-section-title-container,
.nadelai-launch-shell .bx-soa-section-content {
  padding-right: 22px;
  padding-left: 22px;
}

.nadelai-launch-shell .bx-soa-section-title-container {
  border-bottom-color: var(--launch-border);
}

.nadelai-launch-shell .form-control,
.nadelai-launch-shell .form-control input,
.nadelai-launch-shell .form-control textarea,
.nadelai-launch-shell input[type="text"],
.nadelai-launch-shell input[type="email"],
.nadelai-launch-shell input[type="tel"],
.nadelai-launch-shell textarea {
  border-color: #cdd6e6;
  border-radius: 6px;
  color: var(--launch-ink);
}

.nadelai-launch-shell .bx-soa-section.bx-step-error .bx-soa-section-title-container {
  border-bottom-color: #e6a18e;
  background: #fff9f7;
}

.nadelai-phone-format-hint {
  display: block;
  margin-top: 6px;
  color: #71809a;
  font-size: 12px;
  line-height: 1.35;
}

.nadelai-order-note,
.nadelai-payment-state {
  max-width: 760px;
  margin: 30px auto 0;
  padding: 24px;
}

.nadelai-order-note h2,
.nadelai-payment-state h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.nadelai-payment-state h1 {
  font-size: 34px;
}

.nadelai-payment-state__actions,
.nadelai-cabinet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.nadelai-payment-launch__form {
  margin-top: 22px;
}

.nadelai-payment-launch__status {
  margin: 18px 0 0;
  color: var(--launch-muted);
  font-size: 14px;
  line-height: 1.5;
}

.nadelai-cabinet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 36px auto 0;
}

.nadelai-cabinet-card {
  min-height: 218px;
  padding: 22px;
}

.nadelai-cabinet-card__number {
  display: block;
  margin-bottom: 42px;
  color: var(--launch-coral);
  font-size: 14px;
  font-weight: 800;
}

.nadelai-cabinet-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.nadelai-cabinet-card p {
  margin: 0;
  color: var(--launch-muted);
  font-size: 15px;
  line-height: 1.45;
}

.nadelai-interview-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px;
}

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

.nadelai-interview-field {
  min-width: 0;
}

.nadelai-interview-field--wide {
  grid-column: 1 / -1;
}

.nadelai-interview-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--launch-ink);
  font-size: 15px;
  font-weight: 800;
}

.nadelai-interview-field textarea,
.nadelai-interview-field input {
  width: 100%;
  min-height: 118px;
  padding: 13px 14px;
  border: 1px solid #cdd6e6;
  border-radius: 6px;
  background: #fbfcff;
  color: var(--launch-ink);
  font: inherit;
  line-height: 1.45;
  resize: vertical;
}

.nadelai-interview-field input {
  min-height: 48px;
}

.nadelai-interview-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.nadelai-interview-form__footer span {
  color: var(--launch-muted);
  font-size: 13px;
}

.nadelai-launch-alert {
  max-width: 760px;
  margin: 20px auto;
  padding: 14px 16px;
  border: 1px solid #f2cfbf;
  border-radius: 8px;
  background: #fff8f5;
  color: #915037;
  font-size: 14px;
}

.nadelai-launch-success {
  max-width: 760px;
  margin: 20px auto;
  padding: 14px 16px;
  border: 1px solid #b9dfcf;
  border-radius: 8px;
  background: #f3fbf7;
  color: #246a50;
  font-size: 14px;
}

.nadelai-card-vault {
  display: grid;
  gap: 20px;
}

.nadelai-offer-summary {
  display: grid;
  gap: 18px;
}

.nadelai-offer-summary > p {
  margin: 0;
  color: var(--launch-muted);
  font-size: 16px;
  line-height: 1.55;
}

.nadelai-offer-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.nadelai-offer-summary dl > div {
  display: grid;
  grid-template-columns: minmax(130px, .45fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--launch-border);
}

.nadelai-offer-summary dt {
  color: var(--launch-muted);
  font-size: 14px;
}

.nadelai-offer-summary dd {
  margin: 0;
  color: var(--launch-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.nadelai-unpaid-orders {
  max-width: 980px;
  margin: 0 auto 30px;
  padding: 26px;
  border: 1px solid var(--launch-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(34, 55, 102, .05);
}

.nadelai-unpaid-orders__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.nadelai-unpaid-orders__head .nadelai-launch-kicker {
  margin-bottom: 8px;
}

.nadelai-unpaid-orders__head h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
}

.nadelai-unpaid-orders__head > p {
  max-width: 360px;
  margin: 0;
  color: var(--launch-muted);
  font-size: 15px;
  line-height: 1.45;
}

.nadelai-unpaid-orders__list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.nadelai-unpaid-order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(230px, auto);
  align-items: center;
  gap: 20px;
  padding: 18px;
  border: 1px solid #d8e0ee;
  border-radius: 8px;
  background: #fbfcff;
}

.nadelai-unpaid-order span {
  display: block;
  margin-bottom: 6px;
  color: var(--launch-muted);
  font-size: 13px;
}

.nadelai-unpaid-order h3 {
  margin: 0;
  color: var(--launch-ink);
  font-size: 17px;
  line-height: 1.35;
}

.nadelai-unpaid-order strong {
  white-space: nowrap;
  color: var(--launch-ink);
  font-size: 18px;
}

.nadelai-card-consent {
  display: grid;
  gap: 18px;
  max-width: 670px;
}

.nadelai-card-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--launch-muted);
  font-size: 14px;
  line-height: 1.5;
}

.nadelai-card-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 2px 0 0;
  accent-color: var(--launch-blue);
}

.nadelai-saved-cards {
  display: grid;
  gap: 10px;
}

.nadelai-saved-card {
  display: grid;
  grid-template-columns: minmax(110px, .7fr) minmax(150px, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid #d8e0ee;
  border-radius: 8px;
  background: #fbfcff;
}

.nadelai-saved-card span {
  color: var(--launch-muted);
  font-size: 13px;
}

.nadelai-saved-card strong {
  color: var(--launch-ink);
  font-size: 16px;
}

.nadelai-launch-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  max-width: 980px;
  margin: 48px auto 0;
  color: var(--launch-muted);
  font-size: 13px;
}

.nadelai-launch-footer a {
  color: var(--launch-muted);
}

@media (max-width: 800px) {
  .nadelai-launch-shell { width: min(100% - 28px, 680px); padding-top: 16px; }
  .nadelai-commerce-topbar { margin-bottom: 28px; }
  .nadelai-launch-hero, .nadelai-launch-benefits, .nadelai-cabinet-grid, .nadelai-interview-grid { grid-template-columns: minmax(0, 1fr); }
  .nadelai-launch-copy { padding: 10px 0; }
  .nadelai-launch-card { min-height: 0; }
  .nadelai-checkout-product { align-items: flex-start; flex-direction: column; }
  .nadelai-unpaid-orders__head, .nadelai-unpaid-order { align-items: flex-start; grid-template-columns: minmax(0, 1fr); }
  .nadelai-unpaid-orders__head { display: grid; }
  .nadelai-interview-field--wide { grid-column: auto; }
}

@media (max-width: 520px) {
  .nadelai-commerce-topbar .brand svg { max-width: 172px; }
  .nadelai-launch-copy h1 { font-size: 39px; }
  .nadelai-launch-card, .nadelai-interview-form { padding: 20px; }
  .nadelai-primary-action, .nadelai-secondary-action { width: 100%; }
  .nadelai-payment-state__actions, .nadelai-cabinet-actions { display: grid; grid-template-columns: 1fr; }
  .nadelai-saved-card { grid-template-columns: 1fr; gap: 8px; }
  .nadelai-offer-summary dl > div { grid-template-columns: 1fr; gap: 5px; }
}

/* End */


/* Start:/local/templates/nadelai_uni/include/brand-logo.css?17863798586145*/
:root {
  --nadel-blue: #2f6bff;
  --nadel-blue-light: #8fb4ff;
  --nadel-blue-deep: #123b96;
  --nadel-orange: #ff7a1a;
  --nadel-orange-light: #ff9a3d;
  --nadel-orange-deep: #e75208;
  --nadel-logo-text: #f5f7ff;
}

.brand--nadelai {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  gap: 15px;
  color: var(--nadel-logo-text);
  text-decoration: none;
  white-space: nowrap;
  isolation: isolate;
}

.brand--nadelai:focus-visible {
  outline: 2px solid rgba(141, 178, 255, 0.72);
  outline-offset: 7px;
  border-radius: 12px;
}

.brand--nadelai .brand-mark {
  display: block;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  max-width: none;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
  box-shadow: none;
  transition: transform 0.22s ease;
}

.brand--nadelai .brand-mark-blue-structure {
  filter:
    drop-shadow(0 0 10px rgba(47, 107, 255, 0.24))
    drop-shadow(0 0 22px rgba(47, 107, 255, 0.1));
  transform-box: fill-box;
  transform-origin: center;
  transition: filter 0.22s ease, opacity 0.22s ease;
}

.brand--nadelai .brand-mark-frame {
  fill: rgba(5, 7, 13, 0.08);
  stroke-width: 1.95;
  stroke-linejoin: miter;
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  animation: brandShieldDraw 1080ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.brand--nadelai .brand-mark-inner {
  opacity: 0;
  transform: translateY(2px) scale(0.985);
  transform-box: fill-box;
  transform-origin: center;
  animation: brandInnerReveal 460ms cubic-bezier(0.22, 1, 0.36, 1) 180ms forwards;
}

.brand--nadelai .brand-mark-blue {
  opacity: 0.9;
}

.brand--nadelai .brand-mark-core {
  opacity: 0;
  filter:
    drop-shadow(0 0 10px rgba(255, 122, 26, 0.22))
    drop-shadow(0 0 18px rgba(255, 122, 26, 0.1));
  transform: translateY(4px) scale(0.97);
  transform-box: fill-box;
  transform-origin: center;
  animation: brandCoreReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 420ms forwards;
  transition: filter 0.22s ease;
}

.brand--nadelai .brand-name {
  display: inline-flex;
  align-items: baseline;
  color: var(--nadel-logo-text);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35), 0 0 16px rgba(255, 255, 255, 0.04);
  transform: translateY(3px);
  animation: brandNameReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 360ms forwards;
}

.brand--nadelai .brand-name-main {
  color: var(--nadel-logo-text);
}

.brand--nadelai .brand-name-accent {
  color: var(--nadel-orange);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .brand--nadelai .brand-name-main {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 56%, #dfe8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .brand--nadelai .brand-name-accent {
    background: linear-gradient(180deg, var(--nadel-orange-light) 0%, var(--nadel-orange) 54%, var(--nadel-orange-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.brand--nadelai:hover .brand-mark,
.brand--nadelai:focus-visible .brand-mark {
  transform: translateY(-1px) scale(1.004);
}

.brand--nadelai:hover .brand-mark-blue-structure,
.brand--nadelai:focus-visible .brand-mark-blue-structure {
  filter:
    drop-shadow(0 0 11px rgba(47, 107, 255, 0.28))
    drop-shadow(0 0 24px rgba(47, 107, 255, 0.12));
}

.brand--nadelai:hover .brand-mark-core,
.brand--nadelai:focus-visible .brand-mark-core {
  filter:
    drop-shadow(0 0 11px rgba(255, 122, 26, 0.25))
    drop-shadow(0 0 20px rgba(255, 122, 26, 0.12));
}

.footer-logo.brand--nadelai {
  min-height: auto;
  gap: 10px;
}

.footer-logo.brand--nadelai .brand-mark {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
}

.footer-logo.brand--nadelai .brand-name {
  font-size: 28px;
}

.brand--mobile-mark .brand-name {
  display: none;
}

.intranet-auth-cover__logo--nadelai {
  min-height: 58px;
  gap: 12px;
}

.intranet-auth-cover__logo--nadelai .brand-mark {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}

.intranet-auth-cover__logo--nadelai .brand-name {
  font-size: 42px;
}

@keyframes brandShieldDraw {
  0% {
    opacity: 0;
    stroke-dashoffset: 170;
  }

  48% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes brandInnerReveal {
  0% {
    opacity: 0;
    transform: translateY(2px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes brandCoreReveal {
  0% {
    opacity: 0;
    transform: translateY(4px) scale(0.97);
  }

  72% {
    opacity: 1;
    filter:
      drop-shadow(0 0 14px rgba(255, 122, 26, 0.28))
      drop-shadow(0 0 24px rgba(255, 122, 26, 0.14));
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes brandNameReveal {
  0% {
    opacity: 0;
    transform: translateY(3px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .brand--nadelai .brand-mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .brand--nadelai .brand-name {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .brand--nadelai .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand--nadelai .brand-name {
    font-size: 30px;
  }
}

@media (min-width: 1920px) {
  .intranet-auth-cover__logo--nadelai .brand-mark {
    width: 75px;
    height: 75px;
    flex-basis: 75px;
  }

  .intranet-auth-cover__logo--nadelai .brand-name {
    font-size: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand--nadelai .brand-mark,
  .brand--nadelai .brand-mark-blue-structure,
  .brand--nadelai .brand-mark-inner,
  .brand--nadelai .brand-mark-core,
  .brand--nadelai .brand-name {
    animation: none;
    transition: none;
    transform: none;
  }

  .brand--nadelai .brand-mark-frame {
    stroke-dashoffset: 0;
  }

  .brand--nadelai .brand-mark-inner,
  .brand--nadelai .brand-mark-core,
  .brand--nadelai .brand-name {
    opacity: 1;
  }
}

/* End */
/* /local/templates/nadelai_uni/template_styles.css?178637985837606 */
/* /local/templates/nadelai_uni/brand-refresh.css?178637985817717 */
/* /local/templates/nadelai_uni/sales-refresh.css?178637985821453 */
/* /local/templates/nadelai_uni/feature-story.css?178637985863722 */
/* /local/templates/nadelai_uni/launch-commerce.css?178645384614548 */
/* /local/templates/nadelai_uni/include/brand-logo.css?17863798586145 */
