/* ============================================================
   CLERE GOLF HUB — Marketing Website v2
   Gold: #c9a020 | Navy:  #1c2b3a  |  Green: #8dc63f  |  
   ============================================================ */

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

:root {
  --navy:        #183348;
  --navy-mid:    #1e3d56;
  --navy-light:  #254a66;
  --green:       #96CE2D;
  --green-dark:  #399266;
  --gold:        #A28F59;
  --gold-dark:   #7A6B42;
  --white:       #ffffff;
  --light:       #f2f4f7;
  --text:        #d0dbe8;
  --muted:       #7a8fa6;
  --blue:        #72A8C7;
  --blue-dark:   #0f4d70;
  --orange:      #cd7517;
  --orange-dark: #72420fd6;
  --silver:      #8fa3b8; 
  --silver-dark: #6b8299;
  --font: 'Montserrat', sans-serif;
  --max-w: 1200px;
  --pad: 24px;
  --radius: 4px;
  --ease: 0.2s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--navy); color: var(--text); line-height: 1.6; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Utilities ───────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.text-green { color: var(--gold); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 10px 22px;
  font-family: var(--font);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn--green  { background: var(--green);  color: var(--navy);  border-color: var(--green); }
.btn--green:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn--gold   { background: var(--gold);   color: var(--white); border-color: var(--gold); }
.btn--gold:hover  { background: var(--gold-dark);  border-color: var(--gold-dark); }
.btn--outline      { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover{ background: var(--white); color: var(--navy); }
.btn--outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }
.btn--lg { padding: 14px 32px; font-size: .9rem; }
.btn--sm { padding: 6px 14px;  font-size: .72rem; }

/* ── Navigation ──────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--navy); }

/* Top bar */
.nav__topbar {
  padding: 4px 0;
}
.nav__topbar .container {
  display: flex;
  justify-content: flex-end;
}

/* Centered logo band */
.nav__logobar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
}
.nav__logo img { height: 44px; width: auto; }

/* Nav row */
.nav { border-bottom: 1px solid rgba(255,255,255,.08); }
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Links with pipe separators */
.nav__links {
  display: flex;
  align-items: stretch;
  margin: 0;
}
.nav__links > li {
  display: flex;
  align-items: center;
}
.nav__links > li + li {
  border-left: 1px solid rgba(255,255,255,.15);
}
.nav__link {
  display: flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.65);
  padding: 0 16px;
  height: 44px;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link--active { color: var(--white); border-bottom-color: var(--gold); }
