/* ============================================================
LSA GLOBAL LINGOLAB
MASTER HOMEPAGE DESIGN SYSTEM
============================================================ */

html,
body {
  overflow-x:hidden !important;
}


/* ============================================================
ROOT
============================================================ */

#lsa-lingolab-master {

  --bg:#f4f7fb;
  --surface:#ffffff;
  --surface-soft:#eef3f8;

  --text:#152238;
  --muted:#647286;
  --line:#dbe3ed;

  --blue:#2563eb;
  --blue-dark:#1d4ed8;
  --blue-soft:#e6efff;

  --red:#dc2626;
  --green:#07845d;
  --amber:#b76b00;

  --shadow:
    0 24px 70px
    rgba(21,34,56,.12);

  --radius:18px;
  --radius-lg:28px;

  --max:1600px;


  /*
  ============================================================
  TRUE ELEMENTOR FULL-WIDTH BREAKOUT
  ============================================================
  */

  width:100vw !important;
  max-width:100vw !important;

  position:relative !important;

  left:50% !important;

  margin-left:-50vw !important;
  margin-right:-50vw !important;

  overflow-x:hidden !important;


  background:var(--bg);
  color:var(--text);


  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;


  color-scheme:light;
}


/* ============================================================
DARK THEME
============================================================ */

#lsa-lingolab-master[data-theme="dark"] {

  --bg:#08111f;
  --surface:#0f1b2d;
  --surface-soft:#13243b;

  --text:#f4f7fc;
  --muted:#afbdd0;
  --line:#263b56;

  --blue:#60a5fa;
  --blue-dark:#3b82f6;
  --blue-soft:#173252;

  --shadow:
    0 26px 80px
    rgba(0,0,0,.34);

  color-scheme:dark;
}


/* ============================================================
RESET
============================================================ */

#lsa-lingolab-master,
#lsa-lingolab-master * {
  box-sizing:border-box;
}


#lsa-lingolab-master img,
#lsa-lingolab-master svg,
#lsa-lingolab-master video,
#lsa-lingolab-master iframe {
  max-width:100%;
}


#lsa-lingolab-master img {
  height:auto;
}


#lsa-lingolab-master button,
#lsa-lingolab-master select {
  font:inherit;
}


#lsa-lingolab-master a {
  color:inherit;
}


#lsa-lingolab-master button,
#lsa-lingolab-master a {
  -webkit-tap-highlight-color:transparent;
}


/* ============================================================
ACCESSIBILITY
============================================================ */

#lsa-lingolab-master .lsa-skip {

  position:fixed;

  top:-100px;
  left:18px;

  z-index:999999;

  padding:12px 18px;

  border-radius:10px;

  background:var(--text);
  color:var(--surface);

  text-decoration:none;
}


#lsa-lingolab-master .lsa-skip:focus {
  top:18px;
}


#lsa-lingolab-master a:focus-visible,
#lsa-lingolab-master button:focus-visible,
#lsa-lingolab-master summary:focus-visible {

  outline:
    3px solid var(--blue);

  outline-offset:3px;
}


/* ============================================================
GLOBAL CONTAINER
============================================================ */

#lsa-lingolab-master .lsa-container {

  width:min(
    calc(100% - clamp(30px,6vw,120px)),
    var(--max)
  );

  margin-inline:auto;
}


/* ============================================================
HEADER
============================================================ */

#lsa-lingolab-master .lsa-header {

  position:sticky;

  top:0;

  z-index:5000;

  width:100%;

  border-bottom:
    1px solid rgba(110,130,155,.20);

  background:
    rgba(255,255,255,.94);

  backdrop-filter:
    blur(18px);

  -webkit-backdrop-filter:
    blur(18px);
}


#lsa-lingolab-master[data-theme="dark"] .lsa-header {

  background:
    rgba(15,27,45,.95);
}


#lsa-lingolab-master .lsa-header-inner {

  min-height:88px;

  position:relative;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:24px;
}


/* ============================================================
BRAND
============================================================ */

#lsa-lingolab-master .lsa-brand {

  display:flex;

  align-items:center;

  gap:15px;

  min-width:max-content;

  text-decoration:none;
}


#lsa-lingolab-master .lsa-logo-wrap {

  display:flex;

  align-items:center;
}


#lsa-lingolab-master .lsa-logo {

  display:block;

  width:auto;

  height:55px;

  max-width:185px;

  object-fit:contain;
}


#lsa-lingolab-master .lsa-logo-dark {
  display:none;
}


#lsa-lingolab-master[data-theme="dark"] .lsa-logo-light {
  display:none;
}


#lsa-lingolab-master[data-theme="dark"] .lsa-logo-dark {
  display:block;
}


#lsa-lingolab-master .lsa-brand-copy {

  display:flex;

  flex-direction:column;

  padding-left:15px;

  border-left:
    1px solid var(--line);

  line-height:1.15;
}


#lsa-lingolab-master .lsa-brand-copy strong {

  font-size:18px;

  letter-spacing:-.02em;
}


#lsa-lingolab-master .lsa-brand-copy small {

  margin-top:4px;

  color:var(--muted);

  font-size:9px;

  font-weight:800;

  letter-spacing:.09em;

  text-transform:uppercase;
}


/* ============================================================
DESKTOP NAVIGATION
============================================================ */

#lsa-lingolab-master .lsa-nav {

  display:flex;

  align-items:center;

  gap:
    clamp(16px,1.8vw,30px);
}


#lsa-lingolab-master .lsa-nav a {

  position:relative;

  color:var(--muted);

  text-decoration:none;

  font-size:14px;

  font-weight:700;
}


#lsa-lingolab-master .lsa-nav a:hover {

  color:var(--text);
}


#lsa-lingolab-master .lsa-nav a::after {

  content:"";

  position:absolute;

  left:0;

  bottom:-8px;

  width:0;

  height:2px;

  border-radius:50px;

  background:var(--blue);

  transition:
    width .2s ease;
}


#lsa-lingolab-master .lsa-nav a:hover::after {

  width:100%;
}


/* ============================================================
HEADER TOOLS
============================================================ */

#lsa-lingolab-master .lsa-header-tools {

  position:relative;

  display:flex;

  align-items:center;

  gap:9px;
}


/* ============================================================
LANGUAGE DROPDOWN
============================================================ */

#lsa-lingolab-master .lsa-language-system {

  position:relative;

  z-index:5200;
}


#lsa-lingolab-master .lsa-language-toggle {

  min-width:92px;

  height:44px;

  display:flex;

  align-items:center;

  justify-content:center;

  gap:8px;

  padding:0 10px;

  border:
    1px solid var(--line);

  border-radius:12px;

  background:var(--surface);

  color:var(--text);

  cursor:pointer;
}


#lsa-lingolab-master .lsa-current-flag,
#lsa-lingolab-master .lsa-flag {

  width:28px;

  height:17px;

  display:block;

  overflow:hidden;

  flex:0 0 auto;

  border-radius:2px;

  box-shadow:
    0 0 0 1px
    rgba(0,0,0,.12);
}


#lsa-lingolab-master .lsa-current-flag svg,
#lsa-lingolab-master .lsa-flag svg {

  display:block;

  width:100%;

  height:100%;
}


#lsa-lingolab-master .lsa-language-toggle strong {

  font-size:11px;

  font-weight:850;
}


#lsa-lingolab-master .lsa-chevron {

  color:var(--muted);

  font-size:11px;
}


#lsa-lingolab-master .lsa-language-menu {

  position:absolute;

  right:0;

  top:calc(100% + 9px);

  z-index:9999;

  width:190px;

  padding:7px;

  border:
    1px solid var(--line);

  border-radius:14px;

  background:var(--surface);

  box-shadow:var(--shadow);
}


#lsa-lingolab-master .lsa-language-menu[hidden] {

  display:none !important;
}


