/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/
/* 
MAIN COLOR : #e03131;#050c5f;
TINTS:e34646;
GREY COLOR:#343a40;#212529;#333;#555;

BORDER RADIUS:8px ;
FONT WEIGHT:
Default: 400;
Medium: 500;
Semi-Bold: 600;
Bold: 700;

LETTER-SPASING:0.75px ;
Box-shadow: box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
LINE-HEIGHT:
Default: 1;
headings: 1.05;
Paragraph default: 1.6;
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  /* font-size: 10px;
    10px / 16px = 0.625 * 100 = 62.5 
    1rem = 10px*/
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;

  font-family: "Inter", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #212529;
}
/* GENERAL CLASSES */
.back-to-top {
  cursor: pointer;
}
.center-text {
  text-align: center !important;
}
.padding-top {
  padding-top: 6.4rem;
}
.main-page {
  max-width: 155rem;
  margin: 0 auto;
}

.section {
  max-width: 155rem;
  margin: 0 auto;
  padding: 4.8rem 0;
}
.container {
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}
.flex {
  display: flex;
  align-items: center !important;
}
.grid {
  display: grid;
  column-gap: 3.2rem;
}
.grid-2-cols {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
}
.grid-3-cols {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
}
.mb-medium {
  margin-bottom: 6.4rem !important;
}
.mb-small {
  margin-bottom: 1.8rem !important;
}
/* HEADER NAVIGATION */
.header {
  position: relative;
  /* FIXED HEIGHT */
  height: 8rem;
  padding: 0 3.2rem;
  /* FLEX */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Sticky Navigation */
.sticky {
  position: fixed;
  top: 0;
  left: 0; /* add */
  right: 0; /* add */
  max-width: 155rem;
  margin: 0 auto;
  height: 8rem;

  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 0 8rem;
}
.logo {
  font-family: Inter, sans-serif;
  display: inline-block;
  font-weight: 900;
  font-size: 3rem;
  text-transform: uppercase;
  background: linear-gradient(90deg, #1e0252, #364fc7, #360389, #1c7ed6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* NAVIGATION */
.main-nav-list {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
  transition: all 0.3s;
}
.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #212529;
  font-weight: 500;
  font-size: 2rem;
  transition: all 0.3s;
}
.main-nav-link:hover,
.main-nav-link:active {
  color: #040a4c;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  background-color: #e03131;
  color: #fff !important;
  transition: all 0.3s;
}
.main-nav-link.nav-cta:hover,
.nav-cta:active {
  background-color: #ca2c2c;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}
.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 1.6rem;
  margin-left: 8px;
}
/* MENU BTN */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  /*  */
  display: none;
}
.icon-mobile-nav {
  height: 6.4rem;
  width: 6.4rem;
  color: #ca2c2c;
}
.icon-mobile-nav[name="close-outline"] {
  display: none;
}
/* SECTION HERO */
.section-hero {
  background: linear-gradient(
    90deg,
    #01172b 0%,
    #1a0247 10%,
    #271380 20%,
    #271380 30%,
    #1a0247 80%,
    #01172b 100%
  );
}
.hero {
  padding-top: 4.8rem;
  display: grid;
  grid-template-columns: 0.6fr 0.8fr;
  column-gap: 3.2rem;
}
.hero-text-box {
  flex-direction: column;
  row-gap: 2.4rem;
}
.product-img-hero {
  aspect-ratio: 1 / 1; /* or your real ratio, e.g., 4/3 */
  object-fit: cover; /* crop instead of stretch */
  display: none;
  pointer-events: none;
  visibility: hidden;
}

.product-img-hero:nth-child(2) {
  aspect-ratio: 1 / 1; /* or your real ratio, e.g., 4/3 */
  object-fit: cover; /* crop instead of stretch */
  display: block;
  pointer-events: visible;
  visibility: visible;
  width: 200px;
  height: 400px;
}
.reviews {
  gap: 1.2rem;
}
.reviews-box {
  display: flex;
  flex-direction: column;
}
.reviews-stars {
  display: flex;
  margin-bottom: 0.8rem;
}
.rating-value {
  color: #ffd43b;
  font-weight: 700;
  font-size: 1.8rem;
  margin-left: 0.8rem;
}
.reviews-text {
  color: #fff;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 400;
}
.customer-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3a86f0;
}
.icon-star {
  color: #e67700;
  font-size: 1.8rem;
}
/*  */
.heading-primary {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 3.2rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 9);
}
.hero-paragraph {
  color: #fff;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 2);
}
.hero-paragraph-strong {
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 2.4rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 1);
}
/* VIDEO */
.hero-video-box {
  text-align: center;
  position: relative;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.video {
  max-width: 100%;
  height: 300px;
  border-radius: 8px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
}
/* PLAY BUTTON */
.video-icon {
  font-size: 3.2rem;
  color: #fff;
}
.video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border: solid #701919 5px;
  border-radius: 50%;
  background: #ca2c2c;
  cursor: pointer;
  outline: none;
  color: #fff;
  z-index: 1; /* keep button above pulse */
}
/* Pulse ring goes here */
.video-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  z-index: -1;
  opacity: 0;
  transform: scale(1);
  animation: ringPulse 1.5s ease-out infinite;
}
@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
/* SECTION CREATED*/
.section-created {
  background-color: #ca2c2c;
  max-width: 155rem;
  margin: 0 auto;
  text-align: center;
}
.collage-tittle-product {
  max-width: 120rem;
  margin: 0 auto;
  padding: 3.2rem 3.2rem;
  color: #fff !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 9);
}
.heading-tertiary {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

/* SECTION ABOUT*/
.section-about {
  padding: 6.4rem 0;
}
.subheading {
  display: inline-block;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 800;
  color: #050c5f;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
hr {
  display: inline-block;
  width: 20%;
  margin: 0 auto;
  border-top: 3px solid #050c5f;
}
.heading-secondary {
  font-size: 3.6rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 4.8rem;
}
.heading-secondary-white {
  color: #fff;
}
.heading-secondary-blue {
  color: #050c5f;
}

.about-text-box {
  padding: 2.4rem 0;
}
/*  */
.quote-card {
  position: relative;
  display: flex;
  justify-self: end;
  width: 100%;
  height: 350px;
  border-radius: 8px;
  color: #fff;
  padding: 4.8rem;
  background: linear-gradient(135deg, #050c5f, #071184);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.quote-card::before {
  content: "";
  position: absolute;
  inset: 22px; /* distance from the card edges */
  pointer-events: none;
  /* four thin lines drawn with CSS gradients */
  background:
    /* top line (gap on the left) */
    linear-gradient(#fff, #fff) top left / calc(100% - 20px) 2px no-repeat,
    /* bottom line (gap on the right) */ linear-gradient(#fff, #fff) bottom
      left / calc(100% - 20px) 2px no-repeat,
    /* left line */ linear-gradient(#fff, #fff) top left / 2px 100% no-repeat,
    /* right line */ linear-gradient(#fff, #fff) top right / 2px 100% no-repeat;
  /* shift top line to create a left gap, and bottom line to create a right gap */
  background-position:
    top 0 left 20px,
    /* top line starts after 20px gap */ bottom 0 left 0,
    /* bottom line full width initially */ top 0 left 0,
    top 0 right 0;
}
/* Trim the bottom line to leave a gap on the right */
.quote-card::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 22px;
  right: 52px; /* creates the right-side gap */
  bottom: 22px;
  background: #fff;
}
/* Quotes */
.quote {
  position: absolute;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
}
.quote-open {
  top: 12px;
  left: 12px;
}
.quote-close {
  bottom: 12px;
  right: 12px;
}
/* Text */
.quote-text {
  position: relative;
  margin: 0;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 400;
}
/* IMG PART */
.about-img-box {
  position: relative;
  justify-content: center;
}
.product-wrapper {
  position: relative;
  display: inline-block;
}
.about-img-product {
  width: 250px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-70%, -50%) rotate(0deg);
}
.about-img-dropper {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0%, -50%) rotate(0deg);
  width: 250px;
  pointer-events: none;
}
/* SECTION SERVIVES*/
.section-services {
  padding: 6.4rem 4.8rem;
  background: linear-gradient(90deg, #1e0252, #0e2075, #360389, #011c33);
  color: #fff;
}
.heading-tertiary {
  color: #fff;
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 1.5;
  font-weight: 700;
  padding: 1.6rem 0;
}
.services-items {
  margin-top: 4.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  justify-content: center;
  column-gap: 1.2rem;
}
.fa-solid {
  font-size: 2.4rem;
  padding: 2.4rem;
  color: #fff;
}
.service-title {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.services-item {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  hyphens: auto;
}

/* Section Promice */
.section-promice {
  padding: 6.4rem 0;
  max-width: 155rem;
  margin: 0 auto;
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) 0;
}
.paragraph-text {
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 500;
  color: #212529;
  padding: 0.8rem 0 4.8rem 0;
}
/* Layout */

.eyebrow {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  letter-spacing: 0.02em;
  opacity: 0.9;
  margin: 0 0 0.25rem;
}
.sublead {
  max-width: 60ch;
  opacity: 0.85;
  margin: 0 0 2rem;
}

/* Promise card (glass + border glow) */
.promise-card {
  justify-self: end;
  position: relative;
  width: 100%;
  height: 350px;
  padding: 3.2rem 1.6rem;
  border-radius: 8px;
  border: 1px solid rgba(65, 131, 196, 0.35);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  background: linear-gradient(90deg, #110130, #0e2075, #360389, #011c33);
  color: #fff; /* ensure text is white */
  overflow: hidden;
}

/* thin accent line */
.promise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(
    120deg,
    rgba(17, 1, 48, 0.647),
    rgba(14, 31, 117, 0.732),
    rgba(54, 3, 137, 0.712),
    rgba(1, 28, 51, 0.721) 0%,
    transparent 10%
  );
  z-index: 999; /* put overlay behind content */
  pointer-events: none;
}
.heading-quinary {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
}

/* List */
.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.promise-item {
  display: flex;
  gap: 1.6rem;
  padding: 0.6rem 1.6rem;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  background: rgba(28, 21, 106, 0.296);
  border: 1px solid rgba(255, 255, 255, 0.195);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.promise-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(56, 132, 255, 0.25);
}

/* Check icon -> cobalt gradient */
.check-icon {
  font-size: 2.4rem;
  color: #7fc1ff;
  filter: drop-shadow(0 0 6px rgba(56, 132, 255, 0.35));
}

/* Right image with glow blob */

.promice-img {
  display: block;
  width: 500px;
  height: 350px;
  border-radius: 8px;
  justify-self: center;
}

/* Responsive */

/* section collage background */
.collage-img {
  max-width: 100%;
  height: auto;
}
/* SECTION TESTEMONIALS*/
.section-testemonials {
  padding: 9.6rem 0;
  max-width: 155rem;
  margin: 0 auto;
}
.container-testimonials {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}
.testimonials-tittle {
  max-width: 80rem;
  margin: 0 auto;
  margin-bottom: 4.8rem;
}
.customers-row {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem !important;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.8rem;
}
.customers-row img {
  object-fit: cover;
  display: block;
}

/* Shared styles */
.customers-row img.testimonial-customer-img {
  display: inline-block;
  object-fit: cover;
  aspect-ratio: 1 / 1; /* backup for quick layout if HTML width/height missing */
  padding: 0.8rem 0.8rem 2rem 0.8rem;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1); /* slightly lighter = faster paint */
  margin-bottom: 4.8rem;
  will-change: transform; /* smoother hover */
  transition: transform 0.2s ease;
}

.testimonial-customer-img:hover {
  cursor: pointer;
  transform: scale(1.05);
}
/* Keep your sizing map, but you can remove duplicate object-fit */
.customers-row div:nth-child(1) img,
.customers-row div:nth-child(6) img {
  width: 100px;
  height: 100px;
}
.customers-row div:nth-child(2) img,
.customers-row div:nth-child(5) img {
  width: 150px;
  height: 150px;
}
.customers-row div:nth-child(3) img,
.customers-row div:nth-child(4) img {
  width: 190px;
  height: 190px;
}

.testimonial-customer-img {
  object-fit: cover;
  display: inline-block;
  transition: all 0.4s;
}
.testimonial-customer-img:hover {
  cursor: pointer;
  transform: scale(1.05);
}
/*  */
.testimonial-container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 2.4rem 3.2rem;
  display: flex;
}
.testimonial-img-container {
  object-fit: cover;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: start;
  column-gap: 6.4rem;
}
.heading-quaternary {
  font-size: 3rem;
  color: #050c5f;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
i {
  color: #212529;
  font-size: 2rem;
}
.testimonial-img {
  object-fit: cover;
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  margin-right: 2.2rem;
}
.testimonial-img-product {
  width: 100%;
  height: 80px;
  display: block;
  object-fit: cover;
  margin-bottom: 1.2rem;
}
.testimonial-img-product-three {
  width: 50px;
  height: 80px;
  display: block;
  object-fit: cover;
  margin-bottom: 1.2rem;
}
.testimonial-img-product-three:last-child {
  transform: translateX(-30%);
}
.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 500;
  hyphens: auto;
  margin-bottom: 0.8rem;
}
.testimonial-name {
  color: #212529;
  font-size: 1.8rem;
  line-height: 1.7;
  font-size: 600;
}
.testimonial-package {
  color: #050c5f;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 800;
}
/* section-arrow */
.section-arrow {
  background-color: #050c5f;
  color: #fff;
  padding: 2.4rem 0;
}
.section-arrow > .heading-tertiary {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 9);
}
.fa-arrow-down {
  display: inline-block;
  margin-bottom: 1.6rem;
  animation: pulse 1.2s ease-in-out infinite;
  /* optional styling */
  font-size: 6.2rem; /* size */
  color: #ffd; /* color (use any) */
  will-change: transform;
}

@keyframes pulse {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(4px) scale(1.15);
    opacity: 0.85;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
/* SECTION ORDER*/
.section-order {
  padding: 9.6rem 0;
  overflow: visible;
}
.product {
  width: 100%;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
}
.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
  background-color: #e6e7ef;
}
.product-best-value {
  background-color: #b4b6cf;
}
.product-best-value:hover {
  background-color: #9b9ebf;
}
.product-content {
  position: relative;
  overflow: hidden;
}
.best-value {
  background: #ca2c2c;
  color: #fff;
  width: 250px;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  position: absolute;
  top: 55px;
  right: -50px;
  transform: rotate(45deg);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  text-shadow: 0 3px 8px rgba(0, 0, 0, 1);
}
.best-value span {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 1);
}
.tag {
  background-color: #023664;
  color: #fff;
  display: block;
  padding: 1rem 2rem;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.product-title {
  padding: 1.2rem 0;
  text-align: center;
  font-size: 3.8rem;
  color: #212529;
  font-weight: 700;
}
.product-img-card {
  text-align: center;
}
.product-img {
  display: inline-block;
  width: 200px;
  height: 300px;
}
.product-img-spread {
  display: inline-block;
  width: 200px;
  height: 300px;
}
.product-img-spread-one {
  transform: translate(18%, 0%);
}
.product-img-spread-two {
  transform: translate(-10%, 0%);
}
.product-order {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  padding-bottom: 2.2rem;
}
.price span {
  font-weight: 500;
  font-size: 5.2rem;
}
.price {
  font-weight: 700;
  font-size: 6.2rem;
  border-radius: 3rem;
  padding: 1rem;
  color: #050c5f;
}
.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 8px;
  background-color: #040a4c;
  color: #fff;
  cursor: pointer;
  margin: 1.2rem 0;
  transition: all 0.3s;
}

.btn:hover {
  background-color: #050c5f;
  transform: translateY(-1px);
}

.buy-btn.ready {
  opacity: 1;
  pointer-events: auto;
  filter: none;
}

.fa-cart-shopping {
  color: #fff;
  fill: #fff;
}
.card-disclaimer {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.4;
  font-style: italic;
}
.support-link-grey {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.4;
  font-style: italic;
}
/*  */
.shipping-note {
  font-size: 1.2rem;
  opacity: 0.85;
  padding: 0 1.8rem;
  text-align: center;
}

/* section faq */
:root {
  --faq-bg: #f1f3f5;
  --faq-card: #fff;
  --faq-text: #050c5f;
  --faq-muted: #343a40;
  --faq-accent: #050c5f;
}

.section-faq {
  max-width: 90.6rem;
  height: 700px;
  margin: 0 auto;
  padding: 9.6rem 0;
}
.faq-main-tittle {
  margin-bottom: 4.8rem;
}
.faq-title {
  font-size: 1.8rem;
  padding: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: #050c5f;
}
.faq__item {
  background: #fff;
  color: #212529;
  border-radius: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.6;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  margin: 0.8rem 0;
  overflow: hidden;
}

/* Question button */
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.8rem;
  color: #050c5f;
  text-align: left;
  transition: all 0.4s;
}
.faq__question:hover {
  background: #e6e7ef;
}

