/* =========================================================
   ALL FUSIO — CLEAN STYLESHEET
   ========================================================= */

:root{
  --fusio-purple: #6e63ff;
  --fusio-purple-light: #8f7bff;
  --fusio-bg: #f6f4ff;
  --fusio-text: #121624;
  --container-wide: 1400px;
  --container-content: 1180px;
  --header-height: 110px;
}

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

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

html,
body{
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea{
  font-family: "Arial Rounded MT Bold", "Arial Rounded MT", Arial, sans-serif;
}

body{
  color: var(--fusio-text);
}

main{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

img,
video{
  max-width: 100%;
}

.container{
  width: min(var(--container-wide), calc(100% - 32px));
  margin-inline: auto;
}

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

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(245, 246, 250, 0.80);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);

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

.site-header .nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header .container{
    width: calc(100% - 16px);
    max-width: none;
}

.brand{
    margin-left: -8px;
}

.brand{
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}

.brand-logo{
  display: block;
  width: auto;
  height: 100px;
}

/* WordPress menu wrapper */
.menu,
.site-header .menu{
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.menu ul{
  display: flex !important;
  align-items: center;
  gap: 22px;

  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.menu li{
  margin: 0 !important;
  padding: 0 !important;
}

.menu a{
  display: inline-flex;
  align-items: center;

  color: var(--fusio-purple);
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;

  transition: color 0.2s ease;
}

.menu a:hover{
  color: rgba(110, 99, 255, 0.75);
}

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

.home-s1{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.ppt-hero{
  position: relative;

  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 560px;

  margin: 0;
  padding: 0;

  overflow: hidden;
  background: var(--fusio-bg);
}

.ppt-hero-media{
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;
}

.ppt-hero-media img{
  display: block;

  width: 100%;
  height: 100%;
  max-width: none;

  margin: 0;

  object-fit: cover;
  object-position: center;
}

/* Dynamic Learn pill */
.learnbar-overlay{
  position: absolute;
  left: 70px;
  top: 50%;
  z-index: 10;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 70px 120px;
  border-radius: 80px;

  color: var(--fusio-purple);
  background: rgba(255, 255, 255, 0.88);

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

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);

  transform: translateY(-50%);
}

.learnbar-overlay .learn{
  color: var(--fusio-purple);
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
}

.learnbar-overlay .x{
  color: var(--fusio-purple);
  font-size: 190px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.learnbar-overlay .cursor{
  width: 8px;
  height: 190px;
  margin-left: 4px;

  border-radius: 8px;
  background: rgba(110, 99, 255, 0.55);

  animation: blink 1s steps(2, end) infinite;
}

@keyframes blink{
  50%{
    opacity: 0;
  }
}

/* =========================================================
   ONE-PAGE SECTIONS
   ========================================================= */

.page-section{
  padding: 110px 0;
}

.page-section.alt{
  background: rgba(245, 246, 250, 0.60);
}

.page-section h2{
  margin-bottom: 12px;
  font-size: 42px;
}

.page-section .sub{
  max-width: 640px;
  margin-bottom: 32px;

  color: rgba(18, 22, 36, 0.65);
  font-size: 18px;
}

/* Full-width section graphics */
.section-image{
  display: block;

  width: 100vw;
  max-width: none;
  height: auto;

  margin-left: calc(50% - 50vw);

  object-fit: cover;
  object-position: center;

  border-radius: 0;
  box-shadow: 0 18px 50px rgba(17, 22, 36, 0.10);
}

/* Section heading pill */
.section-pill{
  width: fit-content;
  margin: 0 auto 28px;
  padding: 12px 22px;

  color: var(--fusio-purple);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;

  border: 1px solid rgba(110, 99, 255, 0.22);
  border-radius: 999px;
  background: rgba(110, 99, 255, 0.10);

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

/* Make the video/text area much wider than the normal container */
.individuals-extra{
  width: min(1600px, calc(100vw - 48px));
  max-width: none;
  margin-top: 48px;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* Video left, wider text right */
.individuals-grid{
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 3fr);
  gap: 24px;
  align-items: center;
  width: 100%;
}

/* Floating glass card fills the wider area */
.feature-glass{
  position: relative;
  z-index: 5;

  width: 100%;
  max-width: none;
  margin: -70px 0 36px;
  padding: 26px;

  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 3fr);
  gap: 24px;
  align-items: center;

  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 30px;
  background: rgba(255,255,255,0.68);

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

  box-shadow:
    0 28px 70px rgba(42,35,105,0.14),
    0 8px 24px rgba(110,99,255,0.10);
}

/* Entrepreneurs: text left, video right */
.feature-reverse .video-block{
  grid-column: 2;
  grid-row: 1;
}

.feature-reverse .text-placeholder{
  grid-column: 1;
  grid-row: 1;
}

/* Front-page videos */
.video-block{
  display: block;

  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 16 / 9;

  border-radius: 24px;
  background: #000;

  object-fit: cover;

  box-shadow: 0 18px 50px rgba(17, 22, 36, 0.10);
}

/* Empty video placeholder, if still used */
.video-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  aspect-ratio: 16 / 9;

  color: var(--fusio-purple);
  font-weight: 600;

  border: 1px solid rgba(110, 99, 255, 0.25);
  border-radius: 24px;
  background: rgba(110, 99, 255, 0.08);
}

/* Text card beside videos */
.text-placeholder{
  width: 100%;
  padding: 32px;

  color: rgba(18, 22, 36, 0.75);
  font-size: 30px;
  line-height: 1.7;

  border: 1px solid rgba(110, 99, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.65);

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

.text-placeholder p{
  margin: 0;
}

/* =========================================================
   CTA BUTTONS
   ========================================================= */

.cta-wrap{
  position: relative;
  z-index: 6;

  margin-top: 8px;
  text-align: center;
}

.cta-button{
  display: inline-block;

  padding: 24px 56px;              /* Bigger button */
  border-radius: 999px;

  font-size: 26px;                 /* Bigger text */
  font-weight: 700;
  letter-spacing: -0.02em;

  color: var(--fusio-purple);

  border: 2px solid rgba(110,99,255,0.45);
  background: rgba(255,255,255,0.60);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  text-decoration: none;

  transition:
      transform .2s ease,
      box-shadow .2s ease;
}

.cta-button:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(110,99,255,0.28);
}

/* =========================================================
   SCROLL-DOWN BUTTON
   ========================================================= */

#scroll-down{
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;

  cursor: pointer;

  border: 1px solid rgba(255, 255, 255, 0.60);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);

  transform: translateX(-50%);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

#scroll-down .arrow{
  width: 10px;
  height: 10px;
  margin-top: -4px;

  border-right: 2px solid rgba(110, 99, 255, 0.75);
  border-bottom: 2px solid rgba(110, 99, 255, 0.75);

  transform: rotate(45deg);
}

@keyframes scrollPulse{
  0%,
  100%{
    transform: translate(-50%, 0);
  }

  50%{
    transform: translate(-50%, 6px);
  }
}

body.scrolled #scroll-down{
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.site-footer{
  padding: 26px 0;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(245, 246, 250, 0.80);

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

.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

.copyright{
  color: rgba(110, 99, 255, 0.75);
  font-size: 14px;
  white-space: nowrap;
}

.socials{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.socials a{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(110, 99, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.socials a:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(110, 99, 255, 0.25);
}

.socials svg{
  width: 20px;
  height: 20px;
  fill: var(--fusio-purple);
}

/* =========================================================
   PRICING / PAYMENT
   ========================================================= */

.pay-page{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.pay-bg{
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  opacity: 0.30;
  transform: scale(1.02);
}

.pay-wrap{
  position: relative;
  z-index: 2;

  display: grid;
  place-items: center;

  min-height: calc(100vh - 74px);
  padding: 60px 18px 80px;
}

.pay-card{
  width: min(520px, 100%);
  padding: 34px 30px 28px;

  border: 1px solid rgba(110, 99, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 28px 90px rgba(17, 22, 36, 0.14);
}

.pay-title{
  margin: 0 0 10px;

  color: rgba(18, 22, 36, 0.86);
  font-size: 48px;
  letter-spacing: -0.03em;
}

.pay-sub{
  margin: 0 0 22px;

  color: rgba(18, 22, 36, 0.60);
  font-size: 18px;
}

.pay-form{
  display: grid;
  gap: 14px;
}

.pay-field{
  display: grid;
  gap: 8px;
}

.pay-label{
  color: rgba(18, 22, 36, 0.55);
  font-size: 13px;
}

.pay-field input{
  width: 100%;
  padding: 14px 16px;

  font-size: 16px;

  border: 1px solid rgba(110, 99, 255, 0.20);
  border-radius: 14px;
  outline: none;

  background: rgba(255, 255, 255, 0.65);
}

.pay-field input:focus{
  border-color: rgba(110, 99, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(110, 99, 255, 0.10);
}

.pay-row{
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 10px;
}

.pay-card-icon{
  width: 44px;
  height: 44px;

  border: 1px solid rgba(110, 99, 255, 0.25);
  border-radius: 12px;
  background: rgba(110, 99, 255, 0.08);
}

.pay-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pay-btn{
  margin-top: 6px;
  padding: 15px 18px;

  cursor: pointer;

  color: #fff;
  font-size: 18px;
  font-weight: 800;

  border: 0;
  border-radius: 16px;
  background: rgba(110, 99, 255, 0.85);

  box-shadow: 0 18px 50px rgba(110, 99, 255, 0.25);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pay-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(110, 99, 255, 0.35);
}

.pay-price{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-top: 10px;

  color: rgba(18, 22, 36, 0.78);
  font-size: 20px;
}

.pay-secure{
  margin-top: 2px;

  color: rgba(18, 22, 36, 0.55);
  font-size: 13px;
  text-align: center;
}

.pay-methods{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;

  margin-top: 14px;
}

.pm{
  padding: 12px 10px;

  cursor: pointer;

  color: rgba(18, 22, 36, 0.62);
  font-weight: 700;

  border: 1px solid rgba(110, 99, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.pm-wide{
  grid-column: 1 / -1;
}

.pay-note{
  margin: 10px 0 0;

  color: rgba(18, 22, 36, 0.52);
  font-size: 12px;
  text-align: center;
}

/* Inline pricing/payment block */
.pay-inline{
  position: relative;

  padding: 48px 18px;

  overflow: hidden;

  border: 1px solid rgba(110, 99, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.45);

  box-shadow: 0 18px 60px rgba(17, 22, 36, 0.10);
}

.pay-inline-bg{
  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(
      1200px 600px at 20% 10%,
      rgba(140, 120, 255, 0.35),
      transparent 60%
    ),
    radial-gradient(
      1000px 500px at 80% 20%,
      rgba(110, 99, 255, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, #f6f4ff 0%, #efeaff 100%);
}

.pay-inline .pay-card{
  position: relative;
  margin: 0 auto;
  box-shadow: 0 28px 90px rgba(17, 22, 36, 0.12);
}

.pay-inline .pay-title{
  font-size: 44px;
}

/* =========================================================
   LOGIN PAGE
   ========================================================= */

.login-page{
  position: relative;
  min-height: calc(100vh - 80px);
  overflow: hidden;
}

.login-bg{
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(
      1200px 600px at 20% 10%,
      rgba(140, 120, 255, 0.35),
      transparent 60%
    ),
    radial-gradient(
      1000px 500px at 80% 20%,
      rgba(110, 99, 255, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, #f6f4ff 0%, #efeaff 100%);
}

.login-wrap{
  position: relative;
  z-index: 1;

  display: grid;
  place-items: center;

  min-height: 100%;
  padding: 80px 20px;
}

.login-wrap .glass,
.login-wrap .form-card{
  width: min(420px, 100%);
  padding: 32px 30px;

  border: 1px solid rgba(110, 99, 255, 0.22);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.65);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 28px 80px rgba(17, 22, 36, 0.14);
}

#allfusio-loginform p{
  margin-bottom: 14px;
}

#allfusio-loginform label{
  color: rgba(18, 22, 36, 0.60);
  font-size: 13px;
}

#allfusio-loginform input[type="text"],
#allfusio-loginform input[type="password"]{
  width: 100%;
  padding: 12px 14px;

  border: 1px solid rgba(110, 99, 255, 0.25);
  border-radius: 14px;
  outline: none;

  background: rgba(255, 255, 255, 0.70);
}

#allfusio-loginform input:focus{
  border-color: rgba(110, 99, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(110, 99, 255, 0.12);
}

#allfusio-loginform input[type="submit"]{
  width: 100%;
  margin-top: 10px;
  padding: 14px;

  cursor: pointer;

  color: #fff;
  font-size: 16px;
  font-weight: 700;

  border: 0;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--fusio-purple),
    var(--fusio-purple-light)
  );

  box-shadow: 0 16px 40px rgba(110, 99, 255, 0.35);

  transition: transform 0.2s ease;
}

#allfusio-loginform input[type="submit"]:hover{
  transform: translateY(-1px);
}

/* =========================================================
   COURSES PAGES
   ========================================================= */

.courses-page{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.courses-bg{
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(
      1200px 600px at 20% 10%,
      rgba(140, 120, 255, 0.35),
      transparent 60%
    ),
    radial-gradient(
      1000px 500px at 80% 20%,
      rgba(110, 99, 255, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, #f6f4ff 0%, #efeaff 100%);
}

.courses-wrap{
  position: relative;
  z-index: 1;
  padding: 90px 0 110px;
}

/* General courses grid, if still used */
.courses-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 32px;

  margin-top: 28px;
}

.courses-videos{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.courses-text{
  display: grid;
  gap: 18px;
}

.courses-card strong{
  font-weight: 900;
  color: var(--fusio-purple);
}

.courses-card{
    display: flex;
    flex-direction: column;
    justify-content: center;

    height: 100%;
    padding: 36px;

    border-radius: 24px;
    background: rgba(255,255,255,0.60);
    border: 1px solid rgba(110,99,255,0.18);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 16px 50px rgba(17,22,36,0.08);
}

.courses-card h3{
  margin: 0 0 10px;

  color: rgba(18, 22, 36, 0.85);
  font-size: 20px;
margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.courses-card p{
  margin: 0 0 10px;
margin-bottom: 22px;
  color: rgba(18, 22, 36, 0.68);
  line-height: 1.8;
font-size: 22px;
}

.courses-card ul{
  margin: 0;
  padding-left: 18px;

  color: rgba(18, 22, 36, 0.68);
}

.courses-wrap .container{
    width: min(1700px, calc(100% - 40px));
    max-width: none;
}

/* Course lesson rows */
.course-lessons{
  display: grid;
  gap: 32px;

  margin-top: 32px;
}

.course-lesson-row{
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: stretch;
}

.course-lesson-row .video-block{
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 9;
    min-height: 520px;
    border-radius: 28px;
}

.course-lesson-row .courses-card{
  height: fit-content;
}

/* =========================================================
   ENTREPRENEURS STANDALONE PAGE
   ========================================================= */

.entrepreneurs-page{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.entrepreneurs-bg{
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(
      1200px 600px at 20% 10%,
      rgba(140, 120, 255, 0.35),
      transparent 60%
    ),
    radial-gradient(
      1000px 500px at 80% 20%,
      rgba(110, 99, 255, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, #f6f4ff 0%, #efeaff 100%);
}

.entrepreneurs-wrap{
  position: relative;
  z-index: 1;

  padding-top: 90px;
  padding-bottom: 110px;
}

.entrepreneurs-page .container{
  position: relative;
  z-index: 1;
}

.entrepreneurs-page .section-image{
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(17, 22, 36, 0.10);
}

.entrepreneurs-title{
  margin: 0 0 10px;

  color: rgba(18, 22, 36, 0.88);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.entrepreneurs-subtitle{
  margin: 0;

  color: rgba(18, 22, 36, 0.70);
  font-size: 20px;
  line-height: 1.5;
}

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

@media (max-width: 1100px){

  .learnbar-overlay{
    padding: 42px 58px;
  }

  .learnbar-overlay .learn{
    font-size: 48px;
  }

  .learnbar-overlay .x{
    font-size: 110px;
  }

  .learnbar-overlay .cursor{
    height: 110px;
  }

  .text-placeholder{
    font-size: 24px;
  }
}

@media (max-width: 980px){

  .ppt-hero{
    height: 72vh;
    min-height: 500px;
  }

  .learnbar-overlay{
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 24px;

    justify-content: center;

    padding: 28px 32px;

    transform: none;
  }

  .learnbar-overlay .learn{
    font-size: 34px;
  }

  .learnbar-overlay .x{
    font-size: 62px;
  }

  .learnbar-overlay .cursor{
    height: 62px;
  }

  .individuals-grid,
  .feature-glass,
  .feature-glass.feature-reverse{
    grid-template-columns: 1fr;
  }

  .feature-glass{
    width: calc(100% - 28px);
    margin-top: -32px;
    padding: 18px;
    gap: 22px;
  }

  .feature-reverse .video-block{
    grid-column: 1;
    grid-row: 1;
  }

  .feature-reverse .text-placeholder{
    grid-column: 1;
    grid-row: 2;
  }

  .text-placeholder{
    padding: 24px;
    font-size: 20px;
  }

  .courses-grid,
  .course-lesson-row{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px){

  .site-header .nav{
    flex-wrap: wrap;
  }

  .menu,
  .menu ul{
    flex-wrap: wrap !important;
    justify-content: flex-end;
    gap: 14px;
  }

  .brand-logo{
    height: 72px;
  }

  .footer-inner{
    flex-direction: column;
    justify-content: center;
  }

  .copyright{
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 560px){

  .container{
    width: min(100% - 24px, var(--container-wide));
  }

  .page-section{
    padding: 80px 0;
  }

  .section-pill{
    font-size: 18px;
  }

  .learnbar-overlay{
    gap: 10px;
    padding: 20px 24px;
  }

  .learnbar-overlay .learn{
    font-size: 25px;
  }

  .learnbar-overlay .x{
    font-size: 42px;
  }

  .learnbar-overlay .cursor{
    width: 5px;
    height: 42px;
  }

  .text-placeholder{
    padding: 20px;
    font-size: 17px;
  }

  .pay-title{
    font-size: 40px;
  }

  .pay-methods{
    grid-template-columns: 1fr 1fr;
  }

  .pay-inline{
    padding: 36px 14px;
  }

  .pay-inline .pay-title{
    font-size: 38px;
  }
}

/* Polylang language switcher */
.lang-item img,
.pll-parent-menu-item img,
.pll-switcher img{
    width: 36px !important;
    height: auto !important;
}