#lsa-lingolab-master .lsa-language-option {

  width:100%;

  display:grid;

  grid-template-columns:
    34px 1fr;

  align-items:center;

  gap:9px;

  padding:10px;

  border:0;

  border-radius:9px;

  background:transparent;

  color:var(--text);

  text-align:left;

  cursor:pointer;
}


#lsa-lingolab-master .lsa-language-option:hover {

  background:var(--surface-soft);
}


#lsa-lingolab-master .lsa-language-option > span:last-child {

  display:flex;

  flex-direction:column;
}


#lsa-lingolab-master .lsa-language-option strong {

  font-size:11px;
}


#lsa-lingolab-master .lsa-language-option small {

  margin-top:2px;

  color:var(--muted);

  font-size:9px;
}


/* ============================================================
THEME BUTTON
============================================================ */

#lsa-lingolab-master .lsa-theme-btn {

  width:44px;

  height:44px;

  display:grid;

  place-items:center;

  border:
    1px solid var(--line);

  border-radius:12px;

  background:var(--surface);

  color:var(--text);

  cursor:pointer;

  font-size:18px;

  transition:
    transform .2s ease,
    border-color .2s ease;
}


#lsa-lingolab-master .lsa-theme-btn:hover {

  transform:
    translateY(-1px);

  border-color:var(--blue);
}


/* ============================================================
HEADER CTA
============================================================ */

#lsa-lingolab-master .lsa-header-cta {

  min-height:44px;

  display:flex;

  align-items:center;

  justify-content:center;

  padding:0 19px;

  border-radius:12px;

  background:var(--blue);

  color:#fff;

  text-decoration:none;

  font-size:13px;

  font-weight:800;
}


#lsa-lingolab-master .lsa-header-cta:hover {

  background:var(--blue-dark);
}


/* ============================================================
HAMBURGER
============================================================ */

#lsa-lingolab-master .lsa-menu-btn {

  width:44px;

  height:44px;

  display:none;

  align-items:center;

  justify-content:center;

  flex-direction:column;

  gap:4px;

  border:
    1px solid var(--line);

  border-radius:12px;

  background:var(--surface);

  color:var(--text);

  cursor:pointer;
}


#lsa-lingolab-master .lsa-menu-btn span {

  width:19px;

  height:2px;

  display:block;

  border-radius:20px;

  background:currentColor;

  transition:
    transform .2s ease,
    opacity .2s ease;
}


#lsa-lingolab-master .lsa-menu-btn.is-open span:nth-child(1) {

  transform:
    translateY(6px)
    rotate(45deg);
}


#lsa-lingolab-master .lsa-menu-btn.is-open span:nth-child(2) {

  opacity:0;
}


#lsa-lingolab-master .lsa-menu-btn.is-open span:nth-child(3) {

  transform:
    translateY(-6px)
    rotate(-45deg);
}


/* ============================================================
HERO
============================================================ */

#lsa-lingolab-master .lsa-hero {

  position:relative;

  width:100%;

  min-height:
    min(
      880px,
      calc(100vh - 88px)
    );

  display:flex;

  align-items:center;

  overflow:hidden;

  background:
    linear-gradient(
      135deg,
      var(--bg) 0%,
      var(--surface) 50%,
      var(--bg) 100%
    );
}


#lsa-lingolab-master .lsa-grid-pattern {

  position:absolute;

  inset:0;

  opacity:.23;

  background-image:

    linear-gradient(
      var(--line) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      var(--line) 1px,
      transparent 1px
    );

  background-size:
    62px 62px;
}


#lsa-lingolab-master .lsa-orb {

  position:absolute;

  border-radius:50%;

  filter:blur(25px);
}


#lsa-lingolab-master .lsa-orb-one {

  width:520px;

  height:520px;

  right:-180px;

  top:-190px;

  background:
    rgba(37,99,235,.13);
}


#lsa-lingolab-master .lsa-orb-two {

  width:350px;

  height:350px;

  left:-180px;

  bottom:-150px;

  background:
    rgba(220,38,38,.07);
}


#lsa-lingolab-master .lsa-hero-grid {

  position:relative;

  z-index:3;

  display:grid;

  grid-template-columns:
    minmax(0,1.02fr)
    minmax(500px,.98fr);

  align-items:center;

  gap:
    clamp(48px,6vw,100px);

  padding:
    clamp(65px,8vw,125px)
    0;
}


/* ============================================================
HERO COPY
============================================================ */

#lsa-lingolab-master .lsa-kicker {

  width:max-content;

  max-width:100%;

  display:flex;

  align-items:center;

  gap:9px;

  padding:8px 12px;

  border:
    1px solid var(--line);

  border-radius:99px;

  background:var(--surface);

  color:var(--muted);

  font-size:10px;

  font-weight:850;

  letter-spacing:.11em;
}


#lsa-lingolab-master .lsa-dot {

  width:7px;

  height:7px;

  flex:0 0 7px;

  border-radius:50%;

  background:var(--blue);

  box-shadow:
    0 0 0 5px
    rgba(37,99,235,.12);
}


#lsa-lingolab-master .lsa-hero h1 {

  max-width:900px;

  margin:
    clamp(25px,2.6vw,40px)
    0
    24px;

  font-size:
    clamp(45px,5.25vw,88px);

  font-weight:850;

  line-height:.98;

  letter-spacing:-.055em;
}


#lsa-lingolab-master .lsa-hero h1 span {

  display:block;

  margin-top:11px;

  color:var(--blue);
}


#lsa-lingolab-master .lsa-lead {

  max-width:790px;

  margin:0;

  color:var(--muted);

  font-size:
    clamp(16px,1.3vw,21px);

  line-height:1.72;
}


#lsa-lingolab-master .lsa-hero-secondary-copy {

  max-width:760px;

  margin:
    14px 0 0;

  color:var(--muted);

  font-size:13px;

  line-height:1.72;
}


#lsa-lingolab-master .lsa-actions {

  display:flex;

  flex-wrap:wrap;

  gap:12px;

  margin-top:33px;
}


#lsa-lingolab-master .lsa-btn {

  min-height:53px;

  display:inline-flex;

  align-items:center;

  justify-content:center;

  gap:12px;

  padding:0 23px;

  border:
    1px solid transparent;

  border-radius:13px;

  text-decoration:none;

  font-size:14px;

  font-weight:800;

  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}


#lsa-lingolab-master .lsa-btn:hover {

  transform:
    translateY(-2px);
}


#lsa-lingolab-master .lsa-btn-primary {

  background:var(--blue);

  color:#fff;

  box-shadow:
    0 12px 30px
    rgba(37,99,235,.23);
}


#lsa-lingolab-master .lsa-btn-primary:hover {

  background:var(--blue-dark);
}


#lsa-lingolab-master .lsa-btn-secondary {

  border-color:var(--line);

  background:var(--surface);

  color:var(--text);
}


#lsa-lingolab-master .lsa-btn-secondary:hover {

  border-color:var(--blue);
}


/* ============================================================
HERO STATS
============================================================ */

#lsa-lingolab-master .lsa-stats {

  display:flex;

  margin-top:43px;
}


#lsa-lingolab-master .lsa-stats div {

  min-width:135px;

  padding-right:25px;

  margin-right:25px;

  border-right:
    1px solid var(--line);
}


#lsa-lingolab-master .lsa-stats div:last-child {

  border-right:0;
}


#lsa-lingolab-master .lsa-stats strong {

  display:block;

  font-size:18px;
}


#lsa-lingolab-master .lsa-stats span {

  display:block;

  margin-top:4px;

  color:var(--muted);

  font-size:10px;
}


/* ============================================================
EXAM PREVIEW
============================================================ */

#lsa-lingolab-master .lsa-preview-stage {

  position:relative;

  width:100%;

  min-width:0;

  min-height:600px;

  display:grid;

  place-items:center;
}


#lsa-lingolab-master .lsa-preview-ring {

  position:absolute;

  border:
    1px solid
    rgba(37,99,235,.14);

  border-radius:50%;
}


