:root {
  --lh-blue: #2694f4;
  --lh-blue-dark: #1262b7;
  --lh-blue-deep: #0b3f7a;
  --lh-green: #1fa875;
  --lh-green-dark: #147a58;
  --lh-gold: #f3b431;
  --lh-ink: #172033;
  --lh-soft-ink: #59657a;
  --lh-paper: #f7f9fc;
  --lh-line: rgba(23, 32, 51, 0.1);
  --lh-night: #101722;
  --lh-gradient: linear-gradient(135deg, var(--lh-blue-deep) 0%, var(--lh-blue-dark) 48%, var(--lh-blue) 100%);
  --primary: var(--lh-blue-dark);
  --primary-100: #0f56a2;
  --primary-200: #0d4d91;
  --primary-300: #0b437f;
  --primary--100: #1b72cc;
  --primary--200: #2880dc;
  --primary--300: #3b8fe4;
  --primary-rgba-0: rgba(18, 98, 183, 0);
  --primary-rgba-10: rgba(18, 98, 183, 0.1);
  --primary-rgba-20: rgba(18, 98, 183, 0.2);
  --primary-rgba-30: rgba(18, 98, 183, 0.3);
  --primary-rgba-40: rgba(18, 98, 183, 0.4);
  --primary-rgba-50: rgba(18, 98, 183, 0.5);
  --primary-rgba-60: rgba(18, 98, 183, 0.6);
  --primary-rgba-70: rgba(18, 98, 183, 0.7);
  --primary-rgba-80: rgba(18, 98, 183, 0.8);
  --primary-rgba-90: rgba(18, 98, 183, 0.9);
  --secondary: var(--lh-blue);
  --secondary-100: #1587e7;
  --secondary-200: #117bda;
  --secondary-300: #0f70c8;
  --secondary--100: #3ba2f5;
  --secondary--200: #52adf6;
  --secondary--300: #69b8f7;
  --secondary-rgba-0: rgba(38, 148, 244, 0);
  --secondary-rgba-10: rgba(38, 148, 244, 0.1);
  --secondary-rgba-20: rgba(38, 148, 244, 0.2);
  --secondary-rgba-30: rgba(38, 148, 244, 0.3);
  --secondary-rgba-40: rgba(38, 148, 244, 0.4);
  --secondary-rgba-50: rgba(38, 148, 244, 0.5);
  --secondary-rgba-60: rgba(38, 148, 244, 0.6);
  --secondary-rgba-70: rgba(38, 148, 244, 0.7);
  --secondary-rgba-80: rgba(38, 148, 244, 0.8);
  --secondary-rgba-90: rgba(38, 148, 244, 0.9);
  --tertiary: #c5d4fb;
  --quaternary: #d6efe8;
  --dark: var(--lh-ink);
}

.bg-gradient {
  background: var(--lh-gradient) !important;
}

.custom-bg-gradient-1 {
  background-color: #c5d4fb !important;
  background-image: linear-gradient(to right, #c5d4fb 0%, #d6efe8 100%) !important;
}

.text-primary {
  color: var(--lh-blue) !important;
}

.text-secondary {
  color: var(--lh-blue-dark) !important;
}

.bg-tertiary {
  background-color: rgba(197, 212, 251, 0.5) !important;
}

.bg-quaternary {
  background-color: rgba(214, 239, 232, 0.74) !important;
}

.custom-border-color-1 {
  border-color: rgba(38, 148, 244, 0.24) !important;
}

#hero .custom-hero-font-1 {
  font-size: clamp(38px, 20px + 0.032 * 100vw, 62px);
}

.hero-front-image {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: min(520px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 34px 86px rgba(23, 32, 51, 0.16);
  isolation: isolate;
}

.hero-front-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(38, 148, 244, 0.12), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.hero-front-image img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.03) contrast(1.02);
}

@media (max-width: 991px) {
  .hero-front-image {
    width: min(440px, 100%);
  }
}

.btn-dark {
  color: #ffffff !important;
  background-color: var(--lh-green) !important;
  background-image: linear-gradient(135deg, var(--lh-green-dark) 0%, var(--lh-green) 100%) !important;
  border-color: var(--lh-green) !important;
  box-shadow: 0 18px 40px rgba(31, 168, 117, 0.28) !important;
}

.btn-dark:hover,
.btn-dark:focus {
  color: #ffffff !important;
  background-color: var(--lh-green-dark) !important;
  background-image: linear-gradient(135deg, #0f6649 0%, var(--lh-green-dark) 100%) !important;
  border-color: var(--lh-green-dark) !important;
  box-shadow: 0 22px 46px rgba(20, 122, 88, 0.34) !important;
}

#hero a[href="#alap"].btn-light,
#hero a[href="#felismeres"].btn-light {
  color: var(--lh-blue-dark) !important;
  background-color: #eaf5ff !important;
  border: 1px solid rgba(38, 148, 244, 0.24) !important;
  box-shadow: 0 14px 32px rgba(18, 98, 183, 0.12) !important;
}

#hero a[href="#alap"].btn-light:hover,
#hero a[href="#alap"].btn-light:focus,
#hero a[href="#felismeres"].btn-light:hover,
#hero a[href="#felismeres"].btn-light:focus {
  color: #ffffff !important;
  background-color: var(--lh-blue-dark) !important;
  background-image: var(--lh-gradient) !important;
  border-color: var(--lh-blue-dark) !important;
  box-shadow: 0 18px 40px rgba(18, 98, 183, 0.24) !important;
}

.header-nav .nav-link[href="#egyeztetes"] .bg-gradient {
  background: linear-gradient(135deg, var(--lh-green-dark), var(--lh-green)) !important;
  box-shadow: 0 14px 30px rgba(31, 168, 117, 0.22);
}

.main > .container a[href="#csomagok"].btn-dark {
  background-color: var(--lh-blue-dark) !important;
  background-image: var(--lh-gradient) !important;
  border-color: var(--lh-blue-dark) !important;
  box-shadow: 0 18px 40px rgba(38, 148, 244, 0.28) !important;
}

.main > .container a[href="#csomagok"].btn-dark:hover,
.main > .container a[href="#csomagok"].btn-dark:focus {
  background-color: var(--lh-blue-deep) !important;
  background-image: linear-gradient(135deg, var(--lh-blue-deep) 0%, var(--lh-blue-dark) 100%) !important;
  border-color: var(--lh-blue-deep) !important;
  box-shadow: 0 22px 46px rgba(18, 98, 183, 0.34) !important;
}

.mark.mark-color-tertiary:before {
  background-color: rgba(38, 148, 244, 0.34) !important;
}

#problema > .container span.rounded-pill,
#felismeres > .container span.rounded-pill,
#alap > .container span.rounded-pill,
#pontok > .container span.rounded-pill,
#belsovideo > .container span.rounded-pill,
#csomagok > .container > .row:first-child span.rounded-pill,
#modell span.rounded-pill,
#faq > .container span.rounded-pill,
#egyeztetes > .container span.rounded-pill,
#teszt > .section-angled-content > .container span.rounded-pill,
.main > .container span.rounded-pill {
  position: relative;
  overflow: visible;
  isolation: isolate;
  padding: 0.52rem 1.85rem !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--lh-blue-deep) 0%, var(--lh-blue-dark) 48%, var(--lh-blue) 100%) !important;
  box-shadow: 0 16px 34px rgba(18, 98, 183, 0.2);
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

#problema > .container span.rounded-pill::before,
#felismeres > .container span.rounded-pill::before,
#alap > .container span.rounded-pill::before,
#pontok > .container span.rounded-pill::before,
#belsovideo > .container span.rounded-pill::before,
#csomagok > .container > .row:first-child span.rounded-pill::before,
#modell span.rounded-pill::before,
#faq > .container span.rounded-pill::before,
#egyeztetes > .container span.rounded-pill::before,
#teszt > .section-angled-content > .container span.rounded-pill::before,
.main > .container span.rounded-pill::before {
  content: "";
  position: absolute;
  left: -0.72rem;
  top: 50%;
  z-index: -1;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: rgba(38, 148, 244, 0.24);
  transform: translateY(-50%);
}

