@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@500&display=swap");
/* Base */
html {
  font-size: 100%;
}

:root {
  --ui-radius: 16px; /* consistent everywhere */
  --section-pad: clamp(24px, 6vw, 64px);
  --icon-chevron-down: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m6%209%206%206%206-6%22/%3E%3C/svg%3E");
}

body {
  margin: 0;
  background-color: #f5f5f5;
  color: #000;
  font-family: "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 10lvh;
}

/* Allow hero backgrounds to sit behind the navbar on use case pages */
body.usecase-page {
  padding-top: 0;
}

/* Alternate backgrounds */
.section-background-white   { background-color: #fbfbfb; }

/* Body text */
p {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 300;
  margin: 0 0 1rem;
}

/* Headings */
h1, h2, h3, h4 {
  margin: 0 0 0.75rem;
  font-weight: 400;
  color: inherit;
}

h1 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.375rem, 1.8vw, 1.75rem);
  line-height: 1.25;
}

h4 {
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  line-height: 1.3;
}

/* Sections */

.division-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 8vw, 112px) clamp(24px, 6vw, 64px);
}
.division-container > .section-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}
.row-division-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.row-division-container > .section-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.full-screen {
  height: 100dvh;
  width: 100%;
}

.section-padding {
  padding: 2rem;
}

.section-vertical-padding {
  padding-top: 1rem;
}

.max-width{
  max-width: 1280px;
  justify-content: center;
}

.section-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .full-screen {
    height: auto;
  }
}

@media (max-width: 900px) {
  .row-division-container {
    flex-direction: column;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .row-division-container > .section-inner {
    flex-direction: column;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .row-division-container.reverse-mobile {
    flex-direction: column-reverse; /* image after text */
  }
  .row-division-container.reverse-mobile > .section-inner {
    flex-direction: column-reverse; /* image after text */
  }
  .row-division-container > .section-inner > * {
    width: 100%; /* make both columns full width on mobile */
  }
  .row-division-container.reverse-mobile > * {
    width: 100%; /* make both columns full width on mobile */
  }
  .row-division-container.reverse-mobile > .section-inner > * {
    width: 100%; /* make both columns full width on mobile */
  }
}

.normal-text {
  font-weight: 300;
  font-size: 0.8rem;
  color: black;
  font-style: normal;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.title {
  font-size: 3.5rem;
  text-align: center;
  margin-top: 10vh;
}

.sub-title {
  font-size: 3rem;
  text-align: center;
  margin: 2%;
}

.left-indentation {
  margin-left: 5%;
  text-align: left;
}
.centered-text {
  text-align: center;
}

@media (max-width: 900px) {
  .title {
    font-size: 2.5rem;
  }
  .sub-title {
    font-size: 1.5rem;
  }
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Scroll reveal */
.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.js-enabled [data-reveal="left"] { transform: translateX(-24px); }
.js-enabled [data-reveal="right"] { transform: translateX(24px); }

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.responsive-image {
  display: block; /* Ensures the image behaves as a block element */
  max-width: 100%; /* Scale down to fit the container’s width */
  height: auto; /* Maintain the aspect ratio as the width changes */
  object-fit: contain; /* If you want the entire image visible within the container */
  border-radius: 12px;
}
.image-overlay {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden; /* Keeps overlay clipped to rounded corners */
  display: block;
}
.image-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 123, 255, 0.35);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.image-overlay img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: inherit;
}

.card {
  display: block;
  width: 300px;
  height: 300px;
  box-sizing: border-box; /* Include padding and border in total size */

  background: transparent;
  border: 1px solid #666;
  border-radius: 8px;
  padding: 1.5rem;
}

/* Containers */

.full-width-container {
  width: 100%;
  margin: 0 auto; /* Centers the container if parent is wider */
  padding: 3rem; /* Optional spacing inside the container */
  box-sizing: border-box;
}

.three-quarters-width-container {
  width: 80%;
  margin: 0 auto; /* Centers the container if parent is wider */
  box-sizing: border-box;
}

.half-width-container {
  width: 50%;
  margin: 0 auto; /* Centers the container if parent is wider */
  padding: 3rem; /* Optional spacing inside the container */
  box-sizing: border-box;
}

.row-division-cta-container {
  display: flex;
  flex-direction: row;
  align-items: center; 
  padding: 2rem;
  height: 100%;
  gap: 2rem;                /* space between columns */
}

.row-division-cta-container > .max-width {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}

.half-width-cta-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* puts first child at top, last at bottom */
  align-items: flex-start;
  flex: 1 1 0;
  padding: 3rem;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .row-division-cta-container { flex-direction: column; gap: 0}
  .row-division-cta-container > .max-width { flex-direction: column; gap: 0}
  .half-width-cta-container { width: 100%; padding-left: 1rem; padding-right: 1rem; padding-top: 0.5rem;padding-bottom: 0.5rem; text-align: center; align-items: center; gap: 0}
  .half-width-cta-container p { width: 100%; margin: 0 0 1rem;}
  .three-quarters-width-container, 
  .half-width-container { width: 100%; padding-left: 1rem; padding-right: 1rem; padding-top: 0.5rem;padding-bottom: 0.5rem; align-items: center; gap: 0}
}

/* ============================Product Page================================= */
/* ===== Benefits ===== */
.benefits-section {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: space-between;
  padding: clamp(48px, 8vw, 112px) clamp(24px, 6vw, 64px);
}
.benefits-section > .section-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
/* Features section only */
.features-row {
  display: flex;
  align-items: center;   /* top align */
}
.features-row-index {
  display: flex;
  align-items: flex-start;   /* top align */
}

.devices-translation-column {
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}

.devices-translation-column .half-width-container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.devices-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.devices-row--split {
  align-items: flex-start;
}

.devices-row__text {
  flex: 1;
  display: grid;
  gap: 0.75rem;
}

.devices-row__image {
  flex: 0 0 45%;
  max-width: 45%;
}

.devices-row__image--right {
  margin-left: auto;
}

.devices-image-frame {
  background: linear-gradient(145deg, #f9fbff 0%, #ecf5ff 45%, #d7eafe 100%);
  padding: 10px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(30, 91, 180, 0.045);
}

.devices-row__copy {
  flex: 1;
  margin: 0;
}

.translation-row {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  width: 100%;
}

.translation-copy {
  flex: 1;
  display: grid;
  gap: 0.75rem;
}

.translation-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.translation-row .translation-card {
  max-width: none;
  width: 100%;
}

.translation-visual {
  flex: 1;
  max-width: 45%;
  margin-bottom: 0;
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
}

.translation-visual__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.features-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* spacing inside each column */
.features-col > * + * {
  margin-top: 0.75rem;
}

/* image */
.features-img {
  width: 48px;
  height: 48px;
}

/* mobile */
@media (max-width: 900px) {
  .features-row {
    flex-direction: column;
    gap: .5rem;
  }
  .devices-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .devices-row__text { width: 100%; }
  .devices-row__image,
  .devices-row__copy {
    width: 100%;
    max-width: 100%;
  }
  .translation-row {
    flex-direction: column;
  }
  .translation-row .translation-card {
    max-width: 100%;
  }
  .translation-visual {
    max-width: 100%;
    width: 100%;
  }
  .features-row-index {
    flex-direction: column;
    gap: 0;
  }
}
/* Keep your existing styles exactly as-is... then add the lines below */

/* Turn the features row into a grid just within the benefits section */
.benefits-section .features-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

/* Make each column a 3-row grid: icon, header, paragraph */
.benefits-section .features-col {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
}

/* Optional: even header height so paragraphs always start aligned */
.benefits-section .benefit-title {
  line-height: 1.25;
  /* Adjust for your font size; this reserves space for up to 2 lines */
  min-height: calc(1em * 2.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Force icons to 48x48 and center them */
.benefits-section .features-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto; /* centers horizontally */
  display: block;
}

/* Mobile: stack or go 2-up as you prefer */
@media (max-width: 900px) {
  .benefits-section .features-row {
    grid-template-columns: 1fr; /* or: repeat(2, minmax(0,1fr)) */
    gap: 1rem;
  }
}


/* ===== FAQ ===== */
.faq {
  background: #fbfbfb;
  color: #000;
  padding-block: clamp(48px, 8vw, 112px);
}

.faq__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: clamp(24px, 4vw, 80px);
}

/* Header */
.faq__header {
  text-align: center;
  display: grid;
  gap: 12px;
}
.faq__header h2 {
  margin: 0;
  font-family: "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
}
.faq__header p {
  margin: 0;
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.5;
}

/* List */
.faq__list {
  border-bottom: 1px solid #000;
}

/* Item */
.faq__item {
  border-top: 1px solid #000;
  padding: 0;
}

/* Question row */
.faq__question {
  list-style: none;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  margin: 0;
  font-family: "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  cursor: pointer;
  position: relative;
}

/* Caret */
.faq__question::after {
  content: "";
  width: 0.9em;
  height: 0.9em;
  margin-left: auto;
  flex-shrink: 0;
  display: inline-block;
  background: var(--icon-chevron-down) no-repeat center / 100% 100%;
  transition: transform 0.2s ease;
}

/* Open state rotates caret */
.faq__item[open] > .faq__question::after {
  transform: rotate(180deg);
}

/* Static FAQ (no collapse) */
.faq--static .faq__question {
  cursor: default;
}
.faq--static .faq__question::after {
  display: none;
}

/* Answer */
.faq__answer {
  padding: 0 0 24px 0;
}
.faq__answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* Focus states for keyboard users */
.faq__question:focus {
  outline: none;
}
.faq__question:focus-visible {
  outline: 2px solid #0069d8;
  outline-offset: 2px;
}

/* Optional: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .faq__question::after { transition: none }
}

/* CTA block under the list */
.faq__cta {
  text-align: center;
  display: grid;
  gap: 12px;
}
.faq__cta h4 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.3;
}
.faq__cta p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}