#lsa-lingolab-master .ring-one {

  width:660px;

  height:660px;
}


#lsa-lingolab-master .ring-two {

  width:510px;

  height:510px;
}


#lsa-lingolab-master .lsa-exam-window {

  position:relative;

  z-index:5;

  width:100%;

  max-width:735px;

  overflow:hidden;

  border:
    1px solid var(--line);

  border-radius:22px;

  background:var(--surface);

  box-shadow:var(--shadow);

  transform:
    perspective(1400px)
    rotateY(-4deg)
    rotateX(1deg);
}


#lsa-lingolab-master .lsa-exam-top {

  min-height:57px;

  display:grid;

  grid-template-columns:
    auto 1fr auto;

  align-items:center;

  gap:18px;

  padding:0 18px;

  border-bottom:
    1px solid var(--line);

  color:var(--muted);

  font-size:10px;

  font-weight:800;
}


#lsa-lingolab-master .lsa-exam-top > span {

  text-align:center;
}


#lsa-lingolab-master .lsa-exam-top strong {

  padding:6px 9px;

  border-radius:7px;

  background:var(--surface-soft);

  color:var(--text);

  font-variant-numeric:
    tabular-nums;
}


#lsa-lingolab-master .lsa-window-dots {

  display:flex;

  gap:6px;
}


#lsa-lingolab-master .lsa-window-dots i {

  width:8px;

  height:8px;

  border-radius:50%;

  background:var(--line);
}


#lsa-lingolab-master .lsa-window-dots i:first-child {

  background:var(--red);
}


#lsa-lingolab-master .lsa-exam-progress {

  height:4px;

  background:var(--surface-soft);
}


#lsa-lingolab-master .lsa-exam-progress span {

  display:block;

  width:42%;

  height:100%;

  background:var(--blue);
}


#lsa-lingolab-master .lsa-exam-body {

  min-height:415px;

  display:grid;

  grid-template-columns:
    145px
    minmax(0,1fr);
}


/* SIDEBAR */

#lsa-lingolab-master .lsa-exam-sidebar {

  padding:23px 12px;

  border-right:
    1px solid var(--line);

  background:var(--surface-soft);
}


#lsa-lingolab-master .lsa-exam-sidebar small {

  display:block;

  padding:
    0 7px 8px;

  color:var(--muted);

  font-size:8px;

  font-weight:850;

  letter-spacing:.12em;
}


#lsa-lingolab-master .lsa-exam-sidebar div {

  display:flex;

  align-items:center;

  gap:8px;

  margin:6px 0;

  padding:10px;

  border-radius:9px;

  color:var(--muted);

  font-size:10px;
}


#lsa-lingolab-master .lsa-exam-sidebar div.active {

  background:var(--surface);

  color:var(--text);

  box-shadow:
    0 5px 16px
    rgba(15,23,42,.06);
}


#lsa-lingolab-master .lsa-exam-sidebar b {

  width:24px;

  height:24px;

  flex:0 0 24px;

  display:grid;

  place-items:center;

  border-radius:7px;

  background:var(--surface);

  font-size:8px;
}


#lsa-lingolab-master .lsa-exam-sidebar .active b {

  background:var(--blue);

  color:#fff;
}


/* QUESTION */

#lsa-lingolab-master .lsa-question {

  min-width:0;

  padding:
    clamp(24px,3vw,41px);
}


#lsa-lingolab-master .lsa-question-meta {

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:15px;

  color:var(--muted);

  font-size:9px;

  font-weight:750;
}


#lsa-lingolab-master .lsa-status {

  padding:5px 8px;

  border-radius:99px;

  background:
    rgba(7,132,93,.10);

  color:var(--green);
}


#lsa-lingolab-master .lsa-preview-label {

  display:block;

  margin-top:28px;

  color:var(--blue);

  font-size:8px;

  font-weight:850;

  letter-spacing:.11em;
}


#lsa-lingolab-master .lsa-question h3 {

  margin:
    8px 0 9px;

  font-size:
    clamp(20px,2vw,28px);
}


#lsa-lingolab-master .lsa-question > p {

  margin:
    0 0 21px;

  color:var(--muted);

  font-size:11px;

  line-height:1.6;
}


#lsa-lingolab-master .lsa-answer {

  min-width:0;

  min-height:54px;

  display:grid;

  grid-template-columns:
    29px
    13px
    minmax(0,1fr);

  align-items:center;

  gap:10px;

  margin:8px 0;

  padding:10px 12px;

  border:
    1px solid var(--line);

  border-radius:11px;

  background:var(--surface);
}


#lsa-lingolab-master .lsa-answer > b {

  width:28px;

  height:28px;

  display:grid;

  place-items:center;

  border-radius:8px;

  background:var(--surface-soft);

  font-size:9px;
}


#lsa-lingolab-master .lsa-answer > i {

  width:12px;

  height:12px;

  border:
    2px solid var(--line);

  border-radius:50%;
}


#lsa-lingolab-master .lsa-answer > span {

  min-width:0;

  color:var(--muted);

  font-size:10px;

  overflow-wrap:anywhere;
}


#lsa-lingolab-master .lsa-answer.selected {

  border-color:var(--blue);

  background:
    rgba(37,99,235,.05);
}


#lsa-lingolab-master[data-theme="dark"] .lsa-answer.selected {

  background:
    rgba(96,165,250,.08);
}


#lsa-lingolab-master .lsa-answer.selected > i {

  border-color:var(--blue);

  background:var(--blue);

  box-shadow:
    inset 0 0 0 3px
    var(--surface);
}


#lsa-lingolab-master .lsa-question-buttons {

  display:flex;

  justify-content:space-between;

  gap:10px;

  margin-top:24px;
}


#lsa-lingolab-master .lsa-question-buttons button {

  min-height:36px;

  padding:0 12px;

  border:
    1px solid var(--line);

  border-radius:8px;

  background:var(--surface-soft);

  color:var(--muted);

  font-size:9px;

  font-weight:800;
}


#lsa-lingolab-master .lsa-question-buttons button:last-child {

  border-color:var(--blue);

  background:var(--blue);

  color:#fff;
}


/* FLOATING CARDS */

#lsa-lingolab-master .lsa-floating-card {

  position:absolute;

  z-index:8;

  padding:13px 15px;

  border:
    1px solid var(--line);

  border-radius:13px;

  background:var(--surface);

  box-shadow:
    0 15px 35px
    rgba(15,23,42,.12);
}


#lsa-lingolab-master .lsa-floating-card small,
#lsa-lingolab-master .lsa-floating-card span {

  display:block;

  color:var(--muted);

  font-size:7px;

  font-weight:800;

  letter-spacing:.09em;
}


#lsa-lingolab-master .lsa-floating-card strong {

  display:block;

  margin:4px 0;

  font-size:12px;
}


#lsa-lingolab-master .lsa-readiness-card {

  left:-20px;

  bottom:54px;
}


#lsa-lingolab-master .lsa-launch-card {

  right:-18px;

  top:67px;
}


/* ============================================================
VALUE STRIP
============================================================ */

#lsa-lingolab-master .lsa-value-strip {

  width:100%;

  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);

  background:var(--surface);
}


#lsa-lingolab-master .lsa-value-grid {

  display:grid;

  grid-template-columns:
    repeat(4,1fr);
}


#lsa-lingolab-master .lsa-value-grid article {

  min-height:120px;

  display:flex;

  align-items:center;

  gap:14px;

  padding:25px 23px;

  border-right:
    1px solid var(--line);
}


#lsa-lingolab-master .lsa-value-grid article:last-child {

  border-right:0;
}


#lsa-lingolab-master .lsa-value-grid article > b {

  flex:0 0 40px;

  width:40px;

  height:40px;

  display:grid;

  place-items:center;

  border-radius:11px;

  background:var(--blue-soft);

  color:var(--blue);

  font-size:9px;
}


#lsa-lingolab-master .lsa-value-grid strong {

  display:block;

  color:var(--text);

  font-size:12px;
}