#kinek span.rounded-pill {
  box-shadow: none;
}

#kinek span.rounded-pill::before,
#csomagok .card span.rounded-pill::before {
  content: none !important;
}

.section,
.custom-section-1,
.parallax,
#csomagok {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

#problema {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(38, 148, 244, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
}

#problema::before {
  content: "";
  position: absolute;
  left: -10rem;
  bottom: 8%;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(55, 153, 255, 0.1), transparent 68%);
}

#problema .container {
  position: relative;
  z-index: 1;
}

#problema .card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.82) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow: 0 22px 54px rgba(23, 32, 51, 0.07) !important;
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

#problema .card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(55, 153, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

#problema .card:hover {
  transform: translateY(-6px);
  border-color: rgba(55, 153, 255, 0.28) !important;
  box-shadow: 0 30px 72px rgba(18, 98, 183, 0.13) !important;
}

#problema .card-body {
  position: relative;
  z-index: 1;
}

#problema .card h3 {
  color: var(--lh-ink);
  font-weight: 800;
}

#problema .card p {
  color: var(--lh-soft-ink);
}

#megoldas {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(38, 148, 244, 0.06) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(225deg, rgba(31, 168, 117, 0.06) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
}

#megoldas::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 98, 183, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 98, 183, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000000 22%, #000000 76%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000000 22%, #000000 76%, transparent 100%);
  opacity: 0.55;
}

#megoldas .container {
  position: relative;
  z-index: 1;
}

.solution-hub-strip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  padding: 18px 22px;
  margin: 0 auto 34px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(16px);
}

.solution-hub-strip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(18, 98, 183, 0.32), rgba(18, 98, 183, 0));
}

.solution-hub-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--lh-gradient);
  box-shadow: 0 16px 34px rgba(18, 98, 183, 0.2);
}

.solution-hub-strip span {
  display: block;
  margin-bottom: 3px;
  color: var(--lh-blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.solution-hub-strip strong {
  display: block;
  color: var(--lh-ink);
  font-size: 1.05rem;
  line-height: 1.35;
}

.solution-feature-grid {
  position: relative;
}

.solution-feature-grid::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 98, 183, 0), rgba(18, 98, 183, 0.24), rgba(31, 168, 117, 0.2), rgba(18, 98, 183, 0));
}

.solution-feature {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 54px rgba(23, 32, 51, 0.07);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(55, 153, 255, 0.14) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
}

.solution-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(55, 153, 255, 0.3);
  box-shadow: 0 30px 72px rgba(18, 98, 183, 0.13);
}

.solution-feature > * {
  position: relative;
  z-index: 1;
}

.solution-step {
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(18, 98, 183, 0.1);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.solution-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--lh-gradient);
  box-shadow: 0 16px 34px rgba(18, 98, 183, 0.2);
}

.solution-feature h3 {
  margin-bottom: 10px;
  color: var(--lh-ink);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.solution-feature p {
  color: var(--lh-soft-ink);
  line-height: 1.7;
}

#alap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(38, 148, 244, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
}

#alap::before {
  content: "";
  position: absolute;
  right: -10rem;
  top: 18%;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(55, 153, 255, 0.12), transparent 68%);
}

#alap .container {
  position: relative;
  z-index: 1;
}

#alap .row.g-4 > [class*="col-"] {
  counter-increment: alap-card;
}

#alap .feature-box {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow: 0 22px 54px rgba(23, 32, 51, 0.07);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

#alap .feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(55, 153, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

#alap .feature-box::after {
  transition: opacity 180ms ease, transform 180ms ease;
}

#alap .feature-box::after {
  content: "0" counter(alap-card);
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(18, 98, 183, 0.1);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

#alap .feature-box:hover {
  transform: translateY(-6px);
  border-color: rgba(55, 153, 255, 0.28);
  box-shadow: 0 30px 72px rgba(18, 98, 183, 0.13);
}

#alap .feature-box > * {
  position: relative;
  z-index: 1;
}

#alap .feature-box-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px !important;
  box-shadow: 0 16px 34px rgba(18, 98, 183, 0.2);
}

#alap .feature-box h3 {
  color: var(--lh-ink);
  font-size: 1.35rem !important;
  font-weight: 800;
  transition: color 180ms ease;
}

#alap .feature-box p {
  color: var(--lh-soft-ink);
  transition: color 180ms ease;
}

@media (max-width: 991px) {
  .solution-feature-grid::before,
  .solution-hub-strip::after {
    content: none;
  }
}

@media (max-width: 575px) {
  .solution-hub-strip {
    align-items: flex-start;
    padding: 18px;
  }

  .solution-feature {
    min-height: 0;
    padding: 24px;
  }
}

#folyamat {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(214, 239, 232, 0.66) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%) !important;
}

#folyamat::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 98, 183, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 98, 183, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000000 20%, #000000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000000 20%, #000000 78%, transparent 100%);
}

#folyamat .container {
  position: relative;
  z-index: 1;
}

.intro-process-summary {
  position: relative;
  overflow: hidden;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 54px rgba(23, 32, 51, 0.07);
  backdrop-filter: blur(16px);
}

.intro-process-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(31, 168, 117, 0.16), rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

.intro-process-summary > * {
  position: relative;
  z-index: 1;
}

.intro-process-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--lh-green-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.intro-process-summary strong {
  display: block;
  color: var(--lh-ink);
  font-size: 1.1rem;
  line-height: 1.35;
}

.intro-process-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.intro-process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42px;
  bottom: 42px;
  width: 2px;
  background: linear-gradient(180deg, rgba(18, 98, 183, 0), rgba(18, 98, 183, 0.28), rgba(31, 168, 117, 0.24), rgba(18, 98, 183, 0));
  transform: translateX(-50%);
}

.intro-process-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  min-height: 166px;
}

.intro-process-step.is-left .intro-process-card {
  grid-column: 1;
}

.intro-process-step.is-left .intro-process-marker {
  grid-column: 2;
}

.intro-process-step.is-right .intro-process-marker {
  grid-column: 2;
}

.intro-process-step.is-right .intro-process-card {
  grid-column: 3;
}

.intro-process-marker {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.intro-process-marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 8px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: var(--lh-gradient);
  box-shadow: 0 18px 42px rgba(18, 98, 183, 0.22);
  font-size: 1.05rem;
  font-weight: 900;
}

.intro-process-card {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 18px;
  min-height: 148px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(23, 32, 51, 0.07);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.intro-process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(55, 153, 255, 0.13) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

.intro-process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(55, 153, 255, 0.3);
  box-shadow: 0 30px 72px rgba(18, 98, 183, 0.13);
}

.intro-process-card > * {
  position: relative;
  z-index: 1;
}

.intro-process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--lh-blue-dark);
  background: rgba(197, 212, 251, 0.42);
}

.intro-process-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--lh-blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.intro-process-card h3 {
  margin-bottom: 8px;
  color: var(--lh-ink);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.intro-process-card p {
  color: var(--lh-soft-ink);
  line-height: 1.7;
}

@media (max-width: 991px) {
  .intro-process-summary {
    margin-top: 18px;
  }

  .intro-process-timeline::before {
    left: 36px;
  }

  .intro-process-step {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 0;
  }

  .intro-process-step.is-left .intro-process-marker,
  .intro-process-step.is-right .intro-process-marker {
    grid-column: 1;
    grid-row: 1;
  }

  .intro-process-step.is-left .intro-process-card,
  .intro-process-step.is-right .intro-process-card {
    grid-column: 2;
    grid-row: 1;
  }

  .intro-process-marker span {
    width: 58px;
    height: 58px;
    border-width: 6px;
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .intro-process-card {
    flex-direction: column;
    gap: 14px;
    padding: 22px;
  }
}

.audit-landing #hero .custom-hero-font-1 {
  font-size: clamp(42px, 20px + 0.034 * 100vw, 66px);
}

.audit-mockup-wrap {
  position: relative;
  width: min(560px, 100%);
  min-height: 520px;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.audit-score-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(430px, 92%);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(23, 32, 51, 0.16);
  backdrop-filter: blur(18px);
}

.audit-score-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(55, 153, 255, 0.18), transparent 31%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
}

