/* App Intro Cards */

.app-intro-card {
  position: relative;
  color: #fff;
  text-align: left;
  padding: 2rem 1.5rem 2rem;
  border-radius: 12px;
  width: clamp(var(--min-content-width), var(--nom-content-width), var(--max-content-width));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: sans-serif;
  transition: transform 0.2s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
  border: 1px solid #e0e0e0;
  position: relative;
  background: linear-gradient(135deg, #4f88ff 60%, #6772e5 100%);
  /* fallback */
  color: #fff;
  /* override if background is dark */
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  /* stack top, carousel, content vertically */
  gap: clam(1rem, 1.5rem, 2rem);
  flex-wrap: nowrap;
  justify-content: normal;
  align-items: normal;
  align-content: normal;
  --card-pad: 32px;
  padding-left: var(--card-pad);
  padding-right: var(--card-pad);
  padding-top: var(--card-pad);
}

.app-intro-gradient {
  background: linear-gradient(135deg, #4f88ff 60%, #6772e5 100%);
}

.app-intro-card-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}

.app-intro-card-carousel {
  width: 100%;
}

.app-intro-card-content {
  width: 100%;
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

/* Right-align slider, but let it shrink and never overflow */
.app-intro-card .app-intro-card-carousel {
  display: flex;
  justify-content: flex-end;
  /* stick to right edge */
  overflow: hidden;
  /* clip any long stage width */
  min-width: 0;
  /* KEY: allow flex child to shrink */
  margin-right: calc(-2 * var(--card-pad));
}

/* The actual Owl element */
.app-intro-card .app-intro-card-carousel>.owl-carousel.owl-theme {
  flex: 0 1 clamp(320px, 60%, 720px);
  /* preferred width, but shrink as needed */
  max-width: 100%;
  box-sizing: border-box;
}

/* Make slides respect the container */
.app-intro-card .owl-stage-outer {
  max-width: 100%;
}

.app-intro-card .owl-item {
  max-width: 100%;
}

.app-intro-card .owl-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Mobile: center it again */
@media (max-width: 767px) {
  .app-intro-card .app-intro-card-carousel {
    justify-content: center;
  }

  .app-intro-card .app-intro-card-carousel>.owl-carousel.owl-theme {
    flex-basis: 100%;
  }

  .app-intro-card .app-intro-card-carousel {
    margin-right: 0;
    justify-content: center;
  }
}

.app-card-logo-wrap {
  height: auto;
  flex-shrink: 0;
}

.app-card-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

.app-intro-card h2 {
  margin-top: 0;
  padding-top: 1rem;
  font-size: 4.0rem;
  margin-bottom: 0.5rem;
  color: white;
}

.app-intro-card p {
  font-size: 1rem;
  line-height: 1.4;
  color: #f8f8f8;
}

.app-intro-card-description {
  padding: 1rem;
  padding-left: 3em;
  text-align: left;
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 0;
  flex: 1;
}

.app-intro-card-description p {
  font-size: 1.75rem;
  line-height: 2.5rem;
}

.app-intro-card-description h2 {
  font-size: 4rem;
  line-height: 4.5rem;
  padding-bottom: 12px;
  align-items: top;
  vertical-align: top;
}

/* End of App Intro Cards */

/* Pricing Cards */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 0.8fr));
  gap: 1rem;
  margin-top: 1rem;
  /* display: flex;*/
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: stretch;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Ensures all cards align equally */
  padding: clamp(1.0rem, 2.0rem, 2.0rem);
  background: linear-gradient(135deg, #ffffff 80%, #fcf3f8 100%);
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  width: clamp(120px, 30vw, 30%);
  min-height: 550px;
  height: clamp(480px, 480px, 25%);
  /* consistent height baseline */
  text-align: center;
  background-image: linear-gradient(135deg, #ffffff 80%, #fcf3f8 100%);
  background-color: var(--lgt-primary-background-accent);
}

.pricing-card p,
.pricing-card .price,
.pricing-card .saving-note {
  overflow-wrap: anywhere;
}

.pricing-card-description {
  padding: 1.0rem, 1.0rem, 0;
  text-align: center;
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 0;
  flex: 1;
}

.pricing-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.saving-note {
  margin-top: calmp(1.0rem, 1.5rem, 2.0rem);
  font-size: clamp(1.0rem, 1.75rem, 3.0rem);
  font-weight: light;
  color: #555;
}

.saving-note p {
  color: #555;
}

.switch-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 15px 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--lgt-primary-accent);
}

