@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/public-sans-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/public-sans-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/public-sans-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/public-sans-700.woff2') format('woff2');
}

:root {
  --font-primary: 'Public Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --color-primary: #00A7DF;
  --color-orange: #F49209;
  --color-green: #8DBC28;
  --color-text: #0F172A;
  --color-muted: #475569;
  --color-border: #E2E8F0;
  --color-bg: #F8FAFC;
  --color-card: #FFFFFF;
  --container-width: 1140px;
  --radius-global: 12px;
  --radius-button: 12px;
  --button-height: 48px;
  --section-pad-desktop: 96px;
  --section-pad-tablet: 72px;
  --section-pad-mobile: 48px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --space-9: 72px;
  --space-10: 80px;
  --base-font-size: 16px;
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-focus: 0 0 0 3px color-mix(in srgb, var(--color-primary) 35%, transparent);
}

* {
  box-sizing: border-box;
}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-card);
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--color-primary);
}

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

.site-content {
  overflow: clip;
}

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

.section {
  padding-block: var(--section-pad-desktop);
}

.card {
  background: var(--color-card);
  border-radius: var(--radius-global);
  box-shadow: var(--shadow-card);
}

.media-4-3 {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.media-16-9 {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.media-4-3 > img,
.media-16-9 > img,
.media-4-3 > a > img,
.media-16-9 > a > img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--color-primary);
  color: var(--color-card);
  padding: var(--space-2);
  border-radius: var(--radius-global);
}

.skip-link:focus {
  left: var(--space-2);
  top: var(--space-2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 2.3vw, 2.75rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.625rem, 1.9vw, 2.25rem);
  font-weight: 700;
}

h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

p {
  margin-block: 0;
}

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

.section__head {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.section__head p {
  margin-top: var(--space-1);
  color: var(--color-muted);
}

.section__head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
}

.section__head--split a {
  color: var(--color-primary);
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  white-space: nowrap;
  transition: 180ms ease;
}

.btn--small {
  min-height: 40px;
  font-size: 0.8125rem;
  padding-inline: 18px;
}

.btn--primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-card);
}

.btn--primary:hover {
  background: color-mix(in srgb, var(--color-primary) 88%, var(--color-text));
  border-color: color-mix(in srgb, var(--color-primary) 88%, var(--color-text));
  color: var(--color-card);
}

.btn--ghost {
  background: var(--color-card);
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
.button:hover,
.btn:hover,
.single_add_to_cart_button:hover {
  transform: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.btn--primary:hover,
a.btn--primary:hover,
button.btn--primary:hover,
input.btn--primary:hover,
.single_add_to_cart_button:hover {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-card) !important;
}

.btn--ghost:hover,
a.btn--ghost:hover,
button.btn--ghost:hover,
input.btn--ghost:hover {
  background: var(--color-card) !important;
  border-color: var(--color-border) !important;
  color: var(--color-text) !important;
}

.btn-primary:hover,
.gd-form__submit:hover,
.gd-bottom-cta__action .btn:hover {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #ffffff !important;
  transform: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.btn--dark {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-card);
}

.btn--light {
  background: var(--color-card);
  border-color: var(--color-card);
  color: var(--color-primary);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  background: var(--color-card);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__top {
  min-height: 92px;
}

.site-header__top-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.site-header__logo {
  flex: 0 0 auto;
}

.site-header__logo-img {
  width: auto;
  max-height: 56px;
}

.site-header__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.site-header__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3);
  margin-left: auto;
}

.site-header__language {
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--color-text);
  font-weight: 500;
  min-height: 40px;
}

.site-header__tool-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
}

.site-header__tool-icon {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.site-header__tool-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.site-header__phone-link .site-header__tool-icon {
  color: var(--color-green);
}

.site-header__cart {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-button);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__cart svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.site-header__mobile-toggle {
  display: none;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  color: var(--color-text);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  font-size: 1.35rem;
  align-items: center;
  justify-content: center;
}

.site-header__nav {
  border-top: 1px solid var(--color-border);
}

.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 78px;
}

.site-header__menu > li {
  margin: 0;
  padding: 0;
}

.site-header__menu > li > a {
  display: inline-block;
  padding: var(--space-1) 0;
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 3px solid transparent;
}

.site-header__menu > li.current-menu-item > a,
.site-header__menu > li.current-menu-ancestor > a,
.site-header__menu > li > a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.site-header__menu .sub-menu {
  display: none;
}

.hero {
  background: color-mix(in srgb, var(--color-primary) 13%, var(--color-card));
  padding: 40px 0 56px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-3);
  align-items: stretch;
}

.hero__content {
  padding: var(--space-4);
  box-shadow: none;
  border: 1px solid color-mix(in srgb, var(--color-primary) 16%, var(--color-border));
}

.hero__content .lead {
  margin-top: var(--space-2);
  color: var(--color-muted);
  max-width: 56ch;
}

.hero__actions {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
  flex-wrap: wrap;
}

.hero__rating {
  margin-top: var(--space-3);
  color: var(--color-muted);
  font-size: 0.9375rem;
}

.hero__visuals {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: var(--space-3);
}

.hero__image {
  border-radius: var(--radius-global);
  overflow: hidden;
}

.hero__promo {
  overflow: hidden;
}

.hero__promo-image {
  aspect-ratio: 16 / 6;
}

.hero__promo-body {
  padding: var(--space-3);
}

.hero__promo-body p {
  margin-top: 6px;
  margin-bottom: var(--space-2);
  color: var(--color-muted);
}

.products-grid {
  display: grid;
  gap: var(--space-3);
}

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

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

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}

.product-card__image {
  border-bottom: 1px solid var(--color-border);
}

.product-card__body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.product-card__body h3 a {
  color: var(--color-text);
}

.product-card__body p {
  color: var(--color-muted);
  font-size: 0.875rem;
  min-height: 2.8em;
}

.product-card__price {
  color: var(--color-text);
  font-weight: 700;
  font-size: 1rem;
}

.product-card__price ins {
  text-decoration: none;
}

.product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-1);
  margin-top: auto;
}

.product-card__group-link {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
}

.trust-strip {
  padding-bottom: var(--section-pad-desktop);
}

.trust-strip__title {
  text-align: center;
  margin-bottom: var(--space-4);
  font-size: 1.25rem;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: var(--space-2);
  align-items: center;
}

.trust-strip__item {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: 1px solid var(--color-border);
  padding: var(--space-2);
}

.trust-strip__item img {
  object-fit: contain;
  max-height: 40px;
}

.certificate-band {
  padding-bottom: var(--section-pad-desktop);
}

.certificate-band__inner {
  background: color-mix(in srgb, var(--color-primary) 13%, var(--color-card));
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: 20px var(--space-3);
}

.certificate-band__image img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.certificate-band__text p {
  color: var(--color-muted);
  margin-top: 6px;
}

.promise-strip {
  padding-bottom: var(--section-pad-desktop);
}

.promise-strip h2 {
  margin-bottom: var(--space-4);
}

.promise-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.promise-strip__item {
  min-height: 88px;
  box-shadow: none;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: var(--space-2);
}

.promise-strip__item img {
  width: 22px;
  height: 22px;
}

.promise-strip__item span {
  font-size: 0.875rem;
  font-weight: 600;
}

.moneyback-strip {
  padding-bottom: var(--section-pad-desktop);
}

.moneyback-strip__inner {
  background: var(--color-primary);
  color: var(--color-card);
  border-radius: var(--radius-global);
  padding: var(--space-3);
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: var(--space-3);
}

.moneyback-strip__badge img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.moneyback-strip__content h2 {
  color: var(--color-card);
  font-size: 1.75rem;
}

