/** @format */

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

:root {
  --text-color: #def0de;
  --highlight-color: #00ff88;
  --btn-border: #0fa9a4;
  --bg-color: #181a1b;
}

body {
  background-color: var(--bg-color);
  font-family: "Rethink Sans", sans-serif;
  overflow-x: hidden;
}

/* --- Base Layout (Desktop Default > 1600px) --- */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  /* padding: 40px 0; */
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  /* padding-left: 95px; */
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80vh;
  /* position: relative; */
}

/* --- Typography & Elements --- */
.hero-text {
  flex: 1;
  max-width: 800px;
  z-index: 2;
  padding-left: 95px;
  margin-bottom: 90px;
  /* position: absolute; */
}

.hero-text h1 {
  color: var(--text-color);
  font-family: "Anton";
  font-size: 104px;
  line-height: 108px;
  letter-spacing: -1.236px;
  margin-bottom: 35px;
  font-weight: 400;
  /* text-transform: uppercase; */
}

.hero-text .highlight {
  color: #3ddc97;
}

.hero-text p {
  font-size: 22px;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 400;
  line-height: 21px; /* 106.667% */
  letter-spacing: -0.45px;
  color: #def0de;
  font-family: "Rethink Sans";
}

/* --- Button Styling --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid var(--btn-border);
  transition: all 0.3s ease;
}

.cta-btn svg {
  transform: rotate(315deg);
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  background: rgba(15, 169, 164, 0.1);
  padding-right: 28px;
}

.cta-btn:hover svg {
  transform: rotate(315deg) translate(2px, -2px);
}

/* --- Image Styling --- */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  /* display: none; */
  /* height: 75vh; */
}

.hero-image video {
  max-width: 100%;
  height: auto;
  min-width: 500px;
  -webkit-mask-image: url("/wp-content/themes/telesmart/assets/images/Home/BgHero.svg");
  mask-image: url("/wp-content/themes/telesmart/assets/images/Home/BgHero.svg");
  -webkit-mask-size: contain;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* --- Trust Bar Container --- */
.trust-container {
  width: 100%;
  max-width: 1920px;
  margin: 40px auto 0;
}

/* --- Trust Bar Styling --- */
.trust-bar {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  border: 1px solid rgba(222, 240, 222, 0.3);
  border-radius: 10px;
  margin: 0 95px;
  background: rgba(61, 220, 151, 0.05);
  scrollbar-width: none;
}
.trust-logos-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
}

.trust-logos {
  display: flex;
  width: fit-content;
  animation: scrollLeft 15s linear infinite;
  will-change: transform;
}

/* Pause animation on hover for better UX */
.trust-logos-wrapper:hover .trust-logos {
  animation-play-state: paused;
}

.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 20px 30px;
}

/* Apply hover to container instead of image directly */
.trust-logo:hover .trustImg {
  filter: invert(0%) brightness(100%);
}

.trustImg {
  margin: 0 30px;
  max-width: 134px;
  object-fit: contain;
  filter: invert(50%) brightness(90%);
  transition: all 0.3s;
  pointer-events: none; /* Prevent direct pointer events on image */
}

/* animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile Trust Bar Alignment */
@media screen and (max-width: 768px) {
  .trust-bar {
    margin-left: 25px;
    margin-right: 25px;
  }
}

@media screen and (max-width: 479px) {
  .trust-bar {
    margin-left: 20px;
    margin-right: 20px;
  }

  .scroll-content {
    padding: 34px 0;
  }
}

.trust-bar::-webkit-scrollbar {
  display: none;
}

.trust-item {
  flex: 0 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8a9994;
  font-size: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);

  font-style: normal;
  font-weight: 400;
  line-height: 21.5px; /* 89.583% */
  letter-spacing: -0.449px;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item img {
  height: 18px;
  opacity: 0.5;
}

.trust-item.active {
  color: white;
}

.trust-item.active img {
  opacity: 1;
}

/* --- Orchestration Hero --- */
.orchestration-hero {
  position: relative;
  width: 100%;
  padding: 40px 0 147px 0;
  color: white;
  overflow: hidden;
  /* margin-top: 50px; */
}

.bg-desktop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.bg-desktop img {
  width: 1400px;
  opacity: 1;
}

.bg-mobile {
  width: 1600px;
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.bg-mobile img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
}

.orchestration-container {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 95px;
  padding-right: 95px;
  text-align: center;
  margin-top: 100px;
}

.title {
  font-family: "Anton", sans-serif;
  font-size: 60px;
  line-height: 62px;
  color: var(--text-color);
  font-weight: 400;
  /* text-transform: uppercase; */
  margin: 0 auto;
  margin-bottom: 20px;
  letter-spacing: -1.24px;
  max-width: 905px;
  text-align: center;
}

.title .highlight {
  color: #3ddc97;
}