input:checked+.slider:before {
  transform: translateX(20px);
}

.price {
  font-size: clamp(1.5rem, 2.5rem, 3.0rem);
  font-weight: bolder;
  margin: 10px 0;
}

.buy-button {
  display: inline-block;
  background: linear-gradient(135deg, #4f88ff, #6772e5);
  background-size: 200% auto;
  color: #fcfcfc;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  transition: background-position 0.4s ease, box-shadow 0.3s ease;
  /*box-shadow: 0 4px 8px rgba(103, 114, 229, 0.25);*/
}

.buy-button:hover {
  background-position: right center;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #80a7fc, #6772e5);
  /*box-shadow: 0 6px 12px rgba(103, 114, 229, 0.35);*/
}

.buy-button:active {
  background-position: right center;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #80a7fc, #6772e5);
}

.currency-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.currency-option {
  background: #ffffff;
  border: 2px solid transparent;
  padding: 0.5rem 1rem;
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--lgt-primary-accent);
  border-radius: 6px;
}

.currency-option:hover {
  color: white;
  border-color: var(--lgt-primary-accent);
  background: linear-gradient(135deg, #80a7fc, #6772e5);
  border: 2px solid transparent;
}

.currency-option.active {
  font-weight: bold;
  color: #fff;
  background: var(--lgt-primary-accent);
  border-color: var(--lgt-primary-accent);
  background: linear-gradient(135deg, #80a7fc, #6772e5);
  border: 2px solid transparent;
}

img.pricing-card-logo {
  align-items: center;
  display: inline-block;
  padding: clamp(0.5rem, 1.0rem, 1.25rem);
  /* if you really need padding on the img */
  width: clamp(96px, 128px, 256px);
  height: auto;
  border-radius: 8px;
  transition: filter .25s ease;
  filter: brightness(1.0);
  /* simple, reliable lighten */
}

img.pricing-card-logo:hover {
  filter: brightness(0.9);
  /* simple, reliable lighten */
}


/* End of Pricing Cards */


/* Modules */

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
  padding: 2rem 1rem;
}

.product-card {
  flex: 1 1 240px;
  max-width: 360px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0.5rem 0 1rem;
}

.product-card .btn {
  display: inline-block;
  background-color: #6772e5;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

.product-card .btn:hover {
  background-color: #5469d4;
}

/* Modules */

.app-modules-wrapper {
  display: flex;
  justify-content: center;
  /* horizontal centring */
  align-items: flex-start;
  /* or center if you want vertical alignment */
  width: 100%;
  margin: clamp(1rem, 2rem, 3rem);
  margin-bottom: clamp(1rem, 1.5rem, 2rem);
}

.app-modules-title {
  font-size: clamp(2rem, 2.75rem, 4rem);
  font-weight: bold;
  color: var(--lgt-body-heading-two);
  margin-left: clamp(0.5rem, 0.75rem, 1.0rem);
  margin-bottom: clamp(1rem, 1.5rem, 2rem);
}

.app-modules-card {
  margin: 0 auto;
  /* this ensures the card itself is centred */
  width: clamp(var(--min-content-width), var(--nom-content-width), var(--max-content-width));
  padding: 2rem;
  background: linear-gradient(135deg, var(--lgt-primary-background) 80%, var(--lgt-primary-background-accent) 100%);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
}

.module-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 1rem 3.5rem;
  /* ↑ increased column gap from 1.5rem to 2.5rem */
  width: clamp(600px, 80vw, 90%);
}

.module-list.two-column {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: start;
}

.module-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #ddd;
}

