:root {
  --ink: #08213f;
  --text: #263548;
  --muted: #64748b;
  --line: #d9e2ec;
  --paper: #ffffff;
  --soft: #f6f9fc;
  --blue: #075db8;
  --green: #40a629;
  --orange: #f47a20;
  --red: #e9422e;
  --yellow: #f4ca24;
  --cyan: #1fb7d6;
  --shadow: 0 18px 45px rgba(8, 33, 63, 0.12);
  --shadow-hover: 0 24px 60px rgba(8, 33, 63, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(244, 202, 36, 0.16), transparent 28rem),
    radial-gradient(circle at top right, rgba(31, 183, 214, 0.18), transparent 28rem),
    var(--paper);
  line-height: 1.55;
}

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

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

.brand,
.main-nav a,
.nav-cta,
.nav-demo,
.nav-elite,
.button,
.trust-row span,
.problem-grid article,
.feature-card,
.audience-list div,
.step-row article,
.demo-card,
.outcome-grid span,
.booking-form,
.final-cta img {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    filter 220ms ease;
}

.brand:hover {
  transform: translateY(-2px);
}

.brand:hover img,
.final-cta:hover img {
  filter: saturate(1.25) contrast(1.05);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.footer-brand img,
.final-cta img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  padding: 3px;
  background: #fff;
  border: 1px solid rgba(7, 93, 184, 0.16);
  box-shadow: 0 8px 22px rgba(8, 33, 63, 0.1);
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  color: var(--ink);
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta,
.nav-demo,
.nav-elite,
.nav-gallery,
.nav-whatsapp,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 8px 20px rgba(244, 122, 32, 0.28);
}

.nav-demo,
.button.demo-button {
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), #fff4a6);
  border: 1px solid rgba(244, 202, 36, 0.55);
  box-shadow: 0 8px 20px rgba(244, 202, 36, 0.22);
}