/* ============================Legal Page================================= */

:root {
  --primary-text-color: #000;
  --link-color: #000;
  --base-font-size: 16px; /* Base font size for calculations */
}

.legal-page {
  background-color: #f5f5f5;
  color: var(--primary-text-color); /* Set all text to black */
  text-align: justify; /* To align the text properly */
  display: flex;
  flex-direction: column; /* To stack the children vertically */
  align-items: flex-start; /* Corrected from 'left' to 'flex-start' */
  overflow-y: auto; /* To allow scrolling */
  padding: 20px; /* To provide some spacing inside the container */
  margin-top: 60px; /* Adjust this value based on the actual height of your navbar */
  margin-left: 10%;
  margin-right: 10%;
  font-size: 0.9rem; /* Reduced base font size for legal content */
  border-radius: 15px; /* Added for rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow for depth */
  background-clip: padding-box; /* Ensures the background doesn't bleed into the border */
}

@media (max-width: 1200px) {
  .legal-page {
    margin-left: 5%;
    margin-right: 5%;
  }
}

.legal-title {
  font-size: 1.5rem; /* Reduced from 2em to 1.5rem */
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary-text-color); /* Ensure the title is black */
}

.legal-section {
  margin-bottom: 30px;
}

.legal-section h2 {
  font-size: 1.2rem; /* Reduced from 1.5em to 1.2rem */
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  color: var(--primary-text-color); /* Ensure section headings are black */
}

.legal-paragraph {
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--primary-text-color); /* Ensure paragraphs are black */
  font-size: 0.9rem; /* Ensure paragraphs have smaller font size */
}

.legal-paragraph a {
  color: var(--link-color); /* Links in standard black */
  text-decoration: none;
  font-size: 0.9rem; /* Ensure links inherit the smaller font size */
}

.legal-paragraph a:hover {
  text-decoration: underline;
}

/* ============================Contact Page================================= */

.contact-form-container {
  width: 90%; /* Adjust width as needed, or max-width for larger screens */
  max-width: 1000px; /* Example max-width */
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.contact-form-container p {
  text-align: center; /* Center the text */
  color: #000; /* Optional: Change the color if needed */
  font-size: 20px; /* Optional: Adjust the font size if necessary */
}

.contact-page {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
  align-items: center; /* Centers content horizontally */
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-top: 1rem;
}
.contact-form-sub-title {
  color: black;
  font-size: 32px; /* default font size */
  padding: 10px;
  text-align: center;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  max-width: none; /* Overrides any max-width that might be limiting the width */
  background-color: #f5f5f5;
  box-sizing: border-box; /* Ensures padding and border are included in the width */
}

.contact-form textarea {
  height: 100px;
}

.contact-form select {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f5f5f5;
  font-size: 1rem;
}
.contact-form select:focus {
  border-color: #7155e5;
  outline: none;
  box-shadow: 0 0 5px rgba(113, 85, 229, 0.5);
}

/* You may need additional responsiveness for mobile views */
@media (max-width: 900px) {
  .contact-form-container {
    width: 90%; /* Adjust width for smaller screens */
  }

  .contact-form {
    width: 90%; /* Make form width responsive */
  }
  .contact-form-container p {
    font-size: 16px; /* Optional: Adjust the font size if necessary */
  }
}

#calendar-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fbfbfb;
  margin-bottom: 2rem; /* Adjust the spacing as needed */
}

.calendar-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#calendar {
  flex: 2;
  max-width: 60%;
}
.calendar-date {
  text-align: center;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  cursor: pointer; /* Shows pointer on hover */
}

.calendar-date:hover {
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Optional shadow effect */
}

.calendar-date.weekend {
  color: #aaa; /* Gray text color */
  cursor: not-allowed; /* Show not-allowed cursor */
  pointer-events: none; /* Disable interaction */
}
.calendar-table {
  width: 100px; /* Adjust size as needed */
  height: 200px;
}
.calendar-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
@media (max-width: 900px) {
  .calendar-table {
    font-size: 0.7rem;
  }
}

.time-slots {
  flex: 1;
  display: flex;
  flex-direction: column; /* Stack the slots vertically */
  align-items: center; /* Center the slots horizontally */
  padding-left: 0; /* Remove padding to align with the heading */
}

.time-slots ul {
  list-style: none; /* Remove bullet points */
  padding: 0;
  margin: 0;
  width: 100%; /* Adjust the width of the list */
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* Add spacing between slots */
  align-items: center; /* Center the list items */
}