#lsa-lingolab-master .lsa-value-grid span {

  display:block;

  margin-top:4px;

  color:var(--muted);

  font-size:10px;

  line-height:1.5;
}


/* ============================================================
GENERAL SECTIONS
============================================================ */

#lsa-lingolab-master .lsa-section {

  width:100%;

  padding:
    clamp(75px,8vw,140px)
    0;

  background:var(--bg);
}


#lsa-lingolab-master .lsa-soft {

  background:var(--surface-soft);
}


#lsa-lingolab-master .lsa-section-heading {

  display:grid;

  grid-template-columns:
    minmax(0,1.1fr)
    minmax(300px,.65fr);

  align-items:end;

  gap:
    clamp(35px,6vw,100px);

  margin-bottom:
    clamp(38px,5vw,70px);
}


#lsa-lingolab-master .lsa-section-heading.centred {

  grid-template-columns:1fr;

  max-width:980px;

  margin-left:auto;

  margin-right:auto;

  text-align:center;
}


#lsa-lingolab-master .lsa-eyebrow {

  display:block;

  margin-bottom:14px;

  color:var(--blue);

  font-size:10px;

  font-weight:850;

  letter-spacing:.13em;
}


#lsa-lingolab-master .lsa-eyebrow.light {

  color:#9ec6ff;
}


#lsa-lingolab-master .lsa-section-heading h2,
#lsa-lingolab-master .lsa-language-feature h2,
#lsa-lingolab-master .lsa-device-section h2,
#lsa-lingolab-master .lsa-faq-intro h2,
#lsa-lingolab-master .lsa-readiness-grid h2,
#lsa-lingolab-master .lsa-independence h2 {

  margin:0;

  font-size:
    clamp(36px,4vw,66px);

  font-weight:830;

  line-height:1.02;

  letter-spacing:-.045em;
}


#lsa-lingolab-master .lsa-section-heading h2 span,
#lsa-lingolab-master .lsa-language-feature h2 span,
#lsa-lingolab-master .lsa-device-section h2 span,
#lsa-lingolab-master .lsa-faq-intro h2 span,
#lsa-lingolab-master .lsa-readiness-grid h2 span,
#lsa-lingolab-master .lsa-independence h2 span {

  display:block;

  color:var(--blue);
}


#lsa-lingolab-master .lsa-section-heading > p,
#lsa-lingolab-master .lsa-language-feature > div:first-child > p,
#lsa-lingolab-master .lsa-device-section > div:first-child > p,
#lsa-lingolab-master .lsa-faq-intro > p {

  margin:0;

  color:var(--muted);

  font-size:
    clamp(14px,1.15vw,18px);

  line-height:1.75;
}


/* ============================================================
EXAM CATALOGUE
============================================================ */

#lsa-lingolab-master .lsa-exam-catalogue-grid {

  display:grid;

  grid-template-columns:
    repeat(4,minmax(0,1fr));

  gap:
    clamp(14px,1.5vw,24px);
}


#lsa-lingolab-master .lsa-exam-card {

  min-width:0;

  min-height:470px;

  display:flex;

  flex-direction:column;

  padding:
    clamp(22px,2vw,32px);

  border:
    1px solid var(--line);

  border-radius:var(--radius);

  background:var(--surface);

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}


#lsa-lingolab-master .lsa-exam-card:hover {

  transform:
    translateY(-5px);

  border-color:var(--blue);

  box-shadow:var(--shadow);
}


#lsa-lingolab-master .lsa-exam-current {

  border-top:
    4px solid var(--blue);
}


#lsa-lingolab-master .lsa-exam-card-top {

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:10px;
}


#lsa-lingolab-master .lsa-exam-code {

  width:44px;

  height:44px;

  display:grid;

  place-items:center;

  border-radius:12px;

  background:var(--blue-soft);

  color:var(--blue);

  font-size:12px;

  font-weight:850;
}


#lsa-lingolab-master .lsa-status-badge {

  padding:6px 8px;

  border-radius:99px;

  font-size:7px;

  font-weight:850;

  letter-spacing:.06em;
}


#lsa-lingolab-master .lsa-status-badge.current {

  background:
    rgba(7,132,93,.10);

  color:var(--green);
}


#lsa-lingolab-master .lsa-status-badge.planned {

  background:
    rgba(183,107,0,.10);

  color:var(--amber);
}


#lsa-lingolab-master .lsa-exam-card h3 {

  margin:
    28px 0 5px;

  font-size:
    clamp(20px,1.7vw,27px);

  letter-spacing:-.025em;
}


#lsa-lingolab-master .lsa-exam-card > strong {

  color:var(--blue);

  font-size:11px;
}


#lsa-lingolab-master .lsa-exam-card > p {

  margin:
    17px 0 0;

  color:var(--muted);

  font-size:12px;

  line-height:1.7;
}


#lsa-lingolab-master .lsa-exam-card ul {

  display:grid;

  gap:8px;

  padding:0;

  margin:
    22px 0 25px;

  list-style:none;
}


#lsa-lingolab-master .lsa-exam-card li {

  position:relative;

  padding-left:17px;

  color:var(--muted);

  font-size:10px;

  line-height:1.55;
}


#lsa-lingolab-master .lsa-exam-card li::before {

  content:"";

  position:absolute;

  left:0;

  top:.58em;

  width:6px;

  height:6px;

  border-radius:50%;

  background:var(--blue);
}


#lsa-lingolab-master .lsa-exam-card > a {

  margin-top:auto;

  color:var(--blue);

  text-decoration:none;

  font-size:11px;

  font-weight:800;
}


#lsa-lingolab-master .lsa-planned-button {

  min-height:42px;

  margin-top:auto;

  padding:0 14px;

  border:
    1px solid var(--line);

  border-radius:10px;

  background:var(--surface-soft);

  color:var(--muted);

  font-size:10px;

  font-weight:800;

  opacity:.82;
}


#lsa-lingolab-master .lsa-trademark-note {

  max-width:1100px;

  margin:
    30px 0 0;

  color:var(--muted);

  font-size:10px;

  line-height:1.65;
}


/* ============================================================
GERMAN LAUNCH
============================================================ */

#lsa-lingolab-master .lsa-launch-section {

  width:100%;

  padding:
    clamp(80px,9vw,150px)
    0;

  background:
    linear-gradient(
      145deg,
      #081321 0%,
      #152238 56%,
      #081321 100%
    );

  color:#fff;
}


#lsa-lingolab-master .lsa-launch-grid {

  display:grid;

  grid-template-columns:
    minmax(0,.9fr)
    minmax(480px,1.1fr);

  align-items:center;

  gap:
    clamp(50px,7vw,110px);
}


#lsa-lingolab-master .lsa-launch-copy h2 {

  margin:0;

  font-size:
    clamp(42px,4.6vw,74px);

  font-weight:830;

  line-height:1;

  letter-spacing:-.05em;
}


#lsa-lingolab-master .lsa-launch-copy h2 span {

  display:block;

  color:#8dbbff;
}


#lsa-lingolab-master .lsa-launch-copy p {

  max-width:750px;

  margin:
    20px 0 0;

  color:#b9c7d9;

  font-size:14px;

  line-height:1.75;
}


#lsa-lingolab-master .lsa-launch-pills {

  display:flex;

  flex-wrap:wrap;

  gap:8px;

  margin-top:28px;
}


#lsa-lingolab-master .lsa-launch-pills span {

  min-width:50px;

  padding:9px 12px;

  border:
    1px solid rgba(255,255,255,.15);

  border-radius:99px;

  background:
    rgba(255,255,255,.06);

  color:#fff;

  text-align:center;

  font-size:10px;

  font-weight:850;
}


#lsa-lingolab-master .lsa-white-outline-btn {

  margin-top:30px;

  border-color:
    rgba(255,255,255,.25);

  background:
    rgba(255,255,255,.07);

  color:#fff;
}