.module-list li:last-child {
  border-bottom: none;
}

.module-text {
  display: flex;
  font-size: clamp(1.5rem, 3rem, 5rem);

  flex-direction: column;
  text-align: left;
}

.module-title {
  font-size: clamp(0.75rem, 2.25rem, 4rem);
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: var(--lgt-body-heading-two);
}

.module-description {
  font-size: clamp(0.5rem, 1.5rem, 3rem);
  color: #555;
  margin: 0;
  color: var(--lgt-body-text);
}

.check {
  color: #28a745;
  font-weight: bold;
  margin: 0.5rem 1rem 0.5rem 0;
  flex-shrink: 0;
}

/* End of Modules */

/* Pricing Bundles */
.bundle-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  padding: 1rem;
}

/* .pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 2rem);
  background: linear-gradient(135deg, #ffffff 80%, #fcf3f8 100%);
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
  min-height: 480px;             
  text-align: center;
  overflow: hidden; 
  transition: transform 0.2s ease-in-out;
} */

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding: clamp(1rem, 2vw, 2rem);
  background: linear-gradient(135deg, #ffffff 80%, #fcf3f8 100%);
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
  min-height: 420px;
  height: auto;
  /* IMPORTANT: no fixed height */
  width: auto;
  /* IMPORTANT: let tracks size it */
  text-align: center;
  overflow: hidden;
}

.pricing-card {
  max-height: 560px;
}

.pricing-card .price {
  white-space: nowrap;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  /* cap each card */
  gap: 1.5rem;
  justify-content: center;
  /* center the whole grid */
  align-items: stretch;
  /* equal height rows */
}

/* End of Pricing Bundles */


/* App Intro Logo Animation */
.animated-gradient {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0) 0%);
  background-size: 200% 100%;
  animation: pulseAlphaSlide 5s ease-in-out infinite;
}

@keyframes pulseAlphaSlide {
  0% {
    background-position: 200% 0;
    opacity: 0.850;
  }

  25% {
    opacity: 0.925;
  }

  50% {
    background-position: 100% 0;
    opacity: 1.000;
  }

  75% {
    opacity: 0.925;
  }

  100% {
    background-position: 0 0;
    opacity: 0.850;
  }
}

/* End of App Intro Logo Animation */


/* Footer Terms Card */
.footer-terms-card div {
  position: relative;
  align-content: center;
  align-items: center;
  display: block;
  flex-direction: column;
  justify-content: space-between;
}

.footer-terms-card {
  background-color: transparent;
  color: white;
  border-radius: 12px;
  padding: 4px;
  margin-top: 8px;
  text-align: center;
}

.footer-terms-card p {
  margin: 0;
  font-size: 12px;
}

.footer-terms-card a {
  color: white;
  text-decoration: none;
}

.footer-terms-card a:hover {
  color: white;
  text-decoration: underline;
}

.footer-legal-card div {
  position: relative;
  align-content: center;
  align-items: center;
  display: block;
  flex-direction: column;
  justify-content: space-between;
}

.footer-legal-card {
  background-color: transparent;
  color: #879999;
  border-radius: 12px;
  padding: 4px;
  margin-top: 4px;
  text-align: center;
}

.footer-legal-card p {
  margin: 0;
  font-size: 12px;
}

/* End of Footer Terms Card */

/* Roadmap */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: clamp(0.75rem, 1.25rem, 2rem);
  align-items: start;
}

.roadmap-col {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: linear-gradient(135deg, var(--lgt-primary-background) 80%, var(--lgt-primary-background-accent) 100%);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1rem;
}