.audit-score-card > * {
  position: relative;
  z-index: 1;
}

.audit-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--lh-gradient);
  box-shadow: 0 14px 30px rgba(18, 98, 183, 0.18);
  font-weight: 800;
  font-size: 0.86rem;
}

.audit-score-card h2 {
  margin-bottom: 16px;
  color: var(--lh-ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.04;
}

.audit-score-card p {
  color: var(--lh-soft-ink);
}

.audit-score-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.audit-score-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--lh-ink);
  font-weight: 750;
  line-height: 1.35;
}

.audit-score-card li i {
  margin-top: 2px;
  color: var(--lh-green);
}

.audit-floating-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.14);
  backdrop-filter: blur(16px);
  font-weight: 800;
}

.chip-one {
  top: 72px;
  right: 0;
  color: var(--lh-blue-dark);
}

.chip-two {
  bottom: 76px;
  left: 8px;
  color: var(--lh-green-dark);
}

#felismeres {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(38, 148, 244, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
}

#felismeres::before {
  content: "";
  position: absolute;
  left: -10rem;
  bottom: 8%;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(55, 153, 255, 0.1), transparent 68%);
}

#felismeres .container {
  position: relative;
  z-index: 1;
}

#felismeres .card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.82) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow: 0 22px 54px rgba(23, 32, 51, 0.07) !important;
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

#felismeres .card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(55, 153, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

#felismeres .card:hover {
  transform: translateY(-6px);
  border-color: rgba(55, 153, 255, 0.28) !important;
  box-shadow: 0 30px 72px rgba(18, 98, 183, 0.13) !important;
}

#felismeres .card-body {
  position: relative;
  z-index: 1;
}

#felismeres .card h3 {
  color: var(--lh-ink);
  font-weight: 800;
}

#felismeres .card p {
  color: var(--lh-soft-ink);
}

.audit-points-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(38, 148, 244, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
}

.audit-points-section::before {
  content: "";
  position: absolute;
  right: -10rem;
  top: 18%;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(55, 153, 255, 0.12), transparent 68%);
}

.audit-points-section .container {
  position: relative;
  z-index: 1;
}

.audit-point-grid {
  counter-reset: audit-point;
}

.audit-point-grid > [class*="col-"] {
  counter-increment: audit-point;
}

.audit-point-grid article {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 54px rgba(23, 32, 51, 0.07);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.audit-point-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(55, 153, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

.audit-point-grid article::after {
  content: counter(audit-point, decimal-leading-zero);
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(18, 98, 183, 0.1);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.audit-point-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(55, 153, 255, 0.28);
  box-shadow: 0 30px 72px rgba(18, 98, 183, 0.13);
}

.audit-point-grid article > * {
  position: relative;
  z-index: 1;
}

.audit-point-grid span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #ffffff;
  background: var(--lh-gradient);
  box-shadow: 0 16px 34px rgba(18, 98, 183, 0.2);
  font-weight: 900;
}

.audit-point-grid p {
  margin: 0;
  color: var(--lh-ink);
  font-weight: 750;
  line-height: 1.45;
}

.audit-flow-copy strong,
.audit-flow-copy span {
  color: var(--lh-blue-dark);
  font-weight: 900;
}

.audit-flow-arrow {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin: 2px 0 12px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--lh-gradient);
  box-shadow: 0 14px 34px rgba(18, 98, 183, 0.18);
  animation: auditFlowArrow 1.7s ease-in-out infinite;
}

.audit-flow-arrow i {
  font-size: 0.92rem;
}

@keyframes auditFlowArrow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

.audit-form-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #ffffff 100%);
}

body.brand-audit-form-body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.brand-audit-form-body #header {
  position: relative;
  z-index: 30;
}

body.brand-audit-form-body #header .header-body,
body.brand-audit-form-body #header.header-transparent .header-body {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(55, 153, 255, 0.14) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(55, 153, 255, 0.24), transparent 34%),
    radial-gradient(circle at 78% 8%, rgba(143, 226, 193, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(230, 244, 255, 0.94)) !important;
  box-shadow: 0 18px 50px rgba(18, 98, 183, 0.14) !important;
  backdrop-filter: blur(18px);
}

body.brand-audit-form-body #header .header-body::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(55, 153, 255, 0.1) 42%, transparent 72%);
}

body.brand-audit-form-body #header .header-body::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 82px);
  right: clamp(20px, 5vw, 82px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55, 153, 255, 0.62), transparent);
  pointer-events: none;
}

body.brand-audit-form-body #header .header-row {
  position: relative;
  z-index: 1;
}

body.brand-audit-form-body #header .header-logo img {
  filter: drop-shadow(0 12px 24px rgba(18, 98, 183, 0.1));
}

body.brand-audit-form-body #header .nav-link:not(.p-0) {
  color: rgba(23, 32, 51, 0.72) !important;
  font-weight: 850;
}

body.brand-audit-form-body #header .nav-link:not(.p-0).active,
body.brand-audit-form-body #header .nav-link:not(.p-0):hover {
  color: var(--lh-blue-dark) !important;
}

body.brand-audit-form-body #header .nav-link .bg-gradient {
  box-shadow: 0 14px 34px rgba(18, 98, 183, 0.18);
}

.audit-form-hero {
  position: relative;
  overflow: visible;
  padding-bottom: 36px !important;
  background:
    linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef7ff 100%) !important;
}

.audit-form-page,
.audit-form-hero,
.audit-form-hero > .section-angled-content,
.audit-form-hero .container,
.audit-form-shell,
.audit-form-shell > .row {
  overflow: visible !important;
}

.audit-form-hero .container {
  max-width: 1480px;
}

.audit-form-shell {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 80px rgba(23, 32, 51, 0.1);
  backdrop-filter: blur(18px);
}

.audit-form-sidebar {
  position: relative;
  height: 100%;
  padding: clamp(24px, 3vw, 36px);
  color: #ffffff;
  border-radius: 8px 0 0 8px;
  background:
    linear-gradient(135deg, rgba(11, 63, 122, 0.97) 0%, rgba(18, 98, 183, 0.94) 54%, rgba(38, 148, 244, 0.9) 100%);
}

.audit-form-sidebar p,
.audit-form-sidebar li {
  color: rgba(255, 255, 255, 0.78);
}

.audit-form-sidebar .list-icons i {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
}

.audit-form-sidebar .audit-card-label {
  color: var(--lh-blue-dark) !important;
  background: #ffffff !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.audit-sidebar-note,
.audit-mini-proof,
.audit-progress-meter {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.audit-progress-stack {
  margin-top: 20px;
}

.audit-progress-stack .audit-progress-meter {
  margin-top: 0;
}

.audit-progress-stack-floating {
  display: none;
}

@media (min-width: 992px) {
  .audit-progress-meter {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
  }

  .audit-progress-stack.is-shadowed-source {
    visibility: hidden;
  }

  .audit-progress-stack-floating {
    position: fixed;
    top: 112px;
    z-index: 40;
    display: none;
    margin-top: 0;
    max-height: calc(100vh - 136px);
    overflow-y: auto;
    padding-right: 4px;
    color: #ffffff;
  }

  .audit-progress-stack-floating.is-visible {
    display: block;
  }

  .audit-progress-stack-floating .audit-progress-meter {
    box-shadow: 0 22px 58px rgba(11, 63, 122, 0.28);
  }
}

.audit-sidebar-note {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.audit-sidebar-note i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--lh-blue-dark);
  background: #ffffff;
}

.audit-sidebar-note span,
.audit-mini-proof span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.45;
}

.audit-sidebar-person {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.audit-sidebar-person img {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.audit-sidebar-person strong,
.audit-sidebar-person span,
.audit-sidebar-person a {
  display: block;
}

.audit-sidebar-person strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.audit-sidebar-person span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 750;
}

.audit-sidebar-person a {
  margin-top: 8px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.2;
}

.audit-sidebar-person a i {
  margin-right: 6px;
  color: #8fe2c1;
}

.audit-mini-proof strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1rem;
}

