.landing {
  --accent: #2f6fe1;
  --accent-orange: #f4b740;
  --accent-soft: rgba(47, 111, 225, 0.12);
  --accent-ghost: rgba(47, 111, 225, 0.08);
  --accent-strong: rgba(47, 111, 225, 0.2);
  --accent-cyan: #18a7d0;
  --accent-warm: #f47c24;
  --text-strong: #0f1b2d;
  --text: #42546b;
  --muted: #5f7187;
  --surface: #ffffff;
  --border: #d9e3ef;
  --landing-scroll-progress: 0;
  --landing-nav-offset: 128px;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 88px;
  background: #edf2fb;
  max-width: none;
  margin: 0;
}

.landing h1,
.landing h2,
.landing h3 {
  font-family: "Fraunces", "Sora", "Segoe UI", "Segoe UI Web", "Segoe UI Variable", Arial, sans-serif;
  color: var(--text-strong);
}

.landing p,
.landing li,
.landing span {
  color: var(--text);
}

.scroll-reveal {
  opacity: 0;
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.2, 0.85, 0.25, 1);
  will-change: opacity, transform;
}

.scroll-reveal.reveal-left {
  transform: translateX(-34px);
}

.scroll-reveal.reveal-right {
  transform: translateX(34px);
}

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

.public-shell {
  padding: 0;
  max-width: none;
  margin: 0;
  background: #edf2fb;
  min-height: 100vh;
}

.landing-hero {
  margin: 0;
  padding: 28px 0 64px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
  border-radius: 0;
  border: none;
  box-shadow: none;
  position: relative;
}

.landing-nav-shell {
  position: sticky;
  top: 0;
  z-index: 140;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid #e2eaf5;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.landing-nav-strip {
  border-bottom: 1px solid #e5edf8;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%);
}

.landing-nav-strip-links {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  overflow-x: auto;
  padding: 6px 0;
  scrollbar-width: none;
}

.landing-nav-strip-links::-webkit-scrollbar {
  display: none;
}

.landing-nav-strip-links a {
  text-decoration: none;
  color: #56708e;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
  background: transparent;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.landing-nav-strip-links a:hover {
  color: #2f6fe1;
  border-color: #d4e2f5;
  background: #ffffff;
}

.landing-nav-strip-links a[aria-current="page"],
.landing-nav-strip-links a.active {
  color: #2f6fe1;
  border-color: #c9dbf3;
  background: #ffffff;
}

.landing-nav-shell.is-scrolled {
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  border-bottom-color: #d5dfed;
}

.landing-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0 2px;
}

.landing-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-brand img {
  height: 52px;
}

.landing-brand-link {
  display: inline-flex;
  align-items: center;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0 4px;
  border-top: 1px solid #e6edf6;
}

.landing-nav-primary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-nav-primary-sections {
  gap: 12px;
}

.landing-nav-mobile {
  display: none;
}

.landing-nav-toggle {
  border: 1px solid #cfdbee;
  background: #ffffff;
  color: #3d4b61;
  border-radius: 999px;
  padding: 7px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.landing-nav-toggle i {
  font-size: 16px;
  line-height: 1;
}

.landing-nav-toggle:hover {
  color: var(--accent);
  border-color: #b9cdea;
  background: #f7faff;
}

.landing-scroll-progress {
  height: 3px;
  background: #e8eef8;
  border-radius: 999px;
  overflow: hidden;
}

.landing-scroll-progress-bar {
  display: block;
  height: 100%;
  width: calc(var(--landing-scroll-progress) * 1%);
  background: linear-gradient(90deg, #2f6fe1 0%, #18a7d0 100%);
  transition: width 120ms linear;
}

.landing-nav-primary a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #314860;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border: 1px solid #d8e4f3;
  border-radius: 999px;
  background: #ffffff;
  white-space: nowrap;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.landing-nav-primary a:hover {
  color: var(--accent);
  border-color: #c0d5ef;
  background: #f7faff;
}

.landing-nav-primary a[aria-current="page"] {
  color: var(--accent);
  border-color: #b9cdea;
  background: #f1f6ff;
}

.landing-nav-primary a.active {
  color: var(--accent);
  border-color: #b9cdea;
  background: #f1f6ff;
}

.landing-nav-primary-sections a {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #5f738d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  border-bottom: 1px solid transparent;
}

.landing-nav-primary-sections a:hover {
  color: #2f6fe1;
  border-color: rgba(47, 111, 225, 0.35);
  background: transparent;
}

.landing-nav-primary-sections + .landing-nav-more > summary {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: #5f738d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
}

.landing-nav-primary-sections + .landing-nav-more > summary:hover {
  color: #2f6fe1;
  border-color: rgba(47, 111, 225, 0.35);
  background: transparent;
}

.landing-nav-more {
  position: relative;
  flex-shrink: 0;
}

.landing-nav-more > summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid #d8e4f3;
  border-radius: 999px;
  background: #ffffff;
  color: #314860;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.landing-nav-more > summary::-webkit-details-marker {
  display: none;
}

.landing-nav-more > summary i {
  font-size: 12px;
  transition: transform 160ms ease;
}

.landing-nav-more[open] > summary i {
  transform: rotate(180deg);
}

.landing-nav-more > summary:hover {
  color: var(--accent);
  border-color: #c0d5ef;
  background: #f7faff;
}

.landing-nav-more-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #d8e4f3;
  border-radius: 14px;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
  padding: 8px;
  display: grid;
  gap: 2px;
  z-index: 12;
}

.landing-nav-more-menu a {
  text-decoration: none;
  color: #334b63;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 10px;
}

.landing-nav-more-menu a:hover {
  color: var(--accent);
  background: #f4f8ff;
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-auth-note {
  font-size: 12px;
  color: #5f7187;
  font-weight: 600;
  white-space: nowrap;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  margin-top: 20px;
  align-items: start;
}

.hero-impact-grid {
  margin-top: 28px;
  padding: 4px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.hero-impact-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.hero-impact-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  color: #586a82;
  background: rgba(47, 111, 225, 0.07);
}

.hero-impact-text {
  margin: 0;
  color: #58697f;
  font-size: 15px;
  line-height: 1.45;
  max-width: 30ch;
}

.hero-impact-value {
  font-size: 1.22em;
  font-weight: 700;
  color: #3f536c;
}

.hero-impact-mobile {
  display: none;
}

.landing-hero-text h1 {
  font-size: clamp(20px, 3.8vw, 29px);
  margin: 12px 0 18px;
  line-height: 1.06;
}

.landing-hero-text .lead {
  font-size: 17px;
  color: #4c5a70;
  line-height: 1.6;
}

.hero-offer {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: #14532d;
}

.hero-audience {
  margin: 10px 0 0;
  font-size: 13px;
  color: #516176;
}

.hero-bullets {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1f3327;
}

.hero-bullets li::before {
  content: "\2713";
  color: #15803d;
  font-weight: 700;
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-orange);
  font-weight: 600;
  margin: 0 0 6px;
}

.landing-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 13px;
  color: #6a7b91;
}

