:root {
  --home-bg: #030304;
  --home-bg-soft: #080809;
  --home-surface: #121214;
  --home-surface-2: #18181b;
  --home-border: #303036;
  --home-border-soft: #202025;
  --home-text: #f7f7f8;
  --home-muted: #b3b3bb;
  --home-dim: #7f7f89;
  --home-amber: #f6a400;
  --home-amber-2: #ffb31a;
  --home-green: #28d17c;
  --home-shadow: 0 34px 90px rgba(0, 0, 0, .6);
}

html {
  overflow-x: hidden;
}

.lt-home {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgba(246, 164, 0, .11), transparent 36rem),
    radial-gradient(circle at 8% 38%, rgba(255, 255, 255, .04), transparent 26rem),
    var(--home-bg);
  color: var(--home-text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
}

.lt-home .home-shell {
  width: min(1450px, calc(100% - 88px));
  margin: 0 auto;
}

.lt-home h1,
.lt-home h2,
.lt-home h3 {
  /* Visos antraštės — vienas švarus Inter (kaip hero). Buvo Syne: per daug
     suspaustas/sunkus didelėse antraštėse, atrodė neprofesionaliai. */
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: -.02em;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(3, 3, 4, .88);
  backdrop-filter: blur(18px);
}

.home-header .nav {
  width: min(1450px, calc(100% - 88px));
  max-width: none;
  min-height: 98px;
  padding: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 1.48rem;
  font-weight: 800;
}

.brand-mark span span,
.player-brand span {
  color: var(--home-amber);
}

.brand-mark svg,
.player-brand svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--home-amber);
  stroke-width: 2;
}

.brand-mark svg path,
.player-brand svg path {
  fill: var(--home-amber);
  stroke: none;
}

.home-header .nav-links {
  gap: 40px;
}

.home-header .nav-links a:not(.button) {
  color: #f0f0f2;
  font-size: .99rem;
  font-weight: 650;
}

.home-header .nav-links a:not(.button):hover {
  color: var(--home-amber-2);
}

.lang-switch {
  position: relative;
}

.lang-switch summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
  color: #f0f0f2;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  list-style: none;
}

.lang-switch summary::-webkit-details-marker {
  display: none;
}

.lang-switch summary svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform .15s ease;
}

.lang-switch[open] summary svg {
  transform: rotate(180deg);
}

.lang-switch summary:hover {
  border-color: rgba(246, 164, 0, .6);
  color: var(--home-amber-2);
}

.lang-switch ul {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  width: 168px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid var(--home-border);
  border-radius: 10px;
  background: #121214;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}

.lang-switch li a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  color: #e6e6e9;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
}

.lang-switch li a:hover {
  background: rgba(246, 164, 0, .12);
  color: #fff;
}

.lang-switch li a[aria-current="true"] {
  color: var(--home-amber-2);
}

.lt-home .button {
  border: 1px solid rgba(246, 164, 0, .7);
  border-radius: 7px;
  background: linear-gradient(180deg, #ffb31a, #f2a000);
  color: #070707;
  box-shadow: 0 12px 30px rgba(246, 164, 0, .22);
  font-weight: 800;
  text-decoration: none;
}

.lt-home .button:hover {
  border-color: #ffc34d;
  background: linear-gradient(180deg, #ffc24a, #f6a400);
  transform: translateY(-1px);
}

.lt-home .button.secondary {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .035);
  color: #fff;
  box-shadow: none;
}

.lt-home .button.secondary:hover {
  border-color: rgba(246, 164, 0, .7);
  background: rgba(246, 164, 0, .08);
}

.button.compact {
  min-height: 48px;
  padding: 10px 26px;
  font-size: .95rem;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: min(740px, calc(100svh - 98px));
  padding: 28px 0 64px;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid var(--home-border-soft);
}

.home-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -28%;
  left: 0;
  height: 45%;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(246, 164, 0, .08), transparent 56%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 430px) minmax(640px, 1fr);
  gap: clamp(48px, 5.5vw, 92px);
  align-items: center;
}

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

.hero-copy h1 {
  width: 100%;
  max-width: 470px;
  margin: 0;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(3.85rem, 5.35vw, 5.3rem);
  font-weight: 800;
  line-height: .98;
}