.roadmap-col__title {
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--lgt-body-heading-two);
  margin: 1.0rem 0.5rem .75rem;
  /* border-bottom: 3px solid var(--lgt-primary-accent); */
  padding-bottom: .25rem;
}

.roadmap-card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff 80%, #fcf3f8 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}

.roadmap-card h4 {
  margin: 1.0rem 0 .5rem;
  color: var(--lgt-body-heading-two);
}

.roadmap-card p {
  margin: 0;
  color: var(--lgt-body-text);
}

.roadmap-meta {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .9rem;
  color: #666;
}

.roadmap-pill {
  display: inline-block;
  padding: .15rem .5rem;
  border-radius: 999px;
  background: #eef5ff;
  color: #1d4ed8;
  border: 1px solid #cfe2ff;
  font-weight: 600;
  font-size: .8rem;
}

.roadmap-footer {
  margin-top: auto;
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  /* center horizontally */
  align-items: center;
  gap: .75rem;
}

.roadmap-cta {
  width: clamp(120px, 30vw, 35%);
  text-align: center;
  justify-self: center;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: .5rem .75rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #4f88ff, #6772e5);
  color: #fff;
  margin: 1.0rem auto;
  /* belts & braces centering */
  display: inline-block;
}

.roadmap-cta:hover {
  text-decoration: none;
  color: white;
}

.roadmap-empty {
  padding: .75rem;
  color: #777;
  font-style: italic;
  border: 1px dashed #ddd;
  border-radius: 8px;
  text-align: center;
}