.nav-elite,
.button.elite-button {
  color: #fff;
  background: linear-gradient(135deg, #06172c, #0b4f97 58%, #b48b18);
  box-shadow: 0 10px 24px rgba(8, 33, 63, 0.28);
}

.nav-gallery,
.button.gallery-button {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 20px rgba(7, 93, 184, 0.23);
}

.nav-whatsapp,
.button.whatsapp-button {
  color: #fff;
  background: linear-gradient(135deg, #25d366, var(--green));
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.nav-cta:hover,
.nav-demo:hover,
.nav-elite:hover,
.nav-gallery:hover,
.nav-whatsapp:hover,
.button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.nav-cta:active,
.nav-demo:active,
.nav-elite:active,
.nav-gallery:active,
.nav-whatsapp:active,
.button:active {
  transform: translateY(0) scale(0.98);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 87px);
  padding: clamp(40px, 6vw, 82px) clamp(18px, 5vw, 72px) 46px;
  background:
    linear-gradient(115deg, rgba(7, 93, 184, 0.14), transparent 38%),
    linear-gradient(25deg, rgba(64, 166, 41, 0.14), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(244, 202, 36, 0.32), transparent 20rem),
    radial-gradient(circle at 62% 76%, rgba(233, 66, 46, 0.13), transparent 18rem),
    #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 830px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 0.12em;
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 3.7vw, 3.65rem);
  line-height: 1.02;
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(2) {
  color: var(--blue);
}

.hero-title span:nth-child(3) {
  font-size: 0.86em;
}

.hero-title em {
  display: inline-block;
  padding: 0 0.08em 0.07em;
  color: var(--ink);
  font-style: normal;
  background: linear-gradient(180deg, transparent 62%, rgba(244, 202, 36, 0.62) 0);
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 720px;
  color: #3b4b5f;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.trust-row span:hover {
  border-color: rgba(31, 183, 214, 0.55);
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(31, 183, 214, 0.18);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.journey-panel {
  padding: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  transform:
    perspective(1100px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.journey-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 38%), rgba(244, 202, 36, 0.34), transparent 18rem),
    radial-gradient(circle at calc(var(--glow-x, 50%) + 12%) calc(var(--glow-y, 38%) + 10%), rgba(31, 183, 214, 0.18), transparent 18rem);
  opacity: 0;
  transition: opacity 220ms ease;
}

.journey-panel.is-reacting,
.journey-panel:hover {
  border-color: rgba(31, 183, 214, 0.46);
  box-shadow: 0 26px 70px rgba(7, 93, 184, 0.22);
}

.journey-panel.is-reacting::before,
.journey-panel:hover::before {
  opacity: 1;
}

.journey-panel > * {
  position: relative;
  z-index: 1;
}

.journey-banner {
  display: grid;
  gap: 2px;
  padding: 20px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, #054b95, #1687d9 48%, #09386d);
  background-size: 180% 100%;
  transition: background-position 420ms ease;
}

.journey-panel:hover .journey-banner {
  background-position: 100% 0;
}

.journey-banner span {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
}

.journey-banner strong {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-title {
  padding: 20px 26px 4px;
  text-align: center;
}

.journey-title h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

.journey-map {
  display: grid;
  grid-template-columns: minmax(72px, 0.85fr) 28px minmax(82px, 0.95fr) 28px minmax(64px, 0.7fr) 28px minmax(96px, 1fr);
  grid-template-areas:
    "enquiry arrow1 enrolment arrow2 cmp arrow3 hub"
    ". . pathways pathways pathways pathways pathways"
    ". . results results results arrowfinal outcome";
  gap: 14px;
  align-items: center;
  padding: 20px 18px 16px;
}

.stage-enquiry {
  grid-area: enquiry;
}

.arrow-one {
  grid-area: arrow1;
}

.stage-enrolment {
  grid-area: enrolment;
}

.arrow-two {
  grid-area: arrow2;
}

.stage-cmp {
  grid-area: cmp;
}

.arrow-three {
  grid-area: arrow3;
}

.stage-hub {
  grid-area: hub;
}

.stage-pathways {
  grid-area: pathways;
}

.stage-results {
  grid-area: results;
}

.arrow-final {
  grid-area: arrowfinal;
}

.stage-outcome {
  grid-area: outcome;
}

.journey-node,
.branch-card {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 86px;
  padding: 10px;
  color: #fff;
  text-align: center;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 14px 24px rgba(8, 33, 63, 0.18);
  transform: translateZ(0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.journey-node:hover,
.branch-card:hover {
  transform: translateY(-8px) scale(1.04);
  filter: saturate(1.16);
  box-shadow: 0 20px 36px rgba(8, 33, 63, 0.26);
}

.journey-node strong,
.branch-card strong {
  max-width: 100%;
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.journey-node span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.58rem, 0.8vw, 0.68rem);
  font-weight: 900;
  text-transform: uppercase;
}

.journey-node.blue {
  background: linear-gradient(145deg, #0b66b4, #063d7a);
}

.journey-node.green,
.branch-card.green {
  background: linear-gradient(145deg, #66bb2a, #267b1e);
}

.journey-node.orange,
.branch-card.orange {
  background: linear-gradient(145deg, #ff9b25, #d95516);
}

.journey-node.red {
  background: linear-gradient(145deg, #0a6ab5, #052d66);
}

.branch-card.yellow {
  background: linear-gradient(145deg, #f9b233, #e86b19);
}

.journey-node.hub {
  min-height: 92px;
}

.journey-node.outcome {
  min-height: 104px;
  padding-inline: 12px;
}

.journey-arrow {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--cyan));
  background-size: 220% 100%;
  animation: arrow-flow 2.2s linear infinite;
}

.journey-arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -7px;
  margin-left: auto;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid var(--cyan);
}

.branch-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(118px, 1fr));
  gap: 14px;
}

.branch-card {
  min-height: 78px;
  border-radius: 28px;
}

.branch-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.56rem, 0.82vw, 0.68rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.journey-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 26px 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.journey-tags span {
  padding: 13px 10px;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.journey-tags span:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  transform: translateY(-2px);
}

.journey-tags span + span {
  border-left: 1px solid var(--line);
}

.section,
.band {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.band {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.problem-grid,
.feature-grid,
.step-row {
  display: grid;
  gap: 18px;
}

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

.problem-grid article,
.feature-card,
.step-row article,
.demo-card,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.problem-grid article {
  padding: 24px;
  border-top: 5px solid var(--orange);
}

.problem-grid article:hover,
.feature-card:hover,
.step-row article:hover,
.demo-card:hover,
.booking-form:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.problem-grid article:nth-child(2):hover {
  border-top-color: var(--green);
}

.problem-grid article:nth-child(3):hover {
  border-top-color: var(--blue);
}

.problem-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.18rem;
}

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

.feature-card {
  padding: 24px;
  border-top: 5px solid var(--blue);
  box-shadow: 0 12px 30px rgba(8, 33, 63, 0.07);
}

.feature-card:nth-child(2) {
  border-top-color: var(--green);
}

.feature-card:nth-child(3) {
  border-top-color: var(--orange);
}

.feature-card:nth-child(4) {
  border-top-color: var(--red);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 220ms ease;
}

.feature-card:hover .feature-icon,
.step-row article:hover span {
  transform: rotate(-6deg) scale(1.12);
}

.feature-icon.blue {
  background: var(--blue);
}

.feature-icon.green {
  background: var(--green);
}

.feature-icon.orange {
  background: var(--orange);
}

.feature-icon.red {
  background: var(--red);
}

.split,
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.split > div:first-child,
.booking-copy {
  position: sticky;
  top: 112px;
}

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

.audience-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 20px;
  border-left: 5px solid var(--green);
  background: var(--soft);
}

.audience-list div:hover {
  border-left-color: var(--orange);
  background: #fff;
  transform: translateX(8px);
  box-shadow: 0 14px 34px rgba(8, 33, 63, 0.12);
}

.audience-list strong {
  color: var(--ink);
}

.steps {
  background:
    linear-gradient(90deg, rgba(7, 93, 184, 0.12), transparent),
    radial-gradient(circle at 15% 15%, rgba(64, 166, 41, 0.18), transparent 20rem),
    radial-gradient(circle at 86% 72%, rgba(244, 122, 32, 0.2), transparent 20rem),
    var(--soft);
}

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

.step-row article {
  padding: 24px;
}

.step-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(244, 202, 36, 0.2), transparent 36%),
    linear-gradient(315deg, rgba(31, 183, 214, 0.16), transparent 42%),
    #fff;
}

.demo-card {
  padding: 20px;
  border-top: 6px solid var(--yellow);
  box-shadow: var(--shadow);
}

.demo-screen {
  min-height: 210px;
  margin-bottom: 16px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8, 33, 63, 0.94), rgba(7, 93, 184, 0.9)),
    var(--ink);
  background-size: 160% 160%;
  transition:
    background-position 420ms ease,
    transform 220ms ease;
}