.hero-copy h1 .line {
  display: block;
}

.hero-copy h1 .accent {
  color: var(--home-amber);
}

.hero-lead {
  max-width: 430px;
  margin: 24px 0 0;
  color: #c8c8cf;
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  width: min(100%, 365px);
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.button.primary-large {
  min-height: 58px;
  padding: 15px 24px;
  justify-content: center;
  font-size: 1rem;
}

.hero-actions .button.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-actions .button.secondary svg {
  width: 27px;
  height: 27px;
  padding: 6px;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: var(--home-amber);
  fill: currentColor;
}

.hero-facts {
  max-width: 450px;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 17px;
  list-style: none;
  color: #b7b7bf;
  font-size: .86rem;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-facts li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--home-amber);
}

.hero-facts span {
  width: 15px;
  height: 15px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--home-amber);
  border-radius: 999px;
  color: var(--home-amber);
  font-size: .62rem;
  font-weight: 900;
}

.player-stage {
  min-width: 0;
}

.player-window {
  overflow: hidden;
  border: 1px solid #34343a;
  border-radius: 8px;
  background: #050506;
  box-shadow: var(--home-shadow);
}

.player-titlebar {
  min-height: 42px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #242429;
  background: linear-gradient(180deg, #151518, #0d0d0f);
}

.player-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .98rem;
}

.player-brand svg {
  width: 24px;
  height: 24px;
}

.window-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #f0f0f2;
}

.window-actions i {
  position: relative;
  width: 14px;
  height: 14px;
  display: block;
}

.window-actions i:first-child::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.window-actions i:nth-child(2) {
  border: 2px solid currentColor;
  border-radius: 2px;
}

.window-actions i:nth-child(3)::before,
.window-actions i:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 6px;
  left: -1px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.window-actions i:nth-child(3)::before {
  transform: rotate(45deg);
}

.window-actions i:nth-child(3)::after {
  transform: rotate(-45deg);
}

.player-screen {
  position: relative;
  aspect-ratio: 16 / 10.35;
  background: #000;
}

.player-screen video {
  position: absolute;
  inset: 0 0 124px;
  width: 100%;
  height: calc(100% - 124px);
  object-fit: cover;
}

.player-screen::after {
  content: "";
  position: absolute;
  inset: auto 0 124px;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, .82), transparent);
}

.player-subtitle {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 168px;
  max-width: 78%;
  padding: 4px 18px 8px;
  transform: translateX(-50%);
  border-radius: 4px;
  background: rgba(0, 0, 0, .68);
  color: #fff;
  font-size: clamp(1.45rem, 2.75vw, 3.05rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 3px 11px rgba(0, 0, 0, .95);
  white-space: nowrap;
}

.player-console {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 124px;
  padding: 15px 20px 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .94), #020203);
}

.timeline-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 64px;
  gap: 14px;
  align-items: center;
  color: #f1f1f4;
  font-size: .82rem;
}

.time-duration {
  text-align: right;
}

.player-seek {
  position: relative;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.player-seek::before,
.player-progress {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  height: 3px;
  border-radius: 999px;
}

.player-seek::before {
  width: 100%;
  background: rgba(255, 255, 255, .2);
}

.player-progress {
  width: 28%;
  background: var(--home-amber);
}

.player-knob {
  position: absolute;
  top: 4px;
  left: 28%;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .08);
  transform: translateX(-50%);
}

.player-controls {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.control-cluster {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.icon-button,
.player-language {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.icon-button {
  width: 34px;
  height: 34px;
  padding: 7px;
  display: inline-grid;
  place-items: center;
}

.player-play {
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
}

.icon-button svg,
.transport-icon svg,
.tool-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.icon-play {
  display: none;
}

.player-window.is-paused .icon-play {
  display: block;
}

.player-window.is-paused .icon-pause {
  display: none;
}

.transport-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #f0f0f2;
}

.volume-track {
  position: relative;
  width: 120px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
}

.volume-track i {
  position: absolute;
  inset: 0 34% 0 0;
  border-radius: inherit;
  background: var(--home-amber);
}

.volume-track::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 66%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.control-meta {
  justify-content: flex-end;
  gap: 16px;
}

.player-language {
  min-height: 42px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: #f7f7f8;
  font-size: .88rem;
  font-weight: 650;
}

.player-language span {
  min-width: 24px;
  min-height: 20px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 4px;
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
}

.player-language svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.local-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d5d5dc;
  font-size: .78rem;
  white-space: nowrap;
}

.local-status i {
  width: 10px;
  height: 10px;
  border: 2px solid var(--home-green);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(40, 209, 124, .52);
}

.tool-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #f5f5f7;
}