.audit-progress-meter-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 900;
}

.audit-progress-meter-head strong {
  color: #ffffff;
}

.audit-progress-track {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.audit-progress-track span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.22);
  transition: width 220ms ease;
}

.audit-progress-message {
  display: block;
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.09);
  font-weight: 700;
  line-height: 1.45;
}

.audit-progress-message.is-pulsing {
  animation: auditMessagePulse 420ms ease;
}

@keyframes auditMessagePulse {
  0% {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.09);
  }

  45% {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
  }

  100% {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.09);
  }
}

.audit-progress-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.audit-progress-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.audit-progress-list li.is-active {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.audit-progress-list span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--lh-blue-dark);
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.audit-progress-list li.is-complete {
  border-color: rgba(143, 226, 193, 0.58);
  background: rgba(31, 168, 117, 0.24);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 168, 117, 0.16);
}

.audit-progress-list li.is-complete span {
  color: #0b5f45;
  background: #8fe2c1;
}

.audit-progress-list li.is-complete span i {
  font-size: 0.78rem;
}

.audit-form-main {
  padding: clamp(22px, 3vw, 38px);
}

.audit-step {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(23, 32, 51, 0.06);
}

.audit-step + .audit-step {
  margin-top: 18px;
}

.audit-step-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 22px;
  align-items: start;
}

.audit-step-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--lh-gradient);
  font-size: 0.78rem;
  font-weight: 850;
}

.audit-step-hint {
  padding: 14px 16px;
  border: 1px solid rgba(38, 148, 244, 0.16);
  border-radius: 8px;
  color: var(--lh-blue-dark);
  background: rgba(238, 247, 255, 0.84);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.45;
}

.audit-question {
  padding: 22px 0;
  border-top: 1px solid rgba(23, 32, 51, 0.08);
}

.audit-question:first-of-type {
  border-top: 0;
}

.audit-question h4 {
  color: var(--lh-ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.audit-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.audit-choice-label {
  position: relative;
  display: block;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.audit-choice-label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.audit-choice {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 8px;
  color: var(--lh-soft-ink);
  background: rgba(247, 251, 255, 0.68);
  font-weight: 750;
  line-height: 1.35;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.audit-choice::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
  border: 2px solid rgba(18, 98, 183, 0.24);
  border-radius: 50%;
  background: #ffffff;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.audit-choice-label input:checked + .audit-choice {
  color: var(--lh-ink);
  border-color: rgba(38, 148, 244, 0.42);
  background: #eef7ff;
  box-shadow: 0 16px 38px rgba(18, 98, 183, 0.12);
}

.audit-choice-label input:checked + .audit-choice::before {
  border-color: var(--lh-blue);
  background: var(--lh-blue);
  box-shadow: inset 0 0 0 5px #ffffff;
}

.audit-text-field {
  min-height: 54px;
  border-color: rgba(23, 32, 51, 0.12) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

textarea.audit-text-field {
  min-height: 130px;
  resize: vertical;
}

.audit-result-panel {
  display: none;
  padding: 24px;
  margin-top: 22px;
  border: 1px solid rgba(38, 148, 244, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
  box-shadow: 0 18px 48px rgba(18, 98, 183, 0.1);
}

.audit-result-panel.is-visible {
  display: block;
}

.audit-score-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--lh-gradient);
  font-weight: 850;
}

.audit-evaluation-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
}

.audit-evaluation-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(38, 148, 244, 0.1), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #eef7ff 100%) !important;
}

.evaluation-score-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(23, 32, 51, 0.14);
  backdrop-filter: blur(18px);
}

.evaluation-score-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 14%, rgba(55, 153, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

.evaluation-score-card > * {
  position: relative;
  z-index: 1;
}

.score-ring {
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at center, var(--lh-blue-dark) 0 48%, transparent 49%),
    conic-gradient(var(--lh-blue) 0 12%, rgba(38, 148, 244, 0.15) 12% 100%);
  box-shadow: 0 24px 60px rgba(18, 98, 183, 0.2);
}

.score-ring strong {
  display: block;
  color: #ffffff;
  font-size: 3.1rem;
  line-height: 1;
}

.score-ring span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 800;
}

.evaluation-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--lh-blue-dark);
  background: rgba(38, 148, 244, 0.12);
  font-weight: 850;
}

.evaluation-insight-card,
.evaluation-answer-card,
.evaluation-next-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 54px rgba(23, 32, 51, 0.07);
  backdrop-filter: blur(16px);
}

.evaluation-insight-card::before,
.evaluation-answer-card::before,
.evaluation-next-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(55, 153, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}

.evaluation-insight-card > *,
.evaluation-answer-card > *,
.evaluation-next-card > * {
  position: relative;
  z-index: 1;
}

.evaluation-answer-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--lh-blue-dark);
  font-weight: 850;
  text-transform: uppercase;
}

.evaluation-answer-card p {
  margin: 0;
  color: var(--lh-ink);
  font-weight: 750;
  line-height: 1.45;
}

.priority-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.priority-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--lh-soft-ink);
  font-weight: 700;
}

.priority-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: var(--lh-gradient);
  font-weight: 900;
}

.sample-note {
  padding: 16px 18px;
  border: 1px solid rgba(38, 148, 244, 0.18);
  border-radius: 8px;
  color: var(--lh-soft-ink);
  background: rgba(38, 148, 244, 0.06);
}

.audit-summary-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
}

.audit-summary-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 24px !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(38, 148, 244, 0.1), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 54%, #eef7ff 100%) !important;
}

.audit-summary-hero .section-angled-layer-bottom {
  bottom: -72px !important;
  height: 150px !important;
}

.audit-archetype-line {
  color: var(--lh-blue-dark);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.25;
}

.audit-summary-facts {
  margin-top: -28px;
  background: transparent !important;
}

.audit-summary-facts .summary-metric {
  min-height: 108px;
}

.summary-dimension-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.summary-dimension-card {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.06);
  backdrop-filter: blur(16px);
}

.summary-dimension-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(55, 153, 255, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
}

.summary-dimension-card > * {
  position: relative;
  z-index: 1;
}