#lsa-lingolab-master .lsa-level-visual {

  display:grid;

  gap:11px;
}


#lsa-lingolab-master .lsa-level-visual article {

  position:relative;

  min-height:74px;

  display:grid;

  grid-template-columns:
    65px 1fr;

  align-items:center;

  gap:18px;

  padding:
    14px 20px;

  overflow:hidden;

  border:
    1px solid rgba(255,255,255,.10);

  border-radius:15px;

  background:
    rgba(255,255,255,.05);
}


#lsa-lingolab-master .lsa-level-visual article.active {

  border-color:
    rgba(96,165,250,.48);

  background:
    rgba(96,165,250,.10);
}


#lsa-lingolab-master .lsa-level-visual small {

  color:#8dbbff;

  font-size:22px;

  font-weight:850;
}


#lsa-lingolab-master .lsa-level-visual strong {

  color:#fff;

  font-size:14px;
}


#lsa-lingolab-master .lsa-level-visual article > span {

  position:absolute;

  left:0;

  bottom:0;

  width:35%;

  height:3px;

  background:#60a5fa;
}


#lsa-lingolab-master .lsa-level-visual article:nth-child(2) > span {

  width:48%;
}


#lsa-lingolab-master .lsa-level-visual article:nth-child(3) > span {

  width:63%;
}


#lsa-lingolab-master .lsa-level-visual article:nth-child(4) > span {

  width:77%;
}


#lsa-lingolab-master .lsa-level-visual article:nth-child(5) > span {

  width:92%;
}


/* ============================================================
SKILLS
============================================================ */

#lsa-lingolab-master .lsa-skill-grid {

  display:grid;

  grid-template-columns:
    repeat(4,1fr);

  gap:
    clamp(14px,1.8vw,27px);
}


#lsa-lingolab-master .lsa-skill-card {

  position:relative;

  min-width:0;

  min-height:325px;

  padding:
    clamp(24px,2vw,34px);

  border:
    1px solid var(--line);

  border-radius:var(--radius);

  background:var(--surface);
}


#lsa-lingolab-master .lsa-skill-icon {

  width:52px;

  height:52px;

  display:grid;

  place-items:center;

  border-radius:15px;

  background:var(--blue);

  color:#fff;

  font-size:17px;

  font-weight:850;
}


#lsa-lingolab-master .lsa-skill-card > small {

  position:absolute;

  right:24px;

  top:22px;

  color:var(--muted);

  opacity:.4;

  font-size:28px;

  font-weight:850;
}


#lsa-lingolab-master .lsa-skill-card h3 {

  margin:
    33px 0 3px;

  font-size:22px;
}


#lsa-lingolab-master .lsa-skill-card > strong {

  color:var(--blue);

  font-size:11px;
}


#lsa-lingolab-master .lsa-skill-card p {

  margin:
    11px 0 0;

  color:var(--muted);

  font-size:12px;

  line-height:1.7;
}


/* ============================================================
DIGITAL READINESS
============================================================ */

#lsa-lingolab-master .lsa-readiness-grid {

  display:grid;

  grid-template-columns:
    minmax(0,.8fr)
    minmax(420px,1fr);

  align-items:start;

  gap:
    clamp(45px,7vw,120px);
}


#lsa-lingolab-master .lsa-rich-copy {

  display:grid;

  gap:17px;
}


#lsa-lingolab-master .lsa-rich-copy p {

  margin:0;

  color:var(--muted);

  font-size:
    clamp(13px,1.05vw,16px);

  line-height:1.8;
}


/* ============================================================
WORKFLOW
============================================================ */

#lsa-lingolab-master .lsa-process-grid {

  display:grid;

  grid-template-columns:
    repeat(4,1fr);

  border-top:
    1px solid var(--line);
}


#lsa-lingolab-master .lsa-process-grid article {

  display:flex;

  gap:17px;

  padding:32px 26px;

  border-right:
    1px solid var(--line);
}


#lsa-lingolab-master .lsa-process-grid article:first-child {

  padding-left:0;
}


#lsa-lingolab-master .lsa-process-grid article:last-child {

  padding-right:0;

  border-right:0;
}


#lsa-lingolab-master .lsa-process-grid article > b {

  color:var(--blue);

  font-size:10px;
}


#lsa-lingolab-master .lsa-process-grid small {

  color:var(--muted);

  font-size:8px;

  font-weight:850;

  letter-spacing:.11em;
}


#lsa-lingolab-master .lsa-process-grid h3 {

  margin:
    8px 0 10px;

  font-size:18px;
}


#lsa-lingolab-master .lsa-process-grid p {

  margin:0;

  color:var(--muted);

  font-size:11px;

  line-height:1.65;
}


/* ============================================================
PLATFORM
============================================================ */

#lsa-lingolab-master .lsa-platform {

  position:relative;

  width:100%;

  padding:
    clamp(80px,9vw,150px)
    0;

  overflow:hidden;

  background:
    linear-gradient(
      145deg,
      #081321 0%,
      #152238 54%,
      #081321 100%
    );

  color:#fff;
}


#lsa-lingolab-master .lsa-platform::before {

  content:"";

  position:absolute;

  width:600px;

  height:600px;

  left:-240px;

  top:-270px;

  border-radius:50%;

  background:
    rgba(37,99,235,.22);

  filter:
    blur(35px);
}


#lsa-lingolab-master .lsa-platform-grid {

  position:relative;

  z-index:2;

  display:grid;

  grid-template-columns:
    minmax(0,.82fr)
    minmax(500px,1.18fr);

  align-items:center;

  gap:
    clamp(50px,7vw,115px);
}


#lsa-lingolab-master .lsa-platform-copy h2 {

  margin:0;

  font-size:
    clamp(40px,4.35vw,70px);

  font-weight:830;

  line-height:1.02;

  letter-spacing:-.05em;
}


#lsa-lingolab-master .lsa-platform-copy h2 span {

  display:block;

  color:#8dbbff;
}


#lsa-lingolab-master .lsa-platform-copy > p {

  max-width:670px;

  margin:
    24px 0 0;

  color:#b9c7d9;

  font-size:14px;

  line-height:1.75;
}


#lsa-lingolab-master .lsa-checks {

  display:grid;

  gap:18px;

  padding:0;

  margin:
    35px 0 0;

  list-style:none;
}


#lsa-lingolab-master .lsa-checks li {

  display:flex;

  gap:12px;

  color:#b8c6d8;
}


#lsa-lingolab-master .lsa-checks i {

  flex:0 0 25px;

  width:25px;

  height:25px;

  display:grid;

  place-items:center;

  border-radius:7px;

  background:
    rgba(96,165,250,.14);

  color:#8fc0ff;

  font-style:normal;

  font-size:11px;
}


#lsa-lingolab-master .lsa-checks strong {

  display:block;

  color:#fff;

  font-size:12px;
}


#lsa-lingolab-master .lsa-checks small {

  display:block;

  margin-top:3px;

  color:#a7b7ca;

  font-size:10px;

  line-height:1.6;
}


/* ============================================================
DASHBOARD
============================================================ */

#lsa-lingolab-master .lsa-dashboard-shell {

  min-width:0;

  display:grid;

  grid-template-columns:
    minmax(0,1fr)
    minmax(190px,.56fr);

  align-items:end;

  gap:15px;
}


#lsa-lingolab-master .lsa-dashboard,
#lsa-lingolab-master .lsa-platform-note {

  min-width:0;

  border:
    1px solid
    rgba(255,255,255,.12);

  border-radius:20px;

  background:
    rgba(255,255,255,.07);

  backdrop-filter:
    blur(15px);
}


#lsa-lingolab-master .lsa-dashboard {

  padding:
    clamp(22px,2.2vw,35px);
}


#lsa-lingolab-master .lsa-dashboard-heading {

  display:flex;

  justify-content:space-between;

  gap:20px;
}