.faq__icon {
  transition: transform 0.25s ease;
  flex: 0 0 20px;
}
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
}

/* Answer panel with smooth height animation */
.faq__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  padding: 0 1.2rem; /* horizontal padding stays */
}
.faq__answer p {
  color: #212529;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 400;
  margin: 0.8rem 0 1.2rem;
}
.faq__answer a {
  color: #050c5f;
  text-decoration: none;
}
.faq__answer a:hover {
  text-decoration: underline;
}

/* Optional light background behind all items */
#faq {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
  border-radius: 8px;
  padding: 1.2rem;
}
/* FOOTER */
.section-footer {
  max-width: 155rem;
  margin: 0 auto;
  padding: 2.4rem 1.6rem;
  background: #050c5f;
  color: #fff;
  font-family: "Inter", sans-serif;
}
.support {
  color: #fff;
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.support-link {
  color: #fff;
}
.footer-inf-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  color: #fff;
}
.back-to-top {
  cursor: pointer;
  color: #fff;
  padding: 0.8rem 0 0.6rem 0;
  text-decoration: none;
  font-size: 1.6rem;
  text-align: center;
}
.back-to-top-icon {
  color: #fff;
  font-size: 1.8rem;
}
.footer-copy {
  padding-top: 1.8rem;
  font-size: 1.8rem;
}
/*  */

/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/
/* 
MAIN COLOR : #0a18bd;
TINTS:;
GREY COLOR : #333 ;

BORDER RADIUS: 30px;
FONT WEIGHT:
Default: 400;
Medium: 500;
Semi-Bold: 600;
Bold: 700

letter-spacing: 
0.75px;
-0.5px
LINE-HEIGHT:
Default: 1
1.05
Paragraph default: 1.6
*/