.landing .btn {
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.landing .btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.landing .btn-accent {
  background: #16a34a;
  border: 1px solid #15803d;
  color: #fff;
  box-shadow: 0 16px 28px rgba(22, 163, 74, 0.22);
}

.landing .btn-accent:hover,
.landing .btn-accent:focus-visible {
  transform: translateY(-2px);
  background: #15803d;
  box-shadow: 0 20px 34px rgba(22, 163, 74, 0.28);
}

.landing .btn-outline {
  border: 1px solid #d7e2f0;
  background: #ffffff;
  color: var(--text-strong);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
}

.landing .btn-outline:hover,
.landing .btn-outline:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-ghost);
}

.landing .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-ghost);
}

.landing-hero-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.landing-hero-chat {
  display: grid;
  align-items: start;
}

.panel-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e4ecf5;
  padding: 18px 20px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.panel-card.subtle {
  background: #f3f8f4;
}

.panel-title {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-strong);
}

.panel-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.panel-card li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.panel-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-orange);
}

.landing-section {
  padding: 64px 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.landing section[id] {
  scroll-margin-top: calc(var(--landing-nav-offset) - 14px);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.band-soft {
  background: #e7effd;
}

.band-alt {
  background: #ffffff;
}

.landing-section {
  position: relative;
}

.landing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 1px solid rgba(25, 53, 102, 0.07);
  border-bottom: 1px solid rgba(25, 53, 102, 0.07);
}

.landing-section.problem {
  background: linear-gradient(180deg, #e8f1ff 0%, #edf4ff 100%);
}

.landing-section#what {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.landing-section#pricing {
  background: linear-gradient(180deg, #ecf4ff 0%, #f4f8ff 100%);
}

.landing-section.audience {
  background: linear-gradient(180deg, #fff6e9 0%, #fffaf2 100%);
}

.landing-section#difference {
  background: linear-gradient(180deg, #eef8f3 0%, #f6fcf8 100%);
}

.landing-section.quality {
  background: linear-gradient(180deg, #f3f8ff 0%, #edf6ff 100%);
}

.landing-section.landing-cta-band {
  background: linear-gradient(180deg, #dce9ff 0%, #eaf2ff 100%);
}

.landing-section.usage {
  background: linear-gradient(180deg, #f7fbff 0%, #edf4ff 100%);
}

.usage-title {
  display: grid;
  justify-items: center;
  text-align: center;
  margin: 0 auto;
}

.usage-title h2 {
  margin: 0;
  text-align: center;
}

.usage-title p {
  margin: 10px auto 0;
  max-width: 54ch;
  color: #6f7f95;
  text-align: center;
}

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

.usage-card {
  background: #f9fbff;
  border: 1px solid #dce6f4;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.usage-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eaf1fd;
  border: 1px solid #d5e2f6;
  color: #2f6fe1;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
}

.usage-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.usage-intro {
  margin: 0;
  color: #4f6077;
  font-size: 15px;
  line-height: 1.4;
}

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

.usage-list li {
  position: relative;
  padding-left: 16px;
  color: #30465f;
  font-size: 13px;
  line-height: 1.35;
}

.usage-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2f6fe1;
  position: absolute;
  left: 0;
  top: 8px;
}

.usage-cta {
  margin-top: 36px;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.usage-cta-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-strong);
  font-weight: 600;
}

.usage-cta-note {
  margin: 0;
  font-size: 14px;
  color: #667890;
}

@media (hover: hover) and (pointer: fine) {
  .usage-card {
    transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
  }

  .usage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
    border-color: #cfdcef;
  }

  .what-is-item {
    transition: transform 170ms ease, border-color 170ms ease, background-color 170ms ease;
  }

  .what-is-item:hover {
    transform: translateY(-2px);
    border-color: #c8d9ee;
    background: #ffffff;
  }
}

.landing-section.flow {
  background: linear-gradient(180deg, #f9fbfd 0%, #eef3f8 100%);
}

.flow-title {
  text-align: center;
}

.flow-title p {
  margin: 10px auto 0;
  color: #5d6f86;
}

.flow-stack {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

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

.flow-side {
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 8px;
}

.flow-side.flow-problem {
  border: 1px solid #dbe5f3;
  background: #f2f6fb;
}

.flow-side.flow-solution {
  border: 1px solid #d6e6df;
  background: #f7fcf9;
}

.flow-label {
  margin: 0 0 2px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.flow-label i {
  font-size: 13px;
}

.flow-label-problem {
  color: #6e7f96;
}

.flow-label-solution {
  color: #2a7d53;
}

.flow-line {
  margin: 0;
  color: #2e435b;
  line-height: 1.4;
}


.what-is-title p {
  margin-top: 10px;
  color: #52667f;
}

.what-is-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.what-is-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #d8e4f3;
  border-radius: 14px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.what-is-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  font-size: 17px;
  color: #375a88;
  background: #edf3fb;
  border: 1px solid #d8e3f2;
}

.what-is-item h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.24;
}

.what-is-item p {
  margin: 4px 0 0;
  color: #4f6179;
  line-height: 1.45;
}

.landing-section.education {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 78px 0;
}

.education-title {
  max-width: 76ch;
}

.education-intro {
  margin-top: 14px;
  max-width: 76ch;
  display: grid;
  gap: 10px;
}

.education-intro p {
  margin: 0;
  color: #4c5f77;
  line-height: 1.6;
}

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

.education-point {
  padding-left: 16px;
  border-left: 2px solid #dbe6f4;
}

.education-point h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.24;
}

.education-point p {
  margin: 8px 0 0;
  color: #52657d;
  line-height: 1.55;
}

.education-bridge {
  margin: 30px 0 0;
  max-width: 78ch;
  color: #354e6d;
  font-weight: 600;
  line-height: 1.55;
}

.landing-section.customers {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.customers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: start;
}

.customers-copy {
  display: grid;
  gap: 16px;
}

.customers-title p {
  max-width: 62ch;
  color: #4f627a;
}

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

.customers-value-block {
  border: 1px solid #dbe5f3;
  border-radius: 14px;
  background: #f8fbff;
  padding: 14px 15px;
  display: grid;
  gap: 9px;
  align-content: start;
}

.customers-value-kicker {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #5373a3;
}

.customers-value-lead {
  margin: 0;
  color: #20354c;
  font-weight: 600;
  line-height: 1.33;
}

.customers-value-lead-secondary {
  margin-top: 8px;
}

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

.customers-check-list li {
  position: relative;
  padding-left: 19px;
  color: #3c516a;
  line-height: 1.34;
}

.customers-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f8b50;
  font-weight: 700;
  font-size: 13px;
}

.customers-control-note {
  margin: 0;
  color: #2b3f58;
  font-weight: 600;
}

.customers-cta {
  margin: 56px auto 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.customers-cta-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.24;
  color: var(--text-strong);
}

.customers-cta-note {
  margin: 0;
  color: #5f738d;
  font-size: 14px;
}

.customers-visual {
  display: grid;
  align-items: start;
}

.customers-chat-window {
  border: 1px solid #dbe5f4;
  border-radius: 16px;
  background: #f3f7fd;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.customers-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.customers-chat-pill {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #336ca6;
  background: #e6f0ff;
}

.customers-chat-title {
  color: #1f3248;
  font-weight: 600;
  font-size: 14px;
}

.customers-chat-body {
  display: grid;
  gap: 8px;
}

.customers-chat-bubble {
  border-radius: 12px;
  padding: 9px 11px;
  line-height: 1.35;
  font-size: 14px;
}

.customers-chat-bubble.question {
  justify-self: start;
  background: #ffffff;
  border: 1px solid #dfe8f4;
  color: #2a3e56;
}

.customers-chat-bubble.answer {
  justify-self: end;
  background: #e8f2ff;
  border: 1px solid #d2e0f3;
  color: #2a4868;
}

.landing-section .section-title {
  position: relative;
  z-index: 1;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: start;
}

.landing-section.problem {
  padding-bottom: 52px;
}

.landing-section.audience {
  padding: 56px 0;
}

.problem-visual {
  display: grid;
  gap: 14px;
}

.visual-card {
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.visual-card.soft {
  background: #f6f9ff;
}

.visual-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9a6b10;
  background: #fdf3db;
}

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

.metric {
  background: #f3f6fb;
  border-radius: 14px;
  padding: 10px;
  display: grid;
  gap: 4px;
}

.metric-value {
  font-weight: 700;
  color: var(--text-strong);
  font-size: 18px;
}

.metric-label {
  font-size: 12px;
  color: #5b6d83;
}

.visual-note {
  margin: 0;
  color: #4c5a70;
  font-size: 14px;
}

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

.visual-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  color: #4c5a70;
  font-size: 14px;
}

.visual-steps i {
  color: var(--accent-orange);
  font-size: 16px;
}

.section-title h2 {
  margin: 0 0 8px;
  font-size: clamp(21px, 2.9vw, 30px);
}

.section-title p {
  margin: 0;
  color: #4c5a70;
  font-size: 15px;
}

.landing-inline-links {
  margin-top: 8px !important;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #6a7b91;
}

.landing-inline-links .inline-link {
  color: #5f738d;
  text-decoration: none;
  border-bottom: 1px solid rgba(95, 115, 141, 0.35);
  transition: color 160ms ease, border-color 160ms ease;
}

.landing-inline-links .inline-link:hover {
  color: var(--accent);
  border-color: rgba(47, 111, 225, 0.55);
}

.sarrai-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
  align-items: start;
}