@media (max-width: clamp(val(var(--nom-content-width)), var(--nom-content-width), var(--max-content-width))) {
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

/* End of Roadmap */

.product-updates {
  margin: 1.25rem, 1.25rem, 2rem;
  padding: 1.75rem;
  ;
}


.app-modules-footer {
  font-size: clamp(1.0rem, 2.0rem, 1.5rem);
  padding-top: clamp(1.5rem, 2.5rem, 4.0rem);
  padding-bottom: clamp(1.5rem, 2.5rem, 4.0rem);
  margin-top: clam(1.25rem, 2.0rem, 3.0rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

/*
 * GDPR Compliance
 */

.dp-wrap {
  width: clamp(800px, 80vw, 90%);
  margin: 2rem auto;
}

.dp-card {
  background: linear-gradient(135deg, var(--lgt-primary-background) 80%, var(--lgt-primary-background-accent) 100%);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .09);
  padding: 1.25rem;
}

.dp-title {
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--lgt-body-heading-two);
  margin: 1.25rem 1.25rem 2.0rem;
  padding-bottom: .25rem;
}

.dp-intro {
  font-size: clamp(1rem, 1.5vw, 2.0rem);
  color: var(--lgt-body-text);
  margin: 1.25rem 1.25rem 1rem;
}

.dp-table-wrap {
  overflow: auto;
  margin: 2.0rem 1.0rem 0.5rem;
  font-size: clamp(1rem, 1.25vw, 1.75rem);
}

table.dp {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.dp th,
.dp td {
  padding: .9rem 1rem;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: top;
}

.dp th {
  color: var(--lgt-body-heading-two);
  font-weight: 800;
  position: sticky;
  top: 0;
}

.dp tr:hover td {
  background: #fcfcff;
}

.dp a.dp-link {
  color: var(--lgt-primary-accent);
  text-decoration: none;
}

.dp a.dp-link:hover {
  text-decoration: none;
}

.dp-badge {
  display: inline-block;
  text-align: center;
  padding: 0.25rem 0.5rem 0.5rem;
  border-radius: 8px;
  background: #eef5ff;
  color: #1d4ed8;
  border: 1px solid #cfe2ff;
  font-weight: bold;
  font-size: clamp(.8rem, 1.25vw, 1.5rem);
}

.dp-subscribe {
  margin-top: clamp(1rem, 2.5vw, 2rem);
  font-size: clamp(0.75rem, 1.25vw, 1.75rem);
  font-weight: normal;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
  border: 1px dashed #ddd;
  border-radius: 8px;
  padding: 1.0rem;
}

.dp-cta {
  display: inline-block;
  padding: .5rem .75rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #4f88ff, #6772e5);
  color: #fff;
  text-decoration: none;
}

.dp-cta:hover {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .dp-wrap {
    width: clamp(320px, 92vw, 100%);
  }

  .dp th,
  .dp td {
    white-space: normal;
  }
}


.gdpr-hero {
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lgt-primary-background) 80%, var(--lgt-primary-background-accent) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: clamp(1.25rem, 3vw, 2.5rem) 0;
}

.gdpr-hero__inner {
  width: clamp(800px, 80vw, 1100px);
  margin: 0 auto;
  padding: 0 1rem;
  text-align: left;
}

.gdpr-hero h1 {
  margin: 0 0 .25rem 0;
  color: var(--lgt-body-heading-two);
  font-size: clamp(2rem, 4vw, 3rem);
}

.gdpr-hero__tagline {
  margin: 0 0 1rem;
  color: var(--lgt-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.gdpr-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: .75rem 0 0;
}

.gdpr-btn {
  display: inline-block;
  padding: .5rem .9rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, #4f88ff, #6772e5);
  color: #fff;
  border: 2px solid transparent;
}

.gdpr-btn:hover {
  text-decoration: none;
  color: #fff;
}

.gdpr-btn--ghost {
  background: #fff;
  color: var(--lgt-primary-accent);
  border-color: var(--lgt-primary-accent);
}

.gdpr-btn--ghost:hover {
  background: linear-gradient(135deg, #80a7fc, #6772e5);
  color: #fff;
  border-color: transparent;
}

.gdpr-updated {
  margin-top: .5rem;
  color: #777;
  font-size: .9rem;
}

/* Layout */
.gdpr-container {
  width: clamp(800px, 80vw, 1100px);
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.5rem) 1rem 2rem;
  display: grid;
  grid-template-columns: var(--gdpr-sidebar-w) 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.gdpr-toc {
  position: sticky;
  top: calc(var(--header-h, 64px) + .75rem);
  align-self: start;
  border-radius: 12px;
  padding: 1rem;
}

.gdpr-toc h3 {
  margin: 0.5rem 0.5rem 0.5rem;
  font-size: clamp(1rem, 1.5vw, 2.0rem);
  color: var(--lgt-body-heading-two);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding-bottom: .35rem;
}

.gdpr-toc ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0.5rem 0.5rem;
}

.gdpr-toc li {
  margin: .35rem 0;
}

.gdpr-toc a {
  text-decoration: none;
}

.gdpr-toc a:hover {
  text-decoration: underline;
}

.gdpr-content {
  min-width: 0;
}

.gdpr-block {
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.gdpr-block h2 {
  scroll-margin-top: calc(var(--header-h, 64px) + 12px);
  color: var(--lgt-body-heading-two);
}

/* Helpful components */
.gdpr-list {
  padding-left: 1.1rem;
}

.gdpr-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: .75rem;
}

.gdpr-card {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff 80%, #fcf3f8 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}

.gdpr-changelog {
  padding-left: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .gdpr-container {
    grid-template-columns: 1fr;
  }

  .gdpr-toc {
    position: static;
  }
}

/* GDPR Compliance */

/* 4-col responsive grid */
.al-grid--logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 1024px) {
  .al-grid--logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .al-grid--logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .al-grid--logos {
    grid-template-columns: 1fr;
  }
}

.al-item {
  margin: 0;
}

/* Logo-only rounded gradient cards */
.app-card {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  /* square tiles */
  border-radius: 1.25rem;
  /* rounded corners */
  text-decoration: none;
  color: #fff;
  /* white text if any overlay text appears */
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  transition: transform .15s ease, box-shadow .15s ease;
  gap: 1rem;
}

.al-card-logo {
  min-height: clamp(128px, 512px, 256px);
  aspect-ratio: 1 / 1;
  padding: 1rem;
  gap: 1rem;
}

.app-card:hover,
.app-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
  outline: none;
}

/* Ensure white SVGs still read nicely */
.app-logo {
  max-width: 62%;
  max-height: 62%;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .25));
}