.subtitle {
  color: #def0de;
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 80px;
  line-height: 1.6;
  font-family: "Rethink Sans";
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 105% */
  letter-spacing: -0.449px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  width: 55%;
}

.demo-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 50px;
  background: transparent;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  font-size: 18x;
  position: relative;
  z-index: 1;
  border: none;
  font-family: "Rethink Sans";
  overflow: hidden;
  line-height: 28px; /* 155.556% */
}

.demo-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, #0fa9a4 0%, #064341 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.demo-btn svg {
  margin-left: 5px;
}

.arrow-icon {
  margin-left: 5px;
}

.demo-btn:hover {
  background: rgba(23, 127, 105, 0.2);
  transform: translateY(-2px);
}

.testDemo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding-bottom: 136px;
}

.feature-grid-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.feature-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 58px;
  /* margin-bottom: 30px; */
}

/* Feature Card Base */
.feature-card {
  position: relative;
  background: rgba(24, 26, 27, 0.2);
  width: 280px;
  padding: 18px 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
  --border-width: 0.6px;
}

/* ====== SHINE OVERLAY (same as button’s span::after) ====== */
.feature-card::before {
  content: "";
  position: absolute;
  width: calc(100% - var(--border-width));
  height: calc(100% - var(--border-width));
  left: calc(var(--border-width) / 2);
  top: calc(var(--border-width) / 2);
  border-radius: 18px;
  /* background: linear-gradient(
    var(--angle-2),
    rgba(255, 255, 255, 0) 0%,
    rgba(82, 73, 73, 0.671) 40% 50%,
    rgba(255, 255, 255, 0) 55%
  ); */

  background: linear-gradient(
    var(--angle-2),
    rgba(255, 255, 255, 0) 0%,
    rgba(121, 118, 118, 0.5) 40% 50%,
    rgba(255, 255, 255, 0) 55%
  );
  mix-blend-mode: screen;
  background-size: 220% 200%;
  background-position: 0% 50%;
  transition: background-position calc(var(--anim--hover-time) * 1.25)
      var(--anim--hover-ease),
    --angle-2 calc(var(--anim--hover-time) * 1.25) var(--anim--hover-ease);
  pointer-events: none;
}

/* Hover: move the sweeping shine */
.feature-card:hover::before {
  background-position: 25% 50%;
}

/* ====== BORDER OUTLINE (button::after applied to card) ====== */
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: var(--border-width);
  box-sizing: border-box;

  background: conic-gradient(
      from var(--angle-1) at 50% 50%,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0) 5% 40%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0) 60% 95%,
      rgba(0, 0, 0, 0.5)
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));

  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: all var(--anim--hover-time) var(--anim--hover-ease),
    --angle-1 500ms ease;
}

/* Hover: turn the animated border exactly like button */
.feature-card:hover::after {
  --angle-1: -125deg;
}

/* Active click effect (optional) */
.feature-card:active::after {
  --angle-1: -75deg;
}

@property --angle-1 {
  syntax: "<angle>";
  inherits: false;
  initial-value: -75deg;
}

@property --angle-2 {
  syntax: "<angle>";
  inherits: false;
  initial-value: -45deg;
}