.sarrai-feature-copy {
  display: grid;
  gap: 10px;
}

.sarrai-feature-visual {
  display: grid;
  gap: 12px;
}

.sarrai-shot {
  margin: 0;
  border: 1px solid #d8e4f3;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.sarrai-shot-placeholder {
  border: 1px dashed #bfd1ea;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7faff 0%, #eff5ff 100%);
  min-height: 220px;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  color: #4f6480;
  font-weight: 600;
  padding: 16px;
}

.sarrai-shot-placeholder i {
  font-size: 28px;
  color: #2f6fe1;
}

.sarrai-shot figcaption {
  font-size: 13px;
  color: #5d728d;
  line-height: 1.4;
}

.blog-page {
  background: linear-gradient(180deg, #eef4ff 0%, #f7fbff 100%);
}

.blog-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.blog-overview {
  background: transparent;
}

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

.blog-related {
  background: transparent;
}

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

.blog-card {
  background: #ffffff;
  border: 1px solid #dbe6f4;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.blog-card-image {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e4ecf6;
}

.blog-card-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 210ms ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 16px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.blog-card-date {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #5f738d;
}

.blog-card-body h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.blog-card-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.blog-card-body h2 a {
  color: #1f334a;
  text-decoration: none;
}

.blog-card-body h3 a {
  color: #1f334a;
  text-decoration: none;
}

.blog-card-body h2 a:hover {
  color: #2f6fe1;
}

.blog-card-body h3 a:hover {
  color: #2f6fe1;
}

.blog-card-intro {
  margin: 0;
  color: #4f6179;
  line-height: 1.5;
}

.blog-read-link {
  margin-top: 2px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #2f6fe1;
  font-weight: 600;
  border-bottom: 1px solid rgba(47, 111, 225, 0.35);
  transition: color 160ms ease, border-color 160ms ease;
}

.blog-read-link:hover {
  color: #1e5bc3;
  border-color: rgba(30, 91, 195, 0.5);
}

.blog-older {
  margin-top: 24px;
  border: 1px solid #dbe6f4;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
  display: grid;
  gap: 8px;
}

.blog-older-title {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #5f738d;
}

.blog-older-link {
  text-decoration: none;
  color: #355071;
  width: fit-content;
  border-bottom: 1px solid rgba(53, 80, 113, 0.3);
}

.blog-older-link:hover {
  color: #2f6fe1;
  border-color: rgba(47, 111, 225, 0.4);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: start;
}

.blog-hero-copy h1 {
  margin: 0 0 10px;
}

.blog-meta {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #60758f;
}

.blog-hero-image {
  border: 1px solid #dae6f4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.blog-hero-image img {
  width: 100%;
  height: min(380px, 36vw);
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.blog-reading {
  background: transparent;
}

.blog-article {
  background: #ffffff;
  border: 1px solid #dbe6f4;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  padding: 22px;
  display: grid;
  gap: 22px;
}

.blog-article-section h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 27px);
  line-height: 1.15;
}

.blog-article-section p {
  margin: 10px 0 0;
  color: #334a63;
  font-size: 16px;
  line-height: 1.75;
}

.blog-section-layout {
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: 18px;
  align-items: start;
}

.blog-section-layout.image-left {
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
}

.blog-section-layout.image-left .blog-section-copy {
  order: 2;
}

.blog-section-layout.image-left .blog-inline-figure {
  order: 1;
}

.blog-article-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 14px;
}

.blog-article-section ul li {
  display: block;
  padding-left: 1.4em;
  position: relative;
  color: #355071;
  font-size: 16px;
  line-height: 1.75;
}

.blog-article-section ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  margin-top: 0;
  color: #2f6fe1;
  font-weight: 700;
  font-size: 1.1em;
  line-height: inherit;
}

.blog-inline-figure {
  margin: 0;
  border: 1px solid #dbe6f4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  background: #ffffff;
}

.blog-inline-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-inline-figure figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: #5b718d;
  border-top: 1px solid #e4ecf6;
}

.blog-end-cta {
  background: linear-gradient(180deg, #ecf4ff 0%, #f8fbff 100%);
}

.blog-end-cta .cta-content h2 {
  max-width: 18ch;
}

.blog-end-cta .cta-content p {
  max-width: 66ch;
}

.blog-end-cta .cta-trust ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
}