#lsa-lingolab-master .lsa-dashboard-heading small,
#lsa-lingolab-master .lsa-platform-note small {

  color:#94a7bf;

  font-size:8px;

  font-weight:850;

  letter-spacing:.11em;
}


#lsa-lingolab-master .lsa-dashboard-heading h3,
#lsa-lingolab-master .lsa-platform-note h3 {

  margin:
    6px 0 0;

  color:#fff;

  font-size:21px;
}


#lsa-lingolab-master .lsa-dashboard-heading > span {

  height:max-content;

  padding:6px 9px;

  border-radius:99px;

  background:
    rgba(96,165,250,.14);

  color:#9ec5ff;

  font-size:8px;

  font-weight:850;
}


#lsa-lingolab-master .lsa-dashboard-track {

  display:grid;

  grid-template-columns:
    repeat(2,1fr);

  gap:9px;

  margin-top:25px;
}


#lsa-lingolab-master .lsa-dashboard-track > div {

  padding:14px;

  border:
    1px solid
    rgba(255,255,255,.09);

  border-radius:11px;

  background:
    rgba(255,255,255,.04);
}


#lsa-lingolab-master .lsa-dashboard-track small,
#lsa-lingolab-master .lsa-dashboard-stats small {

  display:block;

  color:#8ea1b9;

  font-size:7px;

  font-weight:850;
}


#lsa-lingolab-master .lsa-dashboard-track strong,
#lsa-lingolab-master .lsa-dashboard-stats strong {

  display:block;

  margin-top:5px;

  color:#fff;

  font-size:14px;
}


#lsa-lingolab-master .lsa-dashboard-stats {

  display:grid;

  grid-template-columns:
    repeat(3,1fr);

  gap:9px;

  margin-top:9px;
}


#lsa-lingolab-master .lsa-dashboard-stats article {

  padding:14px;

  border:
    1px solid
    rgba(255,255,255,.09);

  border-radius:11px;

  background:
    rgba(255,255,255,.04);
}


#lsa-lingolab-master .lsa-progress-block {

  margin-top:24px;
}


#lsa-lingolab-master .lsa-progress-block > div:first-child {

  display:flex;

  justify-content:space-between;

  gap:15px;

  margin-bottom:8px;

  color:#b6c4d5;

  font-size:9px;
}


#lsa-lingolab-master .lsa-progress-bar {

  height:7px;

  overflow:hidden;

  border-radius:99px;

  background:
    rgba(255,255,255,.09);
}


#lsa-lingolab-master .lsa-progress-bar span {

  display:block;

  width:74%;

  height:100%;

  border-radius:99px;

  background:#60a5fa;
}


#lsa-lingolab-master .lsa-results {

  display:grid;

  grid-template-columns:
    repeat(2,1fr);

  gap:8px;

  margin-top:20px;
}


#lsa-lingolab-master .lsa-results > div {

  display:flex;

  justify-content:space-between;

  padding:10px 12px;

  border-bottom:
    1px solid
    rgba(255,255,255,.08);

  color:#aebdd0;

  font-size:9px;
}


#lsa-lingolab-master .lsa-results strong {

  color:#fff;
}


#lsa-lingolab-master .lsa-platform-note {

  padding:
    clamp(20px,1.6vw,28px);
}


#lsa-lingolab-master .lsa-platform-note p {

  margin:
    14px 0 0;

  color:#9eb0c5;

  font-size:10px;

  line-height:1.7;
}


/* ============================================================
LANGUAGE FEATURE
============================================================ */

#lsa-lingolab-master .lsa-language-feature {

  display:grid;

  grid-template-columns:
    minmax(0,.8fr)
    minmax(500px,1.2fr);

  align-items:center;

  gap:
    clamp(45px,7vw,110px);
}


#lsa-lingolab-master .lsa-language-feature h2 {

  margin-bottom:22px;
}


#lsa-lingolab-master .lsa-language-cards {

  display:grid;

  grid-template-columns:
    repeat(4,1fr);

  gap:12px;
}


#lsa-lingolab-master .lsa-language-cards article {

  min-width:0;

  min-height:180px;

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:center;

  gap:7px;

  border:
    1px solid var(--line);

  border-radius:18px;

  background:var(--surface);
}


#lsa-lingolab-master .lsa-large-flag {

  width:54px;

  height:32px;

  display:block;

  overflow:hidden;

  margin-bottom:6px;

  border-radius:4px;

  box-shadow:
    0 0 0 1px
    rgba(0,0,0,.10),

    0 8px 16px
    rgba(15,23,42,.09);
}


#lsa-lingolab-master .lsa-large-flag svg {

  display:block;

  width:100%;

  height:100%;
}


#lsa-lingolab-master .lsa-language-cards strong {

  color:var(--blue);

  font-size:25px;
}


#lsa-lingolab-master .lsa-language-cards article > span:last-child {

  color:var(--muted);

  font-size:11px;
}


/* ============================================================
RESPONSIVE DEVICES
============================================================ */

#lsa-lingolab-master .lsa-device-section {

  min-height:500px;

  display:grid;

  grid-template-columns:
    minmax(0,.8fr)
    minmax(500px,1.2fr);

  align-items:center;

  gap:
    clamp(45px,7vw,110px);

  padding:
    clamp(35px,4vw,63px);

  border:
    1px solid var(--line);

  border-radius:var(--radius-lg);

  background:var(--surface);

  overflow:hidden;
}


#lsa-lingolab-master .lsa-device-section h2 {

  margin-bottom:22px;
}


#lsa-lingolab-master .lsa-device-section p + p {

  margin-top:14px !important;
}


#lsa-lingolab-master .lsa-devices {

  position:relative;

  min-width:0;

  min-height:320px;
}


#lsa-lingolab-master .device {

  position:absolute;

  overflow:hidden;

  border:
    5px solid var(--text);

  background:var(--surface-soft);

  box-shadow:var(--shadow);
}


#lsa-lingolab-master .device span {

  display:block;

  margin:13px;

  border-radius:5px;

  background:var(--blue-soft);
}


#lsa-lingolab-master .device span:first-child {

  width:48%;

  height:15%;
}


#lsa-lingolab-master .device span:nth-child(2) {

  width:80%;

  height:38%;
}


#lsa-lingolab-master .device span:nth-child(3) {

  width:65%;

  height:18%;
}


#lsa-lingolab-master .device.desktop {

  width:72%;

  height:245px;

  left:0;

  top:20px;

  border-radius:15px;
}


#lsa-lingolab-master .device.tablet {

  width:32%;

  height:210px;

  right:10%;

  top:78px;

  border-radius:17px;
}


#lsa-lingolab-master .device.phone {

  width:17%;

  min-width:90px;

  height:170px;

  right:0;

  top:125px;

  border-radius:19px;
}


/* ============================================================
INDEPENDENCE
============================================================ */

#lsa-lingolab-master .lsa-independence {

  width:100%;

  padding:
    clamp(75px,8vw,130px)
    0;

  background:#0b1728;

  color:#fff;
}


#lsa-lingolab-master .lsa-independence-grid {

  display:grid;

  grid-template-columns:
    minmax(0,.8fr)
    minmax(420px,1fr);

  gap:
    clamp(45px,7vw,120px);
}


#lsa-lingolab-master .lsa-independence h2 span {

  color:#8dbbff;
}


#lsa-lingolab-master .lsa-independence-grid > div:last-child {

  display:grid;

  gap:18px;
}


#lsa-lingolab-master .lsa-independence p {

  margin:0;

  color:#b8c6d8;

  font-size:14px;

  line-height:1.8;
}


/* ============================================================
FAQ
============================================================ */

#lsa-lingolab-master .lsa-faq-grid {

  display:grid;

  grid-template-columns:
    minmax(0,.65fr)
    minmax(500px,1.1fr);

  gap:
    clamp(50px,8vw,130px);
}


#lsa-lingolab-master .lsa-faq-intro {

  align-self:start;
}


#lsa-lingolab-master .lsa-faq-intro h2 {

  margin-bottom:22px;
}