:root {
  --anim--hover-time: 400ms;
  --anim--hover-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-card .icon {
  font-size: 22px;
  color: #3ddc97;
}

.feature-card h4 {
  color: #3ddc97;
  margin-bottom: 2px;
  font-family: "Rethink Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
  letter-spacing: -0.15px;
}

.feature-card p {
  color: #def0de;
  font-family: "Rethink Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.text {
  text-align: left;
}

/* --- Telecom Section --- */
.telecom-section {
  display: flex;
  justify-content: center;
  width: 100%;
}

.telecom-container {
  background-color: #000;
  max-width: 1920px;
  border-radius: 25px;
  display: grid;
  /* grid-template-columns: 1fr auto; */
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin: 50px 95px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding: 30px 60px; */
  padding-left: 80px;
}

h2.section-title {
  font-family: "Anton";

  color: #def0de;
  font-size: 36px;
  margin-bottom: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 111.111% */
  letter-spacing: 0.369px;
}

.highlight-green {
  color: #3ddc97;
}

.accordion-item {
  border-bottom: 1px solid #fff;
  overflow: hidden;
}

.accordion-item:first-child {
  border-top: none;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.3s;
  gap: 10px;
}

.accordion-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.icon-wrapper {
  /* width: 24px;
  height: 24px; */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  transition: background-color 0.3s, transform 0.3s;
}

.icon-wrapper svg {
  width: 24px;
  height: 24px;
  padding: 5px;
  fill: #000;
  transition: transform 0.3s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  transition: max-height 0.45s ease;
}

.content-inner {
  padding-bottom: 25px;
  width: 90%;
}

.accordion-item.active .accordion-title {
  color: #fff;
}

.accordion-item.active .icon-wrapper {
  background-color: #3ddc97;
}

.icon-plus {
  display: block;
}

.icon-minus {
  display: none;
}

.accordion-item.active .icon-plus {
  display: none;
}

.accordion-item.active .icon-minus {
  display: block;
}

.image-col {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
}

.desktop-img {
  width: 100%;
  align-self: stretch;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(60, 100, 255, 0.2);
  display: block;
  /* max-width: 781px; */
  max-height: 600px;
}

.mobile-img {
  display: none;
  width: 100%;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* --- Scroll Wrapper --- */
.scroll-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.scroll-container {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  margin: 60px 0;
}
.text-center {
  text-align: center;
}
.scroll-content {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  /* transform: translateX(-50%); */
  animation: moveRight 200s linear infinite;
  white-space: nowrap; /* Prevent wrapping */
  flex-shrink: 0; /* Prevent shrinking */
  color: #fff;
  font-family: "Rethink Sans";
  /* font-size: 18px; */
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: -0.449px;
  font-size: 36px;
  padding: 100px 0;
}

.scroll-content .text {
  white-space: nowrap; /* Ensure text stays on one line */
  flex-shrink: 0; /* Prevent text from shrinking */
}

.scroll-content .icon {
  font-size: 22px;
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- Results Section --- */
.results-section {
  display: flex;
  justify-content: center;
  width: 100%;
}

.result-container {
  width: 100%;
  max-width: 1920px;
  position: relative;
  z-index: 1;
}

.ambient-glow {
  position: absolute;
  width: 80%;
  height: 500px;
  background: radial-gradient(
    circle,
    var(--glow-color) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
  transition: all 0.5s ease;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #3ddc97;
  font-family: "Anton";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 83.333% */
  letter-spacing: 0.369px;
}

.section-header h2 span {
  color: var(--text-white);
}

.section-header p {
  color: #def0de;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  font-family: "Rethink Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px; /* 105% */
  letter-spacing: -0.449px;
}

.cards-container {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}

.card-subContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 65px 95px 45px 95px;
  max-width: 1920px;
  width: 100%;
}

.card-desktop-bg {
  position: absolute;
  z-index: -1;
  width: 100vw;
  opacity: 1;
}

.card-mobile-bg {
  position: absolute;
  z-index: -1;
  width: 100vw;
  opacity: 0;
  display: none;
}

.case-card {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;

  box-shadow: -5px -4px 12.4px 4px rgba(0, 153, 168, 0.2),
    -7px -4px 14.9px -7px rgba(61, 220, 151, 0.2);

  position: relative;
  overflow: hidden;

  /* Glow controls */
  --glow-color: 161deg 65% 55%;
  --pointer-angle: 0deg;
  --pointer-distance: 0;
  --beam-x: 50%;
  --beam-y: 0%;
}

/* Static border effect */
.case-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  pointer-events: none;
  z-index: 0;
}

/* ⭐ Edge-origin directional glow (the beam) */
.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;

  background: radial-gradient(
    circle at var(--beam-x) var(--beam-y),
    hsl(var(--glow-color) / 10%) 0%,
    hsl(var(--glow-color) / 10%) 5%,
    transparent 65%
  );

  opacity: calc(var(--pointer-distance) / 100);
  transition: opacity 0.2s ease-out;
}

/* Glow element */
.case-card > .glow {
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s ease-out;

  -webkit-mask-image: conic-gradient(
    from var(--pointer-angle) at center,
    black 2.5%,
    transparent 10%,
    transparent 90%,
    black 97.5%
  );
  mask-image: conic-gradient(
    from var(--pointer-angle) at center,
    black 2.5%,
    transparent 10%,
    transparent 90%,
    black 97.5%
  );

  mix-blend-mode: plus-lighter;
}

.case-card > .glow::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px hsl(var(--glow-color) / 100%),
    inset 0 0 1px 0 hsl(var(--glow-color) / 70%),
    inset 0 0 3px 0 hsl(var(--glow-color) / 50%),
    inset 0 0 6px 0 hsl(var(--glow-color) / 30%),
    0 0 1px 0 hsl(var(--glow-color) / 70%),
    0 0 3px 0 hsl(var(--glow-color) / 50%),
    0 0 6px 0 hsl(var(--glow-color) / 30%),
    0 0 10px 0 hsl(var(--glow-color) / 20%);
}

/* Show glow on hover */
.case-card:hover::before,
.case-card:hover > .glow {
  opacity: 1;
}

.card-stats-row {
  display: flex;
  gap: 20px;
  margin-bottom: 87px;
}