.contact-page {
  background: linear-gradient(180deg, #edf4ff 0%, #f8fbff 100%);
}

/* Honeypot: volledig verborgen voor echte gebruikers */
.contact-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.contact-title {
  max-width: 760px;
}

.contact-section {
  background: transparent;
}

.contact-inner form {
  background: #ffffff;
  border: 1px solid #dbe6f4;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  padding: 18px;
}

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

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-field label {
  font-size: 14px;
  font-weight: 600;
  color: #314860;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-input {
  width: 100%;
  border: 1px solid #cedded;
  border-radius: 12px;
  background: #ffffff;
  color: #1f334a;
  padding: 11px 12px;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-input:focus {
  outline: none;
  border-color: #8bb2ea;
  box-shadow: 0 0 0 3px rgba(47, 111, 225, 0.12);
}

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

.contact-actions {
  margin-top: 16px;
}

.contact-validation-summary {
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid #f5d2d6;
  border-radius: 12px;
  background: #fff5f6;
  color: #a93741;
  font-size: 14px;
  line-height: 1.45;
}

.contact-validation-summary:empty {
  display: none;
}

.contact-validation-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.contact-validation-summary li {
  position: relative;
  padding-left: 16px;
}

.contact-validation-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d03e4b;
}

.contact-submit-error {
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid #f5d2d6;
  border-radius: 12px;
  background: #fff5f6;
  color: #a93741;
  font-size: 14px;
}

.contact-field .validation-message {
  font-size: 13px;
  color: #b43646;
}

.contact-success-card {
  background: #ffffff;
  border: 1px solid #d2e4d9;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  padding: 20px;
  display: grid;
  gap: 10px;
}

.contact-success-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.contact-success-card p {
  margin: 0;
  color: #40586f;
  font-size: 15px;
  line-height: 1.6;
}

.contact-success-links-title {
  margin-top: 4px;
  font-size: 14px !important;
  color: #516882 !important;
}

.contact-success-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.contact-success-links a {
  width: fit-content;
  text-decoration: none;
  color: #2f6fe1;
  font-weight: 600;
  border-bottom: 1px solid rgba(47, 111, 225, 0.35);
  transition: color 140ms ease, border-color 140ms ease;
}

.contact-success-links a:hover {
  color: #1e5bc3;
  border-color: rgba(30, 91, 195, 0.55);
}

.bullet-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.bullet-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bullet-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-orange);
  margin-top: 6px;
}

.card-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.what-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.card-grid.full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.free-panel {
  background: #f6f9ff;
  border-radius: 18px;
  border: 1px solid #e4ecf5;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.free-panel.flat {
  background: transparent;
  border: none;
  border-top: 1px solid #dfe7f3;
  border-radius: 0;
  box-shadow: none;
  padding: 24px 0 0;
}

.free-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.free-pill {
  background: #fff4dc;
  color: #9a6b10;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.free-benefit {
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff1d5;
  color: #b47b10;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.benefit-title {
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--text-strong);
}

.benefit-body {
  margin: 0;
  color: #4c5a70;
}

.free-cta-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #5b6d83;
  font-size: 14px;
}

.free-kicker {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--accent-orange);
}

.free-subtitle {
  margin: 0;
  color: #4c5a70;
}

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

.free-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: #4c5a70;
}

.free-list i {
  color: var(--accent-orange);
  margin-top: 2px;
}

.pricing-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #d6e3f2;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  padding: 20px;
  display: grid;
  gap: 14px;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
}

.pricing-card .btn {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
}

.pricing-card .btn-with-icon {
  gap: 12px;
}

.pricing-card .btn-with-icon i {
  margin-right: 2px;
}

.pricing-card.is-featured {
  border-color: #9ac4a9;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcf8 100%);
  box-shadow: 0 20px 36px rgba(22, 163, 74, 0.16);
}

.pricing-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.pricing-head > :first-child {
  min-width: 0;
}

.pricing-plan {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #5f7187;
}

.pricing-price {
  margin: 6px 0 0;
  color: var(--text-strong);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 700;
}

.pricing-badge {
  background: #edf3fb;
  color: #41526a;
  font-weight: 600;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: normal;
  max-width: 100%;
  text-align: center;
  line-height: 1.2;
  margin-left: auto;
}

.pricing-badge.featured {
  background: #e8f5ec;
  color: #1f6a3a;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pricing-features li {
  border: 1px solid #e4ecf5;
  border-radius: 12px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #3e5066;
}

.pricing-features li i {
  font-size: 16px;
}

.pricing-features li.is-included i {
  color: #1e8a49;
}

.pricing-features li.is-excluded {
  color: #6b7e95;
}

.pricing-features li.is-excluded i {
  color: #b56b6b;
}

.pricing-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: #667a93;
}

.pricing-note-loading {
  margin-top: 6px;
  color: #6a7f99;
}

.pricing-note-fallback {
  margin-top: 6px;
  color: #758aa4;
}

.pricing-card-skeleton {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.pricing-card-skeleton .pricing-head {
  align-items: flex-start;
}

.pricing-features-skeleton li {
  border-color: #e8eef7;
  background: #fbfdff;
}

.pricing-skeleton-line,
.pricing-skeleton-pill,
.pricing-skeleton-button,
.pricing-skeleton-dot {
  display: block;
  background: linear-gradient(90deg, #eaf0f8 0%, #f3f7fc 50%, #eaf0f8 100%);
  background-size: 220% 100%;
  animation: pricingSkeletonPulse 1.35s ease-in-out infinite;
}

.pricing-skeleton-plan {
  width: 88px;
  height: 12px;
  border-radius: 999px;
  margin: 0;
}

.pricing-skeleton-price {
  width: 136px;
  height: 34px;
  border-radius: 10px;
  margin: 8px 0 0;
}

.pricing-skeleton-pill {
  width: 84px;
  height: 22px;
  border-radius: 999px;
  margin-left: auto;
}

.pricing-features-skeleton .pricing-skeleton-line {
  width: 100%;
  height: 12px;
  border-radius: 999px;
}

.pricing-skeleton-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
}

.pricing-skeleton-button {
  width: 100%;
  height: 44px;
  border-radius: 999px;
}

@keyframes pricingSkeletonPulse {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.info-card {
  background: #ffffff;
  border: 1px solid #d5e2f1;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.09);
  display: grid;
  gap: 10px;
}

.info-card h3 {
  margin: 0;
  font-size: 16px;
}

.info-card p {
  margin: 0;
  color: #4c5a70;
}

.audience-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
  align-items: start;
}

.audience-cards {
  display: grid;
  gap: 14px;
}

.audience-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.audience-card h3 {
  margin: 0;
  font-size: 17px;
}

.audience-card p {
  margin: 0;
  color: #4c5a70;
}

.audience-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #fff1d5;
  display: grid;
  place-items: center;
  color: #b47b10;
  font-size: 18px;
}

.audience-panel {
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.audience-panel ul {
  margin: 0;
  padding-left: 18px;
  color: #4c5a70;
}

.panel-kicker {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--accent-orange);
}

.difference-grid {
  align-items: stretch;
}

.difference-card {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.difference-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff1d5;
  display: grid;
  place-items: center;
  color: #b47b10;
  font-size: 20px;
}

.difference-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: start;
}