#lsa-lingolab-master .lsa-faqs {

  min-width:0;

  border-top:
    1px solid var(--line);
}


#lsa-lingolab-master .lsa-faqs details {

  border-bottom:
    1px solid var(--line);
}


#lsa-lingolab-master .lsa-faqs summary {

  min-height:82px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:20px;

  cursor:pointer;

  list-style:none;

  font-size:
    clamp(14px,1.2vw,18px);

  font-weight:750;
}


#lsa-lingolab-master .lsa-faqs summary::-webkit-details-marker {

  display:none;
}


#lsa-lingolab-master .lsa-faqs summary b {

  flex:0 0 30px;

  width:30px;

  height:30px;

  display:grid;

  place-items:center;

  border:
    1px solid var(--line);

  border-radius:50%;

  color:var(--blue);

  font-size:17px;

  transition:
    transform .2s ease;
}


#lsa-lingolab-master .lsa-faqs details[open] summary b {

  transform:
    rotate(45deg);
}


#lsa-lingolab-master .lsa-faqs p {

  max-width:850px;

  margin:
    -3px 45px 27px 0;

  color:var(--muted);

  font-size:12px;

  line-height:1.75;
}


/* ============================================================
FINAL CTA
============================================================ */

#lsa-lingolab-master .lsa-final {

  width:100%;

  padding:
    clamp(65px,7vw,110px)
    0;

  background:var(--blue);

  color:#fff;
}


#lsa-lingolab-master .lsa-final-inner {

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:50px;
}


#lsa-lingolab-master .lsa-final h2 {

  max-width:950px;

  margin:0;

  font-size:
    clamp(38px,4.6vw,73px);

  font-weight:830;

  line-height:1;

  letter-spacing:-.05em;
}


#lsa-lingolab-master .lsa-final h2 span {

  display:block;

  color:#dbeafe;
}


#lsa-lingolab-master .lsa-final p {

  max-width:750px;

  margin:
    20px 0 0;

  color:#e1ecff;

  font-size:14px;

  line-height:1.7;
}


#lsa-lingolab-master .lsa-white-btn {

  flex:0 0 auto;

  background:#fff;

  color:#152238;

  box-shadow:
    0 14px 34px
    rgba(0,0,0,.14);
}


/* ============================================================
FOOTER
============================================================ */

#lsa-lingolab-master .lsa-footer {

  width:100%;

  padding:
    clamp(55px,6vw,90px)
    0
    24px;

  background:#07111f;

  color:#fff;
}


#lsa-lingolab-master .lsa-footer-main {

  display:grid;

  grid-template-columns:
    1fr auto;

  gap:70px;

  padding-bottom:54px;
}


#lsa-lingolab-master .lsa-footer-brand img {

  display:block;

  width:auto;

  height:62px;

  max-width:240px;

  object-fit:contain;

  margin-bottom:19px;
}


#lsa-lingolab-master .lsa-footer-brand strong {

  display:block;

  font-size:19px;
}


#lsa-lingolab-master .lsa-footer-brand p {

  margin:7px 0;

  color:#9fb0c4;

  font-size:12px;
}


#lsa-lingolab-master .lsa-footer-brand small {

  color:#778aa3;

  font-size:10px;
}


#lsa-lingolab-master .lsa-footer-links {

  display:grid;

  grid-template-columns:
    repeat(3,minmax(130px,1fr));

  gap:60px;
}


#lsa-lingolab-master .lsa-footer-links > div {

  display:flex;

  flex-direction:column;

  gap:10px;
}


#lsa-lingolab-master .lsa-footer-links strong {

  margin-bottom:7px;

  font-size:11px;

  letter-spacing:.08em;
}


#lsa-lingolab-master .lsa-footer-links a {

  color:#93a6bc;

  text-decoration:none;

  font-size:11px;
}


#lsa-lingolab-master .lsa-footer-links a:hover {

  color:#fff;
}


#lsa-lingolab-master .lsa-footer-bottom {

  min-height:54px;

  display:flex;

  align-items:flex-end;

  justify-content:space-between;

  gap:20px;

  padding-top:18px;

  border-top:
    1px solid rgba(255,255,255,.09);

  color:#71849b;

  font-size:9px;
}


/* ============================================================
LAPTOP
============================================================ */

@media (max-width:1280px) {

  #lsa-lingolab-master .lsa-brand-copy {

    display:none;
  }


  #lsa-lingolab-master .lsa-nav {

    gap:16px;
  }


  #lsa-lingolab-master .lsa-hero-grid {

    grid-template-columns:
      minmax(0,1fr)
      minmax(430px,.92fr);
  }


  #lsa-lingolab-master .lsa-exam-catalogue-grid {

    grid-template-columns:
      repeat(2,1fr);
  }

}


/* ============================================================
TABLET
============================================================ */

@media (max-width:1024px) {

  #lsa-lingolab-master .lsa-header-inner {

    min-height:76px;
  }


  #lsa-lingolab-master .lsa-logo {

    height:46px;
  }


  #lsa-lingolab-master .lsa-header-cta {

    display:none;
  }


  #lsa-lingolab-master .lsa-menu-btn {

    display:flex;
  }


  /* MOBILE / TABLET NAV */

  #lsa-lingolab-master .lsa-nav {

    position:absolute;

    left:0;
    right:0;

    top:calc(100% + 1px);

    z-index:5100;

    display:none;

    flex-direction:column;

    align-items:stretch;

    gap:0;

    padding:12px;

    border:
      1px solid var(--line);

    border-top:0;

    border-radius:
      0 0 16px 16px;

    background:var(--surface);

    box-shadow:var(--shadow);
  }


  #lsa-lingolab-master .lsa-nav.open {

    display:flex;
  }


  #lsa-lingolab-master .lsa-nav a {

    padding:14px 13px;

    color:var(--text);

    border-radius:9px;
  }


  #lsa-lingolab-master .lsa-nav a:hover {

    background:var(--surface-soft);
  }


  #lsa-lingolab-master .lsa-nav a::after {

    display:none;
  }


  #lsa-lingolab-master .lsa-hero {

    min-height:auto;
  }


  #lsa-lingolab-master .lsa-hero-grid {

    grid-template-columns:1fr;

    gap:45px;
  }


  #lsa-lingolab-master .lsa-preview-stage {

    width:100%;

    min-height:540px;
  }


  #lsa-lingolab-master .lsa-exam-window {

    width:100%;

    max-width:100%;

    transform:none;
  }


  #lsa-lingolab-master .lsa-value-grid {

    grid-template-columns:
      repeat(2,1fr);
  }


  #lsa-lingolab-master .lsa-value-grid article:nth-child(2) {

    border-right:0;
  }


  #lsa-lingolab-master .lsa-value-grid article:nth-child(-n+2) {

    border-bottom:
      1px solid var(--line);
  }


  #lsa-lingolab-master .lsa-section-heading {

    grid-template-columns:1fr;

    align-items:start;

    gap:20px;
  }


  #lsa-lingolab-master .lsa-launch-grid,
  #lsa-lingolab-master .lsa-readiness-grid,
  #lsa-lingolab-master .lsa-platform-grid,
  #lsa-lingolab-master .lsa-language-feature,
  #lsa-lingolab-master .lsa-device-section,
  #lsa-lingolab-master .lsa-independence-grid,
  #lsa-lingolab-master .lsa-faq-grid {

    grid-template-columns:1fr;
  }


  #lsa-lingolab-master .lsa-skill-grid {

    grid-template-columns:
      repeat(2,1fr);
  }


  #lsa-lingolab-master .lsa-process-grid {

    grid-template-columns:
      repeat(2,1fr);
  }


  #lsa-lingolab-master .lsa-process-grid article {

    padding:
      28px 20px !important;
  }


  #lsa-lingolab-master .lsa-process-grid article:nth-child(2) {

    border-right:0;
  }


  #lsa-lingolab-master .lsa-process-grid article:nth-child(-n+2) {

    border-bottom:
      1px solid var(--line);
  }


  #lsa-lingolab-master .lsa-dashboard-shell {

    width:100%;

    max-width:760px;
  }

}