.nav__link--gold    { color: var(--gold); }
.nav__link--gold:hover { color: #e0b52a; border-bottom-color: var(--gold); }
.nav__link--blue    { color: var(--blue); }
.nav__link--blue:hover { color: #a0c8e0; border-bottom-color: var(--blue); }
.nav__accent { height: 3px; background: var(--gold); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

/* Hero */
.hero {
  background: var(--navy);
  padding-bottom: 56px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 56px;
}

.hero__intro {
  max-width: 900px;
}

.hero__heading {
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}

.hero__statement {
  max-width: 820px;
  color: var(--gold);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.45;
}

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

.hero__showcase {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hero__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  background: var(--navy-light);
}

.hero__video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video-caption {
  padding: 14px 24px 0;
  color: var(--gold);
  font-size: .9rem;
  line-height: 1.5;
  text-align: center;
}

.hero__content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  margin-bottom: 28px;
}

.hero__features li {
  position: relative;
  padding-left: 18px;
  font-size: .88rem;
  margin-bottom: 8px;
  line-height: 1.45;
  color: var(--text);
}

.hero__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.hero__features-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.hero__features-header span {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .6px;
  white-space: nowrap;
}

.hero__features-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.hero__feature--gold {
  color: var(--gold) !important;
  font-weight: 700;
}

.hero__feature--gold::before {
  background: var(--gold) !important;
}

/* Gold last bullet */
.hero__feature--gold { color: var(--gold) !important; font-weight: 700;  }
.hero__feature--gold::before { background: var(--gold) !important; }


/* Logo carousel heading */
.logo-carousel-heading {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .4rem;
}
.logo-carousel-heading strong { color: var(--gold); font-weight: 700; }

/* Value prop white section */
.value-prop {
  background: #fff;
  padding: 56px 0;
  color: var(--navy);
}

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

.value-prop__image img {
  width: 100%;
  height: auto;
  display: block;
}

.value-prop__content {
  min-width: 0;
}

.value-prop__heading {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--navy);
  text-align: left;
  line-height: 1.4;
  margin-bottom: 24px;
}

.value-prop__heading strong {
  font-weight: 700;
}

.value-prop__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.value-prop__cols p {
  font-size: .82rem;
  line-height: 1.7;
  color: #3a4a5a;
}

.value-prop .btn--gold {
  display: inline-block;
  width: fit-content;
}

/* ── Section heading with lines ──────────────────────────── */
.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 14px;
}
.section-heading h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.section-heading__line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: var(--gold);
}
.section-sub {
  text-align: center;
  font-size: .88rem;
  color: var(--text);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.section-link {
  text-align: center;
  margin-top: 32px;
}
.section-link a {
  display: inline-block;
  padding: 14px 48px;
  background: var(--navy-light);
  border-radius: 40px;
  font-size: .88rem;
  color: var(--white);
  font-weight: 500;
}
.section-link a span, .section-link a strong { color: var(--gold); font-weight: 700; }

/* ── Bundles / Pricing ───────────────────────────────────── */
.bundles { background: var(--navy); color: var(--white); padding: 60px 0; }
.bundles .section-link { color: var(--white); }

.bundles__cols {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.bundles__col:last-child {
  grid-column: 2 / -1;
}
.bundles__col {
  padding: 28px 24px 0;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--white);
  text-align: center;
  background: var(--navy-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.bundles__col + .bundles__col { border-left: 1px solid rgba(255,255,255,.12); }
.bundles__col p { margin-bottom: 18px; }

/* Free column arrow */
.bundles__col:first-child::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 22px solid var(--gold);
  margin-top: auto;
  margin-bottom: 5px;
}

/* Pricing grid */
.pricing {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  align-items: start;
}
.pricing__card {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 5px solid transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: transform var(--ease), box-shadow var(--ease);
}
.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}
.pricing__card__top {
  margin: 10px 10px 0;
  background: var(--navy-light);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,.82);
  flex: 1;
  overflow: hidden;
}
.pricing__card__head {
  padding: 14px 16px 10px;
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.pricing__card__body {
  padding: 14px 16px;
  font-size: .68rem;
  color: var(--text);
}
.pricing__label {
  font-weight: 700;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
  margin-bottom: 8px;
}
.pricing__card__body ul li {
  padding: 3px 0 3px 16px;
  position: relative;
  color: var(--text);
}
.pricing__card__body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .7rem;
  top: 4px;
}
.pricing__card__foot {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing__foot__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricing__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.pricing__price small { font-size: .65rem; font-weight: 400; opacity: .7; }
.pricing__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.1;
}
.pricing__bundle {
  padding: 10px 12px;
  background: rgba(0,0,0,.22);
  border-radius: 6px;
  font-size: .72rem;
  color: rgba(255,255,255,.85);
}
.pricing__bundle p { margin-bottom: 4px; line-height: 1.4; }
.pricing__bundle-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}
.pricing__bundle-price small { font-size: .6rem; font-weight: 400; opacity: .7; }
.pricing__setup-disclaimer {
  margin: -8px 0 20px;
  text-align: center;
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
}

.pricing__card--club .pricing__bundle strong {
  color: var(--green);
}

.pricing__card--club-plus .pricing__bundle strong {
  color: var(--green-dark);
}

/* ── Pricing card colour themes ─────────────────────────── */
.pricing__card--entry {
  background: transparent;
  border-color: var(--white);
}
.pricing__card--entry .pricing__card__head,
.pricing__card--entry .pricing__price,
.pricing__card--entry .pricing__price small {
  color: var(--white);
  opacity: 1;
}