.difference-layout-single {
  grid-template-columns: 1fr;
}

.difference-lira-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.difference-lira-copy {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
  border: 1px solid #dbe6f4;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
  padding: 22px;
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.difference-lira-copy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #0f766e 0%, #1d4ed8 100%);
}

.difference-lira-story {
  display: grid;
  gap: 10px;
}

.difference-lira-story-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid #dfe9f6;
  background: #f6f9ff;
  border-radius: 14px;
  padding: 10px 12px;
}

.difference-lira-story-item p {
  margin: 0;
  color: #364a62;
  line-height: 1.5;
}

.difference-lira-story-text {
  display: grid;
  gap: 8px;
}

.difference-lira-story-text p {
  margin: 0;
}

.difference-lira-story-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #e4effe;
  color: #2453a6;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.difference-lira-moment {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: #155e75;
  background: #e9f7fb;
  border: 1px solid #caeaf3;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 600;
}

.difference-lira-moment p {
  margin: 0;
}

.difference-lira-checks {
  list-style: none;
  margin: 2px 0;
  padding: 0;
  display: grid;
  gap: 8px;
  background: #f7fffc;
  border: 1px solid #d3eee4;
  border-radius: 14px;
  padding: 12px;
}

.difference-lira-checks li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: #24354a;
  font-weight: 600;
}

.difference-lira-checks li::before {
  content: "\2714";
  color: #0f766e;
  font-weight: 700;
  margin-top: 1px;
}

.difference-lira-outcomes {
  display: grid;
  gap: 8px;
}

.difference-lira-outcomes p {
  margin: 0;
  border: 1px solid #dfe8f5;
  background: #f8fbff;
  color: #31465f;
  border-radius: 12px;
  padding: 10px 12px;
  line-height: 1.5;
}

.difference-lira-visual {
  background: linear-gradient(180deg, #f6f9ff 0%, #eff4fb 100%);
  border: 1px solid #d7e2f1;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.09);
  padding: 18px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.difference-lira-visual::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -110px;
  right: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(48, 122, 205, 0.2) 0%, rgba(48, 122, 205, 0) 72%);
  pointer-events: none;
}

.difference-lira-profile {
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e2eaf7;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.difference-lira-profile-head {
  display: grid;
  gap: 8px;
}

.difference-lira-profile-head p {
  margin: 0;
  color: #3f536c;
  font-size: 14px;
  line-height: 1.45;
}

.difference-lira-profile-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0f766e;
  background: #e5f5ef;
  border: 1px solid #b7e6d5;
}

.difference-lira-portrait {
  margin-top: auto;
  border-radius: 14px;
  background: linear-gradient(180deg, #f6f9ff 0%, #edf2fb 100%);
  border: 1px solid #dfe7f4;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.difference-lira-portrait img {
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(15, 23, 42, 0.2));
}

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

.difference-chat {
  display: grid;
  align-items: start;
}

.chat-window {
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  padding: 16px;
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chat-pill {
  background: #eef5ff;
  color: var(--accent);
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chat-title {
  font-weight: 600;
  color: var(--text-strong);
  font-size: 14px;
}

.chat-body {
  display: grid;
  gap: 10px;
  min-height: 210px;
  animation: chatCycle 16s infinite;
}

.chat-bubble {
  max-width: 90%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  animation-duration: 16s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-fill-mode: both;
  display: grid;
  gap: 6px;
}

.chat-bubble.user {
  justify-self: end;
  background: #eef3f9;
  color: #2f3a4b;
}

.chat-bubble.agent {
  justify-self: start;
  background: #e8f5ec;
  color: #1f3327;
}

.chat-bubble.typing {
  background: #e8f5ec;
  width: 64px;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.chat-body .chat-bubble:nth-of-type(1) {
  animation-name: chatIn1;
}

.chat-body .chat-bubble:nth-of-type(2) {
  animation-name: chatIn2;
}

.chat-body .chat-bubble:nth-of-type(3) {
  animation-name: chatIn3;
}

.chat-body .chat-bubble:nth-of-type(4) {
  animation-name: chatIn4;
}

.chat-body .chat-bubble:nth-of-type(5) {
  animation-name: chatInTyping;
}

.chat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #5b6d83;
}

.chat-bubble.typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #3f6d4f;
  display: inline-block;
  animation: typing 1.1s infinite ease-in-out;
}

.chat-bubble.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-bubble.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

.chat-footer {
  border-top: 1px solid #e6edf6;
  padding-top: 10px;
  font-size: 12px;
  color: #6a7b91;
}

.hero-chat-window {
  border: 1px solid #d5e1ef;
  border-radius: 16px;
  background: #f3f6fb;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  width: min(100%, 520px);
  justify-self: end;
  padding: 14px;
}

.hero-chat-window .chat-header {
  margin-bottom: 4px;
}

.hero-chat-window .chat-title {
  color: #1f3248;
}

.hero-chat-window .hero-chat-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #4f6179;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-chat-window .hero-chat-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18);
}

.hero-chat-window .chat-body {
  min-height: 336px;
  align-content: start;
  animation: none;
}