.demo-card:hover .demo-screen {
  background-position: 100% 100%;
  transform: scale(1.015);
}

.demo-pill {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-screen h3 {
  color: #fff;
  font-size: 1.6rem;
}

.demo-screen p {
  color: #dbeafe;
}

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

.outcome-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(8, 33, 63, 0.06);
}

.outcome-grid span:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.booking-section {
  background:
    linear-gradient(145deg, rgba(244, 122, 32, 0.08), transparent 44%),
    #fff;
}

.detail-list {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.detail-list p {
  margin-bottom: 10px;
}

.detail-list a {
  color: var(--blue);
  font-weight: 800;
}

.booking-form {
  padding: clamp(22px, 4vw, 34px);
  border-top: 6px solid var(--green);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: block;
  margin-bottom: 15px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 12px;
  border: 1px solid #bfcad7;
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  background: #fff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(7, 93, 184, 0.18);
  border-color: var(--blue);
}

.booking-form input:hover,
.booking-form select:hover,
.booking-form textarea:hover {
  border-color: rgba(7, 93, 184, 0.5);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--ink);
}

.final-cta h2 {
  margin-bottom: 0;
  color: #fff;
}

.final-cta .eyebrow {
  color: var(--yellow);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 34px;
  padding: 46px clamp(18px, 5vw, 72px);
  color: #dbe8f6;
  background: #06172c;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4a);
  box-shadow: 0 18px 42px rgba(18, 140, 74, 0.34);
  font-weight: 900;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.whatsapp-float::before {
  content: "WA";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 9px;
  border-radius: 50%;
  color: #128c4a;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(18, 140, 74, 0.42);
  filter: saturate(1.1);
}

.gallery-page {
  background:
    radial-gradient(circle at 14% 10%, rgba(31, 183, 214, 0.18), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(244, 202, 36, 0.22), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(7, 93, 184, 0.12), transparent 42%),
    linear-gradient(35deg, rgba(64, 166, 41, 0.14), transparent 36%),
    #fff;
}

.gallery-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #3b4b5f;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.gallery-feature {
  justify-self: center;
  width: min(100%, 420px);
  padding: 18px;
  border: 1px solid rgba(31, 183, 214, 0.32);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(7, 93, 184, 0.18);
  transform: rotate(1.5deg);
}

