/*
Theme Name: Language Paradise 4.0
Theme URI: https://languageparadise.de/
Description: Bespoke block child theme for Language Paradise, based on Twenty Twenty-Five. Installs alongside version 3 so you can switch back at any time.
Author: Language Paradise
Template: twentytwentyfive
Version: 4.1.0
Text Domain: language-paradise
*/

:root {
  --lp-green-950: #0b3528;
  --lp-green-900: #104734;
  --lp-green-800: #14543f;
  --lp-green-700: #1d684f;
  --lp-green-100: #edf5ef;
  --lp-green-050: #f5f9f5;
  --lp-gold: #f0b642;
  --lp-gold-hover: #f5c65f;
  --lp-gold-soft: #fff2cf;
  --lp-cream: #fbf9f3;
  --lp-white: #ffffff;
  --lp-ink: #17251f;
  --lp-muted: #607068;
  --lp-border: #dde6de;
  --lp-danger: #b7443e;
  --lp-width: 1180px;
  --lp-reading: 680px;
  --lp-radius-sm: 10px;
  --lp-radius: 16px;
  --lp-radius-lg: 26px;
  --lp-shadow-sm: 0 8px 24px rgba(13, 59, 44, 0.06);
  --lp-shadow: 0 20px 54px rgba(13, 59, 44, 0.10);
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Manrope, Aptos, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--lp-cream);
  color: var(--lp-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin-top: 0; color: var(--lp-ink); font-weight: 800; letter-spacing: -.035em; line-height: 1.12; }
h2 { font-size: clamp(32px, 4vw, 44px); }
h3 { font-size: 22px; }
p { margin-top: 0; }
::selection { background: var(--lp-gold-soft); color: var(--lp-green-950); }

.lp-container {
  width: min(calc(100% - 40px), var(--lp-width));
  margin-inline: auto;
}
.lp-main { background: var(--lp-cream); }
.lp-section { padding: 72px 0; }
.lp-section--white { background: var(--lp-white); }
.lp-section--soft { background: var(--lp-green-050); }
.lp-kicker {
  margin: 0 0 8px;
  color: var(--lp-green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .115em;
  text-transform: uppercase;
}
.lp-section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}
.lp-section-heading h2 { margin: 0 0 12px; }
.lp-section-heading p { margin: 0 auto; color: var(--lp-muted); }
.lp-text-link {
  color: var(--lp-green-800);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.lp-text-link:hover { text-decoration: underline; }

/* Header */
.lp-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 53, 40, .98);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.lp-header {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 24px;
}
.lp-brand {
  display: inline-flex;
  min-width: 200px;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}
.lp-brand-mark {
  display: block;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  background-image: url("assets/images/brand/toucan-logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.lp-brand-name {
  font-size: 17px;
  font-weight: 830;
  letter-spacing: -.02em;
  line-height: .98;
}
.lp-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 28px;
}
.lp-nav a {
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.lp-nav a:hover { color: var(--lp-gold); }
.lp-header-cta,
.lp-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--lp-green-800);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.lp-button:hover,
.lp-header-cta:hover { transform: translateY(-1px); }
.lp-header-cta,
.lp-button--gold { background: var(--lp-gold); color: var(--lp-green-950); }
.lp-header-cta:hover,
.lp-button--gold:hover { background: var(--lp-gold-hover); }
.lp-button--outline {
  border-color: rgba(20,84,63,.55);
  background: transparent;
  color: var(--lp-green-900);
}
.lp-button--outline:hover { background: var(--lp-green-100); }
.lp-mobile-menu { display: none; margin-left: auto; }
.lp-mobile-menu summary {
  display: grid;
  width: 42px;
  height: 42px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
}
.lp-mobile-menu summary::-webkit-details-marker { display: none; }
.lp-menu-lines,
.lp-menu-lines::before,
.lp-menu-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}
.lp-menu-lines { position: relative; }
.lp-menu-lines::before,
.lp-menu-lines::after { content: ""; position: absolute; left: 0; }
.lp-menu-lines::before { top: -6px; }
.lp-menu-lines::after { top: 6px; }
.lp-mobile-panel {
  position: absolute;
  top: 68px;
  right: 20px;
  left: 20px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 14px;
  background: var(--lp-green-950);
  box-shadow: var(--lp-shadow);
}
.lp-mobile-panel a { padding: 12px 10px; color: #fff; font-weight: 750; text-decoration: none; }
.lp-mobile-panel .lp-header-cta { margin-top: 6px; color: var(--lp-green-950); }
/* WooCommerce cart is displayed through the custom header actions. */

/* Hero */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 0;
  background:
    radial-gradient(circle at 81% 20%, rgba(240,182,66,.13), transparent 27%),
    linear-gradient(180deg, #fffdf8 0%, var(--lp-cream) 100%);
}
.lp-hero-grid {
  display: grid;
  min-height: 505px;
  grid-template-columns: minmax(0, .98fr) minmax(480px, 1.02fr);
  align-items: center;
  gap: 46px;
}
.lp-hero-copy { padding: 42px 0 66px; }
.lp-hero-copy h1 {
  max-width: 610px;
  margin: 0 0 20px;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 830;
  letter-spacing: -.052em;
  line-height: 1.02;
}
.lp-hero-copy h1 em { color: var(--lp-green-800); font-style: normal; }
.lp-hero-copy h1::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 16px;
  border-radius: 99px;
  background: var(--lp-gold);
}
.lp-hero-lead {
  max-width: 560px;
  margin: 0;
  color: #4e6057;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
}
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.lp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 26px;
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 700;
}
.lp-hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.lp-hero-trust span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--lp-gold); }
.lp-hero-art {
  align-self: stretch;
  min-height: 505px;
  background-image: url("assets/images/hero/hero-toucan-study.jpg");
  background-image: image-set(url("assets/images/hero/hero-toucan-study.webp") type("image/webp"), url("assets/images/hero/hero-toucan-study.jpg") type("image/jpeg"));
  background-position: 52% center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 58% 0 0 0 / 20% 0 0 0;
}