.time-slots ul li {
  list-style: none; /* Remove bullet points */
  width: 80%; /* Set a consistent width for slots */
  margin: 0; /* Remove margin */
  background: #007bff;
  color: #000;
  padding: 0.5rem;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.time-slots ul li:hover {
  background: #0056b3;
}

.month-arrow {
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

.modal {
  background: #fbfbfb; /* Semi-transparent black */
  border-radius: 10px;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #000; /* Ensure text remains visible on a transparent background */
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 10px;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.modal-close {
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.modal-body p {
  margin: 15px 0;
  font-size: 1rem;
  color: #000;
}

.modal-footer {
  margin-top: 10px;
}


/* Accessibility utility */
.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;
}

/* General button style */
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 24px; /* Sufficient padding for clickable area */
  font-family: "Rubik"; /* Font family consistent with the website */
  font-size: 16px; /* Legible font size */
  border-radius: 25px; /* Rounded corners for a modern look */
  cursor: pointer; /* Indicates that the element is clickable */
  transition: all 0.3s ease; /* Smooth transition for interactive effects */
  text-decoration: none; /* Removes underline from links */
  display: inline-block; /* Allows the use of margin and padding */
  margin: 10px; /* Spacing around the button */
  position: relative;
  box-sizing: border-box; /* Explicitly set for buttons if not globally applied */
}
.button:hover {
  background-color: #0069d8;
  color: #fff;
}
.button:active {
  transform: scale(0.95); /* Slightly shrink the button when clicked */
  background-color: #0069d8;
}

/* Optional: add a focus style for accessibility */
.button:focus {
  outline: none; /* Removes the default focus outline */
  box-shadow: 0 0 0 3px #ffffff; /* Glow effect that matches your brand color */
}
.button-primary {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 24px; /* Sufficient padding for clickable area */
  font-family: "Rubik"; /* Font family consistent with the website */
  font-size: 16px; /* Legible font size */
  border-radius: 25px; /* Rounded corners for a modern look */
  cursor: pointer; /* Indicates that the element is clickable */
  transition: all 0.3s ease; /* Smooth transition for interactive effects */
  text-decoration: none; /* Removes underline from links */
  display: inline-block; /* Allows the use of margin and padding */
  margin-top: 10px; /* Spacing around the button */
  position: relative;
  box-sizing: border-box; /* Explicitly set for buttons if not globally applied */
}
.section-cta {
  margin-top: 2rem;
  text-align: center;
}
.button-outline-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid #0b0b0b;
  color: #0b0b0b;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  background: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.button-outline-arrow img {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.button-outline-arrow:hover {
  background-color: rgba(0, 0, 0, 0.06);
  color: #0b0b0b;
}
.button-outline-arrow:hover img {
  transform: translateX(3px);
}
.button-outline-arrow--white {
  border-color: #ffffff;
  color: #ffffff;
}
.button-outline-arrow--white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.button-outline-arrow--white img {
  filter: brightness(0) invert(1);
}
.button-primary:hover {
  background-color: #0069d8;
  color: #fff;
}
.button-secondary {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;      /* fine grey/black outline */
  padding: 12px 24px;
  font-family: "Rubik", sans-serif;
  text-decoration: none;
  border-radius: 25px;
  display: inline-flex;         /* ensures vertical centering */
  align-items: center;
  justify-content: center;
  margin: 10px;
  box-sizing: border-box;
  appearance: none;             /* normalize button styles */
  -webkit-appearance: none;
}

.button-secondary:hover {
  box-shadow: 0 0 0 1px #000 inset; /* visually thicker border */
}

.clickable-text {
  color: black;
  font-weight: 400;
}


* {
  box-sizing: border-box; /* This ensures padding and borders are included in the total width and height */
}

.button-with-icon {
  display: inline-flex; /* Align text and icon inline */
  gap: 0.5rem; /* Add space between text and icon */
}

.button-with-icon img {
  width: 16px; /* Icon size */
  height: 16px;
  vertical-align: top; /* Align icon to the middle of the text */
  transition: filter 0.3s ease; /* Smooth transition for hover effects */
}

video {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  border-radius: 5px; /* Optional: rounded corners for the video */
  margin: auto; /* Center the video horizontally */
}

/* ===============Card=============== */
.contact-card {
  color: black;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding: 2px;
  width: 100%; /* Card takes full width of its parent */
  height: 100%; /* Card takes full height of its parent */
}

.inner-card {
  border-radius: inherit;
  background-color: #fbfbfb;
  width: 100%; /* Takes full width of parent */
  height: 100%; /* Takes full height of parent */
  display: flex;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


/* ===============Home-Supported-by=============== */

.supported-by-section {
  text-align: center;
  padding-bottom: 30px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  width: 100%; /* Full width */
}

.supported-by-title {
  font-size: clamp(0.7rem, 1.1vw, 1rem);
  line-height: 1.3;
}

.supported-by-logos {
  display: flex; /* Use Flexbox to align logos */
  flex-wrap: wrap; /* If logos can wrap to next line */
  align-items: center; /* Center logos vertically */
  justify-content: center; /* Center logos horizontally */
  max-width: 90%;
}

.supported-by-logos img {
  margin: 0 15px; /* You might want to adjust this to control spacing between logos */
  height: 100px; /* Or your preferred size */
  vertical-align: middle; /* Aligns the image baselines */
  padding: 10px;
}

@media (max-width: 900px) {
  .supported-by-logos img {
    height: 100px; /* Or your preferred size */
    padding: 10px;
  }
  .supported-by-title {
   width: 100%;
  }
}

/* ====================================Key features======================================= */
.key-feature-card {
  display: block;
  width: 400px;
  height: 600px;
  box-sizing: border-box; /* Include padding and border in total size */
  padding: 1.5rem;
}

.key-feature-image-container {
  width: 100%; /* fixed width */
  height: auto; /* fixed height */
  box-sizing: border-box; /* make padding included in the set width/height */
  display: flex; /* for easy centering of the image */
  justify-content: center;
  align-items: center;
  overflow: hidden; /* hide image overflow if it exceeds container */
  border-radius: 15px; /* rounded corners */
}

/* Image inside the container */
.key-feature-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* keeps the entire image visible */
  display: block; /* remove extra space below images in some browsers */
}

/* ================= Use Cases ================ */
.use-cases-section {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(48px, 8vw, 112px) clamp(24px, 6vw, 64px);
}

/* Grid */
.use-case-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  align-items: stretch;            /* make items fill their row track */
}

/* Card */
.use-case-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  gap: clamp(.75rem, 1.5vw, 1.25rem);
  --use-case-card-height: clamp(360px, 32vw, 420px);
  height: var(--use-case-card-height);
  min-height: var(--use-case-card-height);
  max-height: var(--use-case-card-height);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease-in-out;
  will-change: transform, box-shadow;
  background: #ffffff;
}

.use-case-item-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  width: 100%;
  background: #ffffff;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease-in-out,
    box-shadow 0.35s ease-in-out,
    gap 0.35s ease-in-out,
    flex-grow 0.35s ease-in-out;
  will-change: transform, background, box-shadow;
}

.use-case-item-content h4 {
  align-self: flex-start;
  text-align: left;
  margin: 0;
}

.use-case-item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.use-case-icon {
  flex: 1 0 220px;
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  transition: background 0.35s ease-in-out, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.use-case-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 123, 255, 0) 0%, rgba(0, 123, 255, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
  pointer-events: none;
}

.use-case-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.use-case-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.use-case-item:hover .use-case-item-content {
  transform: translateY(-28%);
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: 0 -16px 30px rgba(0, 0, 0, 0.08);
  gap: 0.75rem;
}

.use-case-item:hover .use-case-icon {
  background: linear-gradient(180deg, #e6f4ff 0%, #ffffff 100%);
}

.use-case-item:hover .use-case-icon::after {
  opacity: 1;
}

.use-case-item:hover .use-case-item-link {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 900px) {
  .use-case-container {
    grid-template-columns: 1fr;
  }
}

/* ===== Use Case Pages ===== */

section.usecase-page {
  padding-inline: 0;
  box-sizing: border-box;
}

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

.full-bleed {
  margin-inline: calc(var(--section-pad) * -1);
  width: calc(100% + (var(--section-pad) * 2));
}

body.usecase-page .hero {
  --usecase-hero-image: url("assets/Images/digital-transformation-bg.png");
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-top: clamp(140px, 16vw, 220px);
  padding-bottom: clamp(96px, 12vw, 160px);
}

body.usecase-page .hero h1,
body.usecase-page .hero .hero-description {
  max-width: min(75%, 820px);
}

@media (max-width: 900px) {
  body.usecase-page .hero h1,
  body.usecase-page .hero .hero-description {
    max-width: 100%;
  }
}

body.usecase-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--usecase-hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  animation: none;
  z-index: 0;
}

body.usecase-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--usecase-hero-gradient);
  z-index: 1;
}

body.usecase-page .hero > * {
  position: relative;
  z-index: 2;
}