.summary-dimension-card small {
  display: block;
  min-height: 34px;
  margin-bottom: 12px;
  color: var(--lh-soft-ink);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.summary-dimension-card strong {
  display: block;
  color: var(--lh-blue-dark);
  font-size: clamp(2.1rem, 3vw, 3.15rem);
  font-weight: 950;
  line-height: 0.95;
}

.summary-dimension-card > span {
  display: block;
  margin: 10px 0 16px;
  color: var(--lh-ink);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.2;
}

.summary-dimension-card .dimension-bar {
  margin-bottom: 0;
}

.summary-dimension-card.is-red {
  border-color: rgba(225, 80, 70, 0.28);
  background: rgba(255, 246, 245, 0.88);
}

.summary-dimension-card.is-red::before {
  background:
    radial-gradient(circle at 18% 14%, rgba(225, 80, 70, 0.15), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
}

.summary-dimension-card.is-red strong {
  color: #c9352b;
}

.summary-dimension-card.is-red .dimension-bar {
  background: rgba(225, 80, 70, 0.12);
}

.summary-dimension-card.is-red .dimension-bar span {
  background: linear-gradient(135deg, #df4d42, #ff7a6f);
}

.summary-dimension-card.is-orange {
  border-color: rgba(218, 142, 37, 0.28);
  background: rgba(255, 250, 239, 0.9);
}

.summary-dimension-card.is-orange::before {
  background:
    radial-gradient(circle at 18% 14%, rgba(218, 142, 37, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
}

.summary-dimension-card.is-orange strong {
  color: #b46c09;
}

.summary-dimension-card.is-orange .dimension-bar {
  background: rgba(218, 142, 37, 0.14);
}

.summary-dimension-card.is-orange .dimension-bar span {
  background: linear-gradient(135deg, #d88618, #ffb84d);
}

.summary-dimension-card.is-green {
  border-color: rgba(31, 168, 117, 0.28);
  background: rgba(239, 250, 245, 0.9);
}

.summary-dimension-card.is-green::before {
  background:
    radial-gradient(circle at 18% 14%, rgba(31, 168, 117, 0.15), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
}

.summary-dimension-card.is-green strong {
  color: #147a58;
}

.summary-dimension-card.is-green .dimension-bar {
  background: rgba(31, 168, 117, 0.13);
}

.summary-dimension-card.is-green .dimension-bar span {
  background: linear-gradient(135deg, var(--lh-green-dark), var(--lh-green));
}

.summary-top-card,
.answer-summary-card,
.ai-evaluation-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(23, 32, 51, 0.07);
  backdrop-filter: blur(16px);
}

.summary-top-card {
  padding: 24px;
}

.summary-metric {
  min-height: 122px;
  padding: 22px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 8px;
  background: rgba(247, 251, 255, 0.78);
}

.summary-metric small {
  display: block;
  margin-bottom: 8px;
  color: var(--lh-soft-ink);
  font-weight: 800;
  text-transform: uppercase;
}

.summary-metric strong {
  display: block;
  color: var(--lh-ink);
  font-size: 1.55rem;
  line-height: 1.15;
}

.certainty-pill {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(38, 148, 244, 0.2);
  border-radius: 8px;
  color: var(--lh-blue-dark);
  background: rgba(38, 148, 244, 0.08);
  font-weight: 850;
}

.certainty-pill i {
  color: var(--lh-blue);
}

.audit-dimensions-section {
  background:
    linear-gradient(135deg, rgba(232, 244, 255, 0.72) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(238, 248, 255, 0.82) 100%),
    linear-gradient(180deg, #f8fcff 0%, #eef7ff 100%);
}

#ai-ertekeles {
  background:
    linear-gradient(135deg, rgba(238, 248, 255, 0.76) 0%, rgba(255, 255, 255, 0.9) 52%, rgba(229, 244, 255, 0.78) 100%),
    linear-gradient(180deg, #f7fbff 0%, #edf7ff 100%);
}

.audit-reason-section {
  background:
    linear-gradient(135deg, rgba(244, 250, 255, 0.92) 0%, rgba(255, 255, 255, 0.96) 48%, rgba(234, 247, 255, 0.9) 100%),
    linear-gradient(180deg, #ffffff 0%, #f1f9ff 100%);
}

.audit-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audit-reason-grid.reason-count-1 {
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
}

.audit-reason-grid.reason-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.audit-reason-card {
  position: relative;
  overflow: hidden;
  min-height: 228px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(239, 248, 255, 0.76));
  box-shadow: 0 18px 44px rgba(18, 98, 183, 0.07);
  backdrop-filter: blur(16px);
}

.audit-reason-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 16%, rgba(55, 153, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.audit-reason-card > * {
  position: relative;
  z-index: 1;
}

.audit-reason-card .analysis-reveal-content > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--lh-gradient);
  font-weight: 900;
}

.audit-reason-card h3 {
  margin-bottom: 12px;
  color: var(--lh-ink);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.24;
}

.audit-reason-card p {
  margin-bottom: 0;
  color: var(--lh-soft-ink);
  font-weight: 700;
  line-height: 1.55;
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dimension-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(18, 98, 183, 0.07);
  backdrop-filter: blur(16px);
}

.dimension-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 12%, rgba(55, 153, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}

.dimension-card > * {
  position: relative;
  z-index: 1;
}

.dimension-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.dimension-card-head h3 {
  margin: 0;
  color: var(--lh-ink);
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.2;
}

.dimension-card-head strong {
  flex: 0 0 auto;
  color: var(--lh-blue-dark);
  font-size: 1rem;
  font-weight: 900;
}

.dimension-bar {
  overflow: hidden;
  height: 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(18, 98, 183, 0.1);
}

.dimension-bar span {
  display: block;
  min-width: 4%;
  height: 100%;
  border-radius: inherit;
  background: var(--lh-gradient);
}

.dimension-card.is-red {
  border-color: rgba(225, 80, 70, 0.28);
  background: rgba(255, 246, 245, 0.86);
}

.dimension-card.is-red::before {
  background:
    radial-gradient(circle at 16% 12%, rgba(225, 80, 70, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.dimension-card.is-red .dimension-card-head strong {
  color: #c9352b;
}

.dimension-card.is-red .dimension-bar {
  background: rgba(225, 80, 70, 0.12);
}

.dimension-card.is-red .dimension-bar span {
  background: linear-gradient(135deg, #df4d42, #ff7a6f);
}

.dimension-card.is-orange {
  border-color: rgba(218, 142, 37, 0.28);
  background: rgba(255, 250, 239, 0.88);
}

.dimension-card.is-orange::before {
  background:
    radial-gradient(circle at 16% 12%, rgba(218, 142, 37, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.dimension-card.is-orange .dimension-card-head strong {
  color: #b46c09;
}

.dimension-card.is-orange .dimension-bar {
  background: rgba(218, 142, 37, 0.14);
}

.dimension-card.is-orange .dimension-bar span {
  background: linear-gradient(135deg, #d88618, #ffb84d);
}

.dimension-card.is-green {
  border-color: rgba(31, 168, 117, 0.28);
  background: rgba(239, 250, 245, 0.88);
}

.dimension-card.is-green::before {
  background:
    radial-gradient(circle at 16% 12%, rgba(31, 168, 117, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.dimension-card.is-green .dimension-card-head strong {
  color: #147a58;
}

.dimension-card.is-green .dimension-bar {
  background: rgba(31, 168, 117, 0.13);
}

.dimension-card.is-green .dimension-bar span {
  background: linear-gradient(135deg, var(--lh-green-dark), var(--lh-green));
}

.dimension-card p {
  margin: 0;
  color: var(--lh-soft-ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 1199px) {
  .summary-dimension-strip,
  .audit-reason-grid,
  .dimension-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.answer-summary-card {
  padding: clamp(24px, 4vw, 38px);
}

.answer-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.answer-table th {
  padding: 0 16px 6px;
  color: var(--lh-soft-ink);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.answer-table td {
  padding: 16px;
  color: var(--lh-ink);
  background: rgba(247, 251, 255, 0.9);
  border-top: 1px solid rgba(23, 32, 51, 0.08);
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
  vertical-align: top;
}

.answer-table td:first-child {
  width: 72px;
  border-left: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 8px 0 0 8px;
  color: var(--lh-blue-dark);
  font-weight: 900;
}

.answer-table td:last-child {
  border-right: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 0 8px 8px 0;
  color: var(--lh-soft-ink);
  font-weight: 700;
}

.ai-evaluation-card {
  padding: clamp(28px, 4vw, 46px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(11, 63, 122, 0.97) 0%, rgba(18, 98, 183, 0.94) 54%, rgba(38, 148, 244, 0.9) 100%);
}

.ai-evaluation-card h2,
.ai-evaluation-card h3,
.ai-evaluation-card strong {
  color: #ffffff;
}

.ai-evaluation-card p,
.ai-evaluation-card li {
  color: rgba(255, 255, 255, 0.78);
}

.ai-evaluation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.ai-evaluation-grid article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.ai-evaluation-grid i {
  color: #ffffff;
}

.client-result-card,
.expert-response-card,
.recommended-package-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86) 0%, rgba(244, 250, 255, 0.78) 100%);
  box-shadow: 0 22px 54px rgba(18, 98, 183, 0.08);
  backdrop-filter: blur(18px);
}

.client-result-card {
  padding: clamp(24px, 4vw, 42px);
}

.result-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.result-list-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.06);
  backdrop-filter: blur(16px);
}

.result-list-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 12%, rgba(55, 153, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}

.result-list-card > * {
  position: relative;
  z-index: 1;
}

.result-list-card.good {
  border-color: rgba(31, 168, 117, 0.28);
  background: rgba(239, 250, 245, 0.88);
}

.result-list-card.good::before {
  background:
    radial-gradient(circle at 16% 12%, rgba(31, 168, 117, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.result-list-card.good .dimension-card-head strong {
  color: #147a58;
}

.result-list-card.good .dimension-bar {
  background: rgba(31, 168, 117, 0.13);
}

.result-list-card.good .dimension-bar span {
  background: linear-gradient(135deg, var(--lh-green-dark), var(--lh-green));
}

.result-list-card.improve {
  border-color: rgba(225, 80, 70, 0.28);
  background: rgba(255, 246, 245, 0.86);
}

.result-list-card.improve::before {
  background:
    radial-gradient(circle at 16% 12%, rgba(225, 80, 70, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.result-list-card.improve .dimension-card-head strong {
  color: #c9352b;
}

.result-list-card.improve .dimension-bar {
  background: rgba(225, 80, 70, 0.12);
}

.result-list-card.improve .dimension-bar span {
  background: linear-gradient(135deg, #df4d42, #ff7a6f);
}

.result-list-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.result-list-card li {
  position: relative;
  padding-left: 30px;
  color: var(--lh-soft-ink);
  font-weight: 700;
  line-height: 1.45;
}

.result-list-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.result-list-card.good li::before {
  background: var(--lh-green);
}

.result-list-card.improve li::before {
  background: #df4d42;
}

.result-list-card.improve.has-no-items {
  border-color: rgba(55, 153, 255, 0.24);
  background: rgba(241, 248, 255, 0.88);
}

.result-list-card.improve.has-no-items::before {
  background:
    radial-gradient(circle at 16% 12%, rgba(55, 153, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
}

.result-list-card.improve.has-no-items .dimension-card-head strong {
  color: var(--lh-blue-dark);
}

.result-list-card.improve.has-no-items .dimension-bar {
  background: rgba(55, 153, 255, 0.12);
}

.result-list-card.improve.has-no-items .dimension-bar span {
  background: var(--lh-gradient);
}

.result-list-card.improve.has-no-items li::before {
  background: var(--lh-blue);
}

.expert-response-card {
  padding: clamp(24px, 4vw, 42px);
}

.expert-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.expert-person img {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.16);
}

.expert-person strong {
  display: block;
  color: var(--lh-ink);
  font-size: 1.25rem;
  font-weight: 900;
}

.expert-person span {
  display: block;
  color: var(--lh-soft-ink);
  font-weight: 700;
}

.expert-quote {
  padding: 22px;
  border: 1px solid rgba(38, 148, 244, 0.18);
  border-left: 4px solid var(--lh-blue);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(233, 246, 255, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.typewriter-quote {
  position: relative;
  min-height: 330px;
}

.analysis-loader {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(38, 148, 244, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(18, 98, 183, 0.08);
  transition: opacity 220ms ease, transform 220ms ease;
}

.analysis-loader.is-hidden {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.analysis-loader-bars {
  width: 48px;
  height: 42px;
  display: inline-flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--lh-blue);
  background: rgba(38, 148, 244, 0.08);
}

.analysis-loader-bars span {
  width: 5px;
  height: 12px;
  border-radius: 999px;
  background: currentColor;
  animation: auditLoaderBars 820ms ease-in-out infinite;
}

.analysis-loader-bars span:nth-child(2) {
  animation-delay: 120ms;
}

.analysis-loader-bars span:nth-child(3) {
  animation-delay: 240ms;
}

.analysis-loader-bars span:nth-child(4) {
  animation-delay: 360ms;
}

.analysis-loader strong {
  display: block;
  color: var(--lh-ink);
  font-weight: 900;
  line-height: 1.2;
}

.analysis-loader small {
  display: block;
  margin-top: 4px;
  color: var(--lh-soft-ink);
  font-weight: 700;
  line-height: 1.35;
}

.analysis-reveal {
  position: relative;
}

.analysis-reveal-content {
  transition: opacity 240ms ease, transform 240ms ease;
}

.analysis-reveal-loader {
  position: absolute;
  inset: 14px;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(38, 148, 244, 0.18);
  border-radius: 8px;
  color: var(--lh-blue-dark);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(18, 98, 183, 0.08);
  font-weight: 850;
  text-align: center;
  backdrop-filter: blur(10px);
}

.analysis-reveal-loader .analysis-loader-bars {
  width: 42px;
  height: 36px;
}

.analysis-reveal-loader .analysis-loader-bars span {
  width: 4px;
}

body.analysis-runtime .analysis-reveal.is-preparing .analysis-reveal-content {
  opacity: 0;
  transform: translateY(6px);
}

body.analysis-runtime .analysis-reveal.is-preparing .analysis-reveal-loader {
  display: flex;
}

body.analysis-runtime .analysis-reveal.is-ready .analysis-reveal-content {
  opacity: 1;
  transform: none;
}

.typewriter-line {
  min-height: 1.6em;
}

.typewriter-line.is-active::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.15em;
  margin-left: 4px;
  background: var(--lh-blue);
  animation: auditCursorBlink 0.8s steps(2, start) infinite;
  vertical-align: -0.15em;
}

@keyframes auditCursorBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@keyframes auditLoaderBars {
  0%,
  100% {
    height: 10px;
    opacity: 0.45;
  }

  45% {
    height: 28px;
    opacity: 1;
  }
}

.recommended-package-card {
  padding: clamp(28px, 4vw, 46px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(11, 63, 122, 0.97) 0%, rgba(18, 98, 183, 0.94) 54%, rgba(38, 148, 244, 0.9) 100%);
}

.recommended-package-card h2,
.recommended-package-card h3,
.recommended-package-card strong {
  color: #ffffff;
}

.recommended-package-card p,
.recommended-package-card li {
  color: rgba(255, 255, 255, 0.8);
}

.recommended-package-card .package-price {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--lh-blue-dark);
  background: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
}

.answers-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 32px rgba(23, 32, 51, 0.05);
}

.answers-accordion .accordion-button {
  color: var(--lh-ink);
  background: rgba(247, 251, 255, 0.9);
  font-weight: 850;
  box-shadow: none;
}

.answers-accordion .accordion-button:not(.collapsed) {
  color: var(--lh-blue-dark);
  background: #eef7ff;
}

.answers-accordion .accordion-body {
  color: var(--lh-soft-ink);
  font-weight: 700;
  line-height: 1.55;
}

.next-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.primary-next-step-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(9, 70, 47, 0.98) 0%, rgba(20, 122, 88, 0.96) 52%, rgba(31, 168, 117, 0.94) 100%);
  box-shadow: 0 28px 76px rgba(31, 168, 117, 0.28);
}

.primary-next-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.22), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(214, 239, 232, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.primary-next-step-card > * {
  position: relative;
  z-index: 1;
}

.primary-next-step-card h3,
.primary-next-step-card p {
  color: #ffffff;
}

.primary-next-step-card p {
  opacity: 0.92;
}

.primary-next-step-card .primary-next-step-tag {
  color: var(--lh-green-dark) !important;
}

.primary-next-step-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-top: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  font-weight: 800;
  line-height: 1.25;
}

.primary-next-step-meta span {
  min-width: 0;
}

.primary-next-step-card .next-path-icon {
  margin-bottom: 0;
  color: var(--lh-green-dark);
  background: #ffffff;
}

.primary-next-step-card .btn {
  min-width: 220px;
}

.alternative-next-steps {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.alternative-next-steps .next-path-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.audit-contact-section {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(76px, 8vw, 128px) !important;
  background:
    linear-gradient(135deg, rgba(236, 247, 255, 0.94) 0%, rgba(255, 255, 255, 0.96) 48%, rgba(225, 243, 255, 0.94) 100%),
    linear-gradient(180deg, #f6fbff 0%, #e8f6ff 100%) !important;
}

.audit-contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), transparent 48%),
    radial-gradient(circle at 82% 22%, rgba(55, 153, 255, 0.1), transparent 32%);
}

.audit-contact-section .container {
  position: relative;
  z-index: 1;
}

.audit-contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(238, 248, 255, 0.78) 100%);
  box-shadow: 0 22px 54px rgba(18, 98, 183, 0.08);
  backdrop-filter: blur(18px);
}

.audit-contact-person {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 30px);
}

.audit-contact-person img {
  width: clamp(96px, 10vw, 142px);
  height: clamp(96px, 10vw, 142px);
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 20px 46px rgba(23, 32, 51, 0.14);
}

.audit-contact-person p {
  color: var(--lh-soft-ink);
}

.audit-contact-actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.audit-contact-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(38, 148, 244, 0.18);
  border-radius: 8px;
  color: var(--lh-ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  font-weight: 850;
}

.audit-contact-link i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--lh-gradient);
}

.audit-contact-link:hover {
  color: var(--lh-blue-dark);
  border-color: rgba(38, 148, 244, 0.34);
}

.audit-sweet-modal .modal-dialog {
  max-width: 520px;
}

.audit-sweet-modal .modal-content {
  position: relative;
  align-items: center;
  padding: clamp(30px, 5vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(237, 248, 255, 0.9) 100%);
  box-shadow: 0 30px 90px rgba(18, 98, 183, 0.22);
  backdrop-filter: blur(18px);
}

.audit-sweet-modal .btn-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.audit-sweet-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--lh-green-dark), var(--lh-green));
  box-shadow: 0 18px 42px rgba(31, 168, 117, 0.24);
  font-size: 2rem;
}

.audit-sweet-modal .modal-title {
  margin-bottom: 12px;
  color: var(--lh-ink);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.12;
}

.audit-sweet-modal p {
  max-width: 390px;
  margin-bottom: 10px;
  color: var(--lh-soft-ink);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.55;
}

.audit-sweet-modal .audit-sweet-note {
  margin-bottom: 24px;
  color: var(--lh-blue-dark);
  font-weight: 900;
}

.audit-ai-question-modal .modal-dialog {
  max-width: 620px;
}

.audit-ai-question-modal p {
  max-width: 500px;
}

.audit-ai-icon {
  background: var(--lh-gradient);
  box-shadow: 0 18px 42px rgba(18, 98, 183, 0.24);
}

.audit-ai-question-form {
  width: min(100%, 500px);
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.audit-ai-field {
  width: 100%;
  min-height: 84px;
  padding: 14px 16px;
  border: 1px solid rgba(38, 148, 244, 0.18);
  border-radius: 8px;
  color: var(--lh-ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font: inherit;
  font-weight: 700;
  line-height: 1.45;
  outline: none;
  resize: vertical;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.audit-ai-field:focus {
  border-color: rgba(38, 148, 244, 0.48);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(38, 148, 244, 0.1);
}

.audit-ai-field::placeholder {
  color: rgba(100, 112, 131, 0.76);
}

.audit-ai-question-form .btn {
  justify-self: center;
  min-width: 180px;
  margin-top: 6px;
}

.next-path-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(23, 32, 51, 0.07);
  backdrop-filter: blur(16px);
}

.next-path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(55, 153, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

.next-path-card > * {
  position: relative;
  z-index: 1;
}

.next-path-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #ffffff;
  background: var(--lh-gradient);
  box-shadow: 0 16px 34px rgba(18, 98, 183, 0.2);
  font-size: 1.35rem;
}

.next-path-card p {
  color: var(--lh-soft-ink);
}

.next-path-card .btn {
  margin-top: auto;
}

.next-path-card.featured {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(11, 63, 122, 0.97) 0%, rgba(18, 98, 183, 0.94) 54%, rgba(38, 148, 244, 0.9) 100%);
}

.next-path-card.featured h3,
.next-path-card.featured p {
  color: #ffffff;
}

.next-path-card.featured p {
  opacity: 0.8;
}

.next-path-card.featured .next-path-icon {
  color: var(--lh-blue-dark);
  background: #ffffff;
}

.audit-summary-page #kovetkezo-lepesek {
  padding-bottom: 84px !important;
}

.audit-footer-marquee {
  position: relative;
  margin-top: -1px;
  padding-top: 0;
  overflow: hidden;
}

.audit-footer-marquee .footer-marquee-wrap {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.audit-footer-marquee .marquee {
  transform: rotate(3deg) translateY(0);
  transform-origin: center;
}

@media (max-width: 1199px) {
  .audit-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .answer-table,
  .answer-table thead,
  .answer-table tbody,
  .answer-table tr,
  .answer-table th,
  .answer-table td {
    display: block;
  }

  .answer-table thead {
    display: none;
  }

  .answer-table td {
    border-left: 1px solid rgba(23, 32, 51, 0.08);
    border-right: 1px solid rgba(23, 32, 51, 0.08);
    border-radius: 0;
  }

  .answer-table td:first-child {
    width: auto;
    border-radius: 8px 8px 0 0;
  }

  .answer-table td:last-child {
    border-radius: 0 0 8px 8px;
  }

  .ai-evaluation-grid {
    grid-template-columns: 1fr;
  }

  .summary-dimension-strip,
  .audit-reason-grid,
  .dimension-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-split-grid {
    grid-template-columns: 1fr;
  }

  .next-path-grid {
    grid-template-columns: 1fr;
  }

  .alternative-next-steps .next-path-grid {
    grid-template-columns: 1fr;
  }

  .primary-next-step-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .primary-next-step-meta {
    align-items: flex-start;
  }

  .primary-next-step-card .btn {
    width: 100%;
  }

  .audit-contact-card,
  .audit-contact-person {
    grid-template-columns: 1fr;
  }

  .audit-contact-card {
    text-align: left;
  }

  .audit-contact-person {
    flex-direction: column;
    align-items: flex-start;
  }

  .audit-contact-actions {
    width: 100%;
    min-width: 0;
  }

  .audit-step-head {
    grid-template-columns: 1fr;
  }

  .audit-form-sidebar {
    position: static;
    min-height: 0;
    max-height: none;
    overflow: visible;
    border-radius: 8px 8px 0 0;
  }

  .audit-sidebar-sticky,
  .audit-progress-meter {
    position: static;
    max-height: none;
    overflow: visible;
    box-shadow: none;
  }
}

@media (max-width: 680px) {
  .summary-dimension-strip,
  .audit-reason-grid,
  .dimension-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .audit-choice-grid {
    grid-template-columns: 1fr;
  }
}

.module-floating-preview {
  width: min(540px, calc(100vw - 32px));
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(23, 32, 51, 0.22);
}

.module-floating-preview img {
  width: 100%;
  max-height: 400px;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
}

.alaprendszer-video-block {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(38, 148, 244, 0.1), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #f3f7ff 100%) !important;
}

.alaprendszer-video-block::before {
  content: "";
  position: absolute;
  left: 5%;
  top: 7%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(38, 148, 244, 0.24);
}

.alaprendszer-video-block .container {
  position: relative;
  z-index: 1;
}

.alaprendszer-video-block .custom-font-1 {
  max-width: 820px;
}

.hub-highlight {
  display: inline-block;
  margin-left: 0.08em;
  padding: 0.03em 0.18em 0.08em;
  border-radius: 0.16em;
  color: #ffffff;
  background: #3799ff;
  font-weight: 900;
  line-height: 0.92;
}

.alaprendszer-video-pill {
  width: min(520px, 100%);
  min-height: 112px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--lh-gradient);
  box-shadow: 0 28px 70px rgba(18, 98, 183, 0.24);
  text-decoration: none;
}

.alaprendszer-video-pill:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 34px 82px rgba(18, 98, 183, 0.3);
}

.video-preview-frame {
  flex: 1 1 auto;
  height: 84px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.video-preview-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(1.05);
}

.video-play-button {
  width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #ffffff;
  background: var(--lh-night);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.video-play-button i {
  margin-left: 4px;
  font-size: 30px;
}

#egyeztetes {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(38, 148, 244, 0.12), transparent 30%),
    radial-gradient(circle at 76% 12%, rgba(31, 168, 117, 0.1), transparent 26%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #f3f7ff 100%) !important;
}

#egyeztetes::before {
  content: "";
  position: absolute;
  top: 14%;
  left: -8%;
  width: 34rem;
  height: 34rem;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 98, 183, 0.12), transparent 68%);
}

#egyeztetes .container {
  position: relative;
  z-index: 1;
}

.egyeztetes-photo-wrap {
  position: relative;
  overflow: hidden;
  width: min(320px, 100%);
  min-height: 420px;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 34px 84px rgba(23, 32, 51, 0.18);
  isolation: isolate;
}

.egyeztetes-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 48%, rgba(16, 23, 34, 0.64) 100%),
    linear-gradient(135deg, rgba(38, 148, 244, 0.14), rgba(255, 255, 255, 0) 42%);
}

.egyeztetes-photo-wrap::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-top: 2px solid rgba(255, 255, 255, 0.72);
  border-left: 2px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.egyeztetes-photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.03) contrast(1.02);
}

.egyeztetes-photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(16, 23, 34, 0.54);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.egyeztetes-photo-caption strong {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.egyeztetes-photo-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.35;
}

.egyeztetes-note {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.4rem;
  padding: 12px 16px;
  border: 1px solid rgba(31, 168, 117, 0.22);
  border-radius: 999px;
  color: var(--lh-green-dark);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.07);
  font-weight: 700;
}

.egyeztetes-note i {
  color: var(--lh-green);
}

.egyeztetes-steps {
  position: relative;
}

.egyeztetes-steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(18, 98, 183, 0), rgba(18, 98, 183, 0.26), rgba(31, 168, 117, 0.26), rgba(31, 168, 117, 0));
}