.moneyback-strip__content p {
  margin-top: 6px;
  color: color-mix(in srgb, var(--color-card) 82%, transparent);
}

.testimonials {
  padding-top: 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.testimonial {
  padding: var(--space-3);
  box-shadow: none;
  border: 1px solid var(--color-border);
}

.testimonial__stars {
  color: var(--color-orange);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial p {
  margin-top: 10px;
  color: var(--color-muted);
}

.testimonial h3 {
  margin-top: var(--space-2);
}

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

.steps {
  background: color-mix(in srgb, var(--color-primary) 10%, var(--color-card));
  border-radius: var(--radius-global);
  padding: 44px 0;
  margin-top: var(--space-8);
  margin-bottom: var(--section-pad-desktop);
}

.steps h2 {
  margin-bottom: var(--space-4);
}

.steps__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3);
}

.steps__image {
  overflow: hidden;
}

.steps__list {
  display: grid;
  gap: var(--space-2);
}

.steps__item {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-3);
  box-shadow: none;
  border: 1px solid var(--color-border);
}

.steps__left {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.steps__left img {
  width: 24px;
  height: 24px;
}

.steps__item strong {
  color: var(--color-orange);
  font-size: 0.8125rem;
}

.group-training {
  padding-top: 0;
}

.group-training__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: center;
}

.group-training__content p {
  margin-top: var(--space-2);
  color: var(--color-muted);
}

.group-training__content ul {
  margin: var(--space-3) 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.group-training__content li {
  color: var(--color-text);
  font-weight: 500;
  padding-left: 28px;
  position: relative;
}

.group-training__content li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-green) 30%, var(--color-card));
  border: 2px solid var(--color-green);
  position: absolute;
  top: 3px;
  left: 0;
}

.blog-preview {
  padding-top: 0;
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-3);
}

.blog-preview__featured,
.blog-preview__item {
  border: 1px solid var(--color-border);
  box-shadow: none;
  overflow: hidden;
}

.blog-preview__featured h3,
.blog-preview__featured p {
  padding-inline: var(--space-3);
}

.blog-preview__featured h3 {
  margin-top: var(--space-3);
}

.blog-preview__featured p {
  margin-top: var(--space-1);
  margin-bottom: var(--space-3);
  color: var(--color-muted);
}

.blog-preview__list {
  display: grid;
  gap: var(--space-2);
  align-content: start;
}

.blog-preview__item {
  display: grid;
  grid-template-columns: 160px 1fr;
}

.blog-preview__item-image {
  aspect-ratio: 4 / 3;
}

.blog-preview__item > div {
  padding: var(--space-2);
}

.blog-preview__item p {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.bottom-cta {
  padding-bottom: var(--section-pad-desktop);
}

.bottom-cta__inner {
  background: var(--color-primary);
  color: var(--color-card);
  padding: 18px var(--space-3);
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: var(--space-3);
}

.bottom-cta__image img {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.bottom-cta__content h2 {
  color: var(--color-card);
}

.bottom-cta__content p {
  margin-top: 6px;
  color: color-mix(in srgb, var(--color-card) 82%, transparent);
}

.faq {
  padding-top: 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  gap: var(--space-4);
}

.faq__intro p {
  margin-top: var(--space-2);
  color: var(--color-muted);
  margin-bottom: var(--space-3);
}

.faq__items {
  display: grid;
  gap: var(--space-2);
}

.faq__item {
  border: 1px solid var(--color-border);
  box-shadow: none;
  padding: 0;
}

.faq__item[open] {
  border-color: color-mix(in srgb, var(--color-primary) 45%, var(--color-border));
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0 var(--space-3);
  font-weight: 600;
}

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

.faq__item summary::after {
  content: '+';
  margin-left: auto;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.faq__item[open] summary::after {
  content: '−';
}

.faq__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.faq__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.faq__answer {
  color: var(--color-muted);
  padding: 0 var(--space-3) var(--space-3);
}

.site-footer {
  margin-top: var(--section-pad-mobile);
  background: color-mix(in srgb, var(--color-text) 95%, var(--color-card));
  color: var(--color-card);
  padding-top: var(--space-7);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
}

.site-footer__brand-link {
  color: var(--color-card);
  font-size: 1.375rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: var(--space-3);
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.site-footer__badge-image {
  width: auto;
  max-height: 48px;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.site-footer__column h2 {
  color: var(--color-card);
  margin-bottom: var(--space-2);
  font-size: 1rem;
}

.site-footer__column ul,
.site-footer__default-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.site-footer__column a,
.site-footer__default-menu a {
  color: color-mix(in srgb, var(--color-card) 80%, transparent);
  font-size: 0.9375rem;
}

.site-footer__bottom {
  border-top: 1px solid color-mix(in srgb, var(--color-card) 18%, transparent);
  padding-block: var(--space-3);
  text-align: center;
  color: color-mix(in srgb, var(--color-card) 70%, transparent);
  font-size: 0.875rem;
}

.page-default,
.archive-default,
.single-default,
.search-default,
.error-404,
.no-results {
  padding-block: var(--section-pad-desktop);
}

.page-default h1,
.archive-default h1,
.single-default h1,
.search-default h1,
.error-404 h1,
.no-results h1 {
  margin-bottom: var(--space-3);
}

.default-content,
.archive-loop {
  max-width: 820px;
}

.archive-item,
.search-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-global);
  padding: var(--space-3);
  margin-bottom: var(--space-2);
}

.archive-item p,
.search-item p {
  color: var(--color-muted);
  margin-top: 8px;
}

.entry-meta {
  color: var(--color-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-2);
}

.wp-block-image img,
.entry-content img {
  border-radius: var(--radius-global);
}

@media (max-width: 1199px) {
  .products-grid--4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .blog-preview__item {
    grid-template-columns: 128px 1fr;
  }

  .site-header__tools {
    gap: var(--space-2);
  }

  .site-header__tool-link {
    font-size: 0.875rem;
  }
}

@media (max-width: 991px) {
  .section,
  .trust-strip,
  .certificate-band,
  .promise-strip,
  .moneyback-strip,
  .bottom-cta {
    padding-block: var(--section-pad-tablet);
  }

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

  .site-header {
    position: relative;
  }

  .site-header__top {
    min-height: 80px;
  }

  .site-header__top-inner {
    min-height: 80px;
  }

  .site-header__tools {
    display: none;
  }

  .site-header__mobile-toggle {
    display: inline-flex;
  }

  .site-header__nav {
    border-top: 1px solid var(--color-border);
    display: none;
  }

  .site-header.is-open .site-header__nav {
    display: block;
  }

  .site-header__menu {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: var(--space-2) 0;
    gap: 2px;
  }

  .site-header__menu > li {
    width: 100%;
  }

  .site-header__menu > li > a {
    width: 100%;
    padding: var(--space-2) var(--space-1);
    border-bottom-width: 2px;
    font-size: 1rem;
  }

  .hero {
    padding-block: var(--space-4);
  }

  .hero__grid,
  .steps__grid,
  .group-training__grid,
  .blog-preview__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero__visuals {
    grid-template-rows: auto;
  }

  .products-grid--3,
  .products-grid--4,
  .testimonials__grid,
  .trust-strip__grid,
  .promise-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .certificate-band__inner,
  .moneyback-strip__inner,
  .bottom-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .blog-preview__item {
    grid-template-columns: 1fr;
  }

  .site-footer__top,
  .site-footer__links {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 680px) {
  .section,
  .trust-strip,
  .certificate-band,
  .promise-strip,
  .moneyback-strip,
  .bottom-cta {
    padding-block: var(--section-pad-mobile);
  }

  .products-grid--3,
  .products-grid--4,
  .testimonials__grid,
  .trust-strip__grid,
  .promise-strip__grid,
  .product-card__actions {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .product-card__body,
  .testimonial,
  .faq__item summary,
  .faq__answer {
    padding-inline: var(--space-2);
  }

  .section__head--split {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .btn {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
  }
}

/* Global Figma header/footer */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.topbar {
  min-height: 74.54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: min-height 0.25s ease, padding 0.25s ease;
}

.logo img {
  width: 285px;
  height: auto;
  transition: width 0.25s ease;
}

.logo-text {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: #0f172a;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.mobile-actions,
.mobile-header-bar,
.mobile-nav-backdrop,
.mobile-utility-links {
  display: none;
}

.mobile-lang-switcher,
.mobile-phone-link {
  display: none;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  color: #17212f;
  line-height: 24px;
}

.top-link img {
  width: 24px;
  height: 24px;
}

.lang-switcher {
  position: relative;
}

.lang-switcher summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  line-height: 24px;
}

.lang-switcher summary::-webkit-details-marker {
  display: none;
}

.lang-switcher summary::after {
  content: "";
  margin-left: 8px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #17212f;
  border-bottom: 1.5px solid #17212f;
  transform: rotate(45deg);
}

.lang-switcher[open] summary::after {
  transform: rotate(-135deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -8px;
  min-width: 112px;
  background: #fff;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  z-index: 5;
  padding: 6px;
}

.lang-menu a {
  display: block;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 15px;
}

.lang-menu a:hover {
  background: #eef8fd;
}

.cart-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cart-btn img {
  width: 36px;
  height: 36px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #19a0d8;
  color: #ffffff;
  font-size: 11px;
  line-height: 18px;
  font-weight: 600;
  text-align: center;
  padding: 0 5px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
}

.cart-count.is-empty {
  display: none;
}

body.has-cart-modal-open {
  overflow: hidden;
}

.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
}

.cart-modal[hidden] {
  display: none;
}

.cart-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.cart-modal__dialog {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 100vw);
  height: 100vh;
  max-height: 100vh;
  background: #ffffff;
  border-radius: 0;
  box-shadow: -20px 0 48px rgba(15, 23, 42, 0.1);
  overflow: hidden auto;
  display: flex;
  flex-direction: column;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.28s ease;
}

.cart-modal.is-open .cart-modal__backdrop {
  opacity: 1;
}

.cart-modal.is-open .cart-modal__dialog {
  transform: translate3d(0, 0, 0);
}

.cart-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 26px 20px;
  border-bottom: 1px solid #dde7f0;
  background: #ffffff;
}

.cart-modal__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 600;
  color: #152b59;
  letter-spacing: -0.02em;
}

.cart-modal__header-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.cart-modal__count-label {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  color: #152b59;
}

.cart-modal__close {
  border: 0;
  background: transparent;
  color: #152b59;
  font-size: 22px;
  line-height: 1;
  width: 28px;
  height: 28px;
  cursor: pointer;
  padding: 0;
  font-weight: 300;
  opacity: 0.9;
}

.cart-modal__body {
  padding: 18px 26px 18px;
  overflow: auto;
  flex: 1 1 auto;
  background: #ffffff;
}

.cart-modal__body.is-loading {
  position: relative;
  min-height: 180px;
}

.cart-modal__body.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  border: 3px solid #d9e6ef;
  border-top-color: #19a0d8;
  animation: cct-spin 0.85s linear infinite;
}

.cart-modal__empty {
  border: 1px solid #e5edf4;
  border-radius: 18px;
  padding: 20px 18px;
  font-size: 16px;
  line-height: 1.45;
  color: #475467;
  background: #f9fbfc;
}

.cart-modal__product {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border: 0;
  border-bottom: 1px solid #e4edf5;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cart-modal__product:last-of-type {
  margin-bottom: 0;
}

.cart-modal__image {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #dce6f0;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.cart-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-modal__content {
  min-width: 0;
}

.cart-modal__top-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-items: start;
}

.cart-modal__top-row h6 {
  margin: 0;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 600;
  color: #152b59;
  letter-spacing: -0.01em;
}

.cart-modal__top-row h4 {
  margin: 0;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 600;
  color: #152b59;
  white-space: nowrap;
}

.cart-modal__bottom-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-modal__delete {
  border: 0;
  background: transparent;
  color: #d94f4f;
  width: 16px;
  height: 16px;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cart-modal__delete svg {
  width: 16px;
  height: 16px;
  display: block;
}

.cart-modal__delete.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.cart-modal__qty {
  font-size: 14px;
  line-height: 1.35;
  color: #536987;
}

.cart-modal__totals {
  margin-top: 4px;
  padding-top: 12px;
}

.cart-modal__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-modal__total-row h6 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: #152b59;
  font-weight: 600;
}

.cart-modal__footer {
  padding: 0 26px 24px;
  background: #ffffff;
}

.cart-modal__checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 0;
  min-height: 52px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  background: #19a0d8;
  color: #ffffff;
  width: 100%;
  border: 1px solid #19a0d8;
  box-shadow: none;
}