/* Gradient themes using your --lgt-hero-multi-*-start/end variables */
.app-card--1 {
  background: linear-gradient(135deg, var(--lgt-hero-multi-1-start), var(--lgt-hero-multi-1-end));
}

.app-card--2 {
  background: linear-gradient(135deg, var(--lgt-hero-multi-2-start), var(--lgt-hero-multi-2-end));
}

.app-card--3 {
  background: linear-gradient(135deg, var(--lgt-hero-multi-3-start), var(--lgt-hero-multi-3-end));
}

.app-card--4 {
  background: linear-gradient(135deg, var(--lgt-hero-multi-4-start), var(--lgt-hero-multi-4-end));
}

.app-card--5 {
  background: linear-gradient(135deg, var(--lgt-hero-multi-5-start), var(--lgt-hero-multi-5-end));
}

.app-card--6 {
  background: linear-gradient(135deg, var(--lgt-hero-multi-6-start), var(--lgt-hero-multi-6-end));
}

/* Accessibility: keep names for screen readers only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* App list grid: max 3 cards per row (≤33% each), square tiles */
.al-grid {
  display: grid;
  gap: clamp(0.75rem, 1.25rem, 2rem);
  align-items: center;
}

/* 3-up on wide screens, 2-up on tablets, 1-up on phones */
.al-grid--cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .al-grid--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .al-grid--cards {
    grid-template-columns: 1fr;
  }
}

/* Make each anchor fill its grid cell */
.al-grid--cards .al-card {
  width: 100%;
}

/* Ensure logos sit nicely inside the square card */
.al-grid--cards .app-logo {
  width: 100%;
  height: auto;
  max-width: 62%;
  max-height: 62%;
  object-fit: contain;
}


/* ===== Sidebar layout inside the glowing card ===== */
.al-layout {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}

.al-sidebar {
  width: clamp(180px, 22vw, 260px);
  flex: 0 0 auto;
}

.al-content {
  flex: 1 1 auto;
  min-width: 0;
}

/* Sidebar category list */
.al-catlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}

.al-catbtn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem .75rem;
  border-radius: .75rem;
  border: 1px solid var(--surface-border, rgba(255, 255, 255, .12));
  background: var(--surface-1, rgba(255, 255, 255, .04));
  color: var(--text-1, #fff);
  font: inherit;
  cursor: pointer;
  transition: transform .06s ease, background .2s ease, border-color .2s ease;
}

.al-catbtn:hover {
  transform: translateY(-1px);
}

.al-catbtn.is-active {
  background: var(--surface-2, rgba(255, 255, 255, .08));
  border-color: var(--accent, currentColor);
  box-shadow: 0 0 .75rem rgba(0, 0, 0, .15) inset;
}

/* Cards already have aspect-ratio via your existing rules.
   Add name below the logo. */
.al-card {
  display: grid;
  grid-template-rows: 1fr auto;
  /* logo, then name */
  place-items: center;
  text-align: center;
}

.al-card .app-logo {
  width: 100%;
  height: auto;
  max-width: 62%;
  max-height: 62%;
  object-fit: contain;
}