.egyeztetes-step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82) !important;
  background: rgba(255, 255, 255, 0.74) !important;
  box-shadow: 0 22px 54px rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.egyeztetes-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(38, 148, 244, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.egyeztetes-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(38, 148, 244, 0.28) !important;
  box-shadow: 0 28px 66px rgba(18, 98, 183, 0.16);
}

.egyeztetes-step-card .card-body {
  position: relative;
  z-index: 1;
}

.egyeztetes-step-card .step-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(18, 98, 183, 0.16);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}

.egyeztetes-step-card i {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff !important;
  background: var(--lh-gradient);
  box-shadow: 0 14px 30px rgba(18, 98, 183, 0.2);
  font-size: 1.25rem !important;
}

.egyeztetes-step-card h3 {
  color: var(--lh-ink);
}

.egyeztetes-step-card p {
  color: var(--lh-soft-ink);
}

.privacy-check {
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(38, 148, 244, 0.16);
  border-radius: 8px;
  background: rgba(38, 148, 244, 0.05);
}

.privacy-check .form-check-input {
  margin-left: -26px;
  margin-top: 0.28rem;
}

#footer {
  overflow: hidden;
}

.footer-marquee-wrap {
  position: relative;
  z-index: 2;
}

.footer-marquee-wrap .marquee p {
  line-height: 1.2;
  white-space: nowrap;
}