.cart-modal__checkout.is-hidden {
  display: none;
}

.cart-modal__checkout:hover,
.cart-modal__checkout:focus,
.cart-modal__checkout:active {
  background: #19a0d8 !important;
  border-color: #19a0d8 !important;
  color: #ffffff !important;
  transform: none !important;
  box-shadow: 0 10px 24px rgba(25, 160, 216, 0.18) !important;
  filter: none !important;
}

a[data-product_id].is-loading,
button[data-product_id].is-loading {
  opacity: 0.7;
  pointer-events: none;
}

@keyframes cct-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .cart-modal__dialog {
    width: min(92vw, 380px);
  }

  .cart-modal__header {
    padding: 22px 18px 16px;
  }

  .cart-modal__title {
    font-size: 20px;
  }

  .cart-modal__body {
    padding: 16px 18px;
  }

  .cart-modal__product {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 14px;
  }

  .cart-modal__image {
    width: 74px;
    height: 74px;
  }

  .cart-modal__top-row h6 {
    font-size: 15px;
  }

  .cart-modal__delete {
    width: 16px;
    height: 16px;
  }

  .cart-modal__delete svg {
    width: 16px;
    height: 16px;
  }

  .cart-modal__top-row h4,
  .cart-modal__total-row h6 {
    font-size: 15px;
  }

  .cart-modal__footer {
    padding: 0 18px 20px;
  }

  .cart-modal__checkout {
    min-height: 50px;
    font-size: 16px;
  }
}

.main-nav {
  border-top: 0;
}

.nav-wrap {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 6px;
  transition: min-height 0.25s ease, padding-bottom 0.25s ease;
}