@keyframes hero-kenburns {
  0% { transform: scale(1.05) translate3d(0, 0, 0); }
  50% { transform: scale(1.12) translate3d(-1%, -1%, 0); }
  100% { transform: scale(1.05) translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  body.usecase-page .hero::before {
    animation: none;
    transform: scale(1.02);
  }
}

/* ===== Use Case Problem ===== */
.problem {
  padding-block: clamp(56px, 9vw, 120px);
}

.problem h2 {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.current-state {
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid #e6e9ef;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.current-state h3 {
  margin-top: 0;
}

.chaos-visualization {
  display: grid;
  gap: 1rem;
}

.stat {
  margin: 0;
  font-weight: 600;
}

.chaos-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.chaos-list li {
  margin: 0;
}

.cost-callout {
  border-left: 3px solid #111;
  padding-left: 0.75rem;
}

.stat-large {
  margin: 0;
  font-weight: 600;
}

.future-state {
  background: linear-gradient(
    135deg,
    #0b0b0b 0%,
    #7155E5 70%,
    #2DFFFE 99%,
    #0b0b0b 100%
  );  color: #fff;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  min-height: 100%;
}

.opportunity-text {
  margin: 0;
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  line-height: 1.4;
}

.cta-inline {
  align-self: flex-start;
  background: #ffffff;
  color: #0b0b0b;
  border: none;
  text-decoration: none; /* Removes underline from links */
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-inline:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .before-after {
    grid-template-columns: 1fr;
  }

  .future-state {
    text-align: center;
    align-items: center;
  }

  .cta-inline {
    align-self: center;
  }
}

/* ===== Use Case Solution Tabs ===== */
.solution {
  padding-block: clamp(56px, 9vw, 120px);
}

.solution h2 {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.solution-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  background: #f0f0f0;
  padding: 8px;
  border-radius: 999px;
  max-width: 520px;
  margin: 0 auto clamp(24px, 4vw, 48px);
}

.tab-button {
  border: none;
  background: transparent;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tab-button .tab-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 0.85rem;
}

.tab-button.active {
  background: #111;
  color: #fff;
}

.tab-button.active .tab-number {
  background: #fff;
  color: #111;
}

.tab-button:hover {
  transform: translateY(-1px);
}

.tab-content-container {
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.content-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
}

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.source-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.source-value {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 32px);
  align-items: stretch;
}

.source-value .source-list {
  margin-bottom: 0;
}

.source-value .value-prop {
  margin-top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tab-content[data-content="unify"] .content-split {
  grid-template-columns: 1fr;
}

.tab-content[data-content="search"] .content-split {
  grid-template-columns: 1fr;
}

.source-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f7f7f7;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
}

.source-item .icon {
  font-size: 1.2rem;
}

.value-prop {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid #007bff;
  background: #f2f2f2;
  border-radius: 12px;
}

.content-right .value-prop {
  flex: 1;
  height: 100%;
  margin-top: 0;
}

.content-right {
  display: flex;
}

.visual-placeholder {
  border: 2px dashed #d0d0d0;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  color: #6b6b6b;
  background: #fafafa;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.example-queries {
  display: grid;
  gap: 0.75rem;
}

.search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 32px);
  align-items: start;
}

.example-label {
  margin: 0;
  font-weight: 600;
}

.query {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.time-highlight {
  background: #111;
  color: #fff;
  padding: 0.1rem 0.35rem;
  border-radius: 8px;
}

.search-layout .value-prop {
  margin-top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.activation-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  margin-top: 2rem;
}

.feature-card {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
  position: relative;
}

.feature-icon {
  font-size: 1.4rem;
}

.feature-card h4 {
  margin: 0;
}

.benefit-badge {
  align-self: start;
  padding: 0.3rem 0.7rem;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 1000px) {
  .content-split {
    grid-template-columns: 1fr;
  }

  .visual-placeholder {
    min-height: 200px;
  }

  .activation-features {
    grid-template-columns: 1fr;
  }

  .search-layout {
    grid-template-columns: 1fr;
  }

  .source-value {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .solution-tabs {
    flex-direction: column;
    border-radius: 20px;
  }
}

/* ===== Enterprise Features ===== */
.enterprise-features {
  padding-block: clamp(56px, 9vw, 120px);
  background: radial-gradient(circle at top, #ffffff 0%, #f5f6f8 55%, #eef1f4 100%);
  border-radius: 32px;
  margin-block: clamp(32px, 6vw, 72px);
}

.enterprise-features .section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(32px, 6vw, 56px);
  display: grid;
  gap: 12px;
}

.enterprise-features .section-intro {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #3b3b3b;
}

.enterprise-features .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.enterprise-features .feature-card {
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  gap: 16px;
  border: 1px solid #e4e7eb;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.enterprise-features .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.enterprise-features .card-content {
  display: grid;
  gap: 12px;
}

.enterprise-features .card-content h3 {
  margin: 0;
}

.enterprise-features .card-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.capability-tag,
.system-badge,
.compliance-badge,
.security-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.capability-tag {
  background: #cdc5e9bc;
  color: #7155E5;
}

.system-badge {
  border: 1px solid #cfd6df;
  color: #1f2a37;
  background: #f6f8fb;
}

.compliance-badge {
  background: #e6f6ef;
  color: #1d6b45;
}

.security-tag {
  background: #e9f0ff;
  color: #1d3f8c;
}

@media (max-width: 900px) {
  .enterprise-features {
    border-radius: 24px;
  }

  .enterprise-features .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Value Prop CTA ===== */
.value-prop-cta {
  padding-block: clamp(56px, 9vw, 120px);
  background: linear-gradient(135deg, #0b0b0b 0%, #0f1a3a 55%, #0b0b0b 100%);
  color: #fff;
  border-radius: 32px;
  margin-block: clamp(32px, 6vw, 72px);
}

.value-prop-cta .cta-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 16px;
}

.value-prop-cta .pre-headline {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.value-prop-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.value-prop-cta .value-statement {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
}

.value-prop-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.value-prop-cta .button-primary {
  background-color: #ffffff;
  color: #0b0b0b;
}

.value-prop-cta .button-secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.value-prop-cta .button-primary,
.value-prop-cta .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0;
}

.value-prop-cta .button-secondary:hover {
  box-shadow: 0 0 0 1px #ffffff inset;
}

@media (max-width: 700px) {
  .value-prop-cta {
    border-radius: 24px;
  }
}

/* ===== Results ===== */
.results {
  padding-block: clamp(56px, 9vw, 120px);
}

.results-card {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid #e6e9ef;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.results-card h2 {
  margin: 0 0 0.5rem;
}

.results-card .card-subtitle {
  margin: 0 0 1.5rem;
  color: #4b5563;
  font-weight: 600;
}

.results-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.results-list li {
  background: #f7f7f7;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font-size: 0.98rem;
}

.results-list li::marker {
  content: "";
}

@media (max-width: 700px) {
  .results-card {
    border-radius: 22px;
  }
}

/* ===== Demo Timeline ===== */
.demo-timeline {
  padding-block: clamp(72px, 10vw, 140px);
  background: linear-gradient(135deg, #0b0b0b 0%, #0f1a3a 55%, #0b0b0b 100%);
  color: #fff;
  border-radius: 32px;
  margin-block: clamp(32px, 6vw, 72px);
  margin-inline: calc(clamp(24px, 6vw, 64px) * -1);
}

.demo-timeline__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}

.demo-timeline__header {
  text-align: center;
  display: grid;
  gap: 8px;
  margin-bottom: clamp(20px, 4vw, 36px);
}

.demo-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  position: relative;
}

.demo-timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.demo-timeline__step {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffffff;
  color: #0b0b0b;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.demo-timeline__content h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.demo-timeline__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.demo-timeline__cta {
  margin-top: clamp(20px, 4vw, 32px);
  text-align: center;
}

@media (max-width: 700px) {
  .demo-timeline {
    border-radius: 24px;
  }
}

/* background */
.hero-bg {
  /* set per page */
  --hero-overlay: linear-gradient(90deg, rgba(0, 0, 0, 0.766) 0%, rgba(0, 123, 255, 0.557) 100%);
  position: relative;
  color: #fff;
  background: var(--hero-overlay), var(--hero-bg) center / cover no-repeat;
  box-sizing: border-box;
}

/* Make inner row fill the height when used inside hero */
.hero-bg {
  min-height: inherit;
  width: 100%;
}

/* Keep hero content clear of the fixed navbar on use case pages */
body.usecase-page .hero-bg {
  padding-top: calc(70px + 2rem);
}

@media (max-width: 920px) {
  body.usecase-page .hero-bg {
    padding-top: calc(70px + 3rem);
  }
}

.hero-row-division-container {
  min-height: inherit;
  width: 100%;
  max-width: 1280px;
  margin: 40px auto;  
}

/* Ensure readable text only in hero */
.hero-bg .hero-header,
.hero-bg .hero-paragraph {
  color: #fff;
}

/* Optional: limit text column width on very wide screens */
.hero-bg .hero-home-text-container {
  width: min(50%, 560px);
}
/* ===== Split Section (scoped) ===== */
.section-split {
  padding: clamp(48px, 8vw, 112px) clamp(24px, 6vw, 64px);
  box-sizing: border-box;
}
.section-split > .section-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 64px);
  width: 100%;
}