#footer .container {
  padding-top: 0;
}

#footer .row.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

#footer .col.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

#footer .row.pt-5.mt-5 {
  padding-top: 1.75rem !important;
  margin-top: 1.75rem !important;
}

#footer h3.custom-font-1 {
  margin-bottom: 1rem;
}

#footer h4 {
  margin-bottom: 0.75rem;
}

#footer .list.mt-4 {
  margin-top: 1rem !important;
}

.footer-brand-logo {
  width: min(360px, 100%);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand-logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus {
  color: #ffffff;
}

.privacy-modal .modal-dialog {
  max-width: min(1080px, calc(100% - 32px));
}

.privacy-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(23, 32, 51, 0.28);
}

.privacy-modal .modal-header {
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

.privacy-modal iframe {
  width: 100%;
  height: 76vh;
  min-height: 520px;
  display: block;
  border: 0;
  background: #f8f9fa;
}

#kinek .col-lg-10 {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 64px rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(18px);
}

#kinek .col-lg-10::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(31, 168, 117, 0.17), rgba(255, 255, 255, 0) 42%),
    linear-gradient(225deg, rgba(38, 148, 244, 0.1), rgba(255, 255, 255, 0) 38%);
  opacity: 0.72;
}

#kinek .col-lg-10 > * {
  position: relative;
  z-index: 1;
}

