/* Color Variables */
:root {
  --color-background-figma: #10212f;
  --color-background-figma-light: #ebeff5;
  /* Brand Colors */
  --color-primary: #f2815e;
  --color-secondary: #ffdab8;
  --color-off-white: #fbf1ec;
  --color-background: #121231;
  --color-background-gray: #ebeff5;

  /* Gray Scale */
  --color-gray-1: #f8f9fa;
  --color-gray-2: #f1f3f5;
  --color-gray-3: #e1e7ef;
  --color-gray-4: #dde3eb;
  --color-gray-5: #cdd6e4;
  --color-gray-6: #adb7c7;
  --color-gray-7: #7a879c;
  --color-gray-8: #3f4c60;
  --color-gray-9: #2b3341;
  --color-gray-10: #1e232b;

  /* State Colors */
  --color-success: #38c977;
  --color-info: #35b0fc;
  --color-warning: #35b0fc;
  --color-error: #ff3819;
}

body,
html {
  overflow-x: hidden;
  /*overflow-y: hidden;*/
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  font-family: "Inter";
  background: var(--color-background-figma-light);
  color: var(--color-background-figma);
}
body img,
html img {
  max-width: 100%;
  max-height: 100%;
}
body p,
html p {
  line-height: 30px;
  font-size: 1.5rem;
}
body p.large,
html p.large {
  font-size: 1.75rem;
  font-weight: 700;
}
body p.xl,
html p.xl {
  font-size: 1.625rem;
}
@media (min-width: 640px) {
  body p.xl,
  html p.xl {
    font-size: 2.5rem;
    line-height: 50px;
  }
}
body p span,
html p span {
  color: #fd764a;
}
body p .bold,
html p .bold {
  font-weight: 700;
}
body svg,
html svg {
  width: 100%;
  height: 100%;
}

/* DEFAULT COUNTER */

ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
}

ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}

ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}

li ol > li {
  margin: 0;
  margin-bottom: 0.6em;
}

li ol > li:before {
  content: counters(item, ".") " ";
}

ol > li > ol.a > li:before {
  content: counter(item, lower-alpha, ") ");
}

/* BULLET & SUB BULLET */

ul.b {
  list-style: none;
  margin-left: 1.5em;
}

ul.b > li {
  margin-bottom: 0.6em;
}

ul.b li::before {
  content: "\2022";
  color: white;
  font-weight: bold;
  display: inline-block;
  padding-right: 0.6em;
}

ul.b > li > ul.b {
  margin-left: 2em;
}

ul.b > li > ul.b > li:before {
  content: "\25E6";
  padding-right: 0.6em;
}

ul.b > li > ul.b > li > ul.b > li:before {
  content: "\2023";
  padding-right: 0.6em;
}

table {
  border-spacing: 20px;
  border-collapse: inherit;
  width: 100%;
}

/* Container Classes */
.container-xl {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container-xl {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 768px) {
  .container-xl {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container-xl {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container-xl {
    max-width: 1200px;
  }
}

.size-padding {
  padding-bottom: calc(var(--vh, 1vh) * 40);
}

div.width-80 {
  max-width: 515px;
  width: 90%;
  height: 400px;
}
div.width-80 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

iframe.okko-iframe {
  width: 100%;
  height: 100vh;
}

a.bb {
  border-bottom: 1px solid #fd764a;
}

a.button {
  background: #1375e9;
  border-bottom: 0px;
  border-radius: 6px;
  padding: 6px 29px;
}
a.button.call-to-action {
  font-size: 1.125rem;
}
@media (min-width: 640px) {
  a.button.call-to-action {
    padding: 15px 40px;
    font-size: 1.375rem;
  }
}

html.mobile-menu-open {
  overflow: hidden !important;
}

.flag-icon {
  padding-top: 5px;
}

.team-images .team-member {
  width: 173px;
  max-height: 173px;
  margin-bottom: 14px;
}

.team-images .linkedin {
  width: 45px;
  height: 45px;
}

.linkedin {
  margin-top: 14px;
}

.vector-bg {
  background-image: url(../img/bg-vector.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#eye-limit {
  position: relative;
}

#eye-center {
  position: absolute;
  left: 50%;
  top: 50%;
}

h1 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 80px;
}
h1 span {
  color: #fd764a;
}
@media (min-width: 640px) {
  h1 {
    font-size: 4rem;
  }
}

h4 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 60px;
}
h4 span {
  color: #fd764a;
}
@media (min-width: 640px) {
  h4 {
    font-size: 3rem;
  }
}

h5 {
  color: #fd764a;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 24px;
}

#goToTop {
  visibility: hidden;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 5;
  border: none;
  outline: none;
  cursor: pointer;
  width: fit-content;
}
#goToTop img {
  transform: translateX(2000px);
  transition: ease-in-out 500ms;
}
#goToTop.show img {
  visibility: visible;
  transform: translateX(0px);
}