.gallery-feature img {
  width: 100%;
  max-height: min(58vh, 560px);
  object-fit: contain;
  border-radius: 8px;
}

.gallery-intro {
  padding-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin-inline: auto;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(8, 33, 63, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 183, 214, 0.45);
  box-shadow: var(--shadow-hover);
}

.gallery-card img {
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: contain;
  padding: 10px;
  background: #fff;
}

.gallery-card.public-media-card img {
  object-fit: contain;
}

.gallery-card > div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.gallery-card span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

.gallery-card p {
  margin-bottom: 8px;
  color: var(--muted);
}

.gallery-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 0;
}

.gallery-video-card {
  overflow: hidden;
  border: 1px solid rgba(31, 183, 214, 0.3);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(8, 33, 63, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.gallery-video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(64, 166, 41, 0.42);
  box-shadow: var(--shadow-hover);
}

.gallery-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  object-fit: contain;
}

.gallery-video-card > div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.gallery-video-card span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-video-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

.gallery-video-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.media-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.media-link {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.media-link:hover {
  color: var(--orange);
}

.gallery-posting-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 93, 184, 0.12), rgba(64, 166, 41, 0.12)),
    var(--soft);
}

.gallery-posting-note p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
}

.elite-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 252, 0.96) 62%, #ffffff 100%);
}

.elite-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(44px, 6vw, 88px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(8, 33, 63, 0.08), rgba(244, 202, 36, 0.13)),
    linear-gradient(28deg, rgba(31, 183, 214, 0.11), transparent 42%),
    #ffffff;
}

.elite-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: #394a5f;
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

.elite-actions,
.elite-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.elite-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(244, 202, 36, 0.24);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 93, 184, 0.28), transparent 46%),
    linear-gradient(20deg, rgba(244, 202, 36, 0.18), transparent 52%),
    #06172c;
  box-shadow: 0 30px 80px rgba(6, 23, 44, 0.28);
}

.elite-panel span,
.elite-step-grid span,
.elite-material-grid span {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.elite-panel > strong {
  display: block;
  max-width: 460px;
  margin: 10px 0 22px;
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.04;
}

.elite-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.elite-pillar-grid div {
  min-height: 138px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.elite-pillar-grid b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.9rem;
  font-weight: 900;
}

.elite-pillar-grid p {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
}

.elite-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.elite-intro .section-heading {
  text-align: left;
}

.elite-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.elite-audience-grid article,
.elite-offer-list article,
.elite-material-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 33, 63, 0.09);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.elite-audience-grid article {
  padding: 22px;
  border-left: 5px solid var(--blue);
}

.elite-audience-grid article:nth-child(2) {
  border-left-color: var(--orange);
}

.elite-audience-grid article:nth-child(3) {
  border-left-color: var(--green);
}