.pricing__card--essentials {
  background: transparent;
  border-color: var(--silver);
}
.pricing__card--essentials .pricing__card__head,
.pricing__card--essentials .pricing__price,
.pricing__card--essentials .pricing__price small {
  color: var(--silver);
  opacity: 1;
}

.pricing__card--club {
  background: transparent;
  border-color: var(--blue);
}
.pricing__card--club .pricing__card__head,
.pricing__card--club .pricing__price,
.pricing__card--club .pricing__price small,
.pricing__card--club .pricing__bundle-price,
.pricing__card--club .pricing__bundle-price small {
  color: var(--blue);
  opacity: 1;
}

.pricing__card--club-plus {
  background: transparent;
  border-color: var(--gold);
}
.pricing__card--club-plus .pricing__card__head,
.pricing__card--club-plus .pricing__price,
.pricing__card--club-plus .pricing__price small,
.pricing__card--club-plus .pricing__bundle-price,
.pricing__card--club-plus .pricing__bundle-price small {
  color: var(--gold);
  opacity: 1;
}

.pricing__card--enterprise {
  background: transparent;
  border-color: var(--orange);
}
.pricing__card--enterprise .pricing__card__head,
.pricing__card--enterprise .pricing__price,
.pricing__card--enterprise .pricing__price small {
  color: var(--orange);
  opacity: 1;
}

.pricing__card .pricing__foot__main .btn--outline-dark {
  color: var(--white);
  border-color: var(--white);
}

.pricing__card .pricing__foot__main .btn--outline-dark:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── Modules grid ────────────────────────────────────────── */
.modules { background: var(--navy-mid); padding: 60px 0; }
.modules__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.module-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-color: var(--navy-light);
  background-size: 150%;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform var(--ease), box-shadow var(--ease);
}

/* Bottom half colored overlays  */
.module-card.areas::before { background: #4E9B65; }
.module-card.tasks::before { background: #D4AE34; }
.module-card.health-safety::before { background: #3F82BB; }
.module-card.security::before { background: #C24144; }
.module-card.agronomy::before { background: #77A352; }
.module-card.ecology::before { background: #649B5A; }
.module-card.course-companion::before { background: #A28F59; }
.module-card.pinzone::before { background: #44916E; }

.module-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  z-index: 1;
}

.module-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.4); }

.module-card__name {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 12px 4px;
}

.module-card__cta {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 12px 12px;
  padding: 4px 10px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-size: .68rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .4px;
  transition: background var(--ease), border-color var(--ease);
}

.module-card__cta:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold);
}

/* ── Partners ────────────────────────────────────────────── */
.partners { background: var(--navy); padding: 60px 0; }
.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}
.partner-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.partner-card img { max-height: 48px; width: auto; margin: 0 auto; }
.partner-card p   { font-size: .78rem; color: var(--muted); }

/* ── Dashboard ───────────────────────────────────────────── */
.dashboard { background: var(--navy-mid); padding: 60px 0; }
.dashboard__shot {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 48px rgba(0,0,0,.5);
}
.dashboard__shot img { width: 100%; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 40px 0 28px;
  text-align: center;
}
.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}
.site-footer__social a { color: var(--muted); transition: color var(--ease); }
.site-footer__social a:hover { color: var(--white); }
.site-footer__contact { font-size: .83rem; color: var(--muted); margin-bottom: 8px; }
.site-footer__contact a { color: var(--muted); text-decoration: underline; }
.site-footer__contact a:hover { color: var(--white); }
.site-footer__copy { font-size: .75rem; color: rgba(255,255,255,.28); }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.page-hero__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.page-hero__heading span { color: var(--gold); }
.page-hero__sub {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 780px;
  margin-top: 14px;
}

/* ── Bundle sections ─────────────────────────────────────── */
.bundle-section { padding: 36px 0 0; }
.bundle-section + .bundle-section { border-top: 1px solid rgba(255,255,255,.06); }

.bundle__header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 2px;
}