.workflow-section,
.story-section,
.data-section,
.steps-section,
.price-section,
.faq-section {
  border-bottom: 1px solid var(--home-border-soft);
}

.workflow-section {
  padding: 70px 0 104px;
}

.section-heading {
  margin-bottom: 44px;
}

.center-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.lt-home h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.15rem, 4.4vw, 4.15rem);
  font-weight: 800;
  line-height: 1.05;
}

.section-heading p,
.story-layout p,
.data-layout > div > p,
.price-layout > div > p {
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: 1.08rem;
}

.workflow-grid {
  width: min(960px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.workflow-panel {
  padding: 36px;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015)),
    var(--home-surface);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .32);
}

.workflow-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--home-amber);
}

.workflow-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-panel h3 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.15;
}

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

.workflow-panel a,
.text-link {
  margin-top: 24px;
  display: inline-flex;
  color: #fff;
  font-weight: 800;
  text-decoration-color: var(--home-amber);
  text-underline-offset: 5px;
}

.story-section {
  padding: 100px 0;
  background: #070708;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.story-points {
  border-top: 1px solid var(--home-border);
}

.story-points div {
  padding: 24px 0;
  display: grid;
  grid-template-columns: minmax(150px, .55fr) 1fr;
  gap: 26px;
  border-bottom: 1px solid var(--home-border);
}

.story-points strong {
  color: #fff;
  font-size: 1.04rem;
}

.story-points span {
  color: var(--home-muted);
}

.data-section,
.faq-section {
  padding: 104px 0;
}

.data-layout,
.price-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(430px, 1.14fr);
  gap: clamp(42px, 6.5vw, 86px);
  align-items: start;
}

.data-flow,
.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.data-flow {
  border-top: 1px solid var(--home-border);
}

.data-flow li {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--home-border);
}

.data-flow li > span,
.steps-list li > span {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  color: var(--home-amber);
  font-weight: 800;
}

.data-flow li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #47474f;
  border-radius: 999px;
  font-size: .78rem;
}

.data-flow strong,
.steps-list strong {
  color: #fff;
  font-size: 1.08rem;
}

.data-flow p,
.steps-list p {
  margin: 6px 0 0;
  color: var(--home-muted);
}

.steps-section {
  padding: 96px 0;
  background: #050506;
}

.compact-heading {
  margin-bottom: 38px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--home-border);
}

.steps-list li {
  padding: 32px 34px 0 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
}

.steps-list li + li {
  padding-left: 34px;
  border-left: 1px solid var(--home-border);
}

.price-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(246, 164, 0, .24), transparent 31rem),
    #090909;
}

.price-layout {
  align-items: center;
}

.price-summary {
  padding: 30px;
  border: 1px solid rgba(246, 164, 0, .32);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(246, 164, 0, .16), rgba(255, 255, 255, .035));
}