.split-feature__header { display: grid; gap: 24px }

.split-feature__header--center {
  text-align: center;
  justify-items: center;
}

.split-feature__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.2;
  color: #000;
}
.split-feature__text {
  margin: 0;
  font-size: clamp(16px, 2.5vw, 18px);
  padding-bottom: 1rem;
  line-height: 1.5;
  color: #000;
}

/* List */
.split-feature__list {
  list-style: none;
  margin: 0;
  padding: 0 0 1rem;
  display: grid;
  gap: 16px;
}

.split-feature__item::marker { content: "" }

.split-feature__item {
  display: flex;
  align-items: center;     /* centers text to icon */
  gap: 16px;
  list-style: none 
}
.split-feature__icon {
  width: 24px;
  height: 24px;
  display: block;
}


/* Actions */
.split-feature__actions { display: flex; gap: 16px }

.translation-rotator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin-top: 4px;
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  background: linear-gradient(90deg, #f8fafc 0%, #ffffff 100%);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  min-height: 66px; /* keeps container height steady even when phrases wrap */
}

.translation-rotator__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #374151;
  white-space: nowrap;
}

.translation-rotator__phrase {
  line-height: 1.5;
  color: #0f172a;
  opacity: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px; /* two lines of text at 14px with 1.5 line-height */
  max-height: 50px;
  flex: 1;
  transform-origin: 50% 50% -6px;
  transition: opacity 0.35s ease;
}

.translation-rotator__phrase--visible {
  opacity: 1;
}

.translation-rotator__phrase--flip {
  animation: translationFlipIn 0.6s ease forwards;
}

@keyframes translationFlipIn {
  0% {
    opacity: 0;
    transform: rotateX(-70deg) translateZ(6px);
  }
  50% {
    opacity: 1;
    transform: rotateX(-6deg) translateZ(1px);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg) translateZ(0);
  }
}

@media (max-width: 900px) {
  .features-row { display: flex; flex-direction: column; }
  .features-row.reverse-mobile { flex-direction: column-reverse; }
  .features-row > * { width: 100%; }
  .translation-rotator {
    align-items: flex-start;
    flex-direction: column;
  }
}

.translation-card {
  width: 100%;
  max-width: 520px;
  padding: 16px 18px 12px;
  border-radius: 20px;
  background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08), transparent 38%), #f9fafb;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 12px;
  box-sizing: border-box;
}

.translation-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.translation-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.translation-step__badge {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.translation-step__copy {
  display: grid;
  gap: 4px;
}

.translation-card__label {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 700;
}

.translation-card__phrase {
  font-size: 18px;
  line-height: 1.4;
  color: #0f172a;
}

.translation-card__controls {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.translation-card__button {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid #ffffff;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #606060;
  cursor: default;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);

}

.translation-card__progress {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
  position: relative;
}

.translation-card__progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.translation-card__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}

.translation-card__brand-logo {
  height: 16px;
  width: auto;
  display: block;
}

@media (max-width: 900px) {
  .translation-card {
    width: 100%;
  }
}


/* ===== Important Figures (scoped) ===== */
.figures {
  background: #fff;
  padding: clamp(48px, 8vw, 112px) clamp(24px, 6vw, 64px);
  box-sizing: border-box;
}

.figures__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 80px);
}

.figures__grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(24px, 6vw, 80px);
}

/* Left column */
.figures__intro {
  max-width: 50%
}

.figures__tag {
  margin: 0;
  padding-bottom: 2rem;
  line-height: 1.2;
  color: #000;
}

.figures__title {
  margin: 0;
  line-height: 1.2;
  color: #000;
}

/* Right column */
.figures__content {
  flex: 1 1 600px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 32px);
}

.figures__lead {
  margin: 0;
  font-size: clamp(16px, 2.5vw, 18px); /* Text/Medium/Normal */
  line-height: 1.5;
  color: #000;
}

/* Stats list */
.figures__stats {
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* two stats side-by-side */
  gap: 24px;
}

.figures__stat {
  display: flex;
  flex-direction: column;
  gap: 8px; /* spacing between number and label */
}

.figures__number {
  margin: 0;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px); /* H2 ~48px desktop */
  line-height: 1.2;
  color: #000;
}

.figures__label {
  margin: 0;
  font-size: 16px; /* Text/Regular/Normal */
  line-height: 1.5;
  color: #000;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .figures__grid {
    flex-direction: column;
  }
  .figures__intro,
  .figures__content {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .figures__stats {
    grid-template-columns: 1fr; /* stack metrics on very small screens */
  }
}


/* ===============================Home=================================== */
.hero-centered-section {
  margin: 4dvh auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}
.hero-centered-section > .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.hero-centered-content {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero-centered-section .hero-header {
  margin-left: 0;
  text-align: center;
}
.hero-centered-section p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  justify-content: center;
}
.hero-centered-section .half-width-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-header {
  font-family: 'Rubik', sans-serif;
  font-weight: 200;
  font-size: clamp(2rem, 6vw, 3.5rem); /* min 2rem (~32px), scales up to 3.5rem (~56px) */
  margin-bottom: 0;
  margin-left: clamp(1rem, 5vw, 5%);
  text-align: left;
}
.hero-paragraph {
  margin-left: 5%;
  margin-top: 24px;
  text-align: left;
  line-height: 1.6;
}
.button-hero {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 24px; /* Sufficient padding for clickable area */
  font-family: "Rubik"; /* Font family consistent with the website */
  font-size: 16px; /* Legible font size */
  border-radius: 25px; /* Rounded corners for a modern look */
  cursor: pointer; /* Indicates that the element is clickable */
  transition: all 0.3s ease; /* Smooth transition for interactive effects */
  text-decoration: none; /* Removes underline from links */
  display: inline-block; /* Allows the use of margin and padding */
  position: relative;
  box-sizing: border-box; /* Explicitly set for buttons if not globally applied */
}
.button-hero:hover {
  background-color: #0069d8;
  color: #fff;
}
.hero-button-container {
  display: flex;
  justify-content: flex-start;
  margin-left: 5%;
}
.hero-row-division-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;                /* controls space between text and image */
}
/* Make the image responsive */
.hero-image {
  max-width: 50%;
  height: auto;
  display: block;
}
.hero-home-text-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* left align */
  text-align: left;
  gap: 1rem;                 /* spacing between h1, p, button */
}
@media (max-width: 900px) {
  .hero-row-division-container {
    flex-direction: column;      /* stack vertically */
    align-items: stretch;
  }
  .hero-home-text-container {
    width: 100%;
    align-items: center;
  }
  .hero-image {
    width: 100%;
  }
  .hero-image {
    max-width: 100%;
    margin: 0 auto;
  }
}
/* ===== Home banner (scoped) ===== */
.home-banner {
  /* swap the URL to your asset path */
  --banner-image: url('assets/Images/backgrounds/training-simulation.png');

  position: relative;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(0, 123, 255, 0.55), rgba(0, 0, 0, 0.886)),
    var(--banner-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Figma: 112px 64px with responsive breathing room */
  padding: clamp(48px, 8vw, 112px) clamp(24px, 6vw, 64px);
  min-height: 441px;   /* from spec; keeps it substantial but responsive */
  box-sizing: border-box;
}