/* ── Bundle Comparison Table ────────────────────────────── */
.bundle-comparison {
  overflow-x: auto;
  padding: 36px 0 8px;
}
.bc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.bc-feature-col { width: auto; }
.bc-plan {
  vertical-align: bottom;
  padding: 12px 6px;
}

.bc-plan__price {
  display: block;
  padding: 0;
  border: 0;
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

.bc-plan__price small {
  font-size: .75rem;
  font-weight: 400;
}

.bc-plan__bundle {
  display: block;
  min-height: 28px;
  margin: 3px 0;
  color: var(--white);
  font-size: .6rem;
  line-height: 1.2;
}

.bc-plan__bundle strong {
  color: var(--green);
  font-size: .75rem;
}

.bc-plan__bundle dark {
  color: var(--green-dark);
  font-size: .75rem;
}

.bc-plan__name {
  display: inline-block;
  padding: 5px 12px;
  border: 2px solid;
  border-radius: var(--radius);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.bc-plan--entry .bc-plan__name {
  color: var(--white);
  border-color: var(--white);
}

.bc-plan--essentials .bc-plan__name {
  color: var(--silver);
  border-color: var(--silver);
}

.bc-plan--club .bc-plan__name {
  color: var(--blue);
  border-color: var(--blue);
}

.bc-plan--club-plus .bc-plan__name {
  color: var(--gold);
  border-color: var(--gold);
}

.bc-plan--enterprise .bc-plan__name {
  color: var(--orange);
  border-color: var(--orange);
}

.bc-group th {
  padding: 4px 8px;
  background: rgba(255,255,255,.14);
  color: var(--white);
  font-size: .72rem;
  text-align: left;
}

.bc-value {
  padding: 6px;
  color: var(--white);
  font-size: .72rem;
  text-align: center;
}

.bc-check--bundle {
  color: var(--green);
  font-size: .8rem;
}

.bc-check.bc-check--bundle-dark {
  color: var(--green-dark);
  font-size: 1.1rem;
}

.bc-table-note {
  padding: 12px 0;
  color: var(--text);
  font-size: .62rem;
  text-align: left;
}
.bc-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.06); }
.bc-table tbody tr:nth-child(odd) { background: rgba(255,255,255,.025); }

.bc-feature {
  font-size: .8rem;
  color: var(--text);
  padding: 9px 12px;
  text-align: left;
}
.bc-check {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 9px 6px;
}
.bc-check--entry      { color: var(--white); }
.bc-check--essentials { color: var(--silver); }
.bc-check--advanced   { color: var(--blue); }
.bc-check--enterprise { color: var(--gold); }
.bc-check--pinzone    { color: var(--green); }

/* Pinzone Matrix */

.bc-table--pinzone {
  margin-top: 34px;
}

.bc-table--pinzone .bc-plan__price,
.bc-table--pinzone .bc-plan__name {
  color: var(--green);
}

.bc-table--pinzone .bc-plan--pinzone-pro .bc-plan__price,
.bc-table--pinzone .bc-plan--pinzone-pro .bc-plan__name {
  color: var(--green-dark);
}

.bc-table--pinzone .bc-plan--pinzone-basic .bc-plan__name {
  border-color: var(--green);
}

.bc-table--pinzone .bc-plan--pinzone-pro .bc-plan__name {
  border-color: var(--green-dark);
}

.bc-table--pinzone .bc-check.bc-check--bundle {
  color: var(--green);
  font-size: 1.1rem;
}

.bc-table--pinzone .bc-check.bc-check--bundle-dark {
  color: var(--green-dark) !important;
  font-size: 1.1rem;
}

.bc-table--pinzone tbody td:nth-child(2).bc-check {
  color: var(--green) !important;
  font-size: 1.1rem;
}

.bc-table--pinzone tbody td:nth-child(3).bc-check {
  color: var(--green-dark) !important;
  font-size: 1.1rem;
}

/* Pro Bundle */
.bundle__header--silver {
  background: var(--silver);
  border-color: var(--silver);
}
.bundle__header--silver .bundle__name,
.bundle__header--silver .bundle__price { color: var(--white); }

