:root {
  --navy: #0A1F44;
  --green: #2E7D32;
  --ink: #132033;
  --muted: #5B6778;
  --line: #E2E8F0;
  --soft: #F5F7FA;
  --white: #FFFFFF;
  --shadow: 0 24px 64px rgba(10, 31, 68, 0.13);
  --shadow-soft: 0 14px 38px rgba(10, 31, 68, 0.08);
  --gutter: clamp(32px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  padding-bottom: 58px;
}

body,
button,
input,
textarea {
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, calc(100% - var(--gutter)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.04);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 168px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.91rem;
  font-weight: 600;
  color: #334155;
}

.nav-menu a {
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green);
}

.nav-menu .nav-cta,
.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus,
.nav-menu .nav-cta.active {
  color: var(--white);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus {
  background: #246C29;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  box-shadow: 0 12px 26px rgba(46, 125, 50, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(10, 31, 68, 0.14);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero {
  overflow: hidden;
  padding: 78px 0 68px;
  background:
    linear-gradient(115deg, rgba(245, 247, 250, 0.98) 0%, rgba(245, 247, 250, 0.7) 52%, rgba(255, 255, 255, 0) 52%),
    var(--white);
}

.hero-grid,
.launch-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(34px, 5vw, 58px);
  align-items: center;
}

.hero-grid > *,
.launch-grid > *,
.page-hero-grid > *,
.split > *,
.insight-grid > *,
.faq-layout > *,
.pricing-grid > *,
.contact-grid > *,
.image-callout > *,
.programme-grid > *,
.programme-feature > *,
.footer-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow.light {
  color: #8FE39A;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.55rem, 7vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-text,
.page-hero p,
.launch-hero p,
.large-copy {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  max-width: 680px;
}

.hero-visual,
.launch-panel {
  position: relative;
}

.hero-visual img,
.launch-panel img,
.page-image,
.programme-feature img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.metric-card,
.price-pill {
  position: absolute;
  left: -28px;
  bottom: 26px;
  width: min(270px, 78%);
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--green);
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card span {
  margin-top: 4px;
  color: var(--muted);
}

.trust-strip {
  background: var(--navy);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px 0;
  font-weight: 800;
}

.section {
  padding: 72px 0;
}

.section-muted,
.page-hero {
  background: var(--soft);
}

.visual-split {
  padding-top: 60px;
}

.section-image-band {
  padding: 24px 0;
  background: var(--white);
}

.image-band-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.image-band-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(10, 31, 68, 0.1);
}

.image-focus-right {
  object-position: right center;
}

.image-band-grid img:nth-child(2) {
  margin-top: 34px;
}