.home-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 6vw, 80px);
}

.home-banner__grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(24px, 6vw, 80px);
}

/* Left column */
.home-banner__left {
  flex: 1 1 600px;
  max-width: 600px;
}
.home-banner__title {
  margin: 0;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;                  /* H3 weight */
  font-size: clamp(28px, 4vw, 40px); /* H3 ~40px desktop */
  line-height: 1.2;
  color: #fff;
}

/* Right column */
.home-banner__right {
  flex: 1 1 600px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 32px);
}

.home-banner__lead {
  margin: 0;
  font-size: clamp(16px, 2.5vw, 18px); /* Text/Medium/Normal */
  line-height: 1.5;
  color: #fff;
}

/* Mobile sizing & layout for the home banner (matches Figma spec) */
@media (max-width: 480px) {
  .home-banner {
    padding: 64px 20px;
    min-height: 382px; /* target height */
    /* switch to black overlay on mobile */
    background-image:
      linear-gradient(0deg, rgba(0, 123, 255, 0.55), rgba(0, 0, 0, 0.886)),
      var(--banner-image);
  }

  .home-banner__inner {
    max-width: 335px;   /* container width */
    margin: 0 auto;
    gap: 48px;          /* section gap */
  }

  .home-banner__grid {
    flex-direction: column; /* stack */
    gap: 20px;
    align-items: flex-start;
  }

  .home-banner__left,
  .home-banner__right {
    max-width: 335px;   /* column width */
    flex: 1 1 auto;
  }

  .home-banner__title {
    font-size: 32px;    /* H3 mobile */
    line-height: 1.2;
  }

  .home-banner__lead {
    font-size: 16px;    /* body mobile */
    line-height: 1.5;
  }
}

/* ================= Industries ================= */
.industries-section {
  padding: clamp(48px, 8vw, 112px) clamp(24px, 6vw, 64px);
  box-sizing: border-box;
  background: #f5f5f5;
}

.industries-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
}

.industries-title {
  margin-bottom: 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 1 row, 3 columns */
  gap: clamp(24px, 3vw, 32px);
}

/* Card */
.industry-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
}

/* Image frame */
.industry-frame-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;

  /* Radial gradient background */
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(230, 230, 230, 0.5) 45%,
    rgba(210, 210, 210, 0.3) 70%,
    rgba(190, 190, 190, 0.2) 100%
  );

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image takes ~70% of the frame */
.industry-image {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}