/* Advanced Bundle */
.bundle__header--blue {
  background: var(--blue);
  border-color: var(--blue);
}
.bundle__header--blue .bundle__name,
.bundle__header--blue .bundle__price { color: var(--white); }


/* Enterprise Bundle */
.bundle__header--gold {
  background: var(--gold);
  border-color: var(--gold);
}
.bundle__header--gold .bundle__name,
.bundle__header--gold .bundle__price { color: var(--white); }




/* Advanced Bundle */
.bundle__header--blue {
  background: var(--blue);
  border-color: var(--blue);
}
.bundle__header--orange .bundle__name,
.bundle__header--orange .bundle__price { color: var(--white); }

/* Pinzone Bundle */
.bundle__header--green {
  background: var(--green);
  border-color: var(--green);
}
.bundle__header--green .bundle__name,
.bundle__header--green .bundle__price { color: var(--white); }



.bundle__name {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .5px;
  flex: 1;
}
.bundle__price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}
.bundle__price small { font-size: .7rem; font-weight: 500; color: var(--white); }
.bundle__price__navy small { font-size: .7rem; font-weight: 500; color: var(--navy); }
.bundle__actions { display: flex; gap: 10px; align-items: center; }

.bundle__body {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.06);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 32px;
  overflow: hidden;
}
.bundle__intro {
  padding: 14px 20px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.bundle__intro span { color: var(--gold); }

/* Module rows inside a bundle */
.module-row {
  display: grid;
  grid-template-columns: 110px 1fr 160px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  min-height: 120px;
}
.module-row:last-child { border-bottom: none; }

.module-row__thumb {
  background-size: 150%;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.module-row__thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2);
}
.module-row__thumb span {
  position: relative;
  z-index: 1;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 8px;
  line-height: 1.2;
  letter-spacing: .3px;
}

.module-row__info {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.module-row__name {
  font-size: .8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.module-row__name--red    { color: #e05c5c; }
.module-row__name--orange { color: var(--gold); }
.module-row__name--blue   { color: var(--blue); }
.module-row__desc {
  font-size: .78rem;
  color: var(--text);
  line-height: 1.55;
}

.module-row__preview {
  border-left: 1px solid rgba(255,255,255,.05);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 8px;
  cursor: pointer;
}
.module-row__preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.module-row__play {
  position: relative;
  z-index: 1;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--ease), background var(--ease);
}
.module-row__preview:hover .module-row__play {
  background: rgba(255,255,255,.2);
  border-color: var(--white);
}
.module-row__preview__time {
  position: relative;
  z-index: 1;
  font-size: .62rem;
  color: rgba(255,255,255,.7);
}
.module-row__preview__label {
  position: relative;
  z-index: 1;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  letter-spacing: .3px;
  line-height: 1.3;
}

/* ── Bundles CTA ─────────────────────────────────────────── */
.bundles-cta {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 56px 0;
  text-align: center;
  margin-top: 16px;
}
.bundles-cta p {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 24px;
}
.bundles-cta p + p { margin-top: -8px; }
.bundles-cta a.inline { color: var(--gold); text-decoration: underline; }

/* ── Nav Dropdown ────────────────────────────────────────── */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  min-width: 200px;
  z-index: 2000;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  overflow: hidden;
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: .73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background var(--ease), color var(--ease);
}
.nav__dropdown-menu a:last-child { border-bottom: none; }
.nav__dropdown-menu a:hover { background: var(--navy-mid); color: var(--gold); }

/* ── Module sections (overview page) ────────────────────── */
.module-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  align-items: stretch;
}
.module-section--flip { direction: rtl; }
.module-section--flip > * { direction: ltr; }