.hero-chat-window .chat-body .chat-bubble {
  animation: none !important;
  opacity: 1;
  transform: none;
  max-width: min(86%, 360px);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.hero-chat-window .chat-body .chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

.hero-chat-window .chat-body .chat-row.user {
  justify-content: flex-end;
}

.hero-chat-window .chat-body .chat-row.agent {
  justify-content: flex-start;
}

.hero-chat-window .chat-body .chat-row.user .chat-bubble {
  background: #e7eefc;
  border: 1px solid #d2def4;
  color: #24354a;
}

.hero-chat-window .chat-body .chat-row.agent .chat-bubble {
  background: #ffffff;
  border: 1px solid #dfe7f2;
  color: #1e3147;
}

.hero-chat-window .chat-body .chat-row.typing .chat-bubble {
  width: 64px;
  max-width: 64px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-chat-window .chat-body .chat-row.typing .chat-bubble span {
  background: #4f627b;
  animation-duration: 0.8s;
}

.chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex: 0 0 28px;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-chat-window .agent-avatar {
  background: linear-gradient(180deg, #2f6fe1 0%, #2c64c8 100%);
  color: #ffffff;
}

.hero-chat-window .user-avatar {
  background: #dde6f4;
  color: #3f536c;
}

.hero-chat-window .chat-time {
  margin-top: 4px;
  font-size: 11px;
  color: #7c8da3;
}

.hero-chat-window .chat-label {
  color: #5b6d83;
}

.hero-chat-window .chat-body .chat-row.hero-step-typing-1 {
  animation-name: heroChatTyping1;
}

.hero-chat-window .chat-body .chat-row.hero-step-q1 {
  animation-name: heroChatQuestion1;
}

.hero-chat-window .chat-body .chat-row.hero-step-a1 {
  animation-name: heroChatAnswer1;
}

.hero-chat-window .chat-body .chat-row.hero-step-typing-2 {
  animation-name: heroChatTyping2;
}

.hero-chat-window .chat-body .chat-row.hero-step-q2 {
  animation-name: heroChatQuestion2;
}

.hero-chat-window .chat-body .chat-row.hero-step-a2 {
  animation-name: heroChatAnswer2;
}

@keyframes heroChatTyping1 {
  0%,
  10% {
    opacity: 0;
    transform: translateY(8px);
  }
  13%,
  17% {
    opacity: 1;
    transform: translateY(0);
  }
  20%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes heroChatQuestion1 {
  0%,
  2% {
    opacity: 0;
    transform: translateY(8px);
  }
  5%,
  85% {
    opacity: 1;
    transform: translateY(0);
  }
  92%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes heroChatAnswer1 {
  0%,
  17% {
    opacity: 0;
    transform: translateY(8px);
  }
  20%,
  85% {
    opacity: 1;
    transform: translateY(0);
  }
  92%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes heroChatTyping2 {
  0%,
  42% {
    opacity: 0;
    transform: translateY(8px);
  }
  45%,
  49% {
    opacity: 1;
    transform: translateY(0);
  }
  52%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes heroChatQuestion2 {
  0%,
  30% {
    opacity: 0;
    transform: translateY(8px);
  }
  34%,
  85% {
    opacity: 1;
    transform: translateY(0);
  }
  92%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes heroChatAnswer2 {
  0%,
  49% {
    opacity: 0;
    transform: translateY(8px);
  }
  53%,
  85% {
    opacity: 1;
    transform: translateY(0);
  }
  92%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

.hero-chat-window .chat-source-note {
  margin-top: 2px;
  font-size: 11px;
  color: #607289;
}

.landing-section.quality {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.landing-section.quality::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -170px;
  top: -180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.1) 0%, rgba(22, 163, 74, 0) 70%);
  pointer-events: none;
}

.landing-section.quality .section-title {
  position: relative;
  z-index: 1;
}


.quality-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.quality-highlight,
.quality-report-card {
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  padding: 20px;
  height: 100%;
}

.quality-highlight {
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fdfb 100%);
  border-color: #dcebe1;
}

.quality-highlight-top {
  display: grid;
  gap: 10px;
}

.quality-highlight-top h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.quality-lead {
  margin: 0;
  color: #4c5a70;
  font-size: 17px;
  line-height: 1.45;
  max-width: 58ch;
}

.quality-steps {
  display: grid;
  gap: 9px;
}

.quality-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid #dde8f4;
  border-radius: 14px;
  background: #ffffff;
  padding: 10px 12px;
}

.quality-step-index {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f0f6ff 0%, #e4efff 100%);
  color: #2d5fb6;
  font-weight: 700;
  font-size: 12px;
  line-height: 26px;
  text-align: center;
  display: inline-grid;
  place-items: center;
}

.quality-step-index i {
  font-size: 12px;
  line-height: 1;
}

.quality-step p {
  margin: 1px 0 0;
  color: #334860;
  font-size: 15px;
  line-height: 1.38;
}

.quality-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.quality-chip {
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.quality-chip.positive {
  color: #2e8b57;
  background: #eef9f2;
  border: 1px solid #acd8bb;
}

.quality-chip.negative {
  color: #b34848;
  background: #fdf3f3;
  border: 1px solid #e2b6b6;
}

.quality-report-card {
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.quality-report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.quality-report-head strong {
  color: var(--text-strong);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quality-report-head strong i {
  color: #2f6fe1;
  font-size: 18px;
}

.quality-report-head span {
  font-size: 13px;
  color: #6a7b91;
  white-space: nowrap;
}

.quality-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.quality-kpi {
  border: 1px solid #deE7f3;
  border-radius: 12px;
  padding: 10px 11px;
  display: grid;
  gap: 2px;
  background: #ffffff;
}

.quality-kpi span {
  font-size: 12px;
  color: #617189;
  line-height: 1.25;
}

.quality-kpi strong {
  color: var(--text-strong);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.quality-thread-preview {
  border: 1px solid #dfe8f4;
  border-radius: 14px;
  padding: 12px 13px;
  background: #f5f8fe;
  display: grid;
  gap: 5px;
}

.quality-thread-preview p {
  margin: 0;
}

.thread-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6880a0;
  font-weight: 700;
}

.thread-question {
  color: #24344a;
  font-size: 16px;
  line-height: 1.34;
  font-weight: 600;
}

.thread-note {
  color: #5a6c84;
  font-size: 14px;
  line-height: 1.35;
}

.quality-report-note {
  margin: 0;
  color: #3f536c;
  font-size: 16px;
  line-height: 1.32;
}

@keyframes chatCycle {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  92% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

.difference-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: start;
}

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

.difference-chat {
  display: grid;
  align-items: start;
}

.chat-window {
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  padding: 16px;
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chat-pill {
  background: #fff1d5;
  color: #9a6b10;
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chat-title {
  font-weight: 600;
  color: var(--text-strong);
  font-size: 14px;
}

.chat-body {
  display: grid;
  gap: 10px;
  min-height: 210px;
  animation: chatCycle 16s infinite;
}

.chat-bubble {
  max-width: 90%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  animation-duration: 16s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-fill-mode: both;
  display: grid;
  gap: 6px;
}

.chat-bubble.user {
  justify-self: end;
  background: #eef3f9;
  color: #2f3a4b;
}

.chat-bubble.agent {
  justify-self: start;
  background: #e8f5ec;
  color: #1f3327;
}

.chat-bubble.typing {
  background: #e8f5ec;
  width: 64px;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.chat-body .chat-bubble:nth-of-type(1) {
  animation-name: chatIn1;
}

.chat-body .chat-bubble:nth-of-type(2) {
  animation-name: chatIn2;
}

.chat-body .chat-bubble:nth-of-type(3) {
  animation-name: chatIn3;
}

.chat-body .chat-bubble:nth-of-type(4) {
  animation-name: chatIn4;
}

.chat-body .chat-bubble:nth-of-type(5) {
  animation-name: chatInTyping;
}

.chat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #5b6d83;
}

.chat-bubble.typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #3f6d4f;
  display: inline-block;
  animation: typing 1.1s infinite ease-in-out;
}

.chat-bubble.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-bubble.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

.chat-footer {
  border-top: 1px solid #e6edf6;
  padding-top: 10px;
  font-size: 12px;
  color: #6a7b91;
}

@keyframes chatCycle {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  92% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes chatIn1 {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  10% {
    opacity: 0;
    transform: translateY(8px);
  }
  16% {
    opacity: 1;
    transform: translateY(0);
  }
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes chatIn2 {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  18% {
    opacity: 0;
    transform: translateY(8px);
  }
  24% {
    opacity: 1;
    transform: translateY(0);
  }
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes chatIn3 {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  26% {
    opacity: 0;
    transform: translateY(8px);
  }
  32% {
    opacity: 1;
    transform: translateY(0);
  }
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes chatIn4 {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  34% {
    opacity: 0;
    transform: translateY(8px);
  }
  40% {
    opacity: 1;
    transform: translateY(0);
  }
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes chatInTyping {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  52% {
    opacity: 0;
    transform: translateY(8px);
  }
  58% {
    opacity: 1;
    transform: translateY(0);
  }
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes typing {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

.landing-cta-band {
  margin: 0;
  padding: 72px 0;
  background: linear-gradient(180deg, #dce9ff 0%, #eaf2ff 100%);
  border: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 24px;
}

.cta-content {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.cta-trust {
  background: #ffffff;
  border: 1px solid #cddcf0;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.cta-trust-title {
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--text-strong);
}

.cta-trust ul {
  margin: 0;
  padding-left: 18px;
  color: #4c5a70;
  display: grid;
  gap: 6px;
}

.landing-footer {
  margin: 0;
  padding: 32px 0 24px;
  border-top: 1px solid #e4ecf5;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer-brand {
  font-weight: 600;
  color: var(--text-strong);
}

.footer-muted {
  margin: 6px 0 0;
  color: #6a7b91;
}

.footer-column h4 {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-strong);
}

.footer-column p {
  margin: 0 0 8px;
  color: var(--muted);
}

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

.footer-column a:hover {
  color: var(--accent);
}

.legal-page {
  --legal-accent: #2f6fe1;
  --legal-soft: rgba(47, 111, 225, 0.1);
  --legal-border: rgba(47, 111, 225, 0.22);
  background: linear-gradient(180deg, #eef4ff 0%, #f7faff 100%);
}

.legal-page--privacy {
  --legal-accent: #2f6fe1;
  --legal-soft: rgba(47, 111, 225, 0.1);
  --legal-border: rgba(47, 111, 225, 0.22);
}

.legal-page--terms {
  --legal-accent: #14814f;
  --legal-soft: rgba(20, 129, 79, 0.1);
  --legal-border: rgba(20, 129, 79, 0.22);
}

.legal-page--billing {
  --legal-accent: #b86a00;
  --legal-soft: rgba(184, 106, 0, 0.1);
  --legal-border: rgba(184, 106, 0, 0.24);
}

.legal-page .landing-section::before {
  border-top: 1px solid rgba(25, 53, 102, 0.05);
  border-bottom: 1px solid rgba(25, 53, 102, 0.05);
}

.legal-shell {
  padding: 56px 0 72px;
}

.legal-inner {
  max-width: 1040px;
}

.legal-page .section-title {
  max-width: 880px;
}

.legal-page .section-title h2 {
  margin-bottom: 10px;
}

.legal-meta-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.legal-meta-card {
  background: #ffffff;
  border: 1px solid var(--legal-border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
  display: grid;
  gap: 6px;
}

.legal-meta-label {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--legal-accent);
}

.legal-meta-card p {
  margin: 0;
}

.legal-article {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.legal-content-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 96px;
  background: #ffffff;
  border: 1px solid #d8e3f2;
  border-left: 4px solid var(--legal-accent);
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  padding: 12px;
}

.legal-toc-title {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--legal-accent);
}

.legal-toc-nav {
  display: grid;
  gap: 5px;
  max-height: calc(100vh - 150px);
  overflow: auto;
  padding-right: 2px;
}

.legal-toc-link {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #3f536c;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 7px 8px;
  font-size: 12px;
  line-height: 1.32;
}

.legal-toc-link:hover,
.legal-toc-link:focus-visible {
  color: var(--legal-accent);
  border-color: var(--legal-border);
  background: var(--legal-soft);
  outline: none;
}

.legal-toc-link i {
  color: var(--legal-accent);
  font-size: 13px;
}

.legal-article .card-grid {
  margin-top: 0;
  margin-bottom: 6px;
}

.legal-article > h3 {
  margin: 16px 0 0;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--legal-border);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.15;
}

.legal-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.legal-heading-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--legal-soft);
  color: var(--legal-accent);
  font-size: 14px;
}

.legal-heading--data .legal-heading-icon {
  background: rgba(47, 111, 225, 0.12);
  color: #2f6fe1;
}

.legal-heading--legal .legal-heading-icon {
  background: rgba(124, 85, 184, 0.12);
  color: #7750b3;
}

.legal-heading--ops .legal-heading-icon {
  background: rgba(32, 135, 150, 0.12);
  color: #1f6f7d;
}

.legal-heading--infra .legal-heading-icon {
  background: rgba(75, 111, 188, 0.12);
  color: #3f5ea8;
}

.legal-heading--security .legal-heading-icon {
  background: rgba(20, 129, 79, 0.12);
  color: #147f4e;
}

.legal-heading--billing .legal-heading-icon {
  background: rgba(184, 106, 0, 0.12);
  color: #b86a00;
}

.legal-heading--risk .legal-heading-icon {
  background: rgba(179, 58, 41, 0.14);
  color: #af3829;
}

.legal-heading > span {
  min-width: 0;
}

.legal-article > h3:first-child {
  margin-top: 0;
}

.legal-article > p,
.legal-article > ul {
  margin: 0;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid #d8e3f2;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.legal-article > ul {
  display: grid;
  gap: 8px;
}

.legal-page .bullet-list li::before {
  background: var(--legal-accent);
}

.legal-page .legal-article code {
  background: var(--legal-soft);
  border: 1px solid var(--legal-border);
  color: #334860;
  border-radius: 8px;
  padding: 2px 6px;
}

.legal-page .text-muted {
  color: #5f7187 !important;
}

@media (max-width: 960px) {
  .landing-hero {
    padding: 32px;
  }

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

  .landing-hero-chat {
    width: 100%;
  }

  .hero-chat-window {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding: 12px;
  }

  .hero-chat-window .chat-body {
    min-height: 248px;
    gap: 8px;
  }

  .hero-impact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .hero-impact-item {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
    gap: 10px;
  }

  .hero-impact-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 16px;
  }

  .hero-impact-text {
    max-width: none;
    line-height: 1.52;
  }

  .hero-impact-desktop {
    display: none;
  }

  .hero-impact-mobile {
    display: inline;
  }

  .landing-nav {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .landing-scroll-progress {
    display: none;
  }

  .landing-nav-mobile {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 2px 0 0;
  }

  .landing-nav-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    border-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    transform-origin: top;
    overflow: hidden;
    pointer-events: none;
    transition:
      max-height 210ms ease,
      opacity 150ms ease,
      transform 210ms ease,
      padding 210ms ease;
  }

  .landing-nav-primary {
    width: 100%;
    display: grid;
    gap: 0;
  }

  .landing-nav-shell.is-menu-open .landing-nav-links {
    max-height: 760px;
    opacity: 1;
    transform: translateY(0);
    padding: 8px 0 4px;
    pointer-events: auto;
  }

  .landing-nav-shell.is-menu-open .landing-nav-toggle {
    color: var(--accent);
    border-color: #b9cdea;
    background: #f1f6ff;
  }

  .landing-nav-primary a,
  .landing-nav-more-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 10px 4px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
    border: 0;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid #e8eef8;
  }

  .landing-nav-primary a:last-child {
    border-bottom: 1px solid #e8eef8;
  }

  .landing-nav-more {
    width: 100%;
  }

  .landing-nav-more > summary {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #3d4b61;
    font-size: 16px;
    line-height: 1.25;
    border-bottom: 1px solid #e8eef8;
  }

  .landing-nav-more-menu {
    position: static;
    min-width: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0 0 4px;
    gap: 0;
  }

  .landing-nav-more-menu a {
    min-height: 42px;
    font-size: 14px;
    padding: 8px 4px 8px 14px;
  }

  .landing-nav-more-menu a:last-child {
    border-bottom: 0;
  }

  .landing-nav-strip-links {
    min-height: 30px;
    gap: 4px;
    padding: 5px 0;
  }

  .landing-nav-strip-links a {
    font-size: 10px;
    padding: 3px 8px;
  }

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

  .landing-footer {
    flex-direction: column;
  }

  .problem-grid,
  .what-grid,
  .blog-grid,
  .blog-related-grid,
  .contact-form-grid,
  .blog-hero-grid,
  .pricing-grid,
  .audience-grid,
  .difference-layout,
  .difference-lira-layout,
  .sarrai-feature-grid,
  .what-is-grid,
  .education-grid,
  .customers-layout,
  .usage-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .difference-lira-profile {
    padding: 12px;
  }

  .difference-lira-portrait {
    min-height: 270px;
  }

  .difference-lira-portrait img {
    width: min(100%, 280px);
  }

  .flow-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .customers-layout {
    gap: 18px;
  }

  .customers-value-columns {
    grid-template-columns: 1fr;
  }

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

  .free-benefits {
    grid-template-columns: 1fr;
  }

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

  .legal-shell {
    padding: 44px 0 58px;
  }

  .legal-content-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc-nav {
    max-height: none;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 640px) {
  .landing {
    gap: 0;
    padding-bottom: 56px;
  }

  .landing-hero {
    padding: 24px 0 40px;
  }

  .hero-chat-window {
    padding: 10px;
  }

  .hero-chat-window .chat-body {
    min-height: 220px;
  }

  .landing-section {
    padding: 40px 0;
  }

  .landing-section.problem {
    padding-bottom: 36px;
  }

  .landing-section.audience {
    padding: 40px 0;
  }

  .landing-section.education {
    padding: 52px 0;
  }

  .landing-cta-band {
    padding: 44px 0;
  }

  .customers-cta-title {
    font-size: 21px;
  }

  .landing-footer {
    padding: 24px 0 18px;
  }

  .section-inner,
  .footer-inner {
    padding: 0 18px;
  }

  .legal-shell {
    padding: 34px 0 46px;
  }

  .legal-meta-grid {
    margin-top: 16px;
    gap: 10px;
  }

  .legal-meta-card {
    padding: 12px;
  }

  .legal-article {
    margin-top: 14px;
    gap: 8px;
  }

  .legal-article > h3,
  .legal-article > p,
  .legal-article > ul {
    padding: 11px 12px;
  }

  .legal-toc {
    padding: 10px;
  }

  .legal-toc-title {
    margin-bottom: 8px;
  }

  .legal-toc-nav {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-toc-link {
    font-size: 12px;
    padding: 6px 7px;
  }

  .legal-heading {
    gap: 8px;
  }

  .legal-heading-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
    border-radius: 8px;
  }

  .landing-nav-top {
    align-items: flex-start;
    gap: 10px;
  }

  .landing-brand img {
    height: 48px;
  }

  .landing-nav-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
  }

  .landing-nav-actions .btn {
    padding: 6px 11px;
    font-size: 12px;
    line-height: 1.2;
  }

  .landing-nav-actions .btn-with-icon {
    gap: 6px;
  }

  .landing-auth {
    gap: 8px;
    align-items: center;
  }

  .landing-auth-note {
    font-size: 11px;
    line-height: 1.2;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .landing-auth .btn {
    padding: 5px 9px;
    font-size: 11px;
  }

  .landing-nav-links {
    padding-top: 0;
  }

  .landing-inline-links {
    font-size: 12px;
    gap: 6px;
  }

  .quality-kpis {
    grid-template-columns: 1fr;
  }

  .blog-card-image img {
    height: 180px;
  }

  .contact-inner form {
    padding: 14px;
  }

  .blog-article {
    padding: 14px;
    gap: 16px;
  }

  .blog-article-section p {
    font-size: 16px;
    line-height: 1.65;
  }

  .blog-article-section ul li {
    font-size: 15px;
    line-height: 1.65;
  }

  .quality-highlight-top h3 {
    font-size: 27px;
  }

  .quality-lead {
    font-size: 16px;
  }

  .blog-section-layout,
  .blog-section-layout.image-left {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blog-section-layout.image-left .blog-section-copy,
  .blog-section-layout.image-left .blog-inline-figure {
    order: initial;
  }

  .quality-report-head strong {
    font-size: 20px;
  }

  .quality-kpi strong {
    font-size: 24px;
  }

  .thread-question {
    font-size: 15px;
  }

  .quality-report-note {
    font-size: 15px;
  }

  .pricing-price {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .landing-scroll-progress-bar {
    transition: none;
  }

  .hero-chat-window .chat-body .chat-row {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-chat-window .chat-body .chat-row.typing {
    display: none;
  }
}

@media (max-width: 400px) {
  .landing-auth-note {
    font-size: 10px;
    max-width: 150px;
  }

  .landing-auth .btn {
    padding: 5px 8px;
    font-size: 10px;
  }

  .landing-hero-text h1 {
    font-size: clamp(23px, 8.2vw, 28px);
    margin: 8px 0 12px;
    line-height: 1.1;
  }

  .landing-hero-text .lead {
    font-size: 15px;
    line-height: 1.5;
  }

  .landing-cta {
    margin-top: 16px;
  }

  .usage-cta-title {
    font-size: 21px;
  }
}

@media print {
  .landing-nav-shell,
  .landing-nav,
  .landing-footer,
  .legal-toc,
  .legal-meta-grid {
    display: none !important;
  }

  .public-shell,
  .landing,
  .legal-page,
  .landing-section,
  .legal-shell {
    background: #ffffff !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .section-inner,
  .legal-inner {
    max-width: none !important;
    padding: 0 !important;
  }

  .legal-content-grid {
    display: block !important;
  }

  .legal-article {
    gap: 0 !important;
    margin-top: 8px !important;
  }

  .legal-article .card-grid {
    display: block !important;
    margin: 0 !important;
  }

  .legal-article .info-card,
  .legal-article > h3,
  .legal-article > p,
  .legal-article > ul {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 0 8px !important;
    color: #000000 !important;
  }

  .legal-article > h3 {
    margin-top: 14px !important;
    break-after: avoid-page;
    font-size: 15pt !important;
  }

  .legal-heading-icon {
    background: transparent !important;
    border: 1px solid #666666 !important;
    color: #000000 !important;
    width: 20px !important;
    height: 20px !important;
    font-size: 10px !important;
    border-radius: 5px !important;
  }

  .legal-page a {
    color: #000000 !important;
    text-decoration: underline !important;
  }
}