/* ============================================================
MOBILE
============================================================ */

@media (max-width:720px) {

  #lsa-lingolab-master .lsa-container {

    width:
      calc(100% - 30px);
  }


  #lsa-lingolab-master .lsa-header-inner {

    min-height:70px;
  }


  #lsa-lingolab-master .lsa-logo {

    height:40px;

    max-width:145px;
  }


  #lsa-lingolab-master .lsa-header-tools {

    gap:6px;
  }


  #lsa-lingolab-master .lsa-language-toggle {

    min-width:75px;

    height:40px;

    padding:0 7px;

    gap:6px;
  }


  #lsa-lingolab-master .lsa-current-flag {

    width:25px;

    height:15px;
  }


  #lsa-lingolab-master .lsa-theme-btn,
  #lsa-lingolab-master .lsa-menu-btn {

    width:40px;

    height:40px;
  }


  #lsa-lingolab-master .lsa-language-menu {

    width:180px;
  }


  #lsa-lingolab-master .lsa-hero-grid {

    padding:
      55px 0 70px;
  }


  #lsa-lingolab-master .lsa-hero h1 {

    font-size:
      clamp(36px,10.8vw,52px);

    line-height:1.01;

    letter-spacing:-.045em;
  }


  #lsa-lingolab-master .lsa-kicker {

    width:auto;

    max-width:100%;

    line-height:1.4;
  }


  #lsa-lingolab-master .lsa-lead {

    font-size:15px;
  }


  #lsa-lingolab-master .lsa-actions {

    flex-direction:column;

    align-items:stretch;
  }


  #lsa-lingolab-master .lsa-btn {

    width:100%;
  }


  #lsa-lingolab-master .lsa-stats {

    width:100%;

    display:grid;

    grid-template-columns:
      repeat(3,1fr);
  }


  #lsa-lingolab-master .lsa-stats div {

    min-width:0;

    margin:0;

    padding:0 8px;

    text-align:center;
  }


  #lsa-lingolab-master .lsa-stats div:first-child {

    padding-left:0;
  }


  #lsa-lingolab-master .lsa-stats div:last-child {

    padding-right:0;
  }


  #lsa-lingolab-master .lsa-stats strong {

    font-size:13px;
  }


  #lsa-lingolab-master .lsa-stats span {

    font-size:7.5px;
  }


  #lsa-lingolab-master .lsa-preview-stage {

    min-height:auto;
  }


  #lsa-lingolab-master .lsa-preview-ring,
  #lsa-lingolab-master .lsa-floating-card {

    display:none;
  }


  #lsa-lingolab-master .lsa-exam-body {

    grid-template-columns:1fr;
  }


  #lsa-lingolab-master .lsa-exam-sidebar {

    display:grid;

    grid-template-columns:
      repeat(4,1fr);

    padding:9px;

    border-right:0;

    border-bottom:
      1px solid var(--line);
  }


  #lsa-lingolab-master .lsa-exam-sidebar small {

    display:none;
  }


  #lsa-lingolab-master .lsa-exam-sidebar div {

    flex-direction:column;

    gap:4px;

    padding:7px 3px;

    text-align:center;
  }


  #lsa-lingolab-master .lsa-question {

    padding:
      22px 16px;
  }


  #lsa-lingolab-master .lsa-value-grid,
  #lsa-lingolab-master .lsa-exam-catalogue-grid,
  #lsa-lingolab-master .lsa-skill-grid,
  #lsa-lingolab-master .lsa-process-grid {

    grid-template-columns:1fr;
  }


  #lsa-lingolab-master .lsa-value-grid article {

    border-right:0 !important;

    border-bottom:
      1px solid var(--line);
  }


  #lsa-lingolab-master .lsa-value-grid article:last-child {

    border-bottom:0;
  }


  #lsa-lingolab-master .lsa-process-grid article {

    border-right:0 !important;

    border-bottom:
      1px solid var(--line);
  }


  #lsa-lingolab-master .lsa-process-grid article:last-child {

    border-bottom:0;
  }


  #lsa-lingolab-master .lsa-dashboard-shell {

    grid-template-columns:1fr;
  }


  #lsa-lingolab-master .lsa-dashboard-stats,
  #lsa-lingolab-master .lsa-dashboard-track,
  #lsa-lingolab-master .lsa-results {

    grid-template-columns:1fr;
  }


  #lsa-lingolab-master .lsa-language-cards {

    grid-template-columns:
      repeat(2,1fr);
  }


  #lsa-lingolab-master .lsa-device-section {

    padding:
      28px 20px;
  }


  #lsa-lingolab-master .lsa-devices {

    min-height:255px;
  }


  #lsa-lingolab-master .device.desktop {

    width:78%;

    height:185px;
  }


  #lsa-lingolab-master .device.tablet {

    width:35%;

    height:160px;

    right:7%;

    top:68px;
  }


  #lsa-lingolab-master .device.phone {

    width:18%;

    min-width:70px;

    height:132px;

    top:111px;
  }


  #lsa-lingolab-master .lsa-final-inner {

    flex-direction:column;

    align-items:flex-start;
  }


  #lsa-lingolab-master .lsa-footer-main {

    grid-template-columns:1fr;

    gap:45px;
  }


  #lsa-lingolab-master .lsa-footer-bottom {

    flex-direction:column;

    align-items:flex-start;
  }

}


/* ============================================================
VERY SMALL PHONES
============================================================ */

@media (max-width:430px) {

  #lsa-lingolab-master .lsa-container {

    width:
      calc(100% - 24px);
  }


  #lsa-lingolab-master .lsa-logo {

    height:38px;

    max-width:120px;
  }


  #lsa-lingolab-master .lsa-language-toggle {

    min-width:67px;

    padding:0 6px;
  }


  #lsa-lingolab-master .lsa-current-flag {

    width:23px;

    height:14px;
  }


  #lsa-lingolab-master .lsa-language-toggle strong {

    font-size:10px;
  }


  #lsa-lingolab-master .lsa-chevron {

    display:none;
  }


  #lsa-lingolab-master .lsa-kicker {

    font-size:8px;
  }


  #lsa-lingolab-master .lsa-hero h1 {

    font-size:
      clamp(34px,10.5vw,44px);

    line-height:1.02;
  }


  #lsa-lingolab-master .lsa-lead {

    font-size:14px;

    line-height:1.7;
  }


  #lsa-lingolab-master .lsa-exam-top > span {

    display:none;
  }


  #lsa-lingolab-master .lsa-exam-top {

    grid-template-columns:
      auto 1fr;
  }


  #lsa-lingolab-master .lsa-exam-top strong {

    justify-self:end;
  }


  #lsa-lingolab-master .lsa-question-meta {

    align-items:flex-start;
  }


  #lsa-lingolab-master .lsa-question-buttons {

    flex-direction:column;
  }


  #lsa-lingolab-master .lsa-footer-links {

    grid-template-columns:1fr;

    gap:32px;
  }

}


/* ============================================================
ULTRAWIDE / LARGE DISPLAY
============================================================ */

@media (min-width:1800px) {

  #lsa-lingolab-master {

    --max:1740px;
  }


  #lsa-lingolab-master .lsa-header-inner {

    min-height:98px;
  }


  #lsa-lingolab-master .lsa-logo {

    height:64px;
  }


  #lsa-lingolab-master .lsa-hero {

    min-height:900px;
  }


  #lsa-lingolab-master .lsa-exam-window {

    max-width:810px;
  }

}


/* ============================================================
REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion:reduce) {

  #lsa-lingolab-master *,
  #lsa-lingolab-master *::before,
  #lsa-lingolab-master *::after {

    scroll-behavior:auto !important;

    transition:none !important;

    animation:none !important;
  }

}