/* Responsive: stack sidebar on small screens */
@media (max-width: 860px) {
  .al-layout {
    flex-direction: column;
  }

  .al-sidebar {
    width: 100%;
  }

  .al-catlist {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

app-card--*.a:hover {
  text-decoration: none;
  color: #fff;
}

/* -------- Group layout: left label aligned with first card -------- */
.al-group-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  /* left label, right grid */
  align-items: start;
  gap: clamp(2.0rem, 2vw, 4.0rem);
}

/* Keep label visually aligned with the grid’s first row */
.al-group-label {
  display: flex;
  align-items: flex-start;
  /* aligns with top of first row */
  justify-content: flex-end;
  /* snug to grid */
  min-width: clamp(25%, 18vw, 220px);
}

.al-root {
  display: flex;
  flex-direction: column;
  margin-top: clamp(3rem, 5rem, 10rem);
  margin-bottom: clamp(3rem, 5rem, 10rem);
}

/* Optional: style the title (your rainbow/glow rules still apply if present) */
.al-group-title {
  text-align: right;
  margin: .25rem 0 0;
  min-width: clamp(25%, 18vw, 220px);
  padding: auto;
  white-space: nowrap;
  vertical-align: middle;
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  color: var(--lgt-body-heading-two);
}

/* Bigger cards, up to 5 per row on wide screens */
.al-grid--cards {
  grid-template-columns: repeat(5, minmax(200px, 1fr));
}

@media (max-width: 1300px) {
  .al-grid--cards {
    grid-template-columns: repeat(4, minmax(200px, 1fr));
  }
}

@media (max-width: 1024px) {
  .al-grid--cards {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
  }
}

@media (max-width: 720px) {
  .al-grid--cards {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 480px) {
  .al-grid--cards {
    grid-template-columns: 1fr;
  }
}

/* Keep card tiles square and let the logo breathe */
.al-card {
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-rows: 1fr auto auto;;
  /* logo, badges, name */
  place-items: center;
  min-width: clamp(128px, 256px, 384px);
}

.app-logo {
  width: 100%;
  height: 100%;
  /* max-width: 62%;
  max-height: 62%; */
  object-fit: scale-down;
  align-items: center;
  vertical-align: middle;
  margin: none;
  padding: none;
}

/* Name sits below as plain text (not inside the link) */
.al-cardwrap {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: start;
}

/* .al-card-name{
  margin-top: .5rem;
  text-align: center;
  font-size: .95rem;
  line-height: 1.25;
  opacity: .95;
} */

.al-card-name {
  margin-top: clamp(.5rem, 1.5vw, 1rem);
  text-align: center;
  font-size: clamp(1.5rem, 1.75vw, 2.5rem);
  line-height: clamp(1.5rem, 1.75vw, 2.5rem);
  opacity: .9;
  padding: 0 .25rem .25rem;
}

/* If you want the name to wrap better on narrow cards */
.al-card-name {
  word-break: break-word;
}

.banner-block-text {
  color: transparent;
  color: white;
  z-index: 0;
  min-width: clamp(var(--nom-content-width), var(--nom-content-width), var(--max-content-width));
  max-width: 50%;
}

/* Badge row */
.al-badges {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .35rem;
}

/* Base badge (similar to .roadmap-pill but works atop gradients) */
.al-badge {
  display: inline-block;
  padding: .15rem .5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  /* tints to match the card’s color */
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  font-weight: 700;
  font-size: .75rem;
  line-height: 1;
}

/* Optional: if you use app-card--1..6 gradient themes, you can tweak contrast per theme via CSS vars */
.app-card {
  --badge-bg: rgba(255, 255, 255, .16);
  --badge-bd: rgba(255, 255, 255, .35);
  --badge-fg: #fff;
}

.app-card .al-badge {
  background: var(--badge-bg);
  border-color: var(--badge-bd);
  color: var(--badge-fg);
}

/* --- App list: force spacing between cards (final override) --- */
.al-grid.al-grid--cards {
  gap: clamp(0.75rem, 1.25rem, 2rem) !important; /* restore grid gap */
}

/* Make sure children don't collapse spacing by adding their own margins */
.al-grid.al-grid--cards > * {
  margin: 0 !important;
}

/* Prevent oversized tiles from butting up against each other */
.al-grid.al-grid--cards .al-card {
  min-width: 0; /* allow shrink in minmax(…, 1fr) columns */
}