.elite-audience-grid article:nth-child(4) {
  border-left-color: #b48b18;
}

.elite-audience-grid article:hover,
.elite-offer-list article:hover,
.elite-material-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 139, 24, 0.42);
  box-shadow: var(--shadow-hover);
}

.elite-audience-grid h3,
.elite-offer-list h3,
.elite-material-grid h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.8vw, 1.4rem);
}

.elite-audience-grid p,
.elite-offer-list p,
.elite-material-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.elite-process {
  color: #dbe8f6;
  background:
    linear-gradient(135deg, rgba(7, 93, 184, 0.22), rgba(244, 202, 36, 0.08)),
    #06172c;
}

.elite-process .section-heading h2 {
  color: #fff;
}

.elite-process .section-heading p {
  color: #dbe8f6;
}

.elite-step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.elite-step-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.elite-step-grid h3 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.15;
}

.elite-step-grid p {
  margin: 0;
  color: #dbe8f6;
  font-size: 0.96rem;
}

.elite-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.elite-offer .section-heading {
  text-align: left;
}

.elite-offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.elite-offer-list article {
  padding: 22px;
}

.elite-materials {
  padding-top: 0;
}

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

.elite-material-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  padding: 22px;
}

.elite-material-grid span {
  color: var(--orange);
}

.elite-material-grid .button {
  align-self: end;
}

.elite-material-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
}

.elite-material-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.elite-material-actions a:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 93, 184, 0.28);
  box-shadow: 0 14px 30px rgba(8, 33, 63, 0.12);
}

.elite-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(180, 139, 24, 0.2), rgba(7, 93, 184, 0.16)),
    #08213f;
}

.elite-cta h2 {
  color: #fff;
}

.elite-cta p:not(.eyebrow) {
  max-width: 820px;
  margin-bottom: 0;
  color: #dbe8f6;
}

.demo-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(244, 202, 36, 0.2), transparent 24rem),
    radial-gradient(circle at 82% 18%, rgba(31, 183, 214, 0.18), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.demo-video-main {
  min-height: calc(100vh - 87px);
}

.demo-video-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.demo-video-copy p:not(.eyebrow) {
  max-width: 660px;
  color: #3b4b5f;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.demo-video-frame {
  position: relative;
  justify-self: center;
  width: min(100%, 980px);
  overflow: hidden;
  border: 1px solid rgba(31, 183, 214, 0.38);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(7, 93, 184, 0.2);
}

.demo-video-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(58vh, 560px);
  object-fit: contain;
  background: #fff;
}

.demo-player-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(7, 93, 184, 0.1), rgba(64, 166, 41, 0.12)),
    #ffffff;
  border-top: 1px solid rgba(31, 183, 214, 0.28);
}

.demo-player-status {
  min-width: 0;
}

.demo-player-status span {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-player-status strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.demo-player-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.demo-player-controls button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(7, 93, 184, 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 8px 20px rgba(8, 33, 63, 0.08);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.demo-player-controls button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 33, 63, 0.14);
}

.demo-player-controls button[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.demo-player-progress {
  grid-column: 1 / -1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(8, 33, 63, 0.09);
}

.demo-player-progress span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
  transition: width 260ms ease;
}

.demo-audio-card {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(31, 183, 214, 0.32);
  border-left: 6px solid var(--green);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(64, 166, 41, 0.11), rgba(244, 202, 36, 0.18)),
    #fff;
  box-shadow: 0 16px 38px rgba(8, 33, 63, 0.1);
}

.demo-audio-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.demo-audio-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.audio-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 132px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 10px 26px rgba(64, 166, 41, 0.25);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.audio-toggle:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  filter: saturate(1.12);
}

.audio-toggle[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.demo-audio-player {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 42px;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(8, 33, 63, 0.08);
}

.demo-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}

.demo-result-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 33, 63, 0.08);
}

.demo-result-grid h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.demo-result-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.55;
}

.demo-result-grid article:nth-child(2) {
  border-top-color: var(--orange);
}

.demo-result-grid article:nth-child(3) {
  border-top-color: var(--green);
}