.price-summary > div {
  padding: 19px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.price-summary > div:first-child {
  padding-top: 0;
}

.price-summary span {
  color: #d5d5dc;
}

.price-summary strong {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
}

.price-summary .button {
  width: 100%;
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid var(--home-border);
}

.faq-list details {
  border-bottom: 1px solid var(--home-border);
}

.faq-list summary {
  padding: 23px 38px 23px 0;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 750;
  cursor: pointer;
}

.faq-list details p {
  margin: -7px 0 24px;
  color: var(--home-muted);
}

.final-cta {
  padding: 96px 0 104px;
  text-align: center;
  background: #030304;
}

.final-cta h2 {
  max-width: 860px;
  margin: 0 auto;
}

.final-cta p {
  margin: 18px 0 30px;
  color: var(--home-muted);
}

.lt-home .cookie-banner {
  right: 50%;
  bottom: 18px;
  left: auto;
  width: min(680px, calc(100% - 32px));
  transform: translateX(50%);
  border-radius: 8px;
  background: rgba(18, 18, 21, .94);
  box-shadow: 0 18px 70px rgba(0, 0, 0, .45);
}

.lt-home .cookie-banner p {
  font-size: .86rem;
  line-height: 1.45;
}

@media (max-width: 1220px) {
  .home-header .nav,
  .lt-home .home-shell {
    width: min(1180px, calc(100% - 52px));
  }

  .hero-grid {
    grid-template-columns: minmax(330px, 405px) minmax(520px, 1fr);
    gap: 42px;
  }

  .player-subtitle {
    font-size: clamp(1.25rem, 2.4vw, 2.25rem);
  }

  .local-status,
  .tool-icon {
    display: none;
  }
}

@media (max-width: 980px) {
  .home-header .nav {
    min-height: 78px;
  }

  .home-header .nav-links a:not(.button) {
    display: none;
  }

  .button.compact {
    min-height: 42px;
    padding: 8px 15px;
  }

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

  .hero-grid,
  .story-layout,
  .data-layout,
  .price-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-lead,
  .hero-actions,
  .hero-facts {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-facts {
    justify-content: center;
  }

  .player-stage {
    width: min(820px, 100%);
    margin: 0 auto;
  }

  .workflow-grid,
  .steps-list {
    grid-template-columns: 1fr;
  }

  .story-points div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .steps-list li,
  .steps-list li + li {
    padding: 26px 0;
    border-left: 0;
  }

  .steps-list li + li {
    border-top: 1px solid var(--home-border);
  }
}

@media (max-width: 680px) {
  .home-header .nav,
  .lt-home .home-shell {
    width: min(100% - 32px, 1180px);
  }

  .home-header .nav {
    gap: 10px;
  }

  .brand-mark {
    gap: 9px;
    font-size: 1.08rem;
  }

  .brand-mark svg {
    width: 33px;
    height: 33px;
  }

  .button.compact {
    position: relative;
    width: 96px;
    max-width: 96px;
    min-height: 38px;
    padding: 8px 10px;
    overflow: hidden;
    font-size: 0;
    line-height: 1.1;
  }

  .button.compact::after {
    content: "Išbandyti";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: .78rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 11.6vw, 3.05rem);
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    justify-items: center;
    gap: 8px;
  }

  .hero-facts li + li::before {
    display: none;
  }

  .player-window {
    border-radius: 8px;
  }

  .player-titlebar {
    min-height: 38px;
  }

  .window-actions {
    gap: 14px;
  }

  .player-screen {
    aspect-ratio: 16 / 12.4;
  }

  .player-screen video {
    inset-bottom: 122px;
    height: calc(100% - 122px);
  }

  .player-screen::after {
    inset-bottom: 122px;
  }

  .player-subtitle {
    bottom: 143px;
    max-width: 88%;
    padding: 4px 10px 6px;
    font-size: clamp(1rem, 5.6vw, 1.45rem);
    white-space: normal;
  }

  .player-console {
    min-height: 122px;
    padding: 13px 14px 14px;
  }

  .timeline-row {
    grid-template-columns: 46px minmax(0, 1fr) 50px;
    gap: 9px;
    font-size: .68rem;
  }

  .player-controls {
    margin-top: 16px;
    gap: 10px;
  }

  .control-cluster {
    gap: 9px;
  }

  .transport-icon,
  .volume-track {
    display: none;
  }

  .player-language {
    min-height: 38px;
    padding: 0 9px;
    gap: 7px;
    font-size: .78rem;
  }

  .player-language span {
    min-width: 22px;
  }

  .workflow-section,
  .story-section,
  .data-section,
  .steps-section,
  .price-section,
  .faq-section {
    padding: 72px 0;
  }

  .lt-home .cookie-banner {
    bottom: 12px;
    gap: 12px;
    padding: 14px;
  }

  .lt-home .cookie-banner p {
    font-size: .78rem;
  }

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

  .lt-home .cookie-actions button {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }

  .workflow-panel,
  .price-summary {
    padding: 25px;
  }

  .lt-home h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .price-summary > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lt-home .button:hover {
    transform: none;
  }
}