/* Text block */
.industry-body {
  padding: 1.75rem 0rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.industry-tag {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: #6b7280;
}

.industry-heading {
  margin: 0;
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
}

.industry-text {
  margin: 0 0 0.75rem;
}

/* Button inside card */
.industry-cta {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}


/* ===============================About=================================== */
/* General Styles */
.about-page {
  background-color: #000;
  color: white;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* About page: make header/footer match black theme */
body.about-page {
  background-color: rgba(0, 0, 0, 0.85);
}

body.about-page .line {
  background-color: #ffffff;
}

body.about-page .footer {
  background: #000;
  color: #ffffff;
  border-top-color: #374151;
}

body.about-page .footer__bottom {
  border-top-color: #374151;
}

.aboutVideo {
  height: 400vh; /* Full viewport height */
  position: sticky;
}
.aboutVideo video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-video-holder {
  position: sticky;
  top: 0;
}

.about-us-section {
  position: absolute;
  top: 315vh;
  display: flex;
  flex-direction: column; /* Stack items vertically */
  justify-content: center; /* Center items vertically */
  align-items: center; /* Center items horizontally */
  width: 60%; /* Ensure full width of the section */
  height: auto; /* Adjust as needed for your content */
  text-align: center; /* Center-align text if needed */
}

/* About Text Container as a Card */
.about-text-container {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  border-radius: 12px;
  padding: 20px 30px; /* Compact padding */
  width: 100%;
  max-width: 600px; /* Reduced maximum width */
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-title-container {
  font-size: 2rem; /* Adjusted size */
  margin-bottom: 15px;
  text-align: center;
  color: #ffffff;
  width: 100%;
}

/* Mission and Identity Sections */
.mission-container,
.identity-container {
  display: flex;
  flex-direction: row; /* Stack children vertically */
  align-items: center; /* Horizontally center items */
  justify-content: center; /* Vertically center items */
}

/* Story Section */
.story-container {
  padding: clamp(48px, 8vw, 112px) clamp(24px, 6vw, 64px);
}

.story-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.about-story-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px 30px;
  width: min(100%, 900px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.about-story-card p {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.about-story-card p:last-child {
  margin-bottom: 0;
}

.about-story-cta {
  margin-top: 6px;
}
.mission-text-container,
.identity-text-container {
  border-radius: 12px;
  padding: 20px; /* Compact padding */
  width: 100%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  margin-top: 15px; /* Add spacing */
  text-align: center; /* Center align text */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  /* Flexbox for vertical centering */
  display: flex;
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Horizontally center items */
  justify-content: center; /* Vertically center items */
  height: 100%; /* Ensure the container uses all available height */
}

.mission-image,
.identity-image {
  width: 40%; /* Adjusted size */
  margin: 15px auto; /* Center and spaced */
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.mission-image img,
.identity-image img {
  width: 100%;
  border-radius: 10px;
}

.mission-image img:hover,
.identity-image img:hover {
  transform: scale(1.05);
}

/* Mobile Styles */
@media (max-width: 900px) {
  .about-us-section {
    top: 335vh;
  }
  .about-video-holder {
    position: sticky; /* Ensure positioning works with flexbox */
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Horizontally centers the content */
    top: 50%; /* Center the container vertically */
    transform: translate(-0%, -50%); /* Adjust for the container's size */
    width: 100%; /* Optional: Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
  }
  .about-text-container {
    display: flex;
    flex-direction: column; /* Stack child elements vertically */
    align-items: center; /* Center child elements horizontally */
    justify-content: center; /* Center child elements vertically */
    padding: 15px 20px; /* Adjust padding for smaller screens */
  }

  .about-title-container {
    font-size: 1.5rem; /* Reduce font size */
    margin-bottom: 10px;
  }
}
/* ===============================Site Map=================================== */
.site-map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.site-map-list {
  list-style: disc; /* Removes default list styles */
  color: black;
}

.site-map-list li {
  text-align: left; /* Aligns the text to the left */
  margin-bottom: 8px; /* Adds space between items */
}
.site-map-list li a {
  color: black; /* Optional: Ensures links use the list's text color */
  text-decoration: none; /* Optional: Removes underline from links */
}

.notfound-button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-family: "Rubik-light";
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  box-sizing: border-box;
}

.notfound-button:hover {
  background-color: #0069d8;
  color: #fff;
  transform: translate(-50%, -50%) scale(1.05);
}

.notfound-button:active {
  transform: translate(-50%, -50%) scale(0.95);
  background-color: #0069d8;
}

.notfound-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px #ffffff;
}

/* ===============================Navigation Bar=================================== */
.navbar {
  --navbar-height: 70px;
  --navbar-row-height: 40px;
  --navbar-item-offset: calc((var(--navbar-height) - var(--navbar-row-height)) / 2);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: rgba(248, 248, 248, 0.8);
  color: black;
  padding: 0 1.5rem;
  margin-top: 10px;
  width: calc(100% - 2rem);
  max-width: 1280px;
  min-height: var(--navbar-height);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  border-radius: 2rem;
  border: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-clip: padding-box;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.navbar > .logo,
.navbar > .hamburger,
.navbar > .navigation {
  margin-top: var(--navbar-item-offset);
}

/* Logo Section */
.logo {
  display: flex;
  align-items: center;
  min-height: var(--navbar-row-height);
}

.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  display: block;
  height: 30px;
  width: auto;
}

.logo .logo-mobile {
  display: none; /* Hidden unless used for mobile */
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 24px;
  line-height: 1;

  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-family: "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease, transform 0.05s ease;
}
  
.nav-button:hover {
  background-color: #0069d8;
  color: #fff;
}

/* Navigation Menu */
.navigation {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-left: auto;
  min-height: var(--navbar-row-height);
}

.navigation > a:not(.nav-button),
.usecases-menu > a {
  display: inline-flex;
  align-items: center;
  min-height: var(--navbar-row-height);
}

.navigation a:not(.nav-button){
  color: #000;
  text-decoration: none;
  margin-left: 5px;
  margin-right: 5px;
}

.navigation a:not(.nav-button):hover {
  color: #007bff;
}

.navigation a:hover::after {
  transform: translateX(-50%) scale(1);
  width: 50%;
  height: 2px;
  border-radius: 0;
}

/* Dropdown Menu (Use Cases) */
.usecases-menu {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Trigger */
.usecases-menu > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  text-decoration: none;
}

/* Caret */
.usecases-menu > a::before {
  content: "";
  width: 0.9em;
  height: 0.9em;
  flex-shrink: 0;
  display: inline-block;
  background: var(--icon-chevron-down) no-repeat center / 100% 100%;
  transition: transform 0.2s ease;
}

/* Panel */
.usecases-menu .dropdown-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0;
  padding: 0;
  position: static;
  transform: none;
  min-width: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease, margin-top 0.3s ease, padding 0.3s ease, visibility 0s linear 0.3s;
}

.usecases-menu > a[aria-expanded="true"]::before {
  transform: rotate(180deg);
}

@supports ((-webkit-mask: url("")) or (mask: url(""))) {
  .faq__question::after,
  .usecases-menu > a::before {
    background: none;
    background-color: currentColor;
    -webkit-mask: var(--icon-chevron-down) no-repeat center / 100% 100%;
    mask: var(--icon-chevron-down) no-repeat center / 100% 100%;
  }
}

/* Show when toggled */
.usecases-menu .dropdown-content.show {
  max-height: 14rem;
  opacity: 1;
  margin-top: 0.35rem;
  padding: 0.25rem 0;
  pointer-events: auto;
  visibility: visible;
  transition: max-height 0.3s ease, opacity 0.2s ease, margin-top 0.3s ease, padding 0.3s ease, visibility 0s linear 0s;
}

/* Items */
.dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  padding: 0.4rem 0.75rem;
  margin: 0.1rem 0;
  border-radius: var(--ui-radius);

  color: #000;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

/* Hover state similar to navbar accent */
.dropdown-content a:hover {
  background-color: rgba(0, 123, 255, 0.08);
  color: #007bff;
}


/* Hamburger Menu (Mobile Only) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
  margin-left: auto;
  min-height: var(--navbar-row-height);
}

.line {
  width: 25px;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s ease;
}

.hamburger.open .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open .line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.usecases-menu {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.usecases-menu > a {
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 920px) {
  .navbar {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: var(--navbar-row-height) auto;
    align-items: center;
    --navbar-row-height: 35px;
    padding: var(--navbar-item-offset) 1rem;
  }

  .navbar > .logo,
  .navbar > .hamburger,
  .navbar > .navigation {
    margin-top: 0;
  }

  .logo {
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    justify-self: start;
    width: auto;
  }

  .logo img {
    height: 35px;
    width: auto;
  }

  .usecases-menu > a::before { 
    content: none; /* no caret on mobile */
  }

  .nav-button {
    font-size: 14px;
    padding: 0.5rem 1rem;
    text-align: center;
  }

  .hamburger {
    display: flex;
    align-self: center;
    justify-self: end;
  }

  /* MOBILE NAV CONTAINER */
  .navigation {
    position: static;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    margin-left: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    grid-column: 1 / -1;
    min-height: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease, visibility 0s linear 0.3s;
  }
  
  .navigation.open {
    max-height: 60vh;
    opacity: 1;
    padding: 0.25rem 0 0.75rem;
    pointer-events: auto;
    visibility: visible;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease, visibility 0s linear 0s;
  }  

  .navigation a {
    margin: 0;
    text-align: center;
  }

  .logo .logo-desktop {
    display: none;
  }

  .logo .logo-mobile {
    display: block;
    height: 35px;
  }

  /* === Use cases: tap to toggle on mobile === */
  .usecases-menu {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .usecases-menu > a {
    pointer-events: auto;          /* allow tap */
    padding: 0.5rem 0;
    text-decoration: underline;
  }

  /* by default hidden on mobile; shown when toggled */
  .usecases-menu .dropdown-content {
    position: static;
    width: 100%;
    max-width: none;
    text-align: center;
    align-self: stretch;
    border-radius: 0;
    box-shadow: none;
  }

  .usecases-menu .dropdown-content a {
    display: inline-flex;
    justify-content: center;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    text-shadow: 0px 0px 1vw rgba(0, 0, 0, 0.1);
    border-radius: 0;
    background: transparent;
    margin: 0 auto;
  }
}


/* ===========================================Ressources=============================================== */

.resources-hero {
  text-align: center;
  padding: 3rem 1rem;
  overflow: hidden; /* Ensures content respects the rounded corners */
}

.resources-title {
  font-size: 2.5rem;
}

.resources-subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
}

.articles {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  box-sizing: border-box;
}

/* 4 across on desktop, fluidly wraps down to 1 on mobile */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* ← change this line */
  gap: 24px;
  align-items: stretch;
}

.article-card {
  background: #fff;
  border: 1px solid #e5e7eb;      /* light grey */
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  overflow: hidden;
  height: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, transform .05s ease;
}

.article-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.article-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.article-link:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 4px;
  border-radius: 12px;
}

.article-card.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.article-type {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #111;
  background: #f5f6f8;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  padding: 4px 10px;
}
.article-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  margin: 0;
}

.article-header h4 {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  color: #111;

  /* Clamp to two lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-description {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #444;

  /* Clamp to three lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto; /* pushes desc to the bottom if needed */
}

/* ===========================================Blog/article/case study=============================================== */
.article-page {
  max-width: 800px;
  margin: 40px auto 0 auto;
  margin-bottom: 10px;
  padding: 20px;
  background: white;
  border-radius: 20px;
}

.resources-back-link {
  max-width: 800px;
  margin: 20px auto ;
  padding: 20px;
}

.article-header {
  text-align: left;
  margin-bottom: 20px;
}

.article-date {
  font-size: 0.9rem;
  color: #000000;
}

.article-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 10px 0;
}

.article-subtitle {
  font-size: 1rem;
  color: #000000;
}

.article-content {
  line-height: 1.8;
}

.article-section-title {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* ===== Article Enhancements ===== */
.article-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.article-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.article-author-name {
  font-size: 14px;
  margin: 0;
}
.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 12px;
}
.article-cta .button-primary,
.article-cta .button-secondary {
  margin: 0;
}
.article-hero-image {
  display: block;
  width: 100%;
  max-width: 680px;
  margin: 16px auto 0;
  border-radius: 12px;
}