#kinek .col-lg-10 > span {
  background: rgba(31, 168, 117, 0.12) !important;
  color: #147a58 !important;
}

.kinek-checklist {
  padding-top: 6px;
}

.kinek-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.kinek-checklist li {
  min-height: 54px;
  color: var(--lh-soft-ink);
  font-weight: 600;
}

.kinek-checklist .list-icons i {
  color: #1fa875 !important;
  border-color: #1fa875 !important;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .kinek-checklist ul {
    grid-template-columns: 1fr;
  }

  .kinek-checklist li {
    min-height: 0;
  }
}

.parallax[data-image-src*="rendezett-digitalis-alap-bg"] {
  position: relative;
}

.parallax[data-image-src*="rendezett-digitalis-alap-bg"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(10, 16, 28, 0.58);
}

.parallax[data-image-src*="rendezett-digitalis-alap-bg"] .scrollable-parallax-wrapper {
  position: relative;
  z-index: 2;
}

#csomagok .row.g-4 > .col-lg-4:nth-child(2) {
  position: relative;
  z-index: 2;
}

#csomagok .row.g-4 > .col-lg-4:nth-child(2) .card {
  position: relative;
  overflow: hidden;
  transform: translateY(-18px) scale(1.03);
  border: 0 !important;
  background: var(--lh-gradient);
  box-shadow: 0 34px 90px rgba(38, 148, 244, 0.34) !important;
}

#csomagok .row.g-4 > .col-lg-4:nth-child(2) .card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 14%, rgba(255,255,255,0.22), transparent 28%);
}

#csomagok .row.g-4 > .col-lg-4:nth-child(2) .card-body {
  position: relative;
  z-index: 1;
}

#csomagok .row.g-4 > .col-lg-4:nth-child(2) h3,
#csomagok .row.g-4 > .col-lg-4:nth-child(2) p,
#csomagok .row.g-4 > .col-lg-4:nth-child(2) li,
#csomagok .row.g-4 > .col-lg-4:nth-child(2) .text-dark {
  color: #ffffff !important;
}

#csomagok .row.g-4 > .col-lg-4:nth-child(2) p,
#csomagok .row.g-4 > .col-lg-4:nth-child(2) li {
  opacity: 0.86;
}

#csomagok .row.g-4 > .col-lg-4:nth-child(2) .bg-gradient {
  color: var(--lh-blue-dark) !important;
  background: #ffffff !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

#csomagok .row.g-4 > .col-lg-4:nth-child(2) .list-icons i {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.72);
}

#csomagok .row.g-4 > .col-lg-4:nth-child(2) .btn {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--lh-green-dark), var(--lh-green)) !important;
  border-color: var(--lh-green) !important;
  box-shadow: 0 18px 42px rgba(5, 30, 22, 0.22) !important;
}

#csomagok .card .btn {
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

#csomagok .row.g-4 > .col-lg-4:nth-child(2) .btn:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f6649, var(--lh-green-dark)) !important;
  border-color: var(--lh-green-dark) !important;
}

@media (max-width: 991px) {
  .audit-mockup-wrap {
    min-height: auto;
    padding-top: 24px;
  }

  .audit-score-card {
    width: 100%;
  }

  .audit-floating-chip {
    position: static;
    justify-self: center;
    margin-top: 12px;
  }

  .alaprendszer-video-pill {
    min-height: 92px;
    gap: 12px;
    padding: 10px;
  }

  .video-preview-frame {
    height: 70px;
  }

  .video-play-button {
    width: 62px;
    height: 62px;
  }

  .video-play-button i {
    font-size: 24px;
  }

  .egyeztetes-steps::before {
    display: none;
  }

  .egyeztetes-photo-wrap {
    width: min(300px, 100%);
    min-height: 390px;
    margin: 0 auto;
  }

  .egyeztetes-photo-wrap img {
    min-height: 390px;
  }

  #csomagok .row.g-4 > .col-lg-4:nth-child(2) .card {
    transform: none;
  }
}