img.img-auto {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
}

.home-container .home-text {
  max-width: 500px;
  width: 100%;
}

.home-container .home-illustration {
  padding: 20px;
  margin: 0px;
  max-width: 500px;
  width: 100%;
}
@media (min-width: 640px) {
  .home-container .home-illustration {
    margin-right: 60px;
    padding: 0px;
  }
  .home-container .home-illustration:nth-child(even) {
    margin-left: 60px;
  }
}

.circle {
  background: #1a1a1a;
  position: relative;
}
@media (min-width: 640px) {
  .circle {
    background: transparent;
  }
}
.circle h3 {
  font-size: 3rem;
  font-weight: 700;
}
.circle img {
  width: 100%;
  height: 100%;
}
.circle div.container {
  padding: 20px;
  text-align: center;
  position: static;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
@media (min-width: 640px) {
  .circle div.container {
    position: absolute;
    transform: translateX(-50%);
    top: 0px;
    left: 50%;
  }
  .circle div.container img.chart {
    width: 175px;
    height: 175px;
  }
}
.circle div.container img.chart {
  width: 100px;
  height: 100px;
}
.circle div.container p {
  margin-bottom: 40px;
}
.circle.about {
  margin-top: 50px;
}
@media (min-width: 640px) {
  .circle.about {
    margin-top: -100px;
  }
}
.circle.about div.container img {
  width: 100%;
  height: 100%;
  margin-top: 0px;
}

.check-list ul li {
  font-size: 1.5rem;
  font-weight: 700;
}

.check-list ul li::before {
  content: url(../img/list-dot.svg);
  font-size: 1.25em;
  margin-right: 15px;
}

section.not-patient-section {
  background-image: url(../img/notpatient/notpatient-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

section.patient-intro {
  background-image: url(../img/patient/patientbg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.okko-patient-depo h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.okko-patient-depo a {
  color: #1375e9;
  font-weight: 700;
  margin-top: 15px;
}

.safety-net {
  background: #e3dcc8;
  color: black;
  max-width: 600px;
  padding: 65px;
  margin-top: 20px;
  margin-bottom: 100px;
}
@media (min-width: 640px) {
  .safety-net {
    margin-top: -100px;
  }
}
.safety-net h3 {
  font-size: 3rem;
  font-weight: 700;
}

.news-content {
  text-align: center;
}
.news-content h3 {
  font-size: 3rem;
  font-weight: 700;
}
.news-content .news {
  display: flex;
  flex-flow: column;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.news-content .news:nth-child(odd) p span {
  color: #feca2f;
}
.news-content .news img {
  width: 340px;
  height: 340px;
  object-fit: cover;
}
.news-content .news div.content {
  align-items: stretch;
  flex-grow: 1;
  text-align: left;
  margin-top: -50px;
  background-color: #1a1a1a;
  padding: 45px;
}

.about-content {
  width: 100%;
}
.about-content .okko-game {
  margin-bottom: -180px;
  margin-top: 100px;
  z-index: 0;
  position: relative;
}
@media (min-width: 640px) {
  .about-content .okko-game {
    margin-bottom: -280px;
    margin-left: 60%;
  }
  .about-content .about-us {
    padding: 65px;
  }
}
.about-content .about-us {
  position: relative;
  width: 100%;
  z-index: 1;
  color: black;
  background: #fd764a;
}
@media (max-width: 640px) {
  .about-content .about-us {
    padding: 32px;
  }
}
.about-content .about-us h3 {
  font-size: 3rem;
  font-weight: 700;
}

.social-icons {
  display: inline;
  width: 44px;
  height: 44px;
}

@media (min-width: 640px) {
  .patient-container {
    min-height: 500px;
  }
}

.patient-container .contact button {
  padding: 10px 20px;
  margin-top: 20px;
  max-width: 200px;
}

section.container {
  height: 100%;
}

input,
select,
textarea {
  width: 100%;
  color: var(--color-background-figma);
  padding: 10px;
  border: 1px solid var(--color-gray-6);
  background: white;
  border-radius: 12px;
}

select[value=""][disabled] {
  color: gray;
}

/* Legacy styles - kept for compatibility */
#mobileMenuLink {
  display: none;
}

section.container.contact {
  margin-bottom: 50px;
  min-height: 100vh;
}

.okko-navbar-dropdown {
  background: #2a2a2a;
}

.okko-navbar {
  background: var(--color-background-figma);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.okko-navbar .okko-navbar-links a {
  border-bottom: 0px;
  position: relative;
}
.okko-navbar .okko-navbar-links a.active::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 100%;
  background: #1375e9;
  top: -25px;
  left: 0;
}
.okko-navbar .mobile-logo {
  width: 150px;
  margin-left: 45px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu - Slide from Right */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85%;
  background: var(--color-background-figma);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

.mobile-menu-items {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.mobile-menu-items > li {
  margin-bottom: 8px;
}

.mobile-menu-items > li > a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-menu-items > li > a:hover,
.mobile-menu-items > li > a.active {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Dropdown */
.mobile-dropdown {
  margin-bottom: 8px;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-dropdown-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 16px;
}

.mobile-dropdown-menu.active {
  max-height: 500px;
}

.mobile-dropdown-menu li {
  margin: 4px 0;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-size: 0.875rem;
}

.mobile-dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* Desktop Dropdown Styling */
.dropdown-wrapper {
  position: relative;
}

.dropdown-toggle svg {
  width: 10px;
  height: 6px;
  max-width: 10px;
  max-height: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.dropdown-menu:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none;
  }
}

.notpatient .content {
  color: black;
  width: 90%;
  margin: auto;
  padding: 32px;
  margin-top: -20px;
  position: relative;
  background: #feca2f;
  border-radius: 25px;
}
.notpatient .content h3 {
  font-size: 2.25rem;
  font-weight: 700;
}
.notpatient .content.even {
  background: #e3dcc8;
}

@media (min-width: 640px) {
  .notpatient .content {
    padding: 65px;
  }
  .notpatient .content h3 {
    font-size: 3rem;
  }
}

.tech-content .tech-intro-bg {
  background: url(../img/tech/tech-intro-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.tech-content .tech-box-1,
.tech-content .tech-box-2 {
  background: #1a1a1a;
  padding: 15px;
}
@media (min-width: 640px) {
  .tech-content .tech-box-1,
  .tech-content .tech-box-2 {
    padding: 65px;
  }
}

.tech-content .tech-box-1 {
  background-image: url(../img/tech/tech-box-1.svg);
  background-position: 454px -135px;
  background-size: 450px;
  background-repeat: no-repeat;
}

.tech-content .tech-box-2 {
  background-image: url(../img/tech/tech-box-2.svg);
  background-position: top right;
  background-size: 350px;
  background-repeat: no-repeat;
}

.tech-content .patient-pathway {
  color: black;
  padding: 32px;
  background: #fd764a;
}
.tech-content .patient-pathway a {
  color: white;
}
.tech-content .patient-pathway h3 {
  font-size: 3rem;
  font-weight: 700;
}
.tech-content .patient-pathway p {
  margin: 15px 0px;
}
@media (min-width: 640px) {
  .tech-content .patient-pathway {
    padding: 65px;
  }
}

button[type="primary"] {
  background: #1375e9;
  border-radius: 6px;
  padding: 5px 25px;
}
button[type="primary"][rel="reverse"] {
  color: white;
}

h2.okko-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
@media (min-width: 640px) {
  h2.okko-title {
    font-size: 3rem;
  }
}
h2.okko-title span {
  color: #fd764a;
}

.interested-science {
  background: #4d4d4d;
  padding: 45px;
}
.interested-science span {
  font-size: 2.25rem;
  font-weight: 400;
}
@media (min-width: 640px) {
  .interested-science {
    padding: 65px;
  }
}

footer {
  position: relative;
  background: var(--color-background-figma);
  min-height: fit-content;
}
footer h5 {
  font-family: "Inter";
  font-weight: 600;
  font-size: 0.625rem;
  line-height: 100%;
  letter-spacing: 30%;
  text-transform: uppercase;
}
footer .rights * {
  font-family: "Inter";
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: -2%;
}
footer .mail {
  line-break: anywhere;
}
footer .footer-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  z-index: 1;
  opacity: 0.02;
}
footer .slogan {
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 2.625rem;
  line-height: 120%;
  letter-spacing: -2%;
}
footer .slogan span {
  color: var(--color-primary);
}
@media (min-width: 640px) {
  footer .footer-bg {
    transform: initial;
    top: 0;
    right: -200px;
  }
}
footer .footer-content {
  z-index: 2;
  width: 100%;
}
@media (min-width: 640px) {
  footer .footer-content {
    width: auto;
  }
}
footer .whats-new button {
  margin-top: 35px;
}
footer .stores {
  width: 130px;
  height: 40px;
}

.technology-intro-image {
  width: 100%;
}

.blog-intro-image {
  width: 100%;
}

.blog-first-color {
  color: black;
  width: 100%;
  min-height: 589px;
  margin: auto;
  margin-top: -20px;
  position: relative;
  background: #fd764a;
}

.blog-second-color {
  background: #e3dcc8;
  width: 100%;
  color: black;
  min-height: 589px;
  margin: auto;
  margin-top: -20px;
  position: relative;
}

.blog-third-color {
  background: #feca2f;
  width: 100%;
  color: black;
  min-height: 589px;
  margin: auto;
  margin-top: -20px;
  position: relative;
}

.blog-snap-content {
  padding-top: 15px;
}

.box-text {
  padding-top: 2rem;
  padding-right: 44px;
  padding-bottom: 2rem;
  padding-left: 44px;
}

.blog-content {
  background-color: #1a1a1a;
  width: 963px;
  height: 2466px;
  margin-top: 0px;
  margin-bottom: 515px;
}

@media (max-width: 640px) {
  .blog-content {
    width: auto;
    margin-top: 5rem;
    margin-bottom: 3rem;
  }
}

.blog-post-image-area img {
  width: 100%;
  max-width: 1000px;
  height: auto;
}

.split-bar {
  width: 100%;
  height: 100px;
  border-bottom: 1px solid #fafafa;
}

#citations:empty {
  display: none;
}

#citations > ol > li::before {
  content: "[" counter(list-item) "]\2003";
  counter-increment: list-item;
}

.dropdown-content {
  display: none;
}
.show {
  display: block;
}
.cookie-bar {
  position: fixed;
  text-align: left;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1.2rem;
  line-height: 25px;
  background: rgba(20, 20, 20);
  color: #fff;
  border-radius: 5px;
}
.cookie-bar > a {
  text-decoration: underline;
}

.overlay {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 500;
}

.blog-snap-content > p {
  margin-bottom: 32px;
}

.blog-snap-content > h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

input[type="checkbox"]:checked {
  background-color: rgb(47, 204, 26);
}

.tos-content > p {
  margin-bottom: 16px;
}

.tos-content > p > a {
  color: #feca2f;
  font-weight: bold;
}

.tos-content > ol > li {
  padding-bottom: 12px;
  padding-top: 12px;
}

.tos-back {
  font-weight: bold;
  color: #feca2f;
}

.tos-content ul {
  list-style: none;
  margin-left: 1.5em;
  margin-bottom: 3rem;
}

.tos-content ul li::before {
  content: "\2022";
  color: white;
  font-weight: bold;
  display: inline-block;
  padding-right: 0.6em;
}

.tos-content ul li {
  margin-bottom: 0.6em;
}

@media screen {
  .screen-only {
    display: unset;
  }
  .print-only {
    display: none !important;
  }
}
@media print {
  .screen-only {
    display: none !important;
  }
  .print-only {
    display: unset;
  }
}

.cookie-decline {
  background: #fd764a;
}

.cookie-decline:hover {
  background: #fd8b65;
}

/* -------------------------------- */
/* --------- New Styles ----------- */
/* -------------------------------- */
.main-background {
  background: var(--color-background-figma);
  color: white;
}

.light-background {
  background: var(--color-background-figma-light);
  color: var(--color-background-figma);
}

.button-groups {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.primary-button {
  opacity: 1;
  gap: 10px;
  border-radius: 10px;
  padding: 16px 30px;
  background: var(--color-primary);
}
.primary-button.small {
  padding: 10px 20px;
}
.secondary-button {
  opacity: 1;
  gap: 10px;
  border-radius: 10px;
  padding-top: 16px;
  padding-right: 30px;
  padding-bottom: 16px;
  padding-left: 30px;
  background: #1e364a;
}

.two-column {
}
.two-column h3 {
  font-weight: 400;
  font-size: 4.875rem;
  line-height: 100%;
  letter-spacing: -2%;
}
.two-column p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 24px;
  letter-spacing: 0%;
}

.hero-two-column {
  background-color: var(--color-background-figma);
  color: white;
  min-height: 70svh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-two-column .hero-image {
  position: relative;
}
.hero-two-column .hero-image .hero-bg-vector {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-two-column .hero-image .main-eye {
  position: relative;
  z-index: 10;
}
.hero-two-column .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.hero-two-column h3 {
  font-weight: 400;
  font-size: 4.875rem;
  line-height: 100%;
  letter-spacing: -2%;
}

@media (max-width: 767px) {
  .hero-two-column h3 {
    font-size: 3rem;
  }
}

.hero-two-column p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 24px;
  letter-spacing: 0%;
}

@media (max-width: 767px) {
  .hero-two-column p {
    font-size: 1rem;
    line-height: 22px;
  }
}

.logos-quote-section .badge,
.three-column-block .badge {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 0.625rem;
  line-height: 100%;
  letter-spacing: 30%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-background-figma);
}
.logos-quote-section .badge span,
.three-column-block .badge span {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 8px;
}
.logos-quote-section .quote * {
  font-weight: 400;
  font-style: Regular;
  font-size: 3.5rem;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  color: var(--color-background-figma);
}
.logos-quote-section .quote * span {
  color: var(--color-primary);
}
.three-column-block .column-block {
  position: relative;
}
.three-column-block .column-block-simple {
  position: relative;
  min-height: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.three-column-block .column-block-simple:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.three-column-block .card-title {
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 1.3125rem;
  line-height: 120%;
  letter-spacing: -2%;
}

.two-block-section {
  background: var(--color-background-gray);
}
.two-block-section .header-title,
.three-column-block .header-title,
.title-video-section .card-title,
.team-section .header-title {
  font-weight: 400;
  font-style: Regular;
  font-size: 3.5rem;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  color: var(--color-background-figma);
}

@media (max-width: 767px) {
  .two-block-section .header-title,
  .three-column-block .header-title,
  .title-video-section .card-title,
  .team-section .header-title {
    font-size: 3rem;
    line-height: 110%;
  }
}

.title-video-section .card-title,
.team-section .header-title {
  color: white;
}

.two-block-section .card-title {
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
}
.two-block-section .card-description {
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 1rem;
  line-height: 140%;
  letter-spacing: -2%;
  text-align: center;
}

.title-video-section,
.team-section,
.support-section {
  background: var(--color-background-figma);
  color: white;
}

.title-video-section .badge {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 0.625rem;
  line-height: 100%;
  letter-spacing: 30%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.title-video-section .badge span {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 8px;
}

.cta-section {
  background-color: #ebeff5;
  padding: 80px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-weight: 400;
  font-style: Regular;
  font-size: 4rem;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  color: var(--color-background-figma);
}

.cta-description {
  font-weight: 400;
  font-style: Regular;
  font-size: 1.125rem;
  line-height: 24px;
  letter-spacing: 0%;
  color: var(--color-background-figma);
}

.cta-button {
  display: inline-block;
  background-color: #ff8c6b;
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 25px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ff7a55;
}

.mobile-dropdown-toggle svg {
  width: 12px !important;
  height: 12px !important;
  max-width: 12px;
  max-height: 12px;
}

.gradient-blur {
  position: absolute;
  height: 50%;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #10212f 9.62%, rgba(51, 105, 149, 0) 100%);
}

/* FAQ Accordion Styles */
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-icon-vertical {
  opacity: 0;
}

.faq-question:focus {
  outline: 2px solid #3498db;
  outline-offset: -2px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content p {
  margin-bottom: 1rem;
}

.faq-answer-content ul,
.faq-answer-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-answer-content li {
  margin-bottom: 0.5rem;
}

/* Smooth accordion animation */
.faq-answer {
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

/* ============================================
   TESTIMONIALS MASONRY GRID STYLES
   ============================================ */

/* Testimonials Masonry Grid */
.testimonials-masonry-grid {
  column-count: 1;
  column-gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-masonry-grid {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .testimonials-masonry-grid {
    column-count: 3;
  }
}

.testimonial-card {
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
}

/* Rich text content styling */
.testimonial-content p:last-child {
  margin-bottom: 0;
}

.testimonial-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-content blockquote {
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 3px solid #f2815e;
}

/* Dark theme specific adjustments */
.testimonials-section.bg-dark .testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.testimonials-section.bg-dark .testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Light theme specific adjustments */
.testimonials-section.bg-light .testimonial-card {
  border: 1px solid #e5e7eb;
}

.testimonials-section.bg-light .testimonial-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Smooth transitions */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Ensure consistent spacing */
.author-details {
  min-width: 0;
}

.author-name,
.author-title,
.author-company {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Testimonials Masonry Grid */
.testimonials-masonry-grid {
  column-count: 1;
  column-gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-masonry-grid {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .testimonials-masonry-grid {
    column-count: 3;
  }
}

.testimonial-card {
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
}

/* Rich text content styling */
.testimonial-content p:last-child {
  margin-bottom: 0;
}

.testimonial-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-content blockquote {
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 3px solid #f2815e;
}

/* Dark theme specific adjustments */
.testimonials-section.bg-dark .testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.testimonials-section.bg-dark .testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Light theme specific adjustments */
.testimonials-section.bg-light .testimonial-card {
  border: 1px solid #e5e7eb;
}

.testimonials-section.bg-light .testimonial-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Smooth transitions */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Ensure consistent spacing */
.author-details {
  min-width: 0;
}

.author-name,
.author-title,
.author-company {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Testimonials Carousel Styles */
.testimonials-carousel-wrapper {
  position: relative;
  max-width: 100%;
}

.testimonials-carousel-container {
  overflow: hidden;
  margin: 0 auto;
  padding: 0 3rem;

  @media (min-width: 768px) {
    padding: 0 4rem;
  }
}

.testimonials-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  max-width: 100%;

  @media (min-width: 768px) {
    flex: 0 0 50%;
    max-width: 50%;
  }

  @media (min-width: 1024px) {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

.carousel-nav {
  cursor: pointer;
  border: none;

  &:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  &:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.1);
  }
}

.carousel-dot {
  cursor: pointer;
  border: none;

  &.active {
    width: 2rem;
    background: #f2815e !important;
  }
}

.testimonials-section.bg-dark .carousel-dot.active {
  background: #f2815e !important;
}

.testimonials-section.bg-light .carousel-dot.active {
  background: #f2815e !important;
}

/* Touch support */
.testimonials-carousel-container {
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

/* Testimonial card in carousel */
.testimonial-slide .testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Fade-in Animation Styles */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: var(--animation-delay, 0ms);
}

.fade-in-element.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for grid items */
.stagger-animation > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-animation.fade-in-visible > *:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.1s forwards;
}

.stagger-animation.fade-in-visible > *:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.25s forwards;
}

.stagger-animation.fade-in-visible > *:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.stagger-animation.fade-in-visible > *:nth-child(4) {
  animation: fadeInUp 0.6s ease-out 0.55s forwards;
}

.stagger-animation.fade-in-visible > *:nth-child(6) {
  animation: fadeInUp 0.6s ease-out 0.85s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logos-carousel-container {
  max-width: 100%;
}
.logos-carousel {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.logos-carousel-track:hover {
  animation-play-state: paused;
}
/* Logo styling - grayscale monochrome effect */
.logo-item img {
  filter: grayscale(100%) brightness(0.4) contrast(1.5);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(100%) brightness(0.3) contrast(1.5);
  opacity: 1;
}

/* Carousel animations */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logos-carousel-container {
  max-width: 100%;
}

.logos-carousel {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.logos-carousel-track:hover {
  animation-play-state: paused;
}

/* Screen Reader Only - Accessibility utility class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  text-decoration: none;
  font-weight: bold;
}

.skip-link:focus {
  top: 0;
}