.rank-item {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  margin: 20px 0;
  background: #fafafa;
}
.rank-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.rank-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0b0b0b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.rank-title {
  margin: 0;
  font-size: 1.15rem;
}
.rank-bestfor {
  margin: 6px 0 0;
  font-size: 0.95rem;
  color: #333;
}
.rank-bullets {
  margin: 12px 0 8px;
}
.rank-consider {
  margin: 0;
  font-style: italic;
  color: #333;
}
.rank-metrics {
  margin: 12px 0 0;
}
.article-disclaimer {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #444;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 16px 0 8px;
}
.use-case-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  background: #ffffff;
  display: grid;
  gap: 10px;
}
.use-case-card h4 {
  margin: 0;
  font-size: 1rem;
}
.use-case-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.use-case-card .button-secondary {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 12px 0 20px;
}
.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  border: 1px solid #e5e7eb;
  padding: 10px;
  text-align: left;
  font-size: 0.85rem;
}
.comparison-table th {
  background: #f5f5f5;
  font-weight: 600;
}

ul {
  margin: 10px 0;
  padding-left: 20px;
}

ul li {
  list-style-type: disc;
}

@media (max-width: 900px) {
  .article-page {
    padding: 10px;
  }

  .article-title {
    font-size: 1.8rem;
  }

  .article-section-title {
    font-size: 1.3rem;
  }
}
/* Position .article-header relatively, so children can be absolutely positioned */
.article-header {
  position: relative;
}

/* Position the LinkedIn share wrapper in the top-right corner */
.linkedin-share-wrapper {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
}

/* Style the LinkedIn icon */
.linkedin-share-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

/* Scroll Prompt Arrows */
.scroll-prompt {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
}

.scroll-arrow {
  font-size: 2rem;
  color: black;
  animation: float 1.5s infinite;
  user-select: none;
  margin: 5px;
}

.scroll-arrow:nth-child(2) {
  animation-delay: 0.75s;
}

@keyframes float {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ================= Footer ================= */

/* Base */
.footer {
  background: #f5f5f5;
  color: #000;
  font-family: "Rubik";
  padding: 2rem 0;
  width: 100%;
  border-top: 1px solid #e5e7eb;
}

.footer a {
  font-weight: 200;
  color: inherit;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

/* Layout container */
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top area */
.footer__top {
  display: grid;
  grid-template-columns: 1fr; /* newsletter hidden, links span full width */
  gap: 2rem;
  align-items: start;
}

/* Newsletter (hidden for now) */
.footer__newsletter {
  display: none;
}
.footer__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.footer__newsletter p {
  margin: 0 0 1rem;
}
.footer__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__input {
  flex: 1 1 260px;
  min-width: 240px;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
}

/* Link columns */
.footer__links {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr) auto;
  column-gap: 1rem;      /* tighter space between the two left groups */
  align-items: start;
}
.footer__group { min-width: 0; }
.footer__heading {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}
.footer__links ul,
.footer__links li,
.footer__social,
.footer__social li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Social column alignment */
.footer__group--social {
  justify-self: end;
  text-align: right;
}
.footer__group--social .footer__social {
  display: grid;
  gap: 0.5rem;
  justify-items: end;
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid #e5e7eb;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p { margin: 0; }
.footer__legal {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
/* ---------- Footer Responsive ---------- */
@media (max-width: 900px) {
  .footer__links {
    grid-template-columns: 1fr 1fr;
  }
  .footer__group {
    padding-bottom: 1rem;
  }
  .footer__group--social {
    justify-self: start;
    text-align: left;
  }
  .footer__group--social .footer__social {
    justify-items: start;
  }
}

@media (max-width: 600px) {
  .footer__links {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Example Demo Card ---------- */
.example-demo-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f4f9 100%);
  isolation: isolate;
}

.example-demo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(0deg, rgba(25, 38, 60, 0.06) 0, rgba(25, 38, 60, 0.06) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, rgba(25, 38, 60, 0.06) 0, rgba(25, 38, 60, 0.06) 1px, transparent 1px, transparent 32px);
  opacity: 0.45;
  pointer-events: none;
}

.example-demo-inner {
  width: min(720px, 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 44px);
  position: relative;
  z-index: 1;
}

.example-demo-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.example-demo-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7486;
  font-weight: 500;
}

.example-demo-subtitle {
  margin: 0;
  color: #4a5568;
}

.example-demo-card {
  position: relative;
  background: #ffffff;
  border-radius: 32px;
  padding: clamp(8px, 2vw, 24px);
  border: 1px solid #e2e7f0;
  box-shadow: 0 30px 60px rgba(16, 32, 64, 0.18), 0 8px 20px rgba(16, 32, 64, 0.08);
}

.example-demo-card-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.example-demo-transcript-wrapper {
  position: relative;
  padding: 2px 0;
  min-height: clamp(260px, 28vw, 320px);
  height: auto;
  overflow: visible;
}

.example-demo-label {
  align-self: flex-start;
  padding: 6px 14px;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 999px;
  background: #eef2f8;
  color: #3e4c65;
  font-weight: 400;
}

.example-demo-transcript {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  overflow: hidden;
  transition: opacity 220ms ease, transform 220ms ease;
  will-change: opacity, transform;
}

.example-demo-transcript.is-measuring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  overflow: visible;
  visibility: hidden;
  pointer-events: none;
}

.example-demo-transcript.is-animating {
  opacity: 0;
  transform: translateY(10px);
}

.example-demo-bubble {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 18px;
  font-size: clamp(0.6rem, 0.7rem + 0.14vw, 0.8rem);
  line-height: 1.42;
}

.example-demo-bubble p {
  margin: 0;
}

.example-demo-bubble.is-user > p,
.example-demo-bubble.is-assistant > p:first-of-type {
  font-size: 1em;
}

.example-demo-bubble p + p {
  margin-top: 0.6rem;
}

.example-demo-bubble ul,
.example-demo-bubble ol {
  margin: 0.45rem 0 0.15rem;
  padding-left: 1.05rem;
}

.example-demo-bubble li {
  margin-bottom: 0.2rem;
}

.example-demo-bubble li:last-child {
  margin-bottom: 0;
}

.example-demo-bubble.is-assistant {
  align-self: flex-start;
  background: #f4f6fb;
  color: #1d2533;
  border: 1px solid #e1e7f2;
  border-bottom-left-radius: 6px;
}

.example-demo-bubble.is-user {
  align-self: flex-end;
  background: #223d73;
  color: #ffffff;
  border-bottom-right-radius: 6px;
}

.example-demo-note {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: #58657a;
}

.example-demo-actions {
  display: flex;
  justify-content: center;
}

.example-demo-next {
  background: #111c2f;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(16, 32, 64, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.example-demo-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(16, 32, 64, 0.24);
}

.example-demo-next:focus-visible {
  outline: 3px solid #f6b24a;
  outline-offset: 3px;
}

.example-demo-chevron {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #d7dfea;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  opacity: 0.75;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(16, 32, 64, 0.12);
  transition: transform 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.example-demo-chevron::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #5a667a;
  border-bottom: 2px solid #5a667a;
  display: block;
}

.example-demo-chevron--left {
  left: -20px;
}

.example-demo-chevron--left::before {
  transform: rotate(135deg);
}

.example-demo-chevron--right {
  right: -20px;
}

.example-demo-chevron--right::before {
  transform: rotate(-45deg);
}

.example-demo-chevron:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 14px 26px rgba(16, 32, 64, 0.16);
}

.example-demo-chevron:focus-visible {
  outline: 3px solid #f6b24a;
  outline-offset: 3px;
  opacity: 1;
}

@media (max-width: 720px) {
  .example-demo-card {
    border-radius: 26px;
  }

  .example-demo-transcript-wrapper {
    min-height: clamp(240px, 42vw, 280px);
    height: auto;
  }

  .example-demo-bubble {
    max-width: 100%;
  }

  .example-demo-chevron {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .example-demo-transcript,
  .example-demo-next {
    transition: none;
  }
}