.stat-box {
  background-color: #0c1412;
  flex: 1;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.stat-value {
  display: block;
  font-size: 32px;
  color: #def0de;
  margin-bottom: 5px;
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 72.727% */
  letter-spacing: 0.07px;
}

.stat-label {
  font-size: 14px;
  color: #def0de;
}

.card-meta {
  margin-bottom: 15px;
  /* margin-top: 25px; */
  color: #def0de;
  font-family: "Rethink Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 114.286% */
}

.card-title {
  font-size: 32px;
  font-family: "Anton";
  color: #3ddc97;
  margin-bottom: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 87.5% */
  letter-spacing: -0.449px;
  margin-bottom: 38px;
}

.card-desc {
  color: #def0de;
  margin-bottom: 62px;
  flex-grow: 1;

  font-family: "Rethink Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px; /* 105% */
  letter-spacing: -0.312px;
}

.btn-read {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 18px;
  border: 1px solid #0fa9a4;
  border-radius: 30px;
  color: #def0de;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 0 31px 0 rgba(0, 153, 168, 0.3);
  margin-bottom: 23px;
  line-height: 28px; /* 155.556% */
  gap: 10px;
}

.btn-read:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.btn-read span {
  margin-left: 8px;
  font-size: 1.1em;
}

.footer-banner {
  display: flex;
  justify-content: center;
  width: 100%;
  /* margin-bottom: 26px; */
}

.footer-container {
  max-width: 1920px;
  width: 100%;
  margin: auto 95px;
  text-align: center;
}

.footer-title {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 30px;
  color: #3ddc97;
  text-align: center;
  font-family: "Anton";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 66.667% */
  letter-spacing: 0.07px;
}

.footer-title-mobile {
  text-align: center;
  margin: 30px auto;
  color: #3ddc97;
  text-align: center;
  font-family: "Anton";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 66.667% */
  letter-spacing: 0.07px;
  display: none;
}

/* --- Footer Stats --- */
.footer-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background-color: rgba(61, 220, 151, 0.05);
  overflow: hidden;
  font-family: var(--font-main);
  color: #fff;
  margin-top: 40px;
}