.module-section__image {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 260px;
}
.module-section__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2);
}
.module-section__image .module-section__btns {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.module-section__content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy-mid);
  border-left: 4px solid var(--gold);
}
.module-section--flip .module-section__content {
  border-left: none;
  border-right: 4px solid var(--gold);
}
.module-section__content--red    { border-color: #e05c5c; }
.module-section__content--red.module-section--flip .module-section__content { border-color: #e05c5c; }
.module-section--flip .module-section__content--red  { border-right-color: #e05c5c; border-left: none; }
.module-section__content--gold   { border-color: var(--gold) !important; }
.module-section__content--green   { border-color: var(--green) !important; }
.module-section__content--blue   { border-color: var(--blue) !important; }
.module-section__content--dark   { border-color: var(--navy-light) !important; }

.module-section__tag {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 8px;
}
.module-section__title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.module-section__title span { color: var(--gold); }
.module-section__title span.red  { color: #e05c5c; }
.module-section__title span.gold { color: var(--gold); }
.module-section__title span.blue { color: var(--blue); }
.module-section__desc {
  font-size: .83rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.module-section__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
} 

/* ── Partner Module sections (overview page) ────────────────────── */
.partner-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 240px;
  justify-content: flex-end;
}

.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  border-radius: var(--radius);
  z-index: 1;
}

.partner-card__logo {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.partner-card .partner-card__category {
  font-size: 1rem;
  color: var(--white);
  position: relative;
  z-index: 2;
  margin: 0;
}

.partner-card .btn {
  position: relative;
  z-index: 2;
}

/* ── Module Detail Page ──────────────────────────────────── */
.module-hero {
  background: var(--navy);
  padding: 40px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.module-hero__inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
}
.module-hero__thumb {
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.module-hero__heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}
.module-hero__heading span { color: var(--gold); }
.module-hero__heading span.red  { color: #e05c5c; }
.module-hero__heading span.gold { color: var(--gold); }
.module-hero__heading span.blue { color: var(--blue); }
.module-hero__desc {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 860px;
  grid-column: 1 / -1;
}

/* Demo + pricing panel */
.module-demo {
  background: var(--navy-mid);
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.module-demo__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}
.module-demo__video {
  position: relative;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.module-demo__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
}
.module-demo__video__play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.module-demo__video__btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
}
.module-demo__video:hover .module-demo__video__btn { background: rgba(255,255,255,.2); }
.module-demo__video__label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.module-demo__panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.module-demo__price {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.module-demo__price:hover { background: var(--gold-dark); }
.module-demo__upsell {
  display: block;
  width: 100%;
  padding: 12px 14px;
  background: var(--gold);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius);
  line-height: 1.4;
}
.module-demo__upsell:hover { background: var(--gold-dark); }
.module-demo__upsell strong { display: block; font-size: .82rem; text-decoration: underline; }
.module-demo__book {
  display: block;
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: border-color var(--ease), background var(--ease);
}
.module-demo__book:hover { border-color: var(--white); background: rgba(255,255,255,.06); }

/* Screenshot gallery */
.module-gallery {
  background: var(--navy-mid);
  padding: 0 0 40px;
}
.module-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.module-gallery__item img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}
.module-gallery__caption {
  font-size: .78rem;
  color: var(--text);
  line-height: 1.6;
  margin-top: 10px;
}

/* Module CTA + upsell */
.module-cta {
  background: var(--navy);
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.module-cta p {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 600px;
  margin: 24px auto 0;
}
.module-cta p a { color: var(--gold); text-decoration: underline; }
.module-cta__divider {
  width: 200px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto 0;
}

/* ── About section ───────────────────────────────────────── */
.about-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.about-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.about-heading .gold { color: var(--gold) !important; }
.about-heading strong { font-weight: 800; }
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.about-col p {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-col p:last-child { margin-bottom: 0; }
.about-col strong { color: var(--white); }

/* ── FAQ section ─────────────────────────────────────────── */
.faq-section { padding: 60px 0; }
.faq-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
}
.faq-list { border-top: 1px solid rgba(255,255,255,.08); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  user-select: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '▶';
  font-size: .6rem;
  flex-shrink: 0;
  transition: transform var(--ease);
}
.faq-item[open] > summary::after { content: '▼'; }
.faq-answer {
  padding: 2px 0 20px;
}
.faq-answer__title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 12px;
}
.faq-answer p {
  font-size: .84rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 10px;
}
.faq-answer p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .about-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* --- Hero Bideos --- */
.hero__video {
  width: 100%;
}

.value-prop__heading {
  text-align: center;
}

.value-prop .btn--gold {
  display: block;
  margin: 0 auto;
}

.hero__inner {
  padding-top: 32px;
}

.hero__showcase {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hero__video {
  aspect-ratio: 8 / 3;
}

.hero__features {
  grid-template-columns: 1fr;
  column-gap: 0;
}

/* ── Contact page ────────────────────────────────────────── */
.contact-section { padding: 56px 0 72px; }

.contact-heading {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 20px;
}
.contact-heading strong { font-weight: 800; }

.contact-intro {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 14px;
}
.contact-phone {
  font-size: .88rem;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-phone a { color: var(--white); }
.contact-form-cta {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Top two-col: fields + textarea */
.contact-form__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-form__fields,
.contact-form__message {
  border: none;
  padding: 0;
  min-width: 0;
}
.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__message {
  display: flex;
  flex-direction: column;
}
.contact-form__legend {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  padding: 0;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: .82rem;
  transition: border-color var(--ease);
}
.contact-input {
  padding: 10px 12px;
}
.contact-textarea {
  flex: 1;
  min-height: 220px;
  padding: 10px 12px;
  resize: vertical;
}
.contact-input::placeholder,
.contact-textarea::placeholder { color: var(--muted); }
.contact-input:focus,
.contact-textarea:focus { outline: none; border-color: var(--gold); }

/* Bottom two-col: interests + optional */
.contact-form__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.contact-form__interests,
.contact-form__customer,
.contact-form__consent {
  border: none;
  padding: 0;
}
.contact-form__subheading {
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.4;
  padding: 0;
}
.contact-form__optional-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-form__optional-heading {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 0;
}
.contact-form__optional-label {
  font-size: .83rem;
  color: var(--text);
  margin-bottom: 10px;
}
.contact-form__consent-note {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 10px;
}

/* Checkboxes */
.contact-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 8px;
  font-size: .84rem;
  color: var(--text);
}
.contact-check--top { align-items: flex-start; }
.contact-check--top span { line-height: 1.55; }
.contact-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

/* Submit row */
.contact-form__submit {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 768px) {
  .contact-form__top,
  .contact-form__bottom { grid-template-columns: 1fr; }
  .contact-textarea { min-height: 140px; }
}

/* CASE STUDIES PAGES */

  .case-studies-intro {
    padding: 42px 0 30px;
    border-bottom: 1px solid var(--gold);
  }

  .case-studies-intro p {
    max-width: 820px;
    color: var(--text);
    font-size: .86rem;
    font-weight: 600;
    line-height: 1.55;
  }

  .case-studies-section {
    padding-top: 32px;
  }

  .case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 34px;
  }

  .case-study__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: var(--navy-light);
  }

  .case-study__image > span {
    color: var(--muted);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .case-study__image::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, .8),
      rgba(0, 0, 0, .05) 65%
    );
    pointer-events: none;
  }

  .case-study__caption {
    position: absolute;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-bottom: 1px solid var(--white);
    padding-bottom: 5px;
  }

  .case-study__caption small {
    color: #e0b52a;
    font-size: .58rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .case-study__caption strong {
    overflow: hidden;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .case-study p {
    padding: 0 12px;
    color: var(--white);
    font-size: .76rem;
    font-weight: 600;
    line-height: 1.55;
  }

  .case-studies-quote {
    margin: 0 0 32px;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    padding: 17px 0 19px;
    color: var(--gold);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.4;
  }

  .case-studies-quote__text {
    margin: 0;
  }
  
  .case-studies-quote__attribution {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: var(--white);
    font-size: .78rem;
    font-style: normal;
  }
  
  .case-studies-quote__logo {
    width: 72px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
  }
  
  .case-studies-quote__attribution cite {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-style: normal;
    line-height: 1.3;
  }
  
  .case-studies-quote__attribution cite strong {
    color: var(--white);
    font-size: .78rem;
  }
  
  .case-studies-quote__attribution cite span {
    color: var(--muted);
    font-size: .68rem;
  }
  
  .case-studies-quote__linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-left: 4px;
    border-radius: 3px;
    background: #0a66c2;
    color: var(--white);
    font-size: .75rem;
    font-weight: 800;
    line-height: 1;
  }
  
  .case-studies-quote__linkedin:hover {
    background: #004182;
  }

  @media (max-width: 768px) {
    .case-studies-intro {
      padding: 30px 0 24px;
    }

    .case-studies-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .case-study p {
      padding: 0;
    }

    .case-studies-quote {
      font-size: 1.1rem;
    }
  }


/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing { grid-template-columns: repeat(3, 1fr); }
  .modules__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 24px 24px;
    gap: 18px;
    border-bottom: 2px solid var(--gold);
    z-index: 999;
  }

  /* Homepage hero */
  .hero__inner {
    padding-top: 32px;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: stretch;
  }

  .hero__devices {
    order: 1;
    width: 100%;
    justify-self: center;
  }

  .hero__content {
    order: 2;
  }

  /* Homepage pricing */
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Bundle introduction panels */
  .bundles {
    overflow: hidden;
  }

  .bundles__cols {
    width: 100%;
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .bundles__col:last-child {
    grid-column: auto;
  }

  .bundles__col + .bundles__col {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  /* Main five-plan comparison table */
  .bundle-comparison {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px 0 8px;
  }

  .bundle-comparison .bc-table:not(.bc-table--pinzone) {
    min-width: 620px;
  }

  /* PinZone matrix mobile layout */
  .bc-table--pinzone {
    width: 100%;
    min-width: 0 !important;
    table-layout: fixed;
  }

  .bc-table--pinzone .bc-feature-col {
    width: 54%;
  }

  .bc-table--pinzone th:not(.bc-feature-col),
  .bc-table--pinzone td:not(.bc-feature) {
    width: 23%;
  }

  .bc-table--pinzone .bc-plan {
    padding: 8px 3px;
  }

  .bc-table--pinzone .bc-plan__price {
    font-size: .58rem;
    line-height: 1.2;
  }

  .bc-table--pinzone .bc-plan__price small {
    font-size: .5rem;
  }

  .bc-table--pinzone .bc-plan__name {
    display: block;
    width: 100%;
    padding: 4px 2px;
    font-size: .52rem;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
  }

  .bc-table--pinzone .bc-feature {
    padding-left: 6px;
    padding-right: 6px;
    font-size: .68rem;
    line-height: 1.35;
  }

  /* Bundle headers and module content */
  .bundle-section,
  .bundle__header,
  .bundle__body {
    width: 100%;
    max-width: 100%;
  }

  .bundle__header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 16px;
  }

  .bundle__name {
    flex: 1 1 100%;
  }

  .bundle__price {
    flex: 0 0 auto;
  }

  .bundle__actions {
    flex: 1 1 auto;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
  }

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

  .bundle__body {
    overflow: hidden;
  }

  .module-row {
    width: 100%;
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .module-row__preview {
    display: none;
  }

  .module-row__info {
    min-width: 0;
    padding: 14px 12px;
  }

  .module-row__thumb {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .module-row__desc {
    overflow-wrap: anywhere;
  }

  /* Other responsive sections */
  .partners__grid {
    grid-template-columns: 1fr;
  }

  .module-section,
  .module-section--flip {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .module-section__image {
    min-height: 220px;
  }

  .module-section__content {
    border-left: none !important;
    border-right: none !important;
    border-top: 4px solid var(--gold);
  }

  .module-hero__inner {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }

  .module-demo__inner {
    grid-template-columns: 1fr;
  }

  .module-gallery__grid {
    grid-template-columns: 1fr;
  }

  .module-card::before {
    height: 40%;
  }
}

@media (max-width: 480px) {
  .pricing { grid-template-columns: 1fr; }
  .modules__grid { grid-template-columns: 1fr 1fr; }
}