/* benefit strip */
.lp-benefits-shell { position: relative; z-index: 5; margin-top: -1px; padding: 0 0 20px; background: var(--lp-cream); }
.lp-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  overflow: hidden;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--lp-shadow-sm);
}
.lp-benefit {
  display: grid;
  min-height: 94px;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 13px;
  align-content: center;
  padding: 18px 20px;
  border-right: 1px solid var(--lp-border);
}
.lp-benefit:last-child { border-right: 0; }
.lp-benefit-icon {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  align-self: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.lp-icon-users { background-image: url("assets/icons/users.svg"); }
.lp-icon-video { background-image: url("assets/icons/video.svg"); }
.lp-icon-book { background-image: url("assets/icons/book-open.svg"); }
.lp-icon-medal { background-image: url("assets/icons/medal.svg"); }
.lp-benefit strong { font-size: 13px; line-height: 1.3; }
.lp-benefit span:last-child { color: var(--lp-muted); font-size: 11px; line-height: 1.4; }

/* levels */
.lp-level-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.lp-level-card {
  position: relative;
  display: flex;
  min-height: 248px;
  flex-direction: column;
  padding: 22px 20px 18px;
  border: 1px solid #eadfc9;
  border-radius: 15px;
  background: #fffefb;
  box-shadow: 0 6px 18px rgba(13,59,44,.035);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lp-level-card:hover { transform: translateY(-3px); border-color: #dbc89f; box-shadow: var(--lp-shadow-sm); }
.lp-level-card h3 { margin: 0 0 12px; color: var(--lp-green-900); font-size: 34px; letter-spacing: -.04em; }
.lp-level-card p { margin: 0 0 18px; color: #46574f; font-size: 13px; line-height: 1.55; }
.lp-level-card .lp-text-link { margin-top: auto; }
.lp-level-art {
  position: absolute;
  top: 18px;
  right: 14px;
  width: 78px;
  height: 66px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.lp-level-b1 { background-image: url("assets/images/levels/b1.png"); background-image: image-set(url("assets/images/levels/b1.webp") type("image/webp"), url("assets/images/levels/b1.png") type("image/png")); }
.lp-level-b2 { background-image: url("assets/images/levels/b2.png"); background-image: image-set(url("assets/images/levels/b2.webp") type("image/webp"), url("assets/images/levels/b2.png") type("image/png")); }
.lp-level-c1 { background-image: url("assets/images/levels/c1.png"); background-image: image-set(url("assets/images/levels/c1.webp") type("image/webp"), url("assets/images/levels/c1.png") type("image/png")); }
.lp-level-c2 { background-image: url("assets/images/levels/c2.png"); background-image: image-set(url("assets/images/levels/c2.webp") type("image/webp"), url("assets/images/levels/c2.png") type("image/png")); }

/* process */
.lp-process { padding-top: 62px; padding-bottom: 62px; }
.lp-process-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 38px; }
.lp-process-step { position: relative; text-align: center; }
.lp-process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 55px;
  left: calc(50% + 78px);
  width: calc(100% - 118px);
  border-top: 1px dashed #dfc88f;
}
.lp-step-number {
  position: absolute;
  top: 4px;
  left: 22%;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid #dbc88e;
  border-radius: 50%;
  background: var(--lp-cream);
  color: var(--lp-green-900);
  font-size: 11px;
  font-weight: 850;
}
.lp-step-art {
  width: 128px;
  height: 94px;
  margin: 0 auto 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.lp-step-live { background-image: url("assets/images/process/learn-live.png"); background-image: image-set(url("assets/images/process/learn-live.webp") type("image/webp"), url("assets/images/process/learn-live.png") type("image/png")); }
.lp-step-practise { background-image: url("assets/images/process/practise-independently.png"); background-image: image-set(url("assets/images/process/practise-independently.webp") type("image/webp"), url("assets/images/process/practise-independently.png") type("image/png")); }
.lp-step-progress { background-image: url("assets/images/process/progress-together.png"); background-image: image-set(url("assets/images/process/progress-together.webp") type("image/webp"), url("assets/images/process/progress-together.png") type("image/png")); }
.lp-process-step h3 { margin: 4px 0 7px; font-size: 18px; }
.lp-process-step p { max-width: 285px; margin: 0 auto; color: var(--lp-muted); font-size: 13px; line-height: 1.55; }

/* platform */
.lp-platform-section { position: relative; overflow: hidden; background: linear-gradient(90deg,#f1f7f1 0%,#f8fbf7 100%); }
.lp-platform-plant {
  position: absolute;
  bottom: -60px;
  left: -28px;
  width: 220px;
  height: 440px;
  opacity: .72;
  background-image: url("assets/images/decoration/platform-plant.png");
  background-image: image-set(url("assets/images/decoration/platform-plant.webp") type("image/webp"), url("assets/images/decoration/platform-plant.png") type("image/png"));
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.lp-platform-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 58px; }
.lp-platform-copy { padding-left: 28px; }
.lp-platform-copy h2 { margin: 0 0 14px; font-size: clamp(30px,4vw,44px); }
.lp-platform-copy > p { color: var(--lp-muted); font-size: 15px; }
.lp-check-list { display: grid; gap: 9px; margin: 22px 0 24px; padding: 0; list-style: none; }
.lp-check-list li { position: relative; padding-left: 25px; font-size: 13px; }
.lp-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .05em;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: #dcecdf;
  color: var(--lp-green-800);
  font-size: 11px;
  font-weight: 900;
}
.lp-browser {
  overflow: hidden;
  border: 1px solid #d6dfd7;
  border-radius: 15px 15px 0 0;
  background: #fff;
  box-shadow: 0 18px 46px rgba(13,59,44,.12);
}
.lp-browser-bar { display: flex; height: 39px; align-items: center; gap: 7px; padding: 0 13px; border-bottom: 1px solid #e3e9e4; background: #fbfcfa; }
.lp-browser-dot { width: 8px; height: 8px; border-radius: 50%; background: #e9bd55; }
.lp-browser-title { margin-left: 8px; color: var(--lp-muted); font-size: 11px; font-weight: 750; }
.lp-platform-ui { display: grid; min-height: 300px; grid-template-columns: 150px 1fr; }
.lp-platform-sidebar { padding: 18px 14px; background: #f0f5ef; color: #516159; font-size: 11px; }
.lp-platform-sidebar strong { display: block; margin-bottom: 12px; color: var(--lp-green-900); }
.lp-platform-sidebar span { display: block; padding: 6px 8px; border-radius: 6px; }
.lp-platform-sidebar .is-active { background: #dcebdd; color: var(--lp-green-900); font-weight: 800; }
.lp-platform-content { padding: 20px 22px; }
.lp-platform-content h3 { margin: 0 0 3px; font-size: 20px; }
.lp-platform-content small { color: var(--lp-muted); }
.lp-platform-progress { height: 7px; margin: 12px 0 22px; overflow: hidden; border-radius: 99px; background: #e5ece7; }
.lp-platform-progress span { display: block; width: 75%; height: 100%; border-radius: inherit; background: var(--lp-green-700); }
.lp-learning-card { display: flex; align-items: center; gap: 12px; margin-top: 10px; padding: 11px; border: 1px solid #e0e7e1; border-radius: 9px; }
.lp-learning-icon { display: grid; width: 32px; height: 32px; flex: 0 0 32px; place-items: center; border-radius: 7px; background: var(--lp-green-100); color: var(--lp-green-800); font-weight: 900; }
.lp-learning-card div:nth-child(2) { flex: 1; }
.lp-learning-card strong { display: block; font-size: 12px; }
.lp-learning-card small { font-size: 10px; }
.lp-mini-button { padding: 7px 11px; border-radius: 7px; background: var(--lp-green-800); color: #fff; font-size: 10px; font-weight: 800; }

/* cohorts */
.lp-section-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.lp-section-row h2 { margin: 0; }
.lp-cohort-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.lp-cohort-card {
  display: flex;
  min-height: 276px;
  flex-direction: column;
  padding: 18px;
  border: 1px solid #e6ddcb;
  border-radius: 12px;
  background: #fff;
}
.lp-level-pill { display: inline-grid; width: 37px; height: 31px; place-items: center; border-radius: 6px; background: var(--lp-green-800); color: #fff; font-size: 16px; font-weight: 850; }
.lp-cohort-card h3 { margin: 14px 0 12px; font-size: 17px; }
.lp-cohort-meta { display: grid; gap: 7px; color: var(--lp-muted); font-size: 12px; line-height: 1.35; }
.lp-cohort-meta strong { color: var(--lp-ink); }
.lp-seats { margin: auto 0 13px; color: var(--lp-green-700); font-size: 12px; font-weight: 850; }
.lp-seats--sold { color: var(--lp-danger); }
.lp-cohort-card .lp-button { width: 100%; min-height: 39px; font-size: 12px; }
.lp-cohort-alert { background: #fffdf8; }
.lp-alert-title { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 14px; font-weight: 850; }
.lp-alert-title::before { content: ""; width: 22px; height: 22px; background: url("assets/icons/bell.svg") center/contain no-repeat; }
.lp-cohort-alert p { margin: 0 0 10px; color: var(--lp-muted); font-size: 11px; line-height: 1.45; }
.lp-chip-row { display: flex; flex-wrap: wrap; gap: 5px; margin: 8px 0 13px; }
.lp-chip { padding: 5px 8px; border-radius: 999px; background: var(--lp-green-100); color: var(--lp-green-900); font-size: 9px; font-weight: 750; }
.lp-alert-form { display: grid; grid-template-columns: 1fr auto; gap: 6px; margin-top: auto; }
.lp-alert-form input { width: 100%; min-width: 0; height: 38px; padding: 0 10px; border: 1px solid var(--lp-border); border-radius: 7px; background: #fff; color: var(--lp-ink); font: inherit; font-size: 10px; }
.lp-alert-form button { height: 38px; padding: 0 11px; border: 0; border-radius: 7px; background: var(--lp-green-800); color: #fff; font-size: 10px; font-weight: 800; cursor: pointer; }

/* cohorts + testimonials */
.lp-editorial-grid { display: grid; grid-template-columns: .78fr 1.62fr; align-items: stretch; gap: 20px; }
.lp-small-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 24px 190px 22px 24px;
  border-radius: 16px;
  background: linear-gradient(140deg,#edf6ee 0%,#f8fbf7 78%);
}
.lp-small-card h2 { margin: 0 0 10px; font-size: 25px; }
.lp-small-card p { color: #46584f; font-size: 12px; line-height: 1.55; }
.lp-small-card .lp-check-list { gap: 7px; margin: 14px 0 0; }
.lp-small-card .lp-check-list li { font-size: 11px; }
.lp-small-toucan {
  position: absolute;
  right: -22px;
  bottom: -4px;
  width: 225px;
  height: 190px;
  background-image: url("assets/images/decoration/small-cohorts-toucan.png");
  background-image: image-set(url("assets/images/decoration/small-cohorts-toucan.webp") type("image/webp"), url("assets/images/decoration/small-cohorts-toucan.png") type("image/png"));
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.lp-testimonials-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 14px; }
.lp-testimonials-head h2 { margin: 0; font-size: 25px; }
.lp-testimonial-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.lp-testimonial {
  min-height: 210px;
  padding: 18px;
  border: 1px solid #e6ddcb;
  border-radius: 12px;
  background: #fffefb;
}
.lp-testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.lp-testimonial-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.lp-avatar-1 { background-image: url("assets/images/testimonials/student-1.jpg"); }
.lp-avatar-2 { background-image: url("assets/images/testimonials/student-2.jpg"); }
.lp-avatar-3 { background-image: url("assets/images/testimonials/student-3.jpg"); }
.lp-testimonial-meta strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}
.lp-testimonial-meta span {
  display: block;
  color: var(--lp-muted);
  font-size: 10px;
  font-weight: 700;
}
.lp-stars { color: #e5a321; font-size: 13px; letter-spacing: .07em; }
.lp-testimonial blockquote { margin: 12px 0 0; }
.lp-testimonial blockquote p { margin: 0 0 16px; font-size: 12px; line-height: 1.55; }
.lp-testimonial cite { color: var(--lp-muted); font-size: 10px; font-style: normal; font-weight: 750; }

/* FAQ */
.lp-faq-layout { display: grid; grid-template-columns: 1fr 280px; align-items: end; gap: 34px; }
.lp-faq-copy { padding-bottom: 26px; }
.lp-faq-copy .lp-section-heading { max-width: none; margin: 0 0 26px; text-align: center; }
.lp-faq-grid {
  column-count: 2;
  column-gap: 14px;
}
.lp-faq-grid details {
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
  break-inside: avoid;
  border: 1px solid var(--lp-border);
  border-radius: 9px;
  background: #fff;
}
.lp-faq-grid summary { position: relative; padding: 13px 40px 13px 14px; cursor: pointer; list-style: none; font-size: 12px; font-weight: 800; }
.lp-faq-grid summary::-webkit-details-marker { display: none; }
.lp-faq-grid summary::after { content: "+"; position: absolute; top: 50%; right: 14px; transform: translateY(-50%); color: var(--lp-green-800); font-size: 18px; font-weight: 500; }
.lp-faq-grid details[open] summary::after { content: "–"; }
.lp-faq-grid details p { margin: 0; padding: 0 14px 14px; color: var(--lp-muted); font-size: 11px; line-height: 1.55; }
.lp-faq-art {
  height: 215px;
  background-image: url("assets/images/decoration/faq-toucan.png");
  background-image: image-set(url("assets/images/decoration/faq-toucan.webp") type("image/webp"), url("assets/images/decoration/faq-toucan.png") type("image/png"));
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

/* final CTA and footer */
.lp-final-wrap { padding: 0 0 18px; background: var(--lp-white); }
.lp-final-cta {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 34px;
  border-radius: 13px;
  background: linear-gradient(120deg,var(--lp-green-900),#155d45);
  color: #fff;
}
.lp-final-cta h2 { margin: 0 0 4px; color: #fff; font-size: 24px; }
.lp-final-cta p { margin: 0; color: rgba(255,255,255,.78); font-size: 12px; }
.lp-footer-wrap { background: var(--lp-green-950); color: rgba(255,255,255,.76); }
.lp-footer { padding: 38px 0 20px; }
.lp-footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 48px; }
.lp-footer .lp-brand { min-width: 0; margin-bottom: 12px; }
.lp-footer p { max-width: 285px; font-size: 12px; line-height: 1.6; }
.lp-footer h3 { margin: 0 0 12px; color: #fff; font-size: 13px; }
.lp-footer ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.lp-footer li, .lp-footer a { color: rgba(255,255,255,.72); font-size: 11px; text-decoration: none; }
.lp-footer a:hover { color: var(--lp-gold); }
.lp-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 30px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.13); font-size: 10px; }

/* WordPress/editor safety */
.wp-site-blocks { padding: 0; }
.wp-site-blocks > * { margin-block-start: 0; }
body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) { max-width: none; }

@media (max-width: 1040px) {
  .lp-nav { gap: 17px; }
  .lp-hero-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .lp-hero-copy h1 { font-size: clamp(40px,5.4vw,54px); }
  .lp-benefit { padding-inline: 13px; }
  .lp-platform-grid { gap: 34px; }
  .lp-small-card { padding-right: 155px; }
  .lp-small-toucan { width: 190px; }
}

@media (max-width: 860px) {
  .lp-nav, .lp-header > .lp-header-cta { display: none; }
  .lp-mobile-menu { display: block; }
  .lp-brand { min-width: 0; }
  .lp-hero { padding-top: 12px; }
  .lp-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .lp-hero-copy { padding: 48px 0 18px; text-align: center; }
  .lp-hero-copy h1, .lp-hero-lead { margin-inline: auto; }
  .lp-hero-copy h1::after { margin-inline: auto; }
  .lp-hero-actions, .lp-hero-trust { justify-content: center; }
  .lp-hero-art { min-height: 430px; border-radius: 28px 28px 0 0; }
  .lp-benefits { grid-template-columns: repeat(2,1fr); }
  .lp-benefit:nth-child(2) { border-right: 0; }
  .lp-benefit:nth-child(-n+2) { border-bottom: 1px solid var(--lp-border); }
  .lp-level-grid, .lp-cohort-grid { grid-template-columns: repeat(2,1fr); }
  .lp-process-step:not(:last-child)::after { display: none; }
  .lp-platform-grid { grid-template-columns: 1fr; }
  .lp-platform-copy { max-width: 650px; padding-left: 0; }
  .lp-platform-plant { opacity: .25; }
  .lp-editorial-grid { grid-template-columns: 1fr; }
  .lp-testimonial-grid { grid-template-columns: repeat(3,1fr); }
  .lp-faq-layout { grid-template-columns: 1fr; }
  .lp-faq-art { display: none; }
  .lp-footer-grid { grid-template-columns: 1.4fr repeat(3,1fr); gap: 24px; }
}

@media (max-width: 640px) {
  .lp-container { width: min(calc(100% - 28px), var(--lp-width)); }
  .lp-section { padding: 52px 0; }
  .lp-header { min-height: 62px; }
  .lp-mobile-panel { top: 62px; right: 14px; left: 14px; }
  .lp-brand-mark { width: 38px; height: 38px; flex-basis: 38px; }
  .lp-brand-name { font-size: 15px; }
  .lp-hero-copy h1 { font-size: clamp(38px,12vw,50px); }
  .lp-hero-art { min-height: 340px; background-position: 55% center; }
  .lp-benefits { grid-template-columns: 1fr; }
  .lp-benefit { border-right: 0; border-bottom: 1px solid var(--lp-border); }
  .lp-benefit:last-child { border-bottom: 0; }
  .lp-level-grid, .lp-process-grid, .lp-cohort-grid, .lp-testimonial-grid, .lp-faq-grid { grid-template-columns: 1fr; }
  .lp-level-card { min-height: 210px; }
  .lp-process-grid { gap: 42px; }
  .lp-section-row { align-items: start; flex-direction: column; gap: 10px; }
  .lp-platform-ui { grid-template-columns: 105px 1fr; }
  .lp-platform-sidebar { padding-inline: 8px; }
  .lp-platform-content { padding-inline: 13px; }
  .lp-learning-card { align-items: start; }
  .lp-mini-button { display: none; }
  .lp-small-card { min-height: 300px; padding: 22px 140px 22px 20px; }
  .lp-small-card h2 { font-size: 22px; }
  .lp-small-toucan { right: -45px; width: 190px; }
  .lp-final-cta { align-items: flex-start; flex-direction: column; padding: 24px; }
  .lp-final-cta .lp-button { width: 100%; }
  .lp-footer-grid { grid-template-columns: repeat(2,1fr); }
  .lp-footer-grid > :first-child { grid-column: 1 / -1; }
  .lp-footer-bottom { flex-direction: column; gap: 6px; }
}

/* ============================
   Language Paradise 3.0
   ============================ */

/* Header actions */
.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-header-icon {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 11px;
  color: #fff;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.lp-header-icon:hover {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.lp-header-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  place-items: center;
  border: 2px solid var(--lp-green-950);
  border-radius: 999px;
  background: var(--lp-gold);
  color: var(--lp-green-950);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}
.lp-cart-count.is-empty { display: none; }
.lp-preview-notice {
  padding: 7px 20px;
  background: var(--lp-gold-soft);
  color: var(--lp-green-950);
  text-align: center;
  font-size: 12px;
  font-weight: 750;
}

/* Hero: content aligned to the global grid, artwork reaches the viewport edge. */
.lp-hero { padding: 0; }
.lp-hero-grid {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 50vw);
  align-items: stretch;
  gap: 0;
}
.lp-hero-copy-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.lp-hero-copy {
  width: min(calc(var(--lp-width) / 2), calc(100% - 40px));
  padding: 64px 54px 84px 0;
}
.lp-hero-art {
  position: relative;
  min-height: 520px;
  border-radius: 0;
  background-position: 50% center;
}
.lp-hero-art::before,
.lp-hero-art::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 1;
  pointer-events: none;
}
.lp-hero-art::before {
  left: 0;
  width: 18%;
  background:
    radial-gradient(circle at 81% 20%, rgba(240,182,66,.13), transparent 27%),
    linear-gradient(180deg, #fffdf8 0%, var(--lp-cream) 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 24%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 24%, transparent 100%);
}
.lp-hero-art::after {
  right: 0;
  width: 9%;
  background: linear-gradient(270deg, var(--lp-cream) 0%, rgba(251,249,243,0) 100%);
}

/* Full-width overlapping benefit band. */
.lp-benefits-shell {
  position: relative;
  z-index: 8;
  margin-top: -42px;
  padding: 0 0 10px;
  background: transparent;
}
.lp-benefits {
  position: relative;
  width: 100%;
  max-width: none;
  border: 0;
  border-radius: 32px 32px 0 0;
  background: #f1f5ef;
  box-shadow: 0 14px 42px rgba(13,59,44,.08);
}
.lp-benefit { 
  position: relative;
  padding-inline: clamp(18px, 2.8vw, 42px); 
}
.lp-benefit::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background: rgba(20,84,63,.16);
}
.lp-benefit:last-child::after { display: none; }

/* Level art stays above the copy instead of overlapping it. */
.lp-level-card h3 {
  min-height: 48px;
  padding-right: 86px;
}
.lp-level-art {
  top: 5px;
  right: 10px;
  width: 72px;
  height: 60px;
}

/* Dynamic cohort section */
.lp-cohort-showcase {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(230px, 1fr);
  gap: 12px;
}
.lp-home-cohort-list,
.lp-home-cohort-list > .lp-dynamic-cohort-grid { min-width: 0; }
.lp-home-cohort-list > .lp-dynamic-cohort-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
}
.lp-home-cohort-section .lp-dynamic-cohort-card,
.lp-home-cohort-section .lp-cohort-card {
  min-height: 276px;
  padding: 18px;
  border: 1px solid #e6ddcb;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}
.lp-home-cohort-section .lp-dynamic-cohort-card h3 { margin: 14px 0 12px; font-size: 17px; }
.lp-home-cohort-section .lp-cohort-level-pill {
  min-width: 37px;
  min-height: 31px;
  padding: 4px 8px;
  margin-bottom: 0;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 850;
}
.lp-home-cohort-section .lp-cohort-card-meta { font-size: 12px; }
.lp-home-cohort-section .lp-cohort-card-footer { padding-top: 16px; }
.lp-home-cohort-section .lp-cohort-button { min-height: 39px; padding: 9px 12px; font-size: 11px; }
.lp-alert-label { font-size: 11px; }
.lp-cohort-alert {
  display: flex;
  flex-direction: column;
}
.lp-cohort-alert .lp-button { width: 100%; margin-top: auto; min-height: 39px; font-size: 11px; }

/* FAQ art now meets the CTA without a white gap. */
.lp-editorial-section,
.lp-faq-section {
  margin-block-start: 0 !important;
}
.lp-editorial-section { padding-top: 0; }
.lp-faq-section { padding-top: 0; padding-bottom: 18px; }
.lp-faq-layout {
  min-height: 280px;
  align-items: end;
}
.lp-faq-art {
  height: 252px;
  margin-right: -8px;
  margin-bottom: -16px;
  align-self: end;
  background-position: right bottom;
}
.lp-final-wrap { padding-top: 22px; }
.lp-faq-grid summary:focus { outline: none; }
.lp-faq-grid summary:focus-visible {
  outline: none;
  background: var(--lp-green-050);
}

/* Generic pages and legal content */
.lp-page-main { padding: 76px 20px 92px; background: var(--lp-cream); }
.lp-page-shell {
  width: min(100%, 860px);
  margin-inline: auto;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  background: #fff;
  box-shadow: var(--lp-shadow-sm);
}
.lp-page-shell > .wp-block-post-title { margin: 0 0 32px; font-size: clamp(38px, 5vw, 56px); }
.lp-legal-content { color: #3f5048; }
.lp-legal-content h2 { margin: 32px 0 10px; font-size: 23px; }
.lp-legal-content p { margin-bottom: 16px; }
.lp-legal-content a { color: var(--lp-green-800); }
.lp-legal-content small { color: var(--lp-muted); }
.lp-legal-notice {
  padding: 16px 18px;
  margin-bottom: 22px;
  border-left: 4px solid var(--lp-gold);
  border-radius: 8px;
  background: var(--lp-gold-soft);
  color: var(--lp-green-950);
}

/* Shop catalog */
.lp-shop-main { padding: 78px 0 96px; background: var(--lp-cream); }
.lp-shop-heading { max-width: 760px; margin-bottom: 38px; }
.lp-shop-heading h1 { margin: 0 0 14px; font-size: clamp(42px, 6vw, 64px); }
.lp-shop-heading > p:last-child { color: var(--lp-muted); font-size: 18px; }
.lp-shop-shell .lp-course-card { background: #fff; border-color: var(--lp-border); }

/* Public preview mode: visitors can inspect courses but cannot purchase. */
.lp-store-locked form.cart,
.lp-store-locked .single_add_to_cart_button,
.lp-store-locked .wc-block-add-to-cart-form,
.lp-store-locked .wp-block-woocommerce-product-button {
  display: none !important;
}

@media (max-width: 1040px) {
  .lp-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(470px, 50vw); }
  .lp-hero-copy { padding-right: 34px; }
  .lp-cohort-showcase { grid-template-columns: 1fr; }
  .lp-home-cohort-list > .lp-dynamic-cohort-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .lp-header-actions { margin-left: auto; }
  .lp-header-actions .lp-header-cta { display: none; }
  .lp-mobile-menu { margin-left: 0; }
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-copy-wrap { justify-content: center; }
  .lp-hero-copy { width: min(calc(100% - 40px), 720px); padding: 50px 0 26px; }
  .lp-hero-art { min-height: 430px; border-radius: 28px 28px 0 0; }
  .lp-hero-art::before { width: 10%; }
  .lp-hero-art::after { width: 8%; }
  .lp-benefits-shell { margin-top: -24px; }
  .lp-benefit:nth-child(2)::after { display: none; }
  .lp-benefit:nth-child(-n+2) { border-bottom: 0; }
  .lp-benefit:nth-child(2n)::after { display: none; }
  .lp-home-cohort-list > .lp-dynamic-cohort-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-faq-art { display: none; }
}

@media (max-width: 640px) {
  .lp-header { gap: 8px; }
  .lp-header-icon { width: 38px; height: 38px; flex-basis: 38px; }
  .lp-header-icon svg { width: 19px; height: 19px; }
  .lp-header-actions { gap: 6px; }
  .lp-hero-art::before { width: 6%; }
  .lp-hero-art::after { width: 4%; }
  .lp-benefits-shell { padding-inline: 0; margin-top: -18px; }
  .lp-benefits { border-radius: 24px 24px 0 0; }
  .lp-benefit::after {
    top: auto;
    right: auto;
    left: 18px;
    bottom: 0;
    width: calc(100% - 36px);
    height: 1px;
  }
  .lp-home-cohort-list > .lp-dynamic-cohort-grid { grid-template-columns: 1fr; }
  .lp-level-card h3 { min-height: 44px; padding-right: 78px; }
  .lp-level-art { top: 2px; right: 8px; width: 68px; height: 56px; }
  .lp-home-cohort-section { padding-bottom: 40px; }
  .lp-editorial-grid { gap: 26px; }
  .lp-small-card {
    display: grid;
    grid-template-columns: 1fr 150px;
    grid-template-areas: "title title" "text text" "list bird";
    min-height: auto;
    padding: 22px 18px 20px 18px;
    column-gap: 10px;
    row-gap: 8px;
  }
  .lp-small-card h2 { grid-area: title; }
  .lp-small-card > p { grid-area: text; }
  .lp-small-card .lp-check-list { grid-area: list; margin-top: 8px; }
  .lp-small-toucan {
    grid-area: bird;
    position: static;
    align-self: end;
    justify-self: end;
    width: 150px;
    height: 125px;
    margin-right: -8px;
  }
  .lp-faq-copy { padding-bottom: 18px; }
  .lp-faq-grid { column-count: 1; }
  .lp-faq-section { padding-bottom: 20px; }
  .lp-final-wrap { padding-top: 18px; }
  .lp-footer-grid { grid-template-columns: repeat(3,1fr); gap: 18px; }
  .lp-footer-grid > :first-child { grid-column: 1 / -1; }
  .lp-page-main { padding: 44px 14px 64px; }
  .lp-page-shell { padding: 24px 20px; border-radius: 18px; }
}


/* ============================
   Language Paradise 3.0.1 layout refinements
   ============================ */

/* Remove Gutenberg block gaps between the hand-built homepage sections. */
.lp-main > *,
.lp-main > .wp-block-shortcode,
.lp-main > .wp-block-html {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* Benefit band: no outer frame, no white shelf underneath, short centred dividers. */
.lp-benefits-shell {
  margin-top: -28px;
  padding: 0;
}
.lp-benefits {
  border: 0;
  border-radius: 28px 28px 0 0;
  background: #eef4ed;
  box-shadow: 0 14px 34px rgba(13,59,44,.075);
}
.lp-benefit {
  position: relative;
  border: 0 !important;
}
.lp-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background: rgba(20,84,63,.16);
}

/* Pull the next heading close to the band, as in the visual concept. */
.lp-benefits-shell + #courses {
  padding-top: 30px;
}

/* Let the platform preview meet the next section without a blank strip. */
.lp-platform-section {
  padding-bottom: 0;
}
.lp-home-cohort-section {
  padding-top: 28px;
}
.lp-platform-section + .wp-block-shortcode {
  margin-top: 0 !important;
}

@media (max-width: 860px) {
  .lp-benefit::after { display: none; }
  .lp-benefit:nth-child(odd):not(:last-child)::after {
    display: block;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
  }
  .lp-benefit:nth-child(-n+2) {
    border-bottom: 1px solid rgba(20,84,63,.09) !important;
  }
  .lp-benefits-shell + #courses { padding-top: 38px; }
  .lp-platform-section { padding-bottom: 0; }
  .lp-home-cohort-section { padding-top: 38px; }
}

@media (max-width: 640px) {
  .lp-benefit:nth-child(-n+2) { border-bottom: 0 !important; }
  .lp-benefit:not(:last-child)::after,
  .lp-benefit:nth-child(odd):not(:last-child)::after {
    display: block;
    top: auto;
    right: 25%;
    bottom: 0;
    width: 50%;
    height: 1px;
  }
  .lp-benefits { border-radius: 22px 22px 0 0; }
  .lp-benefits-shell + #courses { padding-top: 34px; }
}


#courses.lp-section { padding-top: 92px; }
.lp-platform-section { padding-bottom: 92px; }
.lp-home-cohort-section { padding-top: 86px; }
.lp-platform-copy { padding-bottom: 14px; }

@media (max-width: 915px) and (orientation: landscape) {
  .lp-hero-art::before { width: 8%; }
  .lp-hero-art::after { width: 6%; }
  .lp-hero-actions { flex-wrap: nowrap; }
  .lp-hero-actions .lp-button {
    white-space: nowrap;
    padding-inline: 16px;
    font-size: 13px;
  }
}


/* =========================================
   Language Paradise 3.0.2 precision fixes
   Keep this block last: it deliberately wins
   over the parent theme and prior refinements.
   ========================================= */

/* Use the corrected transparent PNG with a solid white throat/chest. */
.lp-brand-mark {
  background-image: url("assets/images/brand/toucan-logo-white.png") !important;
}

/* Exact, even spacing between account, cart and CTA. */
.lp-header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}
.lp-header-actions > * { margin-inline: 0 !important; }

/* Benefits overlap: actual translation is more reliable than a negative margin
   across block-theme wrappers. The band remains full-width while the content is
   intentionally concentrated in the middle. */
.lp-benefits-shell {
  position: relative !important;
  z-index: 20 !important;
  margin: 0 0 -48px !important;
  padding: 0 !important;
  transform: translateY(-48px) !important;
  pointer-events: none;
}
.lp-benefits {
  width: 100% !important;
  padding-inline: clamp(44px, 13vw, 220px) !important;
  border: 0 !important;
  border-radius: 32px 32px 0 0 !important;
  background: #eef4ed !important;
  box-shadow: 0 16px 38px rgba(13,59,44,.08) !important;
  pointer-events: auto;
}
.lp-benefit {
  min-width: 0;
  padding: 20px clamp(16px, 2vw, 34px) !important;
  border: 0 !important;
}
.lp-benefit::after { display: none !important; }
.lp-benefit:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  top: 25% !important;
  right: 0 !important;
  display: block !important;
  width: 1px !important;
  height: 50% !important;
  background: rgba(20,84,63,.16) !important;
}
#courses.lp-section { padding-top: 104px !important; }

/* The platform section needs breathing room, but less than the previous build. */
.lp-platform-section { padding-bottom: 48px !important; }
.lp-platform-copy { padding-bottom: 8px !important; }
.lp-platform-plant { opacity: .42 !important; }
.lp-home-cohort-section { padding-top: 64px !important; }

/* FAQ: the kicker spans the whole section, the title belongs to the questions.
   The questions themselves anchor at their top, so opening a details element can
   only expand downwards. The decorative art is anchored independently at bottom. */
.lp-faq-section {
  position: relative;
  padding-top: 18px !important;
  padding-bottom: 0 !important;
}
.lp-faq-kicker {
  margin: 0 auto 6px;
  text-align: center;
}
.lp-faq-kicker .lp-kicker { margin-bottom: 0; }
.lp-faq-layout {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0,1fr) 280px !important;
  align-items: start !important;
  min-height: 300px !important;
  gap: 34px !important;
}
.lp-faq-copy {
  align-self: start !important;
  padding-bottom: 46px !important;
}
.lp-faq-copy > h2.lp-faq-title {
  margin: 0 0 24px;
  text-align: left;
}
.lp-faq-grid {
  column-count: 2 !important;
  column-gap: 14px !important;
  align-items: start !important;
}
.lp-faq-grid details {
  display: inline-block !important;
  width: 100% !important;
  margin: 0 0 10px !important;
  vertical-align: top !important;
  break-inside: avoid !important;
}
.lp-faq-art {
  position: absolute !important;
  right: -8px !important;
  bottom: -1px !important;
  display: block !important;
  width: 288px !important;
  height: 270px !important;
  margin: 0 !important;
  background-position: right bottom !important;
}
.lp-final-wrap { padding-top: 0 !important; }

/* Contact and About pages. */
.lp-content-intro {
  max-width: 700px;
  margin: 0 0 32px;
  color: var(--lp-muted);
  font-size: 18px;
}
.lp-contact-card {
  display: grid;
  max-width: 650px;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  background: var(--lp-green-050);
}
.lp-contact-card h2 { margin: 0; font-size: 26px; }
.lp-contact-card p { margin: 0; }
.lp-contact-mail {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--lp-green-800);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
}
.lp-team-showcase {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(22px, 2.4vw, 34px);
  margin: 8px 0 42px;
}
.lp-person {
  text-align: center;
}
.lp-person-photo {
  width: 164px;
  height: 164px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 8px 26px rgba(13,59,44,.12);
}
.lp-person-photo--lana { background-image: url("assets/images/team/fred-kitser.jpg"); }
.lp-person-photo--nadine { background-image: url("assets/images/team/nadine-mikey.jpg"); }
.lp-person-photo--fred { background-image: url("assets/images/team/lana-reisser.jpg"); }
.lp-person h2 {
  margin: 0 0 6px;
  font-size: 24px;
}
.lp-person-role {
  margin: 0 0 16px;
  color: var(--lp-green-700);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.lp-person-group + .lp-person-group { margin-top: 14px; }
.lp-person-group h3 {
  margin: 0 0 8px;
  color: var(--lp-ink);
  font-size: 14px;
  letter-spacing: -.01em;
}
.lp-person-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  text-align: left;
}
.lp-person-list li {
  position: relative;
  padding-left: 18px;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.6;
}
.lp-person-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-gold);
}
.lp-teacher-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 18px;
  background: linear-gradient(120deg,var(--lp-green-900),#176149);
  color: #fff;
}
.lp-teacher-number {
  min-width: 108px;
  padding-inline: 10px;
  text-align: center;
  font-size: clamp(62px,9vw,92px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .9;
  color: var(--lp-gold);
}
.lp-teacher-stat h2 { margin: 0 0 7px; color: #fff; font-size: 25px; }
.lp-teacher-stat p { margin: 0; color: rgba(255,255,255,.82); }
@media (max-width: 860px) {
  .lp-benefits-shell {
    margin-bottom: -30px !important;
    transform: translateY(-30px) !important;
  }
  .lp-benefits {
    padding-inline: clamp(24px, 7vw, 70px) !important;
  }
  .lp-benefit:nth-child(2n)::after { display: none !important; }
  #courses.lp-section { padding-top: 76px !important; }
  .lp-faq-layout {
    display: block !important;
    min-height: 0 !important;
  }
  .lp-faq-copy { padding-bottom: 30px !important; }
  .lp-faq-art { display: none !important; }
  .lp-team-showcase { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Account/cart/burger use the exact same distance. */
  .lp-header { gap: 10px !important; }
  .lp-header-actions { gap: 10px !important; }
  .lp-mobile-menu { margin-left: 0 !important; }

  /* No artificial fades in portrait mobile. */
  .lp-hero-art::before,
  .lp-hero-art::after { display: none !important; }
  .lp-hero-art {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .lp-benefits-shell {
    margin-bottom: -22px !important;
    transform: translateY(-22px) !important;
  }
  .lp-benefits {
    padding-inline: 20px !important;
    border-radius: 24px 24px 0 0 !important;
  }
  .lp-benefit:not(:last-child)::after {
    top: auto !important;
    right: 25% !important;
    bottom: 0 !important;
    width: 50% !important;
    height: 1px !important;
  }
  #courses.lp-section { padding-top: 64px !important; }

  .lp-home-cohort-section { padding-bottom: 30px !important; }
  .lp-editorial-grid { gap: 34px !important; }

  .lp-faq-kicker { margin-bottom: 12px; }
  .lp-faq-copy > h2.lp-faq-title { font-size: 30px; }
  .lp-faq-grid { column-count: 1 !important; }
  .lp-faq-copy { padding-bottom: 26px !important; }
  .lp-faq-section { padding-bottom: 14px !important; }
  .lp-final-wrap { padding-top: 0 !important; }

  .lp-footer-grid {
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    gap: 12px !important;
  }
  .lp-footer-grid > :first-child { grid-column: 1 / -1 !important; }
  .lp-footer h3 { font-size: 12px; }
  .lp-footer li,
  .lp-footer a { font-size: 10px; }

  .lp-teacher-stat { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 915px) and (orientation: landscape) {
  /* Fade the image itself rather than painting a mismatched colour on top. */
  .lp-hero-art::before,
  .lp-hero-art::after { display: none !important; }
  .lp-hero-art {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 100%) !important;
    mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 100%) !important;
  }
  .lp-platform-plant { opacity: .24 !important; }

  /* The lead copy uses the full card width; only the lower row is split. */
  .lp-small-card {
    display: grid !important;
    grid-template-columns: minmax(0,1fr) 190px !important;
    grid-template-areas:
      "title title"
      "text text"
      "list bird" !important;
    min-height: 250px !important;
    padding: 24px 20px 18px !important;
    column-gap: 16px !important;
  }
  .lp-small-card h2 { grid-area: title !important; padding-right: 0 !important; }
  .lp-small-card > p { grid-area: text !important; max-width: none !important; }
  .lp-small-card .lp-check-list { grid-area: list !important; }
  .lp-small-toucan {
    grid-area: bird !important;
    position: static !important;
    width: 190px !important;
    height: 150px !important;
    align-self: end !important;
    justify-self: end !important;
    margin: 0 -8px -4px 0 !important;
  }
}


/* =========================================
   Language Paradise 3.0.3 final refinements
   ========================================= */

/* Keep all navigation labels and CTA buttons on one line, including phone landscape. */
.lp-nav a,
.lp-button,
.lp-header-cta {
  white-space: nowrap !important;
}

/* The title/questions begin where the visible FAQ illustration begins. */
@media (min-width: 861px) {
  .lp-faq-layout {
    min-height: 300px !important;
  }
  .lp-faq-copy {
    padding-top: 148px !important;
    padding-bottom: 48px !important;
  }
  .lp-faq-art {
    bottom: -18px !important;
    z-index: 2 !important;
  }
  .lp-final-wrap {
    position: relative;
    z-index: 3;
    padding-top: 0 !important;
  }
}

@media (max-width: 860px) {
  .lp-faq-copy {
    padding-top: 0 !important;
  }
}

@media (max-width: 960px) and (orientation: landscape) {
  .lp-nav {
    gap: 13px !important;
  }
  .lp-nav a {
    font-size: 13px !important;
  }
  .lp-header-actions {
    gap: 11px !important;
  }
  .lp-header-cta {
    padding-inline: 14px !important;
  }
}


/* =========================================
   Language Paradise 3.0 final spacing fixes
   ========================================= */

/* Keep the action controls optically even. The cart counter no longer
   protrudes far enough to make the following gap look smaller. */
.lp-header {
  column-gap: 14px !important;
}
.lp-header-actions {
  column-gap: 14px !important;
  row-gap: 0 !important;
}
.lp-header-actions > * {
  margin: 0 !important;
}
.lp-cart-count {
  top: -4px !important;
  right: -3px !important;
}
.lp-mobile-menu {
  margin-left: 0 !important;
}

/* Move the whole FAQ group lower, while keeping the kicker close to it.
   The previous build created the depth almost entirely as empty space inside
   the left column; this version places the section itself lower instead. */
@media (min-width: 861px) {
  .lp-faq-section {
    padding-top: 132px !important;
  }
  .lp-faq-kicker {
    margin-bottom: 4px !important;
  }
  .lp-faq-copy {
    padding-top: 74px !important;
    padding-bottom: 48px !important;
  }
}

/* Portrait mobile: anchor the decorative toucan to the actual lower-right
   corner instead of letting the grid place it too high and too far left. */
@media (max-width: 640px) and (orientation: portrait) {
  .lp-header {
    column-gap: 12px !important;
  }
  .lp-header-actions {
    column-gap: 12px !important;
  }
  .lp-small-card {
    position: relative !important;
    display: block !important;
    min-height: 330px !important;
    padding: 22px 20px 20px !important;
  }
  .lp-small-card h2,
  .lp-small-card > p {
    max-width: none !important;
    padding-right: 0 !important;
  }
  .lp-small-card .lp-check-list {
    max-width: 48% !important;
    margin-top: 18px !important;
  }
  .lp-small-toucan {
    position: absolute !important;
    right: -8px !important;
    bottom: -2px !important;
    width: 190px !important;
    height: 154px !important;
    margin: 0 !important;
    background-position: right bottom !important;
  }
}


/* =========================================
   Language Paradise 3.0 final FAQ/header fix
   ========================================= */

/* Account, cart, CTA and mobile menu are now siblings in one grid. Any <br>
   inserted by WordPress is ignored instead of becoming an extra flex item. */
.lp-header-actions {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: max-content !important;
  align-items: center !important;
  justify-content: end !important;
  gap: 16px !important;
  margin-left: 0 !important;
}
.lp-header-actions > br { display: none !important; }
.lp-header-actions > * { margin: 0 !important; }
.lp-mobile-menu { margin: 0 !important; }

/* Rebuild the FAQ geometry instead of accumulating padding on nested boxes.
   The section overlaps unused bottom padding from the testimonial section. The
   kicker, question title and toucan then share one predictable stage. */
.lp-editorial-section {
  padding-bottom: 24px !important;
}
.lp-faq-section {
  margin-top: -10px !important;
  padding: 0 !important;
}
.lp-faq-stage {
  position: relative !important;
  min-height: 390px !important;
}
.lp-faq-kicker {
  position: absolute !important;
  z-index: 3 !important;
  top: 100px !important;
  right: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  text-align: center !important;
}
.lp-faq-layout {
  position: relative !important;
  display: grid !important;
  min-height: 390px !important;
  grid-template-columns: minmax(0, 1fr) 288px !important;
  align-items: start !important;
  gap: 34px !important;
  padding-top: 132px !important;
}
.lp-faq-copy {
  align-self: end !important;
  padding: 0 0 30px !important;
}
.lp-faq-copy > h2.lp-faq-title {
  margin: 0 0 24px !important;
}
.lp-faq-art {
  position: absolute !important;
  right: -8px !important;
  bottom: -10px !important;
  width: 288px !important;
  height: 270px !important;
  margin: 0 !important;
  background-position: right bottom !important;
}
.lp-final-wrap {
  padding-top: 0 !important;
}

@media (max-width: 860px) {
  .lp-header-actions {
    margin-left: auto !important;
    gap: 14px !important;
  }
  .lp-header-actions .lp-header-cta { display: none !important; }
  .lp-mobile-menu { display: block !important; }

  .lp-editorial-section { padding-bottom: 28px !important; }
  .lp-faq-section { margin-top: 0 !important; }
  .lp-faq-stage { min-height: 0 !important; }
  .lp-faq-kicker {
    position: static !important;
    margin: 0 0 12px !important;
  }
  .lp-faq-layout {
    display: block !important;
    min-height: 0 !important;
    padding-top: 0 !important;
  }
  .lp-faq-copy { padding: 0 0 28px !important; }
  .lp-faq-art { display: none !important; }
}

@media (max-width: 640px) and (orientation: portrait) {
  .lp-header { gap: 14px !important; }
  .lp-header-actions { gap: 14px !important; }

  /* The source illustration has a clean baseline; a small negative bottom
     offset makes that baseline meet the card edge after border-radius clipping. */
  .lp-small-toucan {
    right: -8px !important;
    bottom: -14px !important;
    width: 202px !important;
    height: 164px !important;
    background-position: right bottom !important;
  }
}