.footer-item {
  color: #a4afa4;
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-item:last-child {
  border-right: none;
}

.f-val {
  font-size: 40px;
  line-height: 1;
  color: #def0de;
  font-variant-numeric: tabular-nums;
  font-family: "Anton";
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 100% */
  letter-spacing: 0.396px;
}

.f-desc {
  font-size: 14px;
  line-height: 1.3;
  color: #def0de;
  font-weight: 400;
  text-align: left;
}

/* =========================================
   RESPONSIVE BREAKPOINTS - CONSOLIDATED
   ========================================= */

/* @media max-width 1599px */
@media screen and (max-width: 1599px) {
  .hero-text {
    padding-left: 60px;
    margin-bottom: 0;
  }
  .hero-text h1 {
    font-size: 72px;
    line-height: 74px;
  }
  .trust-bar,
  .telecom-container,
  .card-subContainer,
  .footer-container {
    margin: 0 60px;
  }
  .bg-desktop {
    top: 46%;
  }
  .bg-desktop img {
    width: 1300px;
  }
  .orchestration-container {
    padding: 0 60px;
  }
  .title {
    font-size: 56px;
    line-height: 58px;
  }

  .subtitle {
    width: 80%;
  }
  .footer-title {
    font-size: 50px;
  }
  .f-val {
    font-size: 38px;
  }

  .testDemo {
    padding-bottom: 100px;
  }

  .hero-content {
    height: 70vh;
    padding: 40px 0;
  }
  .hero-image {
    /* height: 50vh; */
  }
}

/* @media max-width 1366px */
@media screen and (max-width: 1366px) {
  .hero-text {
    padding-left: 50px;
    position: relative;
  }

  .hero-image {
    /* height: auto; */
  }

  .hero-text h1 {
    font-size: 64px;
    line-height: 66px;
  }
  .hero-image video {
    min-width: 450px;
  }
  .telecom-container {
    margin: 30px 50px;
  }
  .orchestration-container {
    padding: 0 50px;
  }
  .scroll-container {
    margin: 50px 0;
  }
  .card-subContainer,
  .footer-container {
    margin: 0 50px;
  }
  .title {
    font-size: 52px;
    line-height: 54px;
  }
  .subtitle {
    font-size: 17px;
  }

  .section-header h2 {
    font-size: 38px;
  }
  .footer-title {
    font-size: 48px;
  }
  .f-val {
    font-size: 36px;
  }

  .desktop-img {
    max-width: 450px;
    max-height: 450px;
  }

  .testDemo {
    gap: 50px;
    padding-bottom: 63px;
  }

  .icon-wrapper svg {
    width: 21px;
    height: 21px;
    padding: 4px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* @media max-width 1280px */
@media screen and (max-width: 1280px) {
  .bg-desktop {
    top: 46%;
  }
  .bg-desktop img {
    max-width: 1100px;
  }

  .title {
    font-size: 50px;
    line-height: 52px;
  }

  .h2.section-title {
    font-size: 30px;
  }
  .section-header h2 {
    font-size: 36px;
  }
  .footer-title {
    font-size: 46px;
  }
  .content-col {
    padding: 20px 30px;
  }

  .testDemo {
    gap: 40px;
  }
}

/* @media max-width 1199px */
@media screen and (max-width: 1199px) {
  .hero-text h1 {
    font-size: 56px;
    line-height: 58px;
  }
  .hero-text p {
    font-size: 18px;
  }
  .hero-image video {
    width: 100%;
  }
  .bg-desktop {
    top: 40%;
  }
  .bg-desktop img {
    max-width: 1100px;
  }

  .title {
    font-size: 48px;
    line-height: 50px;
  }
  .subtitle {
    font-size: 16px;
  }
  .h2.section-title {
    font-size: 28px;
  }
  .accordion-title {
    font-size: 17px;
  }
  .accordion-content {
    font-size: 14px;
  }
  .section-header h2 {
    font-size: 34px;
  }
  .section-header p {
    font-size: 15px;
  }
  .footer-title {
    font-size: 44px;
  }
  .f-val {
    font-size: 34px;
  }
  .f-desc {
    font-size: 13px;
  }
}

/* @media max-width 1024px */
@media screen and (max-width: 1024px) {
  .container {
    /* padding-left: 40px; */
  }

  .hero-content {
    height: auto;
  }

  .orchestration-container,
  .telecom-container {
    margin: auto 40px;
  }
  .hero-text {
    max-width: 100%;
    /* margin-bottom: 30px; */
    padding-left: 40px;
  }
  .hero-text h1 {
    font-size: 44px;
    line-height: 46px;

    margin-bottom: 16px;
  }
  .hero-text p {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .hero-image {
    width: 100%;
  }
  .cta-btn {
    justify-content: center;
    padding: 8px 20px;
    font-size: 16px;
  }

  .trust-bar {
    margin: 0 40px;
  }

  .trustImg {
    max-width: 100px;
  }

  .title {
    font-size: 44px;
    line-height: 46px;
  }
  .subtitle {
    font-size: 16px;
    width: 100%;
  }
  .demo-btn {
    font-size: 15px;
  }
  .feature-card h4 {
    font-size: 15px;
  }
  .feature-card p {
    font-size: 12px;
  }

  .h2.section-title {
    font-size: 26px;
  }
  .accordion-title {
    font-size: 16px;
  }
  .accordion-content {
    font-size: 14px;
  }
  .scroll-content {
    font-size: 17px;
  }
  .scroll-content .icon {
    font-size: 20px;
  }
  .section-header h2 {
    font-size: 32px;
  }
  .section-header p {
    font-size: 15px;
  }
  .stat-value {
    font-size: 26px;
  }
  .stat-label {
    font-size: 13px;
  }
  .card-title {
    font-size: 22px;
  }
  .card-desc {
    font-size: 14px;
  }
  .btn-read {
    font-size: 13px;
  }
  .card-subContainer {
    margin: 0 40px;
    gap: 25px;
  }
  .footer-container {
    margin: auto 40px;
  }
  .footer-item {
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .footer-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-title {
    font-size: 40px;
  }
  .f-val {
    font-size: 32px;
  }
  .f-desc {
    font-size: 13px;
  }

  .icon-wrapper svg {
    width: 20px;
    height: 20px;
    padding: 4px;
  }
}

/* @media max-width 900px */
@media screen and (max-width: 900px) {
  .ambient-glow {
    top: 100px;
    height: 400px;
    width: 100%;
    opacity: 0.8;
  }
  .telecom-container {
    grid-template-columns: 1fr;
  }
  .image-col {
    display: none;
  }
  .mobile-img {
    display: block;
  }
  .content-inner {
    width: 100%;
  }
  .case-card {
    padding: 25px;
  }

  .f-val {
    min-width: 80px;
    font-size: 30px;
  }
  .card-stats-row {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .section-header h2 {
    font-size: 29px;
  }
  .section-header p {
    font-size: 14px;
  }
  .stat-value {
    font-size: 24px;
  }
  .card-title {
    font-size: 20px;
  }
  .card-desc {
    font-size: 14px;
  }
  .footer-title {
    font-size: 36px;
  }

  .bg-desktop {
    top: 96%;
  }
  .bg-desktop img {
    max-width: 800px;
    opacity: 0;
  }

  .bg-mobile {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: none;
  }

  .bg-mobile img {
    opacity: 1;
  }
}

/* @media max-width 768px */
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 50px;
    align-items: flex-start;
  }
  .hero-content {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 40px;
  }
  .container {
    /* padding-left: 25px; */
  }

  .card-desktop-bg {
    opacity: 0;
  }

  .card-mobile-bg {
    opacity: 1;
    top: -90%;
    display: block;
  }
  .trust-container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .hero-text {
    padding-left: 25px;
    margin-bottom: 0;
  }

  .hero-text h1 {
    font-size: 42px;
    line-height: 44px;

    margin-bottom: 20px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .cta-btn {
    font-size: 15px;
  }
  .hero-image video {
    width: 100%;
  }
  .trust-bar {
    margin-top: 40px;
    max-width: 100%;
  }
  .trust-item {
    padding: 14px 18px;
    font-size: 14px;
  }
  .orchestration-container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .title {
    font-size: 38px;
    line-height: 40px;
  }
  .subtitle {
    font-size: 15px;
  }
  .demo-btn {
    font-size: 14px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .feature-card {
    width: 100%;
    max-width: 360px;
  }
  .feature-card h4 {
    font-size: 15px;
  }
  .feature-card p {
    font-size: 12px;
  }

  h2.section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .accordion-title {
    font-size: 15px;
  }
  .accordion-content {
    font-size: 13px;
  }
  .scroll-content {
    font-size: 16px;
  }
  .scroll-content .icon {
    font-size: 19px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .section-header p {
    font-size: 14px;
  }
  .card-subContainer {
    grid-template-columns: 1fr;
  }
  .card-stats-row {
    flex-direction: row;
    margin-bottom: 44px;
  }
  .stat-value {
    font-size: 22px;
  }
  .stat-label {
    font-size: 12px;
  }
  .card-meta {
    font-size: 11px;
    margin: 10px 0;
  }
  .card-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .card-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .btn-read {
    font-size: 13px;
    order: 3;
  }

  .card-stats-row {
    order: 2;
  }
  .card-content {
    order: 1;
  }
  .footer-title {
    font-size: 34px;
  }
  .f-val {
    font-size: 28px;
  }
  .f-desc {
    font-size: 12px;
  }
}

@media screen and (max-width: 650px) {
  .card-mobile-bg {
    top: -80%;
  }
}

/* @media max-width 600px */
@media screen and (max-width: 600px) {
  .hero {
    padding-top: 40px;
  }

  .footer-stats {
    grid-template-columns: 1fr;
  }

  .testDemo {
    flex-direction: column-reverse;
  }

  .feature-grid {
    width: 100%;
    max-width: 360px;
    grid-template-columns: 1fr;
  }
  /* .title {
    font-size: 34px;
    line-height: 36px;
  } */
  .section-header h2 {
    font-size: 26px;
  }
  .section-header p {
    font-size: 13px;
  }
  .footer-title {
    font-size: 30px;
  }
  .f-val {
    font-size: 26px;
  }

  .orchestration-hero {
    padding-bottom: 80px;
  }

  .card-mobile-bg {
    top: -70%;
  }
}

/* @media max-width 479px */
@media screen and (max-width: 479px) {
  .hero {
    padding-top: 30px;
  }

  .hero-content {
    padding-top: 0;
  }
  .demo-btn {
    padding: 12px 16px;
  }

  .demo-btn svg {
    margin-left: 26px;
  }
  .hero-text {
    padding-left: 20px;
  }
  .trust-container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .trust-bar {
    margin: auto 20px;
  }
  .hero-text h1 {
    font-size: 36px;
    line-height: 38px;
    margin-top: 20px;
  }
  .hero-text p {
    font-size: 17px;
    margin-bottom: 24px;
  }
  .cta-btn {
    font-size: 14px;
  }
  .hero-image {
    margin-top: 20px;
    overflow: hidden;
    /* width: 100%; */
  }
  .hero-image video {
    width: 100%;
    min-width: 374px;
  }
  .trust-item {
    font-size: 13px;
  }
  .title {
    font-size: 24px;
    line-height: 26px;
  }
  .subtitle {
    font-size: 15px;
    line-height: 16px;
    margin-bottom: 30px;
  }

  .testDemo {
    gap: 63px;
  }

  .feature-grid {
    gap: 21px;
    width: 80%;
  }

  .feature-card h4 {
    font-size: 20px;
  }
  .feature-card p {
    font-size: 16px;
  }

  .h2.section-title {
    font-size: 22px;
  }
  .accordion-title {
    font-size: 15px;
    font-size: 17px;
    margin-bottom: 30px;
  }
  .scroll-content {
    font-size: 15px;
    padding: 50px 0;
  }
  .section-header h2 {
    font-size: 26px;
    line-height: 28px;
  }

  .section-header p {
    font-size: 16px;
    line-height: 18px;
  }
  .card-stats-row {
    /* flex-direction: column; */
  }

  .stat-box {
    padding: 5px;
  }
  .stat-value {
    font-size: 20px;
  }

  .card-mobile-bg {
    top: -57%;
  }
  .card-title {
    font-size: 18px;
  }
  .card-desc {
    font-size: 13px;
  }
  .footer-title {
    font-size: 28px;
  }
  .f-val {
    font-size: 24px;
  }

  .orchestration-container {
    padding-left: 0;
    padding-right: 0;
  }

  .orchestration-hero {
    padding-top: 130px;
    padding-bottom: 80px;
  }

  .card-meta {
    margin-top: 0;
  }

  .orchestration-container,
  .telecom-container {
    margin: auto 20px;
  }

  .section-header {
    margin-left: 20px;
    margin-right: 20px;
  }

  .card-subContainer {
    margin: 0 20px;
  }

  .footer-container {
    margin: 20px;
  }

  .trust-container {
    margin: 0;
  }

  .footer-stats {
    margin-top: 30px;
  }

  .icon-wrapper svg {
    width: 18px;
    height: 18px;
  }

  .qna-main-title {
    font-size: 24px;
    line-height: 28px;
    margin-top: 40px;
    margin-bottom: 0;
  }
  .qna-highlight {
    font-size: 24px;
    line-height: 28px;
  }
  .qna-accordion-header h2 {
    font-size: 16px;
  }
  .qna-accordion-item.active .qna-accordion-header h2 {
    font-size: 16px;
  }
  .qna-toggle-btn {
    width: 22px;
    height: 22px;
  }
  .qna-icon {
    font-size: 20px;
  }
  .qna-accordion-content p {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: -0.45px;
  }
  .qna-faq-section {
    padding: 50px 20px;
  }

  .qna-content-wrapper {
    margin: 0 20px;
  }
  .qna-main-title {
    font-size: 22px;
    line-height: 26px;
  }
  .qna-highlight {
    font-size: 22px;
    line-height: 26px;
  }
  .qna-accordion-header h2 {
    font-size: 15px;
  }
  .qna-accordion-item.active .qna-accordion-header h2 {
    font-size: 16px;
  }
  .qna-toggle-btn {
    width: 24px;
    height: 24px;
  }
  .qna-icon {
    font-size: 16px;
  }
  .qna-accordion-content p {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: -0.45px;
    margin-bottom: 20px;
  }
  .qna-faq-section {
    padding: 20px;
  }

  .qna-mobile-image img {
    height: 200px;
  }
}

/* @media max-width 450px */
@media screen and (max-width: 450px) {
  .section-header h2 {
    font-size: 22px;
  }
  .footer-title {
    font-size: 26px;
  }
}

/* @media max-width 374px */
@media screen and (max-width: 374px) {
  .hero-image video {
    object-fit: cover;
    width: 100%;
    min-width: 320px;
  }
  .hero-text h1 {
    font-size: 34px;
    line-height: 36px;
  }
  .hero-text p {
    font-size: 14px;
  }
  .title {
    font-size: 24px;
    line-height: 25px;
    margin-bottom: 14px;
  }

  .subtitle {
    font-size: 13px;
  }

  .section-header h2 {
    font-size: 20px;
  }
  .footer-title {
    font-size: 24px;
  }
  .f-val {
    font-size: 22px;
  }

  .hero {
    padding-top: 20px;
  }

  .feature-card {
    padding: 16px 15px;
  }

  .feature-card p {
    font-size: 14px;
    line-height: 20px;
  }

  .card-mobile-bg {
    top: -50%;
  }
}

/* QNA Section CSS */
/* QNA Section CSS */
.qna-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.qna-content-wrapper {
  display: flex;
  /* gap: 60px; */
  /* align-items: flex-start; */
  justify-content: space-between;
  max-width: 1920px;
  width: 100%;
  margin: 0 95px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 25px;
  box-shadow: -5px -4px 12.4px 4px rgba(0, 153, 168, 0.2),
    -7px -4px 14.9px -7px rgba(61, 220, 151, 0.2);
}
.qna-faq-section {
  flex: 1;
  padding: 83px 50px 83px 80px;
  /* max-width: 600px; */
}
.qna-main-title {
  color: #def0de;
  font-family: "Anton";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.369px;
  margin-bottom: 40px;
}
.qna-highlight {
  color: #3ddc97;
  font-family: "Anton";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.369px;
}
.qna-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.qna-accordion-item {
  border-bottom: 1px solid #def0de;
  padding: 23px 0;
}
/* Remove border from last accordion item */
.qna-accordion-item:last-child {
  border-bottom: none;
}
.qna-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  cursor: pointer;
  min-height: 30px;
  /* gap: 20px; */
}
.qna-accordion-header h2 {
  color: #ffffff;
  font-family: "Rethink Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.369px;
}
/* Plus icon has white background, minus icon has green background */
.qna-toggle-btn {
  background: #ffffff;
  /* border: 2px solid #00d9a3; */
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}
.qna-accordion-item.active .qna-toggle-btn {
  background: #3ddc97;
  /* border-color: #00d9a3; */
}
.qna-toggle-btn:hover {
  opacity: 0.9;
}
.qna-icon {
  position: absolute;
  font-size: 24px;
  /* font-weight: bold; */
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.qna-minus {
  opacity: 0;
  transform: rotate(-90deg);
  color: #000;
}
.qna-plus {
  opacity: 1;
  transform: rotate(0deg);
  color: #000;
}
.qna-accordion-item.active .qna-minus {
  opacity: 1;
  transform: rotate(0deg);
}
.qna-accordion-item.active .qna-plus {
  opacity: 0;
  transform: rotate(90deg);
}
.qna-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.qna-accordion-item.active .qna-accordion-content {
  /* max-height: 100%; */
  padding-top: 10px;
}
.qna-accordion-content p {
  color: #def0de;
  font-family: "Rethink Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 200;
  line-height: 21px;
  letter-spacing: -0.312px;
  width: 80%;
  margin-bottom: 80px;
}
.qna-mobile-image {
  display: none;
  margin-top: 20px;
}
.qna-mobile-image img {
  width: 100%;
  border-radius: 16px;
}
.qna-image-section {
  flex: 1;
  max-width: 781px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 0;
}

.qna-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 217, 163, 0.2);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

.qna-image-section {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

/* Image is intentionally taller than container */
.qna-image-section img {
  position: absolute;
  inset: -10% 0; /* top & bottom overflow */
  width: 100%;
  height: 150%;
  object-fit: cover;

  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path;
}

/* CLOSED / ZOOM-OUT STATE */
.qna-image-section img.zoom-out {
  clip-path: inset(0% 0 0% 0);
}

/* OPEN / ZOOM-IN STATE */
.qna-image-section img.zoom-in {
  clip-path: inset(0 0 0 0);
}

/* Responsive Design */
@media (max-width: 1599px) {
  .qna-content-wrapper {
    gap: 0;
  }
  .qna-accordion-content p {
    margin-bottom: 50px;
  }
  .qna-image-section img {
    min-height: 650px;
    min-width: 650px;
  }
  .qna-faq-section {
    padding: 50px 40px;
  }
}
@media (max-width: 1366px) {
  .qna-content-wrapper {
    margin: 0 50px;
  }
  .qna-image-section img {
    min-height: 600px;
    min-width: 600px;
  }
  .qna-accordion-content p {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  /* .qna-content-wrapper {
    margin: 0 60px;
  } */
  .qna-image-section img {
    min-height: 500px;
    min-width: 500px;
  }
  .qna-accordion-content p {
    margin-bottom: 50px;
  }
  .qna-faq-section {
    padding: 40px 30px;
  }
}
@media (max-width: 1024px) {
  .qna-content-wrapper {
    flex-direction: column;
    gap: 0;
    /* margin: 0 40px; */
  }
  .qna-image-section {
    display: none;
  }
  .qna-mobile-image {
    display: block;
    height: 100%;
  }

  /* .qna-image-section img {
    min-height: 0;
    min-width: 0;
  } */
  .qna-main-title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 24px;
  }
  .qna-highlight {
    font-size: 32px;
    line-height: 36px;
  }
  .qna-accordion-header h2 {
    font-size: 20px;
  }
  .qna-accordion-content p {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 40px;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .qna-accordion-content p {
    margin-bottom: 30px;
    width: 100%;
  }

  .qna-accordion-item.active .qna-accordion-header h2 {
    color: #3ddc97;
    font-family: "Anton";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
@media (max-width: 768px) {
  .qna-content-wrapper {
    margin: 0 20px;
  }
  .qna-content-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .qna-faq-section {
    max-width: 100%;
    padding: 30px;
  }
  .qna-main-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 16px;
  }
  .qna-highlight {
    font-size: 24px;
    line-height: 28px;
  }
  .qna-accordion-header h2 {
    font-size: 18px;
  }
  .qna-accordion-item.active .qna-accordion-header h2 {
    font-size: 16px;
  }
  .qna-accordion-content p {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: -0.45px;
  }
  .qna-accordion-item.active .qna-accordion-content {
    /* max-height: 800px; */
  }

  .qna-toggle-btn {
    width: 24px;
    height: 24px;
  }

  .qna-icon {
    font-size: 18px;
  }
}

@media (max-width: 374px) {
  .qna-content-wrapper {
    margin: 0 15px;
  }
  .qna-main-title {
    font-size: 20px;
    line-height: 24px;
  }
  .qna-highlight {
    font-size: 20px;
    line-height: 24px;
  }
  .qna-accordion-header h2 {
    font-size: 14px;
  }
  .qna-accordion-item.active .qna-accordion-header h2 {
    font-size: 16px;
  }
  .qna-toggle-btn {
    width: 22px;
    height: 22px;
  }
  .qna-icon {
    font-size: 16px;
  }
  .qna-accordion-content p {
    font-size: 13px;
    line-height: 14px;
    letter-spacing: -0.45px;
    margin-bottom: 15px;
  }
  .qna-faq-section {
    padding: 25px;
  }
}