.nav-wrap a {
  font-size: 14px;
  font-weight: 400;
  color: #1b2431;
  border-bottom: 3px solid transparent;
  padding: 12px 0 0;
  white-space: nowrap;
  transition: padding 0.25s ease, font-size 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.site-header.is-scrolled .topbar {
  min-height: 64px;
}

.site-header.is-scrolled .logo img {
  width: 252px;
}

.site-header.is-scrolled .nav-wrap {
  min-height: 38px;
  padding-bottom: 2px;
}

.site-header.is-scrolled .nav-wrap a {
  padding: 8px 0 0;
}

.nav-wrap a.is-active,
.nav-wrap a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.site-footer {
  margin-top: 36px;
  background: #000000;
  color: #fff;
  min-height: 0;
  border-radius: 24px 24px 0 0;
}

.site-footer .container {
  width: min(1120px, calc(100% - 48px));
}

.footer-grid {
  padding: 66px 0 64px;
  display: grid;
  grid-template-columns: 358px minmax(0, 646px);
  justify-content: space-between;
  gap: 64px;
}

.footer-brand {
  min-height: 308px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  width: 206px;
  height: auto;
}

.footer-social {
  margin-top: 88px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-label {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: #ffffff;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-social-link:hover,
.footer-social-link.is-active {
  background: #00a7df;
  border-color: #00a7df;
  color: #fff;
}

.footer-social-link:focus-visible {
  outline: 2px solid #00a7df;
  outline-offset: 2px;
}

.footer-navs {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(258px, 1fr);
  justify-content: space-between;
  gap: 56px;
  padding-top: 10px;
}

.footer-menu h4 {
  margin: 0 0 28px;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-weight: 500;
  position: relative;
  line-height: 1.2;
}

.footer-menu h4::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  margin-top: 8px;
}

.footer-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
  transition: color 200ms ease;
}

.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu-list li {
  margin: 0;
  padding: 0;
}

.footer-menu-list li:last-child a {
  margin-bottom: 0;
}

.footer-menu a:hover {
  color: #00a7df;
}

.footer-menu a:focus-visible {
  color: #00a7df;
  outline: none;
}

.footer-badges {
  margin-top: 108px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-badges img {
  height: 57px;
  width: auto;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.2;
  padding: 36px 0 34px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #00a7df;
}

.footer-bottom a:hover {
  color: #38c7f4;
}

.footer-bottom a:focus-visible {
  outline: 2px solid #00a7df;
  outline-offset: 2px;
}

.footer-mobile-only,
.footer-mobile-stack {
  display: none;
}

@media (max-width: 1100px) {
  .topbar {
    min-height: 68px;
    gap: 14px;
  }

  .logo img {
    width: 230px;
  }

  .top-actions {
    gap: 18px;
  }

  .top-link,
  .lang-switcher summary {
    font-size: 14px;
  }

  .site-footer .container {
    width: min(1120px, calc(100% - 36px));
  }

  .footer-grid {
    grid-template-columns: minmax(240px, 250px) minmax(0, 1fr);
    gap: 36px;
    padding: 48px 0 42px;
  }

  .footer-brand {
    min-height: 0;
  }

  .footer-menu.footer-menu-specialty.footer-mobile-only {
    display: none;
  }

  .footer-logo img {
    width: 180px;
  }

  .footer-social {
    margin-top: 40px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-badges {
    margin-top: 42px;
    gap: 10px;
  }

  .footer-badges img {
    height: 46px;
  }

  .footer-navs {
    gap: 36px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer-menu a {
    margin-bottom: 18px;
  }
}

@media (max-width: 991px) {
  .site-header {
    position: sticky;
  }

  .topbar {
    min-height: 58px;
    padding: 8px 0;
    display: block;
  }

  .desktop-logo,
  .top-actions {
    display: none !important;
  }

  .mobile-header-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 32px;
  }

  .mobile-logo {
    width: 100%;
    min-width: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
  }

  .mobile-logo img {
    width: 136px;
  }

  .mobile-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: nowrap;
    margin-left: auto;
    align-self: center;
  }

  .mobile-phone-link,
  .mobile-actions .cart-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .mobile-phone-link img,
  .mobile-actions .cart-btn img {
    width: 24px;
    height: 24px;
  }

  .mobile-phone-link,
  .mobile-actions .cart-btn {
    background: transparent;
    border: 0;
    padding: 0;
  }

  .mobile-nav-toggle {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #111111;
  }

  .mobile-nav-toggle span {
    width: 24px;
    height: 2.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-header.is-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav-head,
  .mobile-nav-close {
    display: none;
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(3px);
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1000;
  }

  .site-header.is-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.26s ease;
    background: #ffffff;
    box-shadow: -16px 0 48px rgba(15, 23, 42, 0.16);
    border-left: 1px solid #e8eef3;
    z-index: 1001;
    overflow-y: auto;
  }

  .site-header.is-open .main-nav {
    display: block;
    transform: translate3d(0, 0, 0);
  }

  .nav-wrap {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 82px 20px 24px;
  }

  .mobile-nav-head {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    justify-content: flex-end;
  }

  .mobile-nav-close {
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    padding: 0;
    position: relative;
    color: #17212f;
  }

  .mobile-nav-close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
  }

  .mobile-nav-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mobile-nav-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-wrap a {
    white-space: normal;
  }

  .nav-wrap > a {
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid #edf2f7;
    border-top: 0;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
    color: #17212f;
  }

  .nav-wrap > a.is-active,
  .nav-wrap > a:hover {
    background: transparent;
    border-color: #edf2f7;
    color: #17212f;
  }

  .nav-wrap > a.is-active {
    border: 0;
    box-shadow: none;
    color: var(--color-primary);
  }

  .mobile-utility-links {
    display: inline-block;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid #edf2f7;
    width: 100%;
  }

  .mobile-utility-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: #17212f;
    padding: 6px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mobile-utility-link img {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }

  .mobile-utility-link span {
    text-align: left;
  }

  .site-footer {
    border-radius: 24px 24px 0 0;
    margin-top: 28px;
  }

  .site-footer .container {
    width: min(1120px, calc(100% - 32px));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 32px 0 28px;
  }

  .footer-logo img {
    width: 170px;
  }

  .footer-social {
    margin-top: 22px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .footer-social-label {
    font-size: 16px;
    width: 100%;
  }

  .footer-badges {
    margin-top: 24px;
  }

  .footer-badges img {
    height: 42px;
  }

  .footer-navs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding-top: 0;
  }

  .footer-menu h4 {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .footer-menu a {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .footer-bottom {
    padding: 24px 0 26px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .site-header .container.topbar {
    width: min(1120px, calc(100% - 20px));
  }

  .topbar {
    min-height: 40px;
    padding: 0 !important;
    display: block;
  }

  .mobile-header-bar {
    gap: 6px;
  }

  .mobile-logo img {
    width: 118px;
  }

  .mobile-actions {
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .mobile-phone-link,
  .mobile-actions .cart-btn,
  .mobile-nav-toggle {
    width: 36px;
    height: 36px;
  }

  .mobile-phone-link img,
  .mobile-actions .cart-btn img {
    width: 24px;
    height: 24px;
  }

  .mobile-nav-toggle span {
    width: 24px;
  }

  .main-nav {
    width: min(300px, 88vw);
  }

  .nav-wrap {
    padding: 66px 16px 20px;
  }

  .mobile-nav-head {
    top: 16px;
    right: 16px;
  }

  .nav-wrap > a {
    padding: 12px 14px;
    font-size: 14px;
  }

  .mobile-utility-link {
    font-size: 13px;
    padding: 6px 0;
  }

  .site-footer .container {
    width: min(1120px, calc(100% - 40px));
  }

  .footer-grid {
    gap: 18px;
    padding: 18px 0 18px;
  }

  .footer-brand {
    min-height: 0;
  }

  .footer-logo img {
    width: 190px;
  }

  .footer-desktop-only {
    display: none !important;
  }

  .footer-mobile-only,
  .footer-mobile-stack {
    display: block;
  }

  .footer-menu.footer-menu-specialty.footer-mobile-only {
    display: none !important;
  }

  .footer-navs {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px 22px;
    padding-top: 0;
    align-items: start;
  }

  .footer-menu.footer-menu-specialty.footer-mobile-only {
    display: none !important;
  }

  .footer-menu-clinical {
    grid-column: 1 / -1;
  }

  .footer-menu h4 {
    margin-bottom: 14px;
    font-size: 17px;
  }

  .footer-menu h4::after {
    display: none;
  }

  .footer-menu a {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .footer-social {
    margin-top: 0;
    display: block;
  }

  .footer-social-label {
    width: auto;
    display: block;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 600;
  }

  .footer-social-links {
    gap: 10px;
  }

  .footer-social-link {
    width: 42px;
    height: 42px;
  }

  .footer-badges {
    margin-top: 14px;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer-badges img {
    height: 44px;
  }

  .footer-bottom {
    padding: 14px 0 16px;
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (max-width: 576px) {
  .site-header .container.topbar {
    width: min(1120px, calc(100% - 16px));
  }

  .topbar {
    min-height: 36px;
    padding: 0 !important;
    display: block;
  }

  .mobile-header-bar {
    gap: 6px;
  }

  .mobile-logo img {
    width: 108px;
  }

  .mobile-actions {
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
  }

  .mobile-phone-link,
  .mobile-actions .cart-btn,
  .mobile-nav-toggle {
    width: 34px;
    height: 34px;
  }

  .mobile-phone-link img,
  .mobile-actions .cart-btn img {
    width: 24px;
    height: 24px;
  }

  .cart-count {
    top: -3px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 10px;
    padding: 0 4px;
  }

  .main-nav {
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
  }

  .nav-wrap {
    padding: 62px 14px 18px;
  }

  .mobile-nav-head {
    top: 14px;
    right: 14px;
  }

  .nav-wrap > a {
    font-size: 14px;
    padding: 11px 13px;
  }

  .mobile-utility-link {
    font-size: 13px;
    gap: 8px;
    padding: 6px 0;
  }

  .main-nav {
    width: min(286px, 90vw);
  }

  .nav-wrap {
    padding: 70px 16px 20px;
  }
}

@media (max-width: 375px) {
  .site-header .container.topbar {
    width: calc(100% - 14px);
  }

  .topbar {
    min-height: 34px;
    padding: 0 !important;
    display: block;
  }

  .mobile-header-bar {
    gap: 5px;
  }

  .mobile-logo img {
    width: 100px;
  }

  .mobile-actions {
    gap: 7px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
  }

  .mobile-phone-link,
  .mobile-actions .cart-btn,
  .mobile-nav-toggle {
    width: 32px;
    height: 32px;
  }

  .mobile-phone-link img,
  .mobile-actions .cart-btn img {
    width: 23px;
    height: 23px;
  }

  .mobile-nav-toggle span {
    width: 22px;
  }

  .mobile-utility-links {
    gap: 10px;
  }

  .main-nav {
    width: min(270px, 92vw);
  }

  .nav-wrap {
    padding: 58px 12px 16px;
  }

  .mobile-nav-head {
    top: 12px;
    right: 12px;
  }
}


/* Category template styles merged from category-figma.css */
.category-page-main {
  background: #ffffff;
}

.category-page-main .container {
  width: min(1140px, calc(100% - 40px));
}

.category-page-main .btn {
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.category-page-main .btn-primary {
  background: #00a7df;
  border-color: #00a7df;
  color: #ffffff;
}

.category-page-main .btn-ghost {
  background: #ffffff;
  border-color: #00a7df;
  color: #111827;
}

.category-page-main .section {
  padding: 54px 0;
}

.category-page-main .section-tight {
  padding: 48px 0;
}

.category-page-main .card-grid {
  display: grid;
  gap: 24px;
}

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

.course-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
}

.course-media {
  position: relative;
  display: block;
  aspect-ratio: 312 / 146;
  overflow: hidden;
  background: #f3f6f9;
}

.course-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.course-ribbon {
  position: absolute;
  right: -28px;
  top: 20px;
  width: 110px;
  height: 19px;
  background: #8dbc28;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: rotate(45deg);
  transform-origin: center center;
}

.course-card .card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.chip {
  margin: 0 0 10px;
  display: inline-flex;
  height: 18px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: #f49209;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  width: max-content;
}

.course-card .card-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 500;
  color: #111827;
}

.course-card .desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #374151;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 62px;
}

.course-meta-row {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.course-link {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 600;
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.course-link.is-disabled {
  cursor: default;
}

.course-card .price-row {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
  white-space: nowrap;
}

.course-card .sale {
  color: #0a0f17;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}

.course-card .strike {
  color: #475569;
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  text-decoration: line-through;
}

.course-card .card-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.course-card .card-actions .btn {
  min-height: 38px;
  height: 38px;
  padding: 0 10px;
  font-size: 13px;
  border-radius: 8px;
}

.trusted-strip {
  background: #ffffff;
  padding: 18px 0 24px;
}

.trusted-inner {
  width: min(1140px, calc(100% - 48px));
}

.trusted-logos {
  display: block;
}

.trusted-logos.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.trusted-logo-card {
  width: 168px;
  max-width: 100%;
  height: 82px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 12px 14px;
}

.trusted-logo-card img {
  width: auto;
  max-width: 100%;
  height: 48px;
  max-height: 48px;
  object-fit: contain;
}

.testimonials {
  padding: 46px 0 52px;
  background: #ffffff;
}

.testimonials-rating {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testimonials-rating img {
  width: 30px;
  height: 30px;
}

.rating-score {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: #111827;
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f49209;
  font-size: 18px;
  line-height: 1;
}

.rating-text {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: #1f2937;
}

.testimonial-slider-wrap {
  margin-top: 34px;
  position: relative;
}

.testimonial-slider .owl-stage {
  display: flex;
}

.testimonial-slider .owl-item {
  display: flex;
}

.testimonial-card {
  width: 100%;
  min-height: 296px;
  border: 1px solid #dceaf1;
  border-radius: 22px;
  background: #fdfefe;
  padding: 30px 34px 28px;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  margin: 0;
  color: #f49209;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.5px;
}

.testimonial-quote {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.45;
  color: #111827;
/*   min-height: 118px; */
}

.testimonial-card h4 {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0;
  color: #111827;
}

.testimonial-role {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  color: #1f2937;
}

.testimonial-slider-wrap .owl-nav {
  margin: 0;
}

.testimonial-slider-wrap .owl-nav button.owl-prev,
.testimonial-slider-wrap .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.testimonial-slider-wrap .owl-nav button.owl-prev {
  left: -70px;
  background: #eef5f5;
  color: #00a7df;
}

.testimonial-slider-wrap .owl-nav button.owl-next {
  right: -70px;
  background: #00a7df;
  color: #ffffff;
}

.testimonial-slider-wrap .owl-nav button span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
}

.testimonial-slider-wrap .owl-dots {
  margin-top: 28px;
}

.testimonial-slider-wrap .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: #d3e4eb;
}

.testimonial-slider-wrap .owl-dots .owl-dot.active span {
  background: #00a7df;
}

.faq-list {
  display: grid;
  gap: 12px;
  padding-bottom: 14px;
}

.faq-item {
  border: 1px solid #e5ebf0;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: #0f172a;
  min-height: 58px;
  padding: 14px 22px 14px 14px;
  position: relative;
}

.faq-trigger > img {
  width: 24px;
  height: 25px;
  flex: 0 0 24px;
}

.faq-trigger > span {
  padding-right: 44px;
}

.faq-trigger::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #111827;
  border-bottom: 2px solid #111827;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 220ms ease;
}

.faq-item.is-open .faq-trigger::after {
  transform: translateY(-40%) rotate(-135deg);
}

.faq-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.faq-panel p {
  margin: 0;
  padding: 0 0 0 44px;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  max-width: 760px;
}

.category-hero {
  background: #ebfaff;
  padding: 0;
}

.category-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 620px;
  align-items: center;
}

.category-hero-copy h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #111827;
}

.category-hero-copy .hero-eyebrow {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.35;
  color: #1f2937;
}

.category-hero-copy .hero-desc,
.category-hero-copy .hero-sub {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.42;
  color: #111827;
}

.category-hero-copy .btn {
  margin-top: 24px;
  min-height: 46px;
  border-radius: 10px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 400;
}

.category-hero-media {
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: transparent;
}

.category-hero-media img {
  width: 620px;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  align-self: flex-end;
}

.category-courses {
  background: #ffffff;
  padding: 34px 0 30px;
}

.category-courses .courses-grid {
  margin-top: 0;
}

.category-load-more {
  padding-top: 18px;
  text-align: center;
}

.category-load-more .btn {
  min-height: 40px;
  border-radius: 10px;
  padding: 0 22px;
  font-size: 18px;
  font-weight: 500;
}

.category-trusted {
  padding: 32px 0 40px;
  background: #ebfaff;
}

.category-trusted .trusted-inner {
  width: min(1140px, calc(100% - 40px));
}

.category-trusted h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  color: #1f2937;
}

.category-trusted .trusted-logos {
  margin-top: 0;
}

.category-trusted .trusted-logo-card {
  width: 154px;
  height: 74px;
  border-radius: 10px;
  padding: 10px 12px;
}

.category-trusted .trusted-logo-card img {
  height: 42px;
  max-height: 42px;
}

.category-why {
  background: #ffffff;
  padding: 42px 0 38px;
}

.category-why-quote {
  margin: 0 auto;
  max-width: 1060px;
  border: 1px dashed #79c8df;
  border-radius: 12px;
  padding: 16px 26px;
  text-align: center;
}

.category-why-quote p {
  margin: 0;
  color: #1f2937;
  font-size: 17px;
  line-height: 1.42;
}

.category-why-head {
  margin-top: 34px;
  text-align: center;
}

.category-why-head h2 {
  margin: 0 auto;
  max-width: 760px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.category-why-head p {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.3;
  color: #6b7280;
}

.category-why-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.category-why-card {
  border-radius: 16px;
  min-height: 156px;
  padding: 18px 12px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-why-card--blue {
  background: #d7effb;
}

.category-why-card--sand {
  background: #f4e9d4;
}

.category-why-card--green {
  background: #e4edd0;
}

.category-why-card span {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-why-card span img {
  width: 60px;
  height: 60px;
}

.category-why-card h3 {
  margin: auto 0 0;
  padding-top: 8px;
  min-height: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 15px;
  line-height: 1.28;
  font-weight: 500;
}

.category-why-card p {
  margin: 8px 0 0;
  min-height: 45px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 11px;
  line-height: 1.35;
  color: #334155;
}

.category-why-cta {
  margin-top: 22px;
  text-align: center;
}

.category-why-cta .btn {
  min-height: 42px;
  border-radius: 10px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 500;
}

.category-group {
  padding: 34px 0 40px;
}

.category-group-inner {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.category-group-media {
  margin: 0;
/*   width: 500px; */
/*   max-width: 500px; */
/*   height: 594px; */
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
article.category-group-copy {
    margin-right: 20px;
}

.category-group-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.category-group-copy h2 {
  margin: 0;
  max-width: 640px;
  font-size: 32px;
  line-height: 1.16;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.category-group-copy > p {
  margin: 22px 0 0;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.55;
  color: #111827;
}

.category-group-copy ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.category-group-copy li {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
}

.category-group-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: url("../images/group-bullet-tick.png") center / contain no-repeat;
}

.category-testimonials {
  padding: 30px 0 36px;
  background: #ebfaff;
}

.category-rating {
  margin-top: 8px;
}

.category-testimonials h2 {
  margin: 12px 0 0;
  text-align: center;
  font-size: 32px;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.category-testimonials .testimonials-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.category-testimonials .testimonials-rating img {
  width: 30px;
  height: 30px;
}

.category-testimonials .rating-score {
  margin: 0;
  color: #111827;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

.category-testimonials .rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f49209;
  font-size: 18px;
  line-height: 1;
}

.category-testimonials .rating-text {
  margin: 0;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.category-testimonials .testimonial-slider-wrap {
  margin-top: 34px;
  position: relative;
}

.category-testimonials .testimonial-slider .owl-stage,
.category-testimonials .testimonial-slider .owl-item {
  display: flex;
}

.category-testimonials .testimonial-card {
  width: 100%;
/*   min-height: 296px; */
  background: #ffffff;
  border: 1px solid #dceaf1;
  border-radius: 22px;
  padding: 30px 34px 28px;
  display: flex;
  flex-direction: column;
}

.category-testimonials .testimonial-stars {
  margin: 0;
  color: #f59e0b;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.5px;
}

.category-testimonials .testimonial-quote {
  margin: 20px 0 0;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.45;
  min-height: 80px;
}

.category-testimonials .testimonial-card h4 {
  margin: 24px 0 0;
  color: #111827;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
}

.category-testimonials .testimonial-role {
  margin: 8px 0 0;
  color: #1f2937;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
}

.category-testimonials .testimonial-slider-wrap .owl-nav {
  position: absolute;
  left: -62px;
  right: -62px;
  top: 37%;
  transform: translateY(-50%);
  margin: 0;
  pointer-events: none;
}

.category-testimonials .testimonial-slider-wrap .owl-nav button.owl-prev,
.category-testimonials .testimonial-slider-wrap .owl-nav button.owl-next {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 0;
}

.category-testimonials .testimonial-slider-wrap .owl-nav button.owl-prev {
  left: 0;
  color: #00a7df;
  background: #eef5f5;
}

.category-testimonials .testimonial-slider-wrap .owl-nav button.owl-next {
  right: 0;
  color: #ffffff;
  background: #00a7df;
}

.category-testimonials .testimonial-slider-wrap .owl-nav button span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
}

.category-testimonials .testimonial-slider-wrap .owl-nav button svg {
  width: 22px;
  height: 22px;
  display: block;
}

.category-testimonials .testimonial-slider-wrap .owl-dots {
  margin-top: 28px;
}

.category-testimonials .testimonial-slider-wrap .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: #d3e4eb;
}

.category-testimonials .testimonial-slider-wrap .owl-dots .owl-dot.active span {
  background: #00a7df;
}

.category-cta {
  background: #ffffff;
  padding: 100px 0 54px;
}

.category-cta-inner {
  min-height: 148px;
  border-radius: 20px;
  background: linear-gradient(90deg, #08a9df 0%, #22c4ee 100%);
  padding: 0 28px 0 0;
  display: grid;
  grid-template-columns: 352px minmax(0, 1fr) 230px;
  align-items: center;
  gap: 22px;
  overflow: visible;
  position: relative;
  isolation: isolate;
}

.category-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("../images/hero-pattern.jpg");
  background-size: 560px 300px;
  background-repeat: repeat;
  background-position: center center;
  opacity: 0.2;
  z-index: 0;
}

.category-cta-inner figure {
  margin: 0;
  height: 210px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  align-self: end;
  overflow: visible;
  margin-top: -74px;
  padding-left: 20px;
}

.category-cta-inner figure img {
  width: 300px;
  height: auto;
  display: block;
}

.category-cta-copy,
.category-cta-btn,
.category-cta-inner figure {
  position: relative;
  z-index: 1;
}

.category-cta-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.category-cta-copy p {
  margin: 8px 0 0;
  max-width: 720px;
  color: #f3fbff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}

.category-cta-btn {
  min-height: 52px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #00a7df;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 214px;
  padding: 0 14px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.category-faq {
  padding: 24px 0 42px;
}

.category-faq-grid {
  display: grid;
  grid-template-columns: 322px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.category-faq-aside h2 {
  margin: 0;
  max-width: 320px;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.category-faq-aside p {
  margin: 26px 0 0;
  font-size: 14px;
  line-height: 1.52;
  color: #1f2937;
}

.category-faq-aside .btn {
  margin-top: 30px;
  min-height: 48px;
  border-radius: 14px;
  padding: 0 34px;
  font-size: 15px;
  font-weight: 600;
}

.category-faq-list {
  display: grid;
  gap: 18px;
}

.category-faq-list .faq-item {
  border: 1px solid #edf2f3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.2);
}

.category-faq-list .faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 30px 1fr 18px;
  gap: 14px;
  align-items: center;
  text-align: left;
  color: #0f172a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
}

.category-faq-list .faq-trigger img {
  width: 30px;
  height: 30px;
  display: block;
}

.category-faq-list .faq-trigger::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #111827;
  border-bottom: 2px solid #111827;
  transform: rotate(45deg);
  justify-self: end;
  transition: transform 220ms ease;
}

.category-faq-list .faq-item.is-open .faq-trigger::after {
  transform: rotate(-135deg);
}

.category-faq-list .faq-panel p {
  margin: 0;
  padding: 0 28px 0 68px;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.58;
  max-width: 920px;
}

/* Group discount page */
.group-discount-page {
  background: #ffffff;
}

.group-discount-page .container {
  width: min(1140px, calc(100% - 40px));
}

.gd-hero {
  background-color: #ebfaff;
  background-image: radial-gradient(circle at center, rgba(0, 167, 223, 0.11) 1.8px, transparent 1.8px);
  background-size: 52px 52px;
  padding: 46px 0 0;
}

.gd-hero .container {
  width: min(1140px, calc(100% - 40px));
  max-width: none;
}

.gd-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 65%) minmax(0, 35%);
  gap: 28px;
  align-items: end;
  justify-content: space-between;
}

.gd-hero__card {
  width: 100%;
  max-width: none;
  background: #ffffff;
  border: 1px solid #e3eef4;
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  padding: 34px 38px 26px;
}

.gd-hero__card h1 {
  margin: 0;
  color: #0f172a;
  max-width: 780px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.gd-hero__points,
.gd-hero__list,
.gd-bullets {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.gd-hero__points li {
  color: #0f172a;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.gd-hero__list li,
.gd-bullets li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.5;
}

.gd-bullet-icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.gd-hero__media {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 590px;
}

.gd-hero__figure {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 640px;
}

.gd-hero__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.gd-hero__badge {
  position: absolute;
  left: -22px;
  bottom: 192px;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d8ebf5;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  color: #111827;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
}

.gd-hero__badge::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url("../images/group-bullet-tick.png") center / contain no-repeat;
}

.gd-hero__form {
  margin-top: 28px;
}

.gd-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.gd-form__grid label {
  display: grid;
  gap: 8px;
}

.gd-form__grid label span {
  color: #0f172a;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
}

.gd-form__grid input {
  width: 100%;
  min-height: 56px;
  border: 1px solid #d4dde6;
  border-radius: 14px;
  background: #ffffff;
  padding: 0 20px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.2;
  outline: none;
}

.gd-form__grid input::placeholder {
  color: #64748b;
}

.gd-form__grid input:focus {
  border-color: #00a7df;
  box-shadow: 0 0 0 3px rgba(0, 167, 223, 0.12);
}

.gd-form__submit {
  width: 100%;
  margin-top: 20px;
  min-height: 56px;
  justify-content: center;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 600;
}

.gd-form__submit.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.gd-form__message {
  min-height: 20px;
  margin: 12px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
}

.gd-form__message.is-success {
  color: #15803d;
}

.gd-form__message.is-error {
  color: #b91c1c;
}

.gd-benefits {
  padding: 0 0 18px;
  background: #ffffff;
}

.gd-benefits__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.gd-benefits__item {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  color: #111827;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}

.gd-benefits__icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}

.gd-trusted {
  padding: 26px 0 34px;
}

.gd-trusted h2 {
  margin: 0 0 20px;
  text-align: center;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.gd-overview {
  padding: 24px 0 34px;
}

.gd-compliance {
  padding: 30px 0 28px;
  background: #ffffff;
}

.gd-compliance__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.gd-compliance__media {
  margin: 0;
}

.gd-compliance__media img {
  width: 100%;
  display: block;
  border-radius: 15px;
  aspect-ratio: 574 / 416;
  object-fit: cover;
  object-position: center center;
}

.gd-compliance__content h2 {
  margin: 0 0 24px;
  color: #0f172a;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

.gd-compliance__card {
  min-height: 75px;
  border-radius: 10px;
  background: #ebfaff;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.gd-compliance__card--wide {
  grid-column: 1 / -1;
}

.gd-compliance__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.gd-compliance__card p {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.gd-overview__grid,
.gd-dashboard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.gd-overview__media,
.gd-dashboard__media {
  margin: 0;
}

.gd-overview__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

.gd-overview__content h2,
.gd-dashboard__content h2 {
  margin: 0;
  color: #0f172a;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.gd-overview__content > p,
.gd-dashboard__content > p {
  margin: 18px 0 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.6;
}

.gd-overview__stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gd-stat-card {
  min-height: 94px;
  border-radius: 16px;
  background: #ebfaff;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gd-stat-card strong {
  color: #00a7df;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.gd-stat-card span {
  margin-top: 8px;
  color: #0f172a;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.gd-dashboard {
  padding: 34px 0;
}

.gd-dashboard--left {
  background: linear-gradient(135deg, #ffffff 0%, #f6fbff 100%);
}

.gd-dashboard--right {
  background: linear-gradient(135deg, #f9fcff 0%, #ffffff 100%);
}

.gd-dashboard__media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.gd-dashboard__content .btn {
  margin-top: 22px;
  min-height: 46px;
  border-radius: 10px;
  padding: 0 24px;
}

.gd-steps {
  padding: 46px 0 52px;
}

.gd-steps .steps-header {
  margin-bottom: 24px;
}

.gd-steps .steps-header h2 {
  font-size: 32px;
  line-height: 1.12;
  font-weight: 600;
}

.gd-steps .steps-header p {
  margin-top: 10px;
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
}

.gd-courses {
  padding-top: 18px;
  padding-bottom: 30px;
}

.gd-cert-band {
  padding-top: 0;
}

.gd-courses .bundles-head h2 {
  font-size: 32px;
  line-height: 1.12;
  font-weight: 600;
}

.gd-courses .bundles-head p {
/*   max-width: 720px; */
  margin-inline: auto;
}

.group-discount-page .bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.group-discount-page .bundle-card {
  min-height: 100%;
  background: #fff;
  border: 1px solid #e2edf3;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.group-discount-page .bundle-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.group-discount-page .bundle-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.group-discount-page .bundle-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.group-discount-page .bundle-title {
  margin: 0;
  color: #0f172a;
  font-size: 19px;
  line-height: 1.28;
  font-weight: 700;
}

.group-discount-page .bundle-desc {
  margin: 12px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

.group-discount-page .bundle-meta-row {
  margin-top: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.group-discount-page .bundle-link {
  color: #0f172a;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  text-decoration: underline;
}

.group-discount-page .bundle-link.is-disabled {
  cursor: default;
}

.group-discount-page .bundle-price {
  text-align: right;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.group-discount-page .bundle-sale {
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.group-discount-page .bundle-strike {
  color: #64748b;
  font-size: 13px;
  line-height: 1;
  text-decoration: line-through;
}

.group-discount-page .bundle-actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.group-discount-page .bundle-actions .btn {
  min-height: 48px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  padding: 0 16px;
}

.group-discount-page .bundle-add {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.group-discount-page .bundle-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.group-discount-page .bundle-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.45;
}

.group-discount-page .bundle-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--color-orange);
  position: relative;
  flex: 0 0 18px;
  margin-top: 1px;
}

.group-discount-page .bundle-check::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--color-orange);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.group-discount-page .steps-wrap {
  background-color: #ebfaff;
  background-image: radial-gradient(circle at center, rgba(0, 167, 223, 0.1) 1.6px, transparent 1.6px);
  background-size: 44px 44px;
  padding: 26px 0;
}

.group-discount-page .steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.group-discount-page .steps-image-wrap {
  margin: 0;
  height: 100%;
}

.group-discount-page .steps-image-wrap > img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 28px;
  aspect-ratio: 1156 / 816;
  object-fit: cover;
}

.group-discount-page .steps-list {
  gap: 12px;
}

.group-discount-page .step-item {
  position: relative;
  border: 1px solid #d7e8f0;
  background: #fcfcfd;
  border-radius: 15px;
  min-height: 108px;
  padding: 8px 16px 8px 12px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.group-discount-page .step-pill {
  position: absolute;
  right: 36px;
  top: -17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.group-discount-page .step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f0f2f4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.group-discount-page .step-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.group-discount-page .step-item h3 {
  margin: 0;
  color: #05070d;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 600;
}

.group-discount-page .cert-band {
  padding: 20px 0 18px;
  background: #ebfaff;
}

.group-discount-page .cert-inner {
  display: grid;
  grid-template-columns: 320px 1px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 194px;
}

.group-discount-page .cert-media {
  margin: 0;
  width: 320px;
  height: 216px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.group-discount-page .cert-inner img {
  width: 287px;
  height: 200px;
  object-fit: contain;
}

.group-discount-page .cert-divider {
  width: 1px;
  height: 122px;
  background: rgba(0, 167, 223, 0.24);
}

.group-discount-page .cert-copy {
  min-width: 0;
}

.group-discount-page .cert-inner h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.group-discount-page .cert-inner p {
  margin: 12px 0 0;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.34;
  font-weight: 400;
}

.group-discount-page .cert-btn {
  min-height: 56px;
  height: 56px;
  min-width: 166px;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 600;
}

.gd-bottom-cta {
  background: #ffffff;
  padding: 74px 0 24px;
}

.gd-bottom-cta__inner {
  position: relative;
  overflow: visible;
  border-radius: 24px;
  background: linear-gradient(90deg, #00a7df 0%, #1fc6f1 52%, #00a7df 100%);
}

.gd-bottom-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-image: url("../images/hero-pattern.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

.gd-bottom-cta__image {
  position: relative;
  z-index: 1;
  height: 156px;
  align-self: end;
}

.gd-bottom-cta__image img {
  width: 250px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-top: -64px;
}

.gd-bottom-cta__content,
.gd-bottom-cta__action {
  position: relative;
  z-index: 1;
}

.gd-bottom-cta__content h2 {
  font-size: 32px;
  line-height: 1.12;
  font-weight: 600;
}

.gd-bottom-cta__content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  line-height: 1.5;
}

.gd-bottom-cta__action .btn {
  min-width: 160px;
  min-height: 48px;
  border-radius: 12px;
  padding: 0 22px;
  background: #ffffff;
  color: #00a7df;
  font-size: 16px;
  font-weight: 700;
}

.gd-faq {
  padding-top: 10px;
  padding-bottom: 30px;
}

.gd-faq .faq__grid {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px;
}

.gd-faq .faq__intro h2 {
  font-size: 32px;
  line-height: 1.12;
  font-weight: 600;
}

.gd-faq .faq__intro p {
  color: #334155;
  font-size: 15px;
  line-height: 1.65;
}

.gd-faq .faq__item summary {
  min-height: 68px;
  font-size: 15px;
}

.gd-faq .faq__answer p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1200px) {
  .gd-hero__inner,
  .gd-overview__grid,
  .gd-dashboard__grid,
  .gd-faq .faq__grid {
    grid-template-columns: 1fr;
  }

  .gd-hero__media,
  .gd-overview__media,
  .gd-dashboard__media {
    justify-content: center;
  }

  .gd-hero__card {
    width: 100%;
    max-width: none;
  }

  .gd-hero__figure {
    max-width: 520px;
  }

  .gd-hero__card h1 {
    font-size: 44px;
  }

  .gd-form__grid label span {
    font-size: 16px;
  }

  .gd-form__grid input {
    min-height: 66px;
    font-size: 18px;
    padding-inline: 24px;
  }

  .gd-form__submit {
    min-height: 66px;
    font-size: 22px;
  }

  .gd-bottom-cta__inner {
    grid-template-columns: 180px 1fr;
  }

  .gd-bottom-cta__action {
    grid-column: 2;
  }

  .category-hero-inner,
  .category-group-inner,
  .category-faq-grid {
    grid-template-columns: 1fr;
  }

  .category-hero-media {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }

  .category-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-testimonials .testimonial-slider-wrap .owl-nav {
    left: -8px;
    right: -8px;
  }
}

@media (max-width: 1024px) {
  .category-why-head h2,
  .category-group-copy h2,
  .category-testimonials h2,
  .category-faq-aside h2,
  .category-cta-copy h2,
  .category-hero-copy h1 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .gd-hero {
    padding: 24px 0 12px;
  }

  .gd-hero .container {
    width: min(100%, calc(100% - 24px));
  }

  .gd-hero__card {
    padding: 20px 18px 18px;
    border-radius: 18px;
  }

  .gd-hero__card h1,
  .gd-overview__content h2,
  .gd-dashboard__content h2,
  .gd-bottom-cta__content h2,
  .gd-faq .faq__intro h2,
  .gd-steps .steps-header h2,
  .gd-courses .bundles-head h2 {
    font-size: 28px;
  }

  .gd-overview__stats {
    grid-template-columns: 1fr;
  }

  .gd-benefits__list,
  .gd-compliance__inner,
  .gd-compliance__grid {
    grid-template-columns: 1fr;
  }

  .gd-form__grid {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }

  .gd-hero__card h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .gd-form__grid label span {
    font-size: 15px;
  }

  .gd-form__grid input {
    min-height: 56px;
    border-radius: 12px;
    font-size: 16px;
    padding-inline: 18px;
  }

  .gd-form__submit {
    min-height: 58px;
    margin-top: 18px;
    border-radius: 14px;
    font-size: 20px;
  }

  .gd-hero__media {
    min-height: 0;
  }

  .gd-hero__badge {
    left: 10px;
    bottom: 64px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .gd-hero__badge::before {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .gd-bottom-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gd-bottom-cta__image {
    height: auto;
    justify-self: center;
  }

  .gd-bottom-cta__image img {
    margin-top: -42px;
  }

  .gd-bottom-cta__action {
    grid-column: auto;
    justify-self: center;
  }

  .category-why-grid {
    grid-template-columns: 1fr;
  }

  .category-cta-inner {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 12px;
    text-align: center;
  }

  .category-cta-inner figure {
    justify-content: center;
  }

  .category-cta-btn {
    justify-self: center;
  }

  .category-group-media {
    width: 100%;
    max-width: 100%;
    height: 420px;
  }

  .category-testimonials .testimonial-slider-wrap .owl-nav {
    position: static;
    transform: none;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .category-testimonials .testimonial-slider-wrap .owl-nav button.owl-prev,
  .category-testimonials .testimonial-slider-wrap .owl-nav button.owl-next {
    position: static;
  }

.category-faq-list .faq-trigger {
  font-size: 14px;
}
}

@media (min-width: 992px) {
  .mobile-nav-head,
  .mobile-nav-close {
    display: none !important;
  }
}
@media (max-width: 980px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.courses .section-title {
    margin-bottom: 28px;
}
.section-title  h2{
	    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.01em;
	padding-bottom:5px;
}