.image-callout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.image-callout img {
  width: 100%;
  aspect-ratio: 5 / 3.6;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-callout p {
  color: var(--muted);
  font-size: 1.12rem;
}

.section-navy,
.launch-hero {
  background: var(--navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3,
.launch-hero h1 {
  color: var(--white);
}

.section-navy .large-copy,
.section-navy p {
  color: rgba(255, 255, 255, 0.76);
}

.standard-grid {
  margin-top: 40px;
}

.section-navy .standard-grid .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.section-navy .standard-grid .card p {
  color: rgba(255, 255, 255, 0.72);
}

.section-navy .contact-response p {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.feature-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.feature-band p {
  color: var(--muted);
  max-width: 650px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.card,
.testimonial,
.programme-card,
.contact-card,
.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(10, 31, 68, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.testimonial:hover,
.programme-card:hover,
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(10, 31, 68, 0.1);
  border-color: rgba(46, 125, 50, 0.35);
}

.card p,
.testimonial p,
.programme-card p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 5vw, 58px);
  align-items: start;
}

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

.check-list p {
  position: relative;
  margin: 0;
  padding: 18px 18px 18px 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 56px);
  align-items: start;
}

.insight-grid h2 {
  max-width: 620px;
}

.insight-stack,
.solution-list,
.faq-list {
  display: grid;
  gap: 14px;
}

.insight-stack article,
.solution-list article {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.insight-stack span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 900;
}

.insight-stack p,
.solution-list span {
  color: var(--muted);
}

.solution-list article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: start;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.solution-list strong {
  color: var(--white);
}

.solution-list span {
  color: rgba(255, 255, 255, 0.74);
}

.faq-layout {
  max-width: 920px;
  margin: 0 auto;
}

.faq-layout .section-heading {
  max-width: 760px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  transition: height 0.34s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  will-change: height;
}

.faq-list details[open] {
  border-color: rgba(46, 125, 50, 0.35);
  box-shadow: 0 18px 42px rgba(10, 31, 68, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-strip article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-strip span,
.process-strip strong {
  display: block;
}

.process-strip span {
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 900;
}

.process-strip strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

.process-strip p {
  margin: 0;
  color: var(--muted);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.outcome {
  min-height: 132px;
  display: flex;
  align-items: end;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 800;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy), #123A75);
  color: var(--white);
}

.final-cta h2 {
  color: var(--white);
  max-width: 720px;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer {
  padding: 48px 0;
  background: #071831;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.site-footer.compact {
  padding: 28px 0 86px;
}

.page-hero {
  padding: 70px 0;
}

.page-hero.simple {
  padding: 68px 0 48px;
}

.content-narrow {
  max-width: 820px;
  font-size: 1.2rem;
  color: var(--muted);
}

.service-stack {
  display: grid;
  gap: 20px;
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item span {
  color: var(--green);
  font-weight: 800;
  font-size: 1.6rem;
}

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

.programme-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.programme-card.muted {
  background: var(--soft);
}

.launch-hero {
  padding: 78px 0 68px;
}

.launch-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.price-pill {
  left: auto;
  right: -20px;
  color: var(--navy);
  font-weight: 800;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.module {
  min-height: 108px;
  display: flex;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

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

.detail {
  padding: 28px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.detail span,
.detail strong {
  display: block;
}

.detail span {
  color: var(--muted);
}

.detail strong {
  color: var(--navy);
  font-size: 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.pricing-card {
  padding: 32px;
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.old-price {
  color: #7A8699;
  font-weight: 800;
  text-decoration: line-through;
  font-size: 1.4rem;
}

.discount-line {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--green);
  font-weight: 900;
  line-height: 1.25;
}

.pricing-card strong {
  display: block;
  margin: 4px 0 8px;
  font-size: 3.7rem;
  line-height: 1;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 12px;
}

.pricing-card p {
  color: var(--muted);
}

.pricing-card .btn-outline-light {
  border-color: var(--navy);
  color: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.contact-line {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-line span,
.contact-line strong {
  display: block;
}

.contact-line span {
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 800;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(46, 125, 50, 0.14);
  border-color: var(--green);
}

.form-status {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.launchpad-popup {
  position: fixed;
  right: 92px;
  bottom: 18px;
  z-index: 65;
  width: min(310px, calc(100% - 124px));
  padding: 20px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.launchpad-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.launchpad-popup .eyebrow {
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.launchpad-popup h3 {
  margin-bottom: 8px;
}

.launchpad-popup p:not(.eyebrow) {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.floating-bar {
  position: fixed;
  left: 18px;
  bottom: 16px;
  z-index: 60;
  width: max-content;
  max-width: calc(100% - 112px);
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 10px 9px 16px;
  border-radius: 8px;
  background: rgba(10, 31, 68, 0.96);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 900;
  font-size: 0.92rem;
}

.floating-bar span {
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.floating-bar a {
  flex: 0 0 auto;
  padding: 8px 13px;
  border-radius: 8px;
  background: var(--green);
  white-space: nowrap;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 18px;
  z-index: 70;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.32);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-menu.open {
    display: flex;
  }

  .brand-logo {
    width: 142px;
    height: 50px;
  }

  .hero-grid,
  .launch-grid,
  .page-hero-grid,
  .split,
  .programme-feature,
  .pricing-grid,
  .contact-grid,
  .image-callout,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.four,
  .card-grid.five,
  .outcome-grid,
  .programme-grid,
  .module-grid,
  .process-strip,
  .image-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-band-grid img:nth-child(2) {
    margin-top: 0;
  }

  .trust-grid,
  .card-grid.three,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-grid {
    gap: 26px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 40px, 1140px);
  }

  body {
    padding-bottom: 62px;
  }

  .hero,
  .launch-hero,
  .page-hero,
  .section {
    padding: 48px 0;
  }

  .page-hero.simple {
    padding: 48px 0 40px;
  }

  .visual-split {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.18rem, 11vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2rem);
  }

  .button-row,
  .button-row .btn,
  .feature-band .btn {
    width: 100%;
  }

  .btn {
    min-height: 46px;
    padding: 0 18px;
    text-align: center;
  }

  .card-grid.four,
  .card-grid.five,
  .outcome-grid,
  .programme-grid,
  .module-grid,
  .process-strip {
    grid-template-columns: 1fr;
  }

  .image-band-grid {
    grid-template-columns: 1fr;
  }

  .image-band-grid img {
    height: 230px;
  }

  .feature-band,
  .programme-feature,
  .contact-card,
  .contact-form,
  .pricing-card,
  .service-item {
    padding: 24px;
  }

  .pricing-card strong {
    font-size: clamp(2.65rem, 14vw, 3.2rem);
  }

  .discount-line {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .metric-card,
  .price-pill {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .floating-bar {
    left: 12px;
    right: auto;
    bottom: 14px;
    width: max-content;
    max-width: calc(100% - 96px);
    justify-content: space-between;
    gap: 8px;
    padding: 8px 9px 8px 12px;
    font-size: 0.82rem;
  }

  .floating-bar span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .floating-bar a {
    padding: 7px 10px;
  }

  .launchpad-popup {
    left: 20px;
    right: 82px;
    bottom: 14px;
    width: auto;
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    padding: 16px;
  }

  .solution-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .faq-list summary {
    padding: 16px;
  }

  .faq-list p {
    padding: 0 16px 16px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 32px, 1140px);
  }

  .brand-logo {
    width: 128px;
  }

  .pricing-card,
  .card,
  .detail,
  .module {
    padding: 22px;
  }

  .floating-bar {
    font-size: 0.78rem;
  }
}

@media (hover: none) {
  .btn:hover,
  .card:hover,
  .testimonial:hover,
  .programme-card:hover,
  .service-item:hover {
    transform: none;
  }

  .btn:hover {
    box-shadow: none;
  }
}