.demo-result-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.demo-result-grid article:nth-child(2) span {
  background: var(--orange);
}

.demo-result-grid article:nth-child(3) span {
  background: var(--green);
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(6, 23, 44, 0.72);
}

.demo-modal.is-open {
  display: grid;
}

.demo-dialog {
  width: min(720px, 100%);
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.demo-close {
  float: right;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.demo-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 22px 0;
}

.demo-timeline span {
  padding: 12px 8px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.demo-timeline span:nth-child(2),
.demo-timeline span:nth-child(5) {
  background: var(--green);
}

.demo-timeline span:nth-child(3),
.demo-timeline span:nth-child(4) {
  background: var(--orange);
}

.demo-timeline span:nth-child(6) {
  background: var(--red);
}

.demo-timeline span:hover {
  transform: translateY(-5px);
  filter: brightness(1.1) saturate(1.18);
}

@keyframes arrow-flow {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 220% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .journey-panel {
    transform: none !important;
  }
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: #dbe8f6;
}

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

.footer-brand p {
  max-width: 440px;
  margin-bottom: 0;
}

@media (max-width: 1020px) {
  .hero,
  .gallery-hero,
  .elite-hero,
  .elite-intro,
  .elite-offer,
  .split,
  .demo-section,
  .demo-video-hero,
  .booking-section,
  .elite-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .journey-map {
    grid-template-columns: 1fr;
    grid-template-areas:
      "enquiry"
      "arrow1"
      "enrolment"
      "arrow2"
      "cmp"
      "arrow3"
      "hub"
      "pathways"
      "results"
      "arrowfinal"
      "outcome";
  }

  .journey-arrow {
    width: 5px;
    height: 34px;
    margin: 0 auto;
  }

  .journey-arrow::after {
    margin-top: auto;
    margin-left: -7px;
    border-top: 14px solid var(--cyan);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 0;
  }

  .feature-grid,
  .step-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .demo-result-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .elite-audience-grid,
  .elite-offer-list,
  .elite-material-grid,
  .gallery-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .elite-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-posting-note {
    grid-template-columns: 1fr;
  }

  .demo-audio-card {
    grid-column: auto;
  }

  .split > div:first-child,
  .booking-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-actions {
    margin-left: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .nav-demo {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .nav-elite {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .nav-gallery {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .nav-whatsapp {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .journey-tags,
  .demo-timeline {
    grid-template-columns: 1fr;
  }

  .branch-group {
    grid-template-columns: 1fr;
  }

  .journey-tags span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .problem-grid,
  .feature-grid,
  .step-row,
  .outcome-grid,
  .gallery-grid,
  .elite-audience-grid,
  .elite-offer-list,
  .elite-step-grid,
  .elite-material-grid,
  .gallery-video-grid {
    grid-template-columns: 1fr;
  }

  .elite-pillar-grid,
  .elite-material-actions,
  .elite-cta-actions {
    grid-template-columns: 1fr;
  }

  .elite-cta-actions {
    display: grid;
  }

  .audience-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .demo-audio-card {
    grid-template-columns: 1fr;
  }

  .demo-player-panel {
    grid-template-columns: 1fr;
  }

  .demo-player-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .demo-player-controls button {
    width: 100%;
    padding-inline: 8px;
    font-size: 0.84rem;
  }
}

@media (max-width: 460px) {
  .brand span {
    display: none;
  }

  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 16px;
    row-gap: 0;
  }

  .main-nav a {
    padding: 6px 0;
    white-space: nowrap;
  }

  .nav-demo,
  .nav-elite,
  .nav-gallery,
  .nav-whatsapp,
  .nav-cta {
    flex: 1;
  }

  .nav-cta {
    flex: 1 0 100%;
  }

  h1 {
    font-size: 2.25rem;
  }

  .hero-title {
    max-width: 100%;
    font-size: 2.18rem;
    line-height: 1.02;
  }

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

  .demo-player-controls {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 12px 14px;
    font-size: 0.9rem;
  }
}
