@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&family=Xanh+Mono:ital@0;1&display=swap');

/* Base colors (formerly variables) */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
  background-color: #DCDEE5 !important;
}

/* Header shared */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0E191E;
  color: #F5F5F5;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand img {
  display: block;
  height: auto;
  max-height: 48px;
}

/* DESKTOP HEADER */
.site-header--desktop .header-row {
  margin: 0 90px;
}

.site-header--desktop .nav-actions {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Nav */
.nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a,
.nav span {
  color: #F5F5F5;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 2px;
}

.nav a:hover,
.nav span:hover,
.nav span:focus-visible .nav a:focus-visible {
  color: #FF7959;
}

/* Dropdown */
.menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu .caret {
  display: inline-block;
  transition: transform .15s ease;
}

.menu:hover .caret,
.menu:focus-within .caret {
  transform: rotate(90deg);
  color: #FF7959;
}

.menu:hover>a,
.menu:focus-within>a {
  color: #FF7959;
}

.menu__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -8px;
  min-width: 220px;
  background: #fff;
  color: #111;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12), 0 2px 6px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.menu__dropdown--right {
  left: auto;
  right: -8px;
}

.menu:hover>.menu__dropdown,
.menu:focus-within>.menu__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu__dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 600;
  color: #0E191E;
}

.menu__dropdown a:hover:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.menu__dropdown a:hover:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.menu__dropdown--right a:hover:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.menu__dropdown a:hover,
.menu__dropdown a:focus-visible {
  background: #FF7959;
  color: #F4F6F7;
}

/* Language globe */
.menu--lang .lang__globe {
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* CTA */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 22px;
  color: #F5F5F5;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid #FF7959;
  border-radius: 125px;
  background: linear-gradient(90deg, #FF7959 0%, #FFA683 100%);
  transition: background 0.5s ease, transform 0.3s ease;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  background: linear-gradient(90deg, #FFA683 0%, #FF7959 100%);
  transform: scale(1.03);
}

.btn-cta img {
  width: 20px;
  height: 20px;
}

/* LAYOUT FILLER */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 90px;
}

main {
  min-height: 60vh;
}

.footer-dummy {
  padding: 60px 90px;
  background: #0B1418;
  color: #9FB0B7;
}

/* MOBILE/TABLET HEADER */
.site-header--mobile {
  display: none;
  background: #0E191E;
  color: #F5F5F5;
}

.site-header--mobile .header-row {
  margin: 0 24px;
}

.site-header--mobile .mobile-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header--mobile .mobile-toggle .ic-close {
  display: none;
}

/* Mobile panel */
.mobile-panel {
  position: fixed;
  inset: 0;
  height: fit-content;
  background: #000;
  color: #f5f5f5;
  transform: translateY(-100%);
  transition: transform .4s ease;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 28px 24px 32px;
}

body.menu-open .mobile-panel {
  transform: translateY(0);
}

.mobile-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mobile-close {
  background: transparent;
  border: 0;
  cursor: pointer;
}

/* Mobile menu */
.m-nav {
  padding: 0;
}

.m-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.m-menu>li {
  border-top: 1px solid #2a2a2a;
}

.m-menu>li:first-child {
  border-top: 0;
}

.m-menu a,
.m-parent {
  font: 600 20px/1.4 "Space Grotesk", system-ui;
  color: #f5f5f5;
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 10px;
}

.caret svg {
  display: block;
  width: 12px;
  height: 8px;
  fill: currentColor;
  transition: transform .2s ease;
}

.m-has-sub.is-open .caret svg {
  transform: rotate(180deg);
}

.m-submenu {
  list-style: none;
  margin: 4px 0 10px 0;
  padding: 0 0 0 16px;
  display: none;
  flex-direction: column;
}

.m-has-sub.is-open .m-submenu {
  display: flex;
}

.m-submenu a {
  font-weight: 500;
  font-size: 17px;
  color: #c9cfd2;
  padding: 10px 0;
}

.m-submenu a:hover {
  color: #ff7959;
}

/* Mobile CTA */
.m-cta {
  margin-top: 30px;
  align-self: center;
  width: min(340px, 90%);
  font-size: 16px;
  height: 54px;
}

.m-menu a.is-active {
  color: #ff7959;
}

/* RESPONSIVE VISIBILITY */
@media (max-width: 1024px) {
  .site-header {
    top: -1px;
  }

  .site-header--desktop {
    display: none;
  }

  .site-header--mobile {
    display: block;
  }

  .container {
    padding: 0 24px;
  }

  .btn-cta {
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 1025px) {
  .site-header--desktop {
    display: block;
  }

  .site-header--mobile {
    display: none;
  }
}

.site-footer {
  background: url(/assets/img/footerback.svg) no-repeat center top / cover;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Space Grotesk", system-ui, sans-serif;
  padding: 80px 315px 0;
  overflow: hidden;
}

/* large laptops (1440px–1919px) */
@media (max-width: 1919px) {
  .site-footer {
    padding: 80px 200px 0;
  }
}

/* standard laptops (1025px–1439px) */
@media (max-width: 1439px) {
  .site-footer {
    padding: 70px 140px 0;
  }
}

/* tablets (769px–1024px) */
@media (max-width: 1024px) {
  .site-footer {
    padding: 60px 80px 0;
    background-position: center top;
  }
}

/* mobile landscape (481px–768px) */
@media (max-width: 768px) {
  .site-footer {
    padding: 50px 40px 0;
    background-size: contain;
  }
}

/* mobile portrait (≤480px) */
@media (max-width: 480px) {
  .site-footer {
    padding: 40px 20px 0;
    background-size: cover;
  }
}

.footer-inner {
  display: grid;
  grid-template-columns: 310px repeat(3, 1fr);
  gap: 90px;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo {
  width: 210px;
  height: auto;
}

.footer-desc {
  font-family: Space Grotesk;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 245, 245, 0.2);
  border-radius: 9999px;
  color: #fff;
  transition: background .3s, border-color .3s;
}

.footer-social a:hover {
  background: #FF7959;
  border-color: #FF7959;
}

.footer-col h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
  margin-left: 15px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col li {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color .3s;
  font-family: Space Grotesk;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.footer-col a:hover {
  color: #FF7959;
}

/* hover arrow animation */
.arrow {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.group:hover .arrow {
  transform: scaleX(1);
}

/* bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 60px;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color .3s;
}

.footer-links a:hover {
  color: #FF7959;
}

/* ========================= RESPONSIVE ========================= */
/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .site-footer {
    padding: 60px 80px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .footer-desc {
    font-size: 16px;
  }

  .footer-col h3 {
    font-size: 22px;
  }

  .footer-col a {
    font-size: 17px;
  }
}

/* Mobiles (≤640px) */
@media (max-width: 640px) {
  .site-footer {
    padding: 60px 24px 0;
  }

  .arrow {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-col h3 {
    font-size: 20px;
    margin-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-col li {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
    align-items: center;
  }
}

.section1 {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
}

.lcp-preload {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Keep existing content above */
.section1-inner {
  position: relative;
  z-index: 1;
}

.section1-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 650px;
  margin-left: 120px;
}

/* === Pill === */
.section1-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border: 2px solid #FF7959;
  border-radius: 125px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  width: fit-content;
  transition: background 0.3s, color 0.3s;
}

.section1-pill:hover {
  background: #FF7959;
  color: #fff;
}

/* === Title === */
.section1-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 64px;
  text-transform: capitalize;
  color: #fff;
  margin: 0;
}

/* === Subtext === */
.section1-sub {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  max-width: 600px;
  margin: 0;
}

/* === Button === */
.section1-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 15px 22px;
  background: linear-gradient(90deg, #FF7959 0%, #EC4A34 100%);
  border: 1px solid #FF7959;
  border-radius: 125px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #F5F5F5;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.2s ease;
  width: 245px;
}

.section1-button:hover {
  transform: scale(1.05);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .section1 {
    justify-content: center;
    text-align: center;
  }

  .section1-inner {
    margin: 0 24px;
    align-items: center;
  }

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

  .section1-sub {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .section1 {
    height: auto;
    padding: 100px 0;
  }

  .section1-title {
    font-size: 36px;
    line-height: 42px;
  }

  .section1-sub {
    font-size: 16px;
  }
}

.section2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 120px 0;
  margin-top: -100px;
}

.section2-frame {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 90%;
  max-width: 1450px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 60px 80px;
  gap: 80px;
}

/* LEFT SIDE — vertical texts */
.section2-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  min-width: 300px;
}

.section2-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: #FF7959;
  text-transform: capitalize;
  text-align: left;
}

.section2-number {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #FF7959;
}

.section2-label {
  display: block;
  font-weight: 400;
  font-size: 18px;
  color: #1B1B1B;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .section2-heading {
    font-size: 32px;
    line-height: 34px;
    text-align: center;
  }

  .section2-label {
    font-size: 16px;
  }
}

/* RIGHT SIDE — grid of equal logo boxes */
.section2-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: right;
}

.section2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 550px;
  gap: 10px;
}

.section2-grid img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  justify-self: center;
  align-self: center;
  padding: 20px 20px;
  /* spacing inside cell */
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* remove right border from last column */
.section2-grid img:nth-child(3n) {
  border-right: none;
}

/* remove bottom border from last row */
.section2-grid img:nth-last-child(-n+3) {
  border-bottom: none;
}

/* RESPONSIVE */
/* === TABLET (max-width: 1024px) === */
@media (max-width: 1024px) {
  .section2 {
    padding: 60px 40px;
    margin-top: -60px;
  }

  .section2-frame {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
    padding: 50px 40px;
  }

  .section2-left {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    min-width: auto;
  }

  .section2-heading {
    font-size: 32px;
    line-height: 36px;
    width: auto;
  }

  .section2-heading span {
    width: auto;
  }

  .section2-right {
    justify-content: center;
    width: 100%;
  }

  .section2-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 100%;
    max-width: 500px;
  }

  .section2-grid img {
    width: 160px;
    height: 90px;
    padding: 16px;
  }

  /* adjust borders */
  .section2-grid img {
    border-right: 0.5px solid rgba(124, 152, 182, 1);
    border-bottom: 0.5px solid rgba(124, 152, 182, 1);
  }

  .section2-grid img:nth-child(2n) {
    border-right: none;
  }

  .section2-grid img:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* === MOBILE (max-width: 640px) === */
@media (max-width: 640px) {
  .section2 {
    padding: 0px 20px;
    margin-top: -60px;
  }

  .section2-frame {
    padding: 40px 30px;
    gap: 40px;
  }

  .section2-left {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .section2-heading {
    font-size: 26px;
    line-height: 30px;
    width: auto;
  }

  .section2-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 300px;
  }

  .section2-grid img {
    width: 140px;
    height: auto;
    padding: 14px;
    border-right: none;
    border-bottom: none;
  }

  .section2-grid img:last-child {
    border-bottom: none;
  }
}

.section3 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0px;
}

.section3-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  max-width: 1450px;
  width: 100%;
}

/* IMAGE */
.section3-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.section3-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT CARD */
.section3-card {
  flex: 1;
  background: #7C98B6;
  border-radius: 20px;
  padding: 50px 42px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
}

/* TAG */
.section3-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border: 2px solid #FF7959;
  border-radius: 125px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  width: fit-content;
  transition: background 0.3s, color 0.3s;
}

.section3-tag:hover {
  background: #FF7959;
  color: #fff;
}

/* DESCRIPTION */
.section3-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  max-width: 600px;
}

/* LIST */
.section3-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section3-list li {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.section3-list li:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #fff;
  opacity: 0.8;
  margin-top: 8px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .section3 {
    padding: 60px 40px;
  }

  .section3-inner {
    flex-direction: column;
    gap: 30px;
  }

  .section3-card {
    padding: 40px 30px;
    align-items: center;
    text-align: center;
  }

  .section3-desc {
    max-width: 100%;
  }

  .section3-list {
    align-items: center;
  }

  .section3-list li {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .section3 {
    padding: 40px 20px;
  }

  .section3-card {
    padding: 30px 24px;
  }

  .section3-tag {
    font-size: 14px;
    padding: 12px 18px;
  }

  .section3-desc,
  .section3-list li {
    font-size: 16px;
  }
}

.section4 {
  padding: 120px 220px;
}

/* large laptops (≤1919px) */
@media (max-width: 1919px) {
  .section4 {
    padding: 100px 160px;
  }
}

/* standard laptops (≤1439px) */
@media (max-width: 1439px) {
  .section4 {
    padding: 90px 120px;
  }
}

/* tablets (≤1024px) */
@media (max-width: 1024px) {
  .section4 {
    padding: 80px 80px;
  }
}

/* mobile landscape (≤768px) */
@media (max-width: 768px) {
  .section4 {
    padding: 60px 40px;
  }
}

/* mobile portrait (≤480px) */
@media (max-width: 480px) {
  .section4 {
    padding: 50px 20px;
  }
}

.container {
  max-width: 1450px;
  margin: 0 auto;
  width: 100%;
}

/* GRID */
.section4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.service-card {
  position: relative;
  border: 1px solid #7c98b6;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  background: transparent;
  transition: all 0.3s ease;
  min-height: 300px;
}

/* OUTER BORDER */
.service-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid #7c98b6;
  border-radius: 30px;
  transition: all 0.3s ease;
  z-index: -1;
}

.service-card:hover::before {
  border: 1px solid #ff7959;
  box-shadow: 0 0 18px 3px rgba(255, 121, 89, 0.4);
}

/* ICON → TITLE → TEXT GAP */
.service-icon img {
  width: 40px;
  height: 40px;
  display: block;
}

/* TEXT STYLES */
.service-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 35px;
  color: #EC4A34;
  line-height: 40px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.service-text {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #44494B;
}

/* BUTTON */
.service-btn {
  align-self: flex-start;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #FF7959 0%, #FFA683 100%);
  border: 1px solid #ff7959;
  border-radius: 125px;
  color: #fff;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 22px;
  width: fit-content;
  gap: 10px;
  transition: background 0.5s ease, transform 0.3s ease;
  margin-top: auto;
}

.service-btn:hover {
  background: linear-gradient(90deg, #FFA683 0%, #FF7959 100%);
  transform: scale(1.03);
}

/* FIRST CARD (TEXT) */
.section4-left {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section4-left::before {
  display: none;
}

.section4-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border: 2px solid #FF7959;
  border-radius: 125px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #44494B;
  text-decoration: none;
  width: fit-content;
  transition: background 0.3s, color 0.3s;
}

.section4-tag:hover {
  background: #FF7959;
  color: #fff;
}

.section4-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #0e191e;
  margin-bottom: 20px;
}

.section4-desc {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #0e191e;
  max-width: 420px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .section4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section4 {
    padding: 60px 40px;
  }

  .section4-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-card {
    align-items: center;
  }

  .service-btn {
    align-self: center;
  }

  .section4-left {
    text-align: center;
  }

  .section4-desc {
    margin: 0 auto;
  }
}

.section5 {
  background: url(/assets/img/investback.svg) no-repeat center top / cover;
  padding: 120px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 85px;
}

/* large laptops (≤1919px) */
@media (max-width: 1919px) {
  .section5 {
    padding: 100px 100px;
    gap: 75px;
  }
}

/* standard laptops (≤1439px) */
@media (max-width: 1439px) {
  .section5 {
    padding: 90px 80px;
    gap: 65px;
  }
}

/* tablets (≤1024px) */
@media (max-width: 1024px) {
  .section5 {
    padding: 80px 60px;
    gap: 55px;
    background-position: center;
  }
}

/* mobile landscape (≤768px) */
@media (max-width: 768px) {
  .section5 {
    padding: 60px 40px;
    gap: 45px;
    background-size: contain;
  }
}

/* mobile portrait (≤480px) */
@media (max-width: 480px) {
  .section5 {
    padding: 50px 20px;
    gap: 35px;
    background-size: cover;
  }
}

/* HEADER */
.section5-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* TAG (like section4-tag but white text always) */
.section5-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border: 2px solid #FF7959;
  border-radius: 125px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  width: fit-content;
  transition: background 0.3s, color 0.3s;
}

.section5-tag:hover {
  background: #FF7959;
  color: #fff;
}

/* TITLE */
.section5-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: #FFFFFF;
  text-align: center;
  max-width: 600px;
}

/* GRID */
.section5-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 1420px;
}

/* CARD STYLE (no hover glow) */
.investment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 25px;
  gap: 20px;
  background: transparent;
  border-right: 1px solid #7C98B6;
}

.investment-card:last-child {
  border-right: none;
}

/* CONTENT */
.investment-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #FF7959;
}

.investment-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.investment-desc {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  color: #8F959E;
  line-height: 1.3;
  max-width: 375px;
}

/* BUTTON (exact spec you provided) */
.investment-btn {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 22px;
  gap: 8px;
  width: fit-content;
  height: 48px;
  background: linear-gradient(90deg, #FF7959 0%, #EC4A34 100%);
  border: 1px solid #FF7959;
  border-radius: 125px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 15px;
  color: #F5F5F5;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.5s ease, transform 0.3s ease;
}

.investment-btn:hover {
  background: linear-gradient(90deg, #EC4A34 0%, #FF7959 100%);
  transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .section5-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .investment-card:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .section5 {
    padding: 60px 40px;
    gap: 60px;
  }

  .section5-grid {
    grid-template-columns: 1fr;
  }

  .investment-card {
    border-right: none;
  }
}

.section6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
  padding: 120px 240px;
}

/* large laptops (≤1919px) */
@media (max-width: 1919px) {
  .section6 {
    padding: 100px 180px;
    gap: 50px;
  }
}

/* standard laptops (≤1439px) */
@media (max-width: 1439px) {
  .section6 {
    padding: 90px 120px;
    gap: 45px;
  }
}

/* tablets (≤1024px) */
@media (max-width: 1024px) {
  .section6 {
    grid-template-columns: 1fr;
    padding: 80px 80px;
    gap: 40px;
  }
}

/* mobile landscape (≤768px) */
@media (max-width: 768px) {
  .section6 {
    grid-template-columns: 1fr;
    padding: 60px 40px;
    gap: 30px;
  }
}

/* mobile portrait (≤480px) */
@media (max-width: 480px) {
  .section6 {
    grid-template-columns: 1fr;
    padding: 50px 20px;
    gap: 25px;
  }
}

/* LEFT */
.section6-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.section6-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border: 2px solid #FF7959;
  border-radius: 125px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #44494B;
  text-decoration: none;
  width: fit-content;
  transition: background 0.3s, color 0.3s;
}

.section6-tag:hover {
  background: #FF7959;
  color: #fff;
}

.section6-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
  color: #020308;
}

.section6-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  color: #0E191E;
  line-height: 1.5;
  max-width: 500px;
}

/* BUTTON */
.service-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #FF7959 0%, #EC4A34 100%);
  border: 1px solid #FF7959;
  border-radius: 125px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 22px;
  width: fit-content;
  transition: background 0.4s ease, transform 0.3s ease;
}

.service-btn:hover {
  background: linear-gradient(90deg, #FFA683 0%, #FF7959 100%);
  transform: scale(1.03);
}

/* RIGHT */
.section6-right {
  border: 1px solid #44494B;
  border-radius: 20px;
  overflow: hidden;
}

.section6-image {
  height: 420px;
  background: linear-gradient(0deg, #FF7959, #FF7959),
    url(../img/sec6img.svg) center/cover no-repeat;
  background-blend-mode: color;
}

/* ACCORDION */
.accordion {
  display: flex;
  flex-direction: column;
  padding: 50px 40px;
  gap: 15px;
}

.accordion-item {
  border-bottom: 0.5px solid #7C98B6 !important;
  padding: 10px 0px !important;
  background-color: transparent !important;
}

.accordion-item:last-of-type {
  border-bottom: none !important;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #EC4A34;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0;
}

.accordion-header::after {
  content: "+";
  color: #EC4A34;
  font-size: 26px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  content: "−";
}

.accordion-body {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  color: #44494B;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0px !important;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .section6 {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 40px;
  }

  .section6-content {
    align-items: center;
  }

  .section6-text {
    max-width: 100%;
  }

  .service-btn {
    margin: 0 auto;
  }

  .accordion {
    padding: 0px 10px;
  }
}

.section7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #EEEFF3;
  padding: 120px 100px;
  gap: 70px;
}

/* Tag */
.section7-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 2px solid #EC4A34;
  border-radius: 125px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0E191E;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.section7-tag:hover {
  background: #EC4A34;
  color: #fff;
}

/* Title */
.section7-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: #0E191E;
  width: 500px;
}

/* Grid */
.section7-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1600px;
}

/* Card */
.section7-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 25px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.section7-card:hover {
  transform: translateY(-5px);
}

/* Image */
.section7-img-wrapper {
  position: relative;
  width: 100%;
  background: #EEEFF3;
  border-radius: 25px;
  overflow: hidden;
}

.section7-img {
  width: 100%;
  height: 325px;
  object-fit: cover;
  border-radius: 25px;
}

/* Number badge */
.section7-step {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #FF7959;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 48px;
  width: 93px;
  height: 93px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bottom info */
.section7-info {
  background: #7C98B6;
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 25px;
  margin-top: 25px;
  height: 185px;
}

/* Info title */
.section7-heading {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: left;
  font-size: 37px;
  line-height: 37px;
  letter-spacing: 0%;
  vertical-align: middle;
}

/* Info text */
.section7-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  max-width: 350px;
  text-align: left;
}

/* Responsive */
@media (max-width: 1200px) {
  .section7-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section7-title,
  .section6-title,
  .section4-title,
  .section5-title,
  .section8-title,
  .section9-title {
    font-size: 28px;
    line-height: 28px;
    width: fit-content;

  }
}

@media (max-width: 768px) {
  .section7 {
    padding: 80px 40px;
  }

  .section7-grid {
    grid-template-columns: 1fr;
  }

  .section7-info {
    align-items: center;
    text-align: center;
    height: 230px;
  }
}

.section8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 240px;
  gap: 50px;
  text-align: center;
}

/* large laptops (1440px–1919px) */
@media (max-width: 1919px) {
  .section8 {
    padding: 100px 180px;
    gap: 45px;
  }
}

/* standard laptops (1025px–1439px) */
@media (max-width: 1439px) {
  .section8 {
    padding: 90px 120px;
    gap: 40px;
  }
}

/* tablets (769px–1024px) */
@media (max-width: 1024px) {
  .section8 {
    padding: 80px 80px;
    gap: 35px;
  }
}

/* mobile landscape (481px–768px) */
@media (max-width: 768px) {
  .section8 {
    padding: 60px 40px;
    gap: 30px;
  }
}

/* mobile portrait (≤480px) */
@media (max-width: 480px) {
  .section8 {
    padding: 50px 20px;
    gap: 25px;
  }
}

/* Tag */
.section8-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 22px;
  border: 2px solid #EC4A34;
  border-radius: 125px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: #44494B;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.section8-tag:hover {
  background: #EC4A34;
  color: #fff;
}

/* Title */
.section8-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: #44494B;
  width: 666px;
  max-width: 100%;
}

/* Grid */
.section8-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1500px;
}

/* Blog Card */
.blog-card {
  position: relative;
  height: 570px;
  border: 1px solid #5B5B5B;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-grid .blog-card {
  height: 850px;
}

/* Overlay */
.blog-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(14, 25, 30, 0.7);
  border-radius: 20px 20px 0 0;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 15px;
}

/* Blog Title */
.blog-title-1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 36px;
  color: #F5F5F5;
  text-align: left;
}

/* Meta */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta a {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #44494B;
  text-decoration: none;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item img {
  width: 14px;
  height: 14px;
}

.meta-item span {
  color: #44494B;
}

.meta-item span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #44494B;
}

/* laptops (≤1439px) */
@media (max-width: 1439px) {
  .meta-item span {
    font-size: 13px;
    line-height: 19px;
  }
}

/* tablets (≤1024px) */
@media (max-width: 1024px) {
  .meta-item span {
    font-size: 12.5px;
    line-height: 18px;
  }
}

/* mobile landscape (≤768px) */
@media (max-width: 768px) {
  .meta-item span {
    font-size: 12px;
    line-height: 17px;
  }
}

/* mobile portrait (≤480px) */
@media (max-width: 480px) {
  .meta-item span {
    font-size: 11.5px;
    line-height: 16px;
  }
}

.blog-card .blog-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.blog-card:hover .blog-btn {
  opacity: 1;
  pointer-events: auto;
}

/* Button */
.blog-btn {
  margin: 20px 0 30px 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 22px;
  gap: 10px;
  width: fit-content;
  height: 48px;
  background: linear-gradient(90deg, #FF7959 0%, #EC4A34 100%);
  border: 1px solid #FF7959;
  border-radius: 125px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #F5F5F5;
  text-decoration: none;
  transition: opacity 0.3s;
}

.blog-btn:hover {
  background: linear-gradient(90deg, #EC4A34 0%, #FF7959 100%);
}

/* Responsive */
@media (max-width: 1200px) {
  .section8-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-title-1 {
    font-size: 28px;
    line-height: 28px;
  }

  .service-title {
    font-size: 28px;
    line-height: 28px;
  }
}

@media (max-width: 768px) {
  .section8 {
    padding: 80px 40px;
  }

  .section8-title {
    width: 100%;
    font-size: 32px;
  }

  .section8-grid {
    grid-template-columns: 1fr;
  }
}

.section9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #EEEFF3;
  padding: 120px 100px;
  gap: 50px;
  text-align: center;
}

/* Tag */
.section9-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 22px;
  border: 2px solid #EC4A34;
  border-radius: 125px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: #0E191E;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.section9-tag:hover {
  background: #EC4A34;
  color: #fff;
}

/* Title */
.section9-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: #0E191E;
  width: 546px;
  max-width: 100%;
}

/* Swiper */
.section9-swiper {
  width: 100%;
  max-width: 1747px;
  padding-top: 40px;
  padding-bottom: 60px;
}

/* Slide */
.usecase-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.usecase-card:hover {
  transform: translateY(-6px);
}

/* Logo container */
.usecase-img {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.usecase-img img {
  max-width: 220px;
  max-height: 120px;
  object-fit: contain;
  height: 100%;
  width: 100%;
}

/* Info footer */
.usecase-info {
  background: #7C98B6;
  color: #fff;
  text-align: left;
  padding: 20px;
  border-radius: 0 0 20px 20px;
}

.usecase-info h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

.usecase-info p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

/* Pagination */
.swiper-pagination-bullet {
  background: #EC4A34;
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .section9 {
    padding: 80px 40px;
  }

  .usecase-img img {
    max-width: 180px;
  }
}

/* Fix card width and centering on mobile */
@media (max-width: 768px) {
  .section9-swiper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section9-swiper .swiper-slide {
    width: calc(100% - 40px) !important;
    display: flex;
    justify-content: center;
  }

  .usecase-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: auto;
    border-radius: 20px;
  }

  .usecase-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .usecase-info {
    background: #7C98B6;
    border-radius: 0 0 20px 20px;
    padding: 15px;
    text-align: center;
  }

  .usecase-info h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .usecase-info p {
    font-size: 13px;
    line-height: 1.4;
  }

  .section9-swiper .swiper-slide {
    width: 100% !important;
    margin-right: 0 !important;
  }

  .usecase-card {
    width: 90%;
    max-width: 360px;
    margin: 0 auto;
  }
}

.section10 {
  position: relative;
  background: url('../img/codeback.svg') center/cover no-repeat;
  width: 100%;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section10-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section10-overlay {
  background: rgba(55, 59, 63, 0.25);
  background-blend-mode: multiply;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 80px 40px;
  width: 90%;
  max-width: 1100px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: absolute;
  bottom: 0px;
  margin-bottom: -200px;
}

.section10-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: #f5f5f5;
  margin-bottom: 20px;
  width: 400px;
}

.section10-title span {
  color: #ec4a34;
}

.section10-desc {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: #f5f5f5;
  margin-bottom: 40px;
}

.section10-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.section10-form input {
  padding: 15px 22px;
  width: 340px;
  border: 2px solid #727d8e;
  border-radius: 125px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #727d8e;
  background: transparent;
  outline: none;
}

.section10-form button {
  padding: 15px 22px;
  border: 1px solid #ff7959;
  border-radius: 125px;
  background: linear-gradient(90deg, #ff7959 0%, #ec4a34 100%);
  color: #f5f5f5;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.section10-form button:hover {
  transform: scale(1.05);
}

.section10-msg {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section10-msg.show {
  opacity: 1;
}

.section10-msg.success {
  color: #38b26d;
}

.section10-msg.error {
  color: #ec4a34;
}

/* Responsive */
/* Tablets */
@media (max-width: 992px) {
  .section10-overlay {
    padding: 60px 25px;
  }

  .section10-title {
    font-size: 34px;
    line-height: 38px;
    text-align: center;
    max-width: 90%;
  }

  .section10-desc {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    max-width: 85%;
  }

  .section10-form {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 420px;
  }

  .section10-form input,
  .section10-form button {
    width: 100%;
  }

  .section10-msg {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .section10 {
    min-height: 300px;
    padding: 40px 15px;
  }

  .section10-overlay {
    padding: 40px 20px;
    border-radius: 10px;
  }

  .section10-title {
    font-size: 26px;
    line-height: 32px;
    text-align: center;
  }

  .section10-desc {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 30px;
    text-align: center;
  }

  .section10-form {
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
  }

  .section10-form input,
  .section10-form button {
    width: 100%;
    font-size: 14px;
    padding: 12px 18px;
  }

  .section10-msg {
    font-size: 13px;
  }
}

/* ===== SECTION 11 (Contact Banner) ===== */
.section11 {
  position: relative;
  width: 100%;
  min-height: 570px;
  background: url('../img/contactback.svg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section11-overlay {
  position: absolute;
  bottom: 0;
  margin-bottom: -50px;
  width: 100%;
  max-width: 90%;
  padding: 80px 40px;
  background: rgba(182, 182, 182, 0.4);
  background-blend-mode: multiply;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
}

.section11-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.section11-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 64px;
  color: #f5f5f5;
  margin-bottom: 20px;
}

.section11-title span {
  color: #ec4a34;
}

.section11-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 22px;
  border: 2px solid #EC4A34;
  border-radius: 125px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.section11-tag:hover {
  background: #EC4A34;
  color: #fff;
}

.section11-maintitle {
  font-family: 'Space Grotesk', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 64px;
  text-align: center;
  text-transform: capitalize;
  color: #EC4A34;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 653px;
}

.section11-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
  color: #0E191E;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 842px;
}

/* responsive */
@media (max-width: 992px) {
  .section11-maintitle {
    font-size: 48px;
    line-height: 52px;
    max-width: 90%;
  }

  .section11-subtitle {
    font-size: 22px;
    line-height: 26px;
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .section11-maintitle {
    font-size: 36px;
    line-height: 40px;
  }

  .section11-subtitle {
    font-size: 18px;
    line-height: 22px;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #e7e9ee;
  text-align: center;
  padding: 200px 20px;
  font-family: 'Space Grotesk', sans-serif;
  color: #44494B;
}

.contact-intro {
  max-width: 900px;
  margin: 0 auto 100px;
  font-size: 20px;
  line-height: 1.4;
}

.contact-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  padding: 15px 22px;
  border: 2px solid #ec4a34;
  border-radius: 125px;
  color: #44494B;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 40px;
  transition: 0.2s;
}

.contact-pill:hover {
  background: #ec4a34;
  color: #fff;
}

.contact-title {
  font-size: 40px;
  font-weight: 700;
  color: #0E191E;
  margin: 40px 0 60px;
}

.contact-container {
  background: #fff;
  border-radius: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 50px;
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label {
  font-weight: 600;
  font-size: 18px;
  color: #181B26;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  border: 2px solid #D9D9D9;
  border-radius: 20px;
  padding: 15px 22px;
  font-size: 18px;
  color: #181B26;
  font-family: 'Space Grotesk', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9CA3AF;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 2px solid #FF7959;
  box-shadow: 0 0 6px rgba(255, 121, 89, 0.4);
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

.contact-form button {
  margin-top: 20px;
  background: #FF7959;
  border: 1px solid #FF7959;
  border-radius: 125px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 0;
  cursor: pointer;
  transition: transform 0.2s;
}

.contact-form button:hover {
  transform: scale(1.05);
}

.contact-info {
  flex: 1 1 35%;
  text-align: left;
}

.contact-info h3 {
  font-weight: 700;
  font-size: 24px;
  color: #181B26;
  margin-top: 20px;
  margin-bottom: 5px;
}

.contact-info p {
  margin: 0;
  font-size: 18px;
  color: #44494B;
}

.contact-info a {
  color: #44494B;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: #EC4A34;
}

/* ===== FORM MESSAGE ===== */
.form-msg {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-msg.show {
  opacity: 1;
}

.form-msg.success {
  color: #38b26d;
}

.form-msg.error {
  color: #ec4a34;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section11-title {
    font-size: 48px;
    line-height: 52px;
    width: auto;
  }
}

@media (max-width: 900px) {
  .section11-overlay {
    padding: 40px 25px;
    margin-bottom: -20px;
  }

  .section11-content {
    gap: 20px;
  }

  .section11-title {
    font-size: 34px;
    line-height: 36px;
    width: auto;
  }

  .contact-section {
    padding: 120px 20px;
  }

  .contact-container {
    flex-direction: column;
    gap: 30px;
    padding: 40px 25px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-intro {
    font-size: 18px;
    margin-bottom: 60px;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .section11-title {
    font-size: 28px;
    line-height: 32px;
  }

  .contact-intro {
    font-size: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-title {
    font-size: 28px;
  }
}

.breadcrumb-container {
  display: flex;
  padding: 50px 320px;
}

.blog-container {
  display: flex;
  gap: 40px;
  padding: 80px 320px;
}

.blog-content {
  flex: 0 0 65%;
}

.blog-sidebar {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #181B26;
}

.breadcrumb a {
  text-decoration: none;
  color: #181B26;
}

/* Hero article */
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.blog-image {
  position: relative;
  height: 100%;
  border-radius: 20px 20px 0 0;
  background-size: cover;
  background-position: center;
}

.blog-date-box {
  position: absolute;
  top: 0;
  left: 0;
  background: #FF7959;
  width: 104px;
  height: 104px;
  border-radius: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 0px;
  flex-direction: column;
}

.blog-date-box span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}

.blog-body {
  padding: 40px;
  border: 1px solid #7C98B6;
  border-top: none;
  background: #DCDEE5;
  border-radius: 0 0 20px 20px;
}

.blog-meta {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.blog-title-blog {
  font-size: 40px;
  font-weight: 700;
  color: #181B26;
  margin-bottom: 20px;
}

.blog-desc {
  font-size: 18px;
  color: #44494B;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Reuse the same button styles */
.blog-btn-b {
  display: inline-block;
  background: linear-gradient(90deg, #FF7959 0%, #EC4A34 100%);
  color: #fff;
  border-radius: 125px;
  padding: 15px 22px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.2s;
}

.blog-btn-b:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .blog-card {
    max-width: 100%;
  }

  .blog-body {
    padding: 25px;
  }

  .blog-title-blog {
    font-size: 28px;
  }
}

/* Sidebar */
.sidebar-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  padding: 40px;
  width: 410px;
}

.sidebar-title {
  font-size: 24px;
  font-weight: 700;
  color: #181B26;
  margin-bottom: 30px;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  padding-bottom: 25px;
  border-bottom: 1px solid #7C98B6;
  margin-bottom: 25px;
}

.sidebar-list a {
  color: #44494B;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

.sidebar-list span {
  color: #FF7959;
  margin-left: 10px;
}

/* Sidebar posts */
.sidebar-post {
  border: 1px solid #7C98B6;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-post .post-date {
  font-size: 14px;
  color: #44494B;
  margin-bottom: 8px;
}

.sidebar-post .post-title {
  font-size: 20px;
  font-weight: 700;
  color: #181B26;
  text-decoration: none;
}

.sidebar-post .post-title:hover {
  color: #EC4A34;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-container {
    flex-direction: column;
    padding: 20px;
  }

  .blog-article-wrapper {
    width: 100% !important;
  }

  .sidebar-box {
    width: 100%;
  }

  .blog-content,
  .blog-sidebar {
    flex: 1 1 100%;
  }
}

.latest-blogs {
  background: #FFFFFF;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px;
}

.latest-blogs .sidebar-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #181B26;
  margin-bottom: 30px;
}

.latest-blog-card {
  border: 1px solid #7C98B6;
  border-radius: 20px;
  padding: 20px 22px;
  margin-bottom: 20px;
  transition: transform 0.2s ease;
  background: #fff;
}

.latest-blog-card:hover {
  transform: translateY(-3px);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.blog-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.blog-date {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #44494B;
}

.blog-link {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #181B26;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-link:hover {
  color: #EC4A34;
}

/* Responsive */
@media (max-width: 900px) {
  .breadcrumb-container {
    padding: 20px;
  }

  .latest-blogs {
    padding: 30px;
  }

  .blog-link {
    font-size: 18px;
  }
}

.blog-content {
  max-width: 850px;
  margin: 0 auto;
  font-family: 'Space Grotesk', sans-serif;
  color: #44494B;
  position: relative;
}

.blog-image img {
  width: 100%;
  border-radius: 8px;
  margin-top: 60px;
}

.blog-meta {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  font-size: 14px;
  color: #44494B;
}

.blog-title {
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0;
  color: #181B26;
  text-transform: capitalize;
}

.blog-body-1 {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 20px;
}

.blog-article-wrapper {
  position: relative;
  width: 850px;
  margin: 0 auto;
  font-family: 'Space Grotesk', sans-serif;
  color: #44494B;
  padding-bottom: 80px;
}

.blog-hero {
  position: relative;
  width: 100%;
  height: 500px;
}

.blog-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.blog-datebox {
  position: absolute;
  top: 0;
  left: 0;
  background: #FF7959;
  border-radius: 0 0 20px 0;
  width: 104px;
  height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.blog-datebox__day {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.blog-datebox__month {
  font-size: 14px;
  line-height: 20px;
}

.blog-heading {
  font-size: 40px;
  font-weight: 700;
  color: #181B26;
  margin: 10px 0px;
  text-transform: capitalize;
}

.blog-body-1 {
  font-size: 18px;
  line-height: 1.5;
  color: #44494B;
}

.blog-body-1 h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  color: #181B26;
}

.blog-body-1 p {
  margin-top: 10px;
  font-weight: 400;
}

.advisory-section {
  background: #e8eaf2;
  font-family: 'Space Grotesk', sans-serif;
  padding: 80px 60px;
  color: #44494B;
}

.advisory-intro {
  max-width: 1250px;
  margin: 100px 0px 45px 0;
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
}

.advisory-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* GRID */
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  column-gap: 0px;
  width: 1250px;
}

/* CARD */
.advisory-grid .service-card {
  position: relative;
  border: 1px solid #7c98b6;
  border-radius: 20px;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: space-between;
  background: transparent;
  transition: all 0.3s ease;
  min-height: fit-content;
  gap: 20px;
  width: 580px;
}

/* OUTER BORDER */
.advisory-grid .service-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid #7c98b6;
  border-radius: 30px;
  transition: all 0.3s ease;
  z-index: -1;
}

.advisory-grid .service-card h3 {
  color: #EC4A34;
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.advisory-grid .service-card p {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #44494B;
  margin: 0;
}

/* HOVER EFFECT */
.advisory-grid .service-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
}

/* QUICK LINKS */
.advisory-links {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 360px;
}

.links-header {
  background: #FF7959;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  padding: 18px 24px;
  border-radius: 20px 20px 0 0;
}

.advisory-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.advisory-links li {
  border-bottom: 1px solid #ccc;
}

.advisory-links a {
  display: block;
  padding: 14px 24px;
  color: #181B26;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.advisory-links a:hover {
  color: #FF7959;
}

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

  .advisory-grid {
    grid-template-columns: 1fr;
  }

  .advisory-links {
    max-width: 100%;
  }
}

/* ===== USECASE SHOWCASE SECTION ===== */
.usecase-showcase {
  background: #e8eaf2;
  font-family: 'Space Grotesk', sans-serif;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #0E191E;
}

/* HEADER */
.usecase-showcase__header {
  text-align: center;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.usecase-showcase__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 2px solid #EC4A34;
  border-radius: 125px;
  color: #44494B;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.usecase-showcase__tag:hover {
  background: #EC4A34;
  color: #fff;
  transform: translateY(-2px);
}

.usecase-showcase__title {
  font-weight: 700;
  font-size: 64px;
  line-height: 64px;
  color: #EC4A34;
}

.usecase-showcase__intro {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  max-width: 880px;
  color: #0E191E;
}

.usecase-showcase__btn {
  background: linear-gradient(90deg, #FF7959 0%, #EC4A34 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 125px;
  border: 1px solid #FF7959;
  text-decoration: none;
  transition: all 0.3s ease;
}

.usecase-showcase__btn:hover {
  background: linear-gradient(90deg, #EC4A34 0%, #FF7959 100%);
  transform: translateY(-3px);
}

/* GRID */
.usecase-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(650px, 1fr));
  gap: 40px;
  justify-content: center;
  margin-top: 80px;
  width: 100%;
  max-width: 1400px;
}

/* CARD ITEM */
.usecase-showcase__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  position: relative;
  width: 650px;
  height: 229px;
}

/* IMAGE BOX */
.usecase-showcase__logo {
  width: 229px;
  height: 229px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usecase-showcase__logo img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 20px;
}

/* RIGHT-SIDE CARD */
.usecase-showcase__card {
  position: relative;
  border: 1px solid #7c98b6;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease;
  width: 400px;
  height: 229px;
  gap: 30px;
}

/* DOUBLE BORDER EFFECT */
.usecase-showcase__card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid #7c98b6;
  border-radius: 30px;
  transition: all 0.3s ease;
  z-index: -1;
}

/* TEXT STYLE */
.usecase-showcase__card h3 {
  color: #EC4A34;
  margin: 0 0 10px 0;
  font-weight: 500;
  font-size: 36px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 40px;
}

.usecase-showcase__card p {
  font-family: 'Urbanist', sans-serif;
  font-size: 20px;
  line-height: 1.3;
  color: #44494B;
  margin: 0;
}

/* HOVER EFFECT */
.usecase-showcase__card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .usecase-showcase__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .usecase-showcase__item {
    flex-direction: column;
    height: auto;
    width: 100%;
    align-items: center;
  }

  .usecase-showcase__card {
    width: 90%;
    height: auto;
  }

  .usecase-showcase__logo {
    width: 180px;
    height: 180px;
  }

  .usecase-showcase__card h3 {
    font-size: 28px;
  }

  .usecase-showcase__card p {
    font-size: 16px;
  }
}

/* ===== CASE DETAIL SECTION ===== */
.case-detail {
  background: #e8eaf2;
  font-family: 'Space Grotesk', sans-serif;
  padding: 120px 465px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 50px;
  color: #0E191E;
}

/* HEADER */
.case-detail__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.case-detail__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 2px solid #EC4A34;
  border-radius: 125px;
  color: #44494B;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.case-detail__tag:hover {
  background: #EC4A34;
  color: #fff;
  transform: translateY(-2px);
}

.case-detail__title {
  font-weight: 700;
  font-size: 64px;
  line-height: 64px;
  color: #EC4A34;
}

.case-detail__intro {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  max-width: 880px;
  color: #0E191E;
}

/* FILTER BUTTONS */
.case-detail__filters {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.case-detail__filter {
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 18px 30px;
  font-size: 18px;
  font-family: 'Space Grotesk';
  color: #44494B;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-detail__filter:hover {
  background: #EC4A34;
  color: #fff;
  transform: translateY(-3px);
}

/* IMAGES */
.case-detail__main-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;

}

.case-detail__main-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  height: 100%;
  max-height: 550px;
}

.case-detail__gallery {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.case-detail__gallery-img {
  width: 48%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: 250px;
}

/* SECTION CONTENT */
.case-detail__section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.case-detail__minisection1{
  gap: 15px;display: flex;flex-direction: column;width: 100%;
}

.case-detail__minisection2{
  gap: 30px;display: flex;flex-direction: column;width: 100%;
}

.case-detail__section h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  color: #0E191E;
}

.case-detail__section ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-detail__section li {
  font-size: 20px;
  font-weight: 400;
  color: #44494B;
  line-height: 26px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {



  .case-detail__gallery {
    flex-direction: column;
  }

  .case-detail__gallery-img {
    width: 100%;
  }

  .case-detail__title {
    font-size: 48px;
    line-height: 52px;
  }

  .case-detail__intro {
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  .case-detail {
    padding: 80px 20px;
  }

  .case-detail__filters {
    flex-direction: column;
  }

  .case-detail__filter {
    width: 100%;
    text-align: center;
  }

  .case-detail__title {
    font-size: 36px;
    line-height: 42px;
  }

  .case-detail__section li {
    font-size: 16px;
  }
}

/* === Base Layout === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding: 150px 80px;
  background: #f5f7fa;
  font-family: "Space Grotesk", sans-serif;
  justify-items: center;
}

/* === Product Card === */
.product-card {
  width: 100%;
  max-width: 850px;
  background: #fff;
  border-radius: 20px;
  padding: 49px 50px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* === Header === */
.product-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.product-card__title {
  font-size: 40px;
  font-weight: 700;
  color: #ff7959;
  margin: 0;
  text-transform: capitalize;
}

.product-card__category {
  font-size: 20px;
  color: #000;
  text-transform: capitalize;
}

/* === Image === */
.product-card__image img {
  width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* === Divider === */
.product-card__divider {
  border: 1px solid #7c98b6;
  width: 100%;
  margin: 10px 0;
}

/* === Features === */
.product-card__features {
  width: 100%;
  margin-top: 10px;
}

.product-card__features ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #000;
  font-weight: 400;
}

.product-card__features img {
  width: 22px;
  height: 22px;
}

/* === Description === */
.product-card__desc {
  font-size: 20px;
  color: #44494b;
  line-height: 1.3;
  text-transform: capitalize;
}

/* === Buttons === */
.product-card__buttons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.btn-demo,
.btn-learn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 22px;
  border-radius: 125px;
  font-weight: 700;
  font-size: 15px;
  color: #f5f5f5;
  background: linear-gradient(90deg, #ff7959 0%, #ec4a34 100%);
  border: 1px solid #ff7959;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-demo:hover,
.btn-learn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 121, 89, 0.4);
}

/* === Modal === */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.active {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal__content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: 900px;
  height: 99%;
  max-width: 95%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.modal__content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}

/* === Responsive Grid & Typography === */

/* Large screens ≤1400px */
@media (max-width: 1400px) {
  .product-grid {
    padding: 120px 60px;
    gap: 40px;
  }

  .product-card__title {
    font-size: 36px;
  }

  .product-card__image img {
    width: 360px;
  }
}

/* Medium screens ≤992px */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: 1fr;
    padding: 100px 40px;
    gap: 40px;
  }

  .product-card {
    max-width: 700px;
    padding: 40px 30px;
  }

  .product-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .product-card__title {
    font-size: 32px;
  }

  .product-card__category {
    font-size: 18px;
  }

  .product-card__image img {
    width: 320px;
  }

  .product-card__features ul {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }

  .product-card__desc {
    font-size: 18px;
    line-height: 1.4;
  }
}

/* Tablets ≤768px */
@media (max-width: 768px) {
  .product-grid {
    padding: 80px 25px;
    gap: 35px;
  }

  .product-card {
    padding: 30px 20px;
    gap: 20px;
  }

  .product-card__title {
    font-size: 28px;
  }

  .product-card__category {
    font-size: 16px;
  }

  .product-card__image img {
    width: 260px;
  }

  .product-card__features ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-card__features li {
    font-size: 18px;
  }

  .product-card__desc {
    font-size: 16px;
  }

  .product-card__buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn-demo,
  .btn-learn {
    width: 100%;
  }
}

/* Phones ≤480px */
@media (max-width: 480px) {
  .product-grid {
    padding: 60px 15px;
    gap: 25px;
  }

  .product-card {
    padding: 25px 15px;
  }

  .product-card__title {
    font-size: 24px;
  }

  .product-card__category {
    font-size: 15px;
  }

  .product-card__image img {
    width: 220px;
  }

  .product-card__features li {
    font-size: 16px;
  }

  .product-card__desc {
    font-size: 15px;
  }

  .btn-demo,
  .btn-learn {
    font-size: 14px;
    padding: 12px 18px;
  }
}

/* Very small screens ≤360px */
@media (max-width: 360px) {
  .product-card__image img {
    width: 180px;
  }

  .product-card__features li {
    font-size: 14px;
  }

  .product-card__desc {
    font-size: 14px;
  }
}

.map-container {
  position: relative;
  width: 800px;
  height: 670px;
  margin: auto;
  border: 2px solid #ccc;
  overflow: hidden;
  border-radius: 5%;
  margin-bottom: 100px;
}

.map {
  width: 100%;
  height: 100%;
  background: url('../img/techimap.webp');
  background-size: cover;
  background-repeat: round;
}

.city {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: blue;
  border-radius: 50%;
  box-shadow: 0 0 5px rgb(0 0 0 / .5)
}

.city1 {
  top: 55%;
  left: 43.5%
}

.city2 {
  top: 52%;
  left: 44.5%
}

.city3 {
  top: 57%;
  left: 52%
}

.city4 {
  top: 46%;
  left: 37.5%
}

.city5 {
  top: 48%;
  left: 39%
}

.city6 {
  top: 50%;
  left: 41%
}

.city7 {
  top: 49%;
  left: 35%
}

.city8 {
  top: 71%;
  left: 71%
}


.tooltip {
  visibility: hidden;
  width: 120px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.5s
}

.city:hover .tooltip {
  visibility: visible;
  opacity: 1
}

.partners-section {
  background: #e9ecf2;
  padding: 120px 60px;
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
}

/* Intro */
.partners-intro {
  max-width: 900px;
  margin: 0 auto 80px;
  font-size: 22px;
  color: #44494b;
  line-height: 1.4;
}


/* Filters */
.partner-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 60px;
}

.filter {
  padding: 15px 24px;
  border: 2px solid #ec4a34;
  border-radius: 125px;
  font-weight: 700;
  font-size: 18px;
  color: #44494b;
  background: transparent;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter:hover,
.filter.active {
  background: linear-gradient(90deg, #ff7959 0%, #ec4a34 100%);
  color: #fff;
  border: none;
}

/* Grid */
.partners-grid {
  display: grid;
  gap: 30px;
  justify-content: center;
  /* centers partial rows */
  max-width: 1750px;
  /* 4×415 + 3×30 */
  margin: 0 auto 80px;
  align-items: center;
  align-content: center;
  place-items: center;
}

/* 4 / 3 / 2 / 1 columns */
@media (min-width:1750px) {
  .partners-grid {
    grid-template-columns: repeat(4, 415px);
  }
}

@media (min-width:1320px) and (max-width:1749.98px) {
  .partners-grid {
    grid-template-columns: repeat(3, 415px);
  }
}

@media (min-width:900px) and (max-width:1319.98px) {
  .partners-grid {
    grid-template-columns: repeat(2, 415px);
  }
}

@media (max-width:899.98px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.partner-card {
  width: 100%;
  height: 415px;
  background: #fff;
  border-radius: 20px;
  display: none;
  /* hidden until .show */
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(.95);
  transition: transform .3s ease, box-shadow .3s ease, opacity .4s ease;
}

.partner-card.show {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.partner-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(255, 121, 89, .4);
}

.partner-card img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .partners-grid {
    grid-template-columns: repeat(2, 415px);
  }
}

@media (max-width: 768px) {
  .partners-intro {
    font-size: 18px;
  }

  .filter {
    font-size: 16px;
    padding: 12px 20px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    width: 100%;
    height: 380px;
  }
}

/* Section Container */
.section12 {
  background: #e9ecf2;
  padding: 120px 115px;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
}

.section12-container {
  margin: 0 auto;
}

/* Title */
.section12-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  color: #0e191e;
  margin-bottom: 25px;
}

/* Description */
.section12-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #0e191e;
  max-width: 800px;
  margin: 0 auto 90px;
}

/* Card Grid */
.section12-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-content: center;
  align-items: stretch;
}

/* Card */
.section12-card {
  position: relative;
  border: 1px solid #7c98b6;
  border-radius: 20px;
  padding: 35px 25px;
  background: #e9ecf2;
  /* ✅ give it a background */
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  transition: all 0.3s ease;
  min-height: 240px;
  z-index: 0;
  /* ✅ new stacking context for the ::before border */
  width: 100%;
  max-width: 400px;
}

/* Outer hover border */

.section12-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid #7c98b6;
  border-radius: 30px;
  transition: all 0.3s ease;
  z-index: -1;
  /* ✅ now safely behind the card, not the section */
}

.section12-card:hover::before {
  border-color: #ff7959;
  box-shadow: 0 0 20px 4px rgba(255, 121, 89, 0.4);
}

/* Card Title */
.section12-card-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #ec4a34;
}

/* Card Text */
.section12-card-text {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #44494b;
  width: 300px;
}

/* Responsiveness */
@media (max-width: 1200px) {
  .section12-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 700px) {
  .section12 {
    padding: 80px 30px;
  }

  .section12-title {
    font-size: 32px;
    line-height: 38px;
  }

  .section12-desc {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 60px;
  }

  .section12-cards {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
    gap: 25px;
  }

  .section12-card {
    text-align: center;
  }

  .section12-card-title,
  .section12-card-text {
    text-align: center;
  }
}

.section13 {
  background: #e9ecf2;
  padding: 120px 60px;
  font-family: "Space Grotesk", sans-serif;
}

.section13-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.section13-text {
  color: #0e191e;
}

.section13-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 22px;
  border: 2px solid #ec4a34;
  border-radius: 125px;
  font-weight: 700;
  font-size: 15px;
  color: #44494b;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.section13-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: #0e191e;
  margin-bottom: 25px;
}

.section13-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #0e191e;
  max-width: 520px;
}

/* === IMAGE CONTAINER === */
.section13-image-wrapper {
  display: flex;
  justify-content: center;
}

.section13-image-border {
  border: 1px solid #7c98b6;
  border-radius: 26px;
  padding: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 640px;
  max-width: 100%;
  aspect-ratio: 1 / 1.05;
  box-sizing: border-box;
  height: 750px;
}

.section13-image-bg {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(0deg, #ff7959, #ff7959),
    url('../img/section13back.svg') center/cover no-repeat;
  background-blend-mode: hue, normal;
  opacity: 0.8;
}

/* === RESPONSIVE === */
/* === TABLET (≤1100px) === */
@media (max-width: 1100px) {
  .section13-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .section13-text {
    order: 1;
  }

  .section13-desc {
    margin: 0 auto;
  }

  .section13-image-wrapper {
    order: 2;
  }

  .section13-image-border {
    max-width: 500px;
    aspect-ratio: 4 / 3;
  }
}

/* === MOBILE (≤700px) === */
@media (max-width: 700px) {
  .section13 {
    padding: 80px 24px;
  }

  .section13-container {
    gap: 40px;
  }

  .section13-tag {
    font-size: 13px;
    padding: 10px 18px;
  }

  .section13-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .section13-desc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0px;
  }

  .section13-image-border {
    padding: 10px;
    border-radius: 18px;
    max-width: 100%;
    aspect-ratio: 3 / 2;
    width: 100%;
    height: 100%;
  }

  .section13-image-bg {
    border-radius: 8px;
  }
}

/* ================================
   SECTION 14 — FRAME 47
   ================================ */

.section14 {
  background: rgba(217, 217, 217, 0.2);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 190px;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
}

/* Inner gray box */
.section14-wrapper {
  background: #e9ecf2;
  border-radius: 12px;
  width: 100%;
  max-width: 1538px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  padding: 80px 60px;
  box-sizing: border-box;
}

/* Items */
.section14-item {
  flex: 1;
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  box-sizing: border-box;
}

.section14-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #0e191e;
  text-transform: uppercase;
}

.section14-text {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #0e191e;
}

/* Divider lines between items */
.section14-divider {
  width: 1px;
  background: #0e191e;
  opacity: 0.5;
  margin: 0 40px;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .section14-wrapper {
    flex-direction: column;
    padding: 60px 40px;
    gap: 40px;
  }

  .section14-divider {
    width: 80%;
    height: 1px;
    background: #0e191e;
    opacity: 0.3;
    margin: 20px auto;
  }

  .section14-item {
    padding: 20px;
  }

  .section14-title {
    font-size: 22px;
  }

  .section14-text {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .section14 {
    padding: 60px 0;
  }

  .section14-wrapper {
    padding: 40px 20px;
    gap: 30px;
  }

  .section14-item {
    gap: 18px;
  }

  .section14-title {
    font-size: 20px;
  }

  .section14-text {
    font-size: 14px;
    max-width: 100%;
  }

  .section14-divider {
    width: 100%;
  }
}

/* === RESPONSIVE FIX FOR SECTION14 LAYOUT WIDTH === */

/* Make inner box scale naturally on smaller screens */
.section14-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* Keep proportional padding without breaking layout */
@media (max-width: 1400px) {
  .section14 {
    padding: 120px 80px;
  }
}

@media (max-width: 992px) {
  .section14 {
    padding: 100px 40px;
  }
}

@media (max-width: 768px) {
  .section14 {
    padding: 80px 20px;
  }

  .section14-wrapper {
    padding: 50px 20px;
  }
}

/* ============================
   SECTION 15 — FOUNDERS (Updated Responsivity)
   ============================ */

.section15 {
  background: #e9ecf2;
  padding: 120px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
}

.section15-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 160px;
  width: 100%;
}

/* === CARD STRUCTURE === */
.founder-card {
  position: relative;
  width: 640px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === BORDER BOX === */
.founder-border {
  border: 1px solid #241a30;
  border-radius: 26px;
  padding: 17px;
  box-sizing: border-box;
  width: 100%;
  aspect-ratio: 0.86;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === INNER IMAGE BOX === */
.founder-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #18023a;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-image:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(36, 26, 48, 0.3);
}

/* === INFO LABEL === */
.founder-info {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 40px 20px;
  position: absolute;
  bottom: 70px;
  left: -40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  width: 305px;
}

.founder-name {
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  color: #181b26;
  margin: 0;
}

.founder-role {
  font-weight: 400;
  font-size: 24px;
  line-height: 16px;
  color: #181b26;
  margin: 0;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */

/* --- Large screens (1200px–1500px) --- */
@media (max-width: 1500px) {
  .section15-wrapper {
    gap: 120px;
  }

  .founder-card {
    width: 560px;
  }

  .founder-info {
    bottom: 60px;
    left: -25px;
    width: 280px;
    padding: 35px 18px;
  }

  .founder-name {
    font-size: 32px;
  }

  .founder-role {
    font-size: 20px;
  }
}

/* --- Tablets (<=1100px) --- */
@media (max-width: 1100px) {
  .section15 {
    padding: 100px 40px;
  }

  .section15-wrapper {
    gap: 80px;
  }

  .founder-card {
    width: 500px;
  }

  .founder-info {
    bottom: 50px;
    left: -20px;
    width: 260px;
    padding: 30px 18px;
  }

  .founder-name {
    font-size: 28px;
  }

  .founder-role {
    font-size: 18px;
  }
}

/* --- Small tablets (<=768px) --- */
@media (max-width: 768px) {
  .section15 {
    padding: 80px 20px;
  }

  .section15-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }

  .founder-card {
    width: 100%;
    max-width: 480px;
  }

  .founder-info {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -40px;
    align-items: center;
    text-align: center;
    width: 90%;
    padding: 25px 15px;
  }

  .founder-name {
    font-size: 24px;
  }

  .founder-role {
    font-size: 16px;
  }
}

/* --- Phones (<=480px) --- */
@media (max-width: 480px) {
  .section15 {
    padding: 60px 15px;
  }

  .founder-card {
    width: 100%;
  }

  .founder-border {
    padding: 10px;
  }

  .founder-info {
    margin-top: -30px;
    padding: 20px 12px;
    width: 95%;
  }

  .founder-name {
    font-size: 20px;
  }

  .founder-role {
    font-size: 14px;
  }
}

/* =============================
   SECTION 16 — FAQ
   ============================= */
.section16 {
  background: #eeeff3;
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  box-sizing: border-box;
}

/* Header */
.section16-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: 60px;
  text-align: center;
}

.section16-tag {
  border: 2px solid #ec4a34;
  border-radius: 125px;
  padding: 15px 22px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: #0e191e;
}

.section16-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 1.1;
  color: #0e191e;
  max-width: 800px;
}

/* Layout */
.section16-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1700px;
  width: 100%;
}

/* IMAGE SIDE */
.section16-image {
  flex: 1 1 45%;
  min-width: 350px;
  max-width: 820px;
  aspect-ratio: 4 / 3;
  border: 1px solid #44494b;
  border-radius: 20px;
  background-blend-mode: color, normal;
  background-size: cover;
  background-position: center;
}

/* FAQ SIDE */
.section16-faqs {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 880px;
}

.faq-item {
  border-bottom: 0.5px solid #7c98b6;
  padding-bottom: 10px;
  transition: all 0.3s ease;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question {
  font-weight: 500;
  font-size: 24px;
  color: #ec4a34;
  margin: 0;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #44494b;
  margin-top: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 10px;
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1100px) {
  .section16 {
    padding: 100px 40px;
  }

  .section16-content {
    flex-direction: column;
    align-items: start;
    gap: 50px;
  }

  .section16-title {
    font-size: 32px;
  }

  .faq-question {
    font-size: 22px;
  }

  .faq-answer {
    font-size: 16px;
  }

  .faq-toggle-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 600px) {
  .section16 {
    padding: 80px 20px;
  }

  .section16-tag {
    font-size: 13px;
    padding: 10px 18px;
  }

  .section16-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 15px;
  }
}


.terms-wrapper {
  background: #fff;
  padding: 150px 20px;
}

.terms-container {
  max-width: 950px;
  margin: 0 auto;
}

.terms-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.2;
  color: #0E191E;
  text-align: left;
  margin-bottom: 40px;
}

.terms-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: #0E191E;
  margin-top: 45px;
  margin-bottom: 15px;
  position: relative;
}

.terms-subtitle::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #EC4A34;
}

.terms-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #0E191E;
  margin-bottom: 16px;
}

.terms-text a {
  color: #EC4A34;
  text-decoration: none;
  font-weight: 500;
}

.terms-text a:hover {
  text-decoration: underline;
}

/* Responsive layout */
@media (max-width: 992px) {
  .terms-title {
    font-size: 36px;
    text-align: center;
  }

  .terms-subtitle {
    font-size: 20px;
    text-align: center;
  }

  .terms-text {
    font-size: 17px;
    text-align: justify;
  }

  .terms-subtitle::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .terms-wrapper {
    padding: 60px 15px;
  }

  .terms-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .terms-text {
    font-size: 16px;
    line-height: 1.7;
  }
}

.section-join {
  position: relative;
  width: 100%;
  height: 383px;
  background:
    linear-gradient(0deg, #EC4A34, #EC4A34),
    linear-gradient(0deg, rgba(236, 74, 52, 0.2), rgba(236, 74, 52, 0.2)),
    url('/assets/img/joinback.svg') center/cover no-repeat;
  background-blend-mode: multiply, color, normal;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.join-content {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

.join-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.join-btn {
  display: inline-block;
  background: #ffa683;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 36px;
  border-radius: 125px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.join-btn:hover {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .section-join {
    height: auto;
    padding: 60px 20px;
  }

  .join-content h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .join-btn {
    font-size: 15px;
    padding: 10px 28px;
  }
}

.careers-section {
  padding: 100px 230px;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.careers-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 41px;
  text-align: center;
  margin-bottom: 60px;
}

.careers-title {
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  text-transform: capitalize;
  color: #EC4A34;
  max-width: 653px;
}

.careers-sub {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  color: #0E191E;
  max-width: 891px;
}

.careers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  align-items: stretch;
}

.careers-image {
  flex: 1 1 45%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #000;
}

.careers-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.careers-list {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.career-card {
  background: #7C98B6;
  border: 1px solid #7C98B6;
  border-radius: 20px;
  padding: 42px 38px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.career-card h3 {
  font-weight: 600;
  font-size: 32px;
  margin: 0;
}

.career-card p {
  font-weight: 400;
  font-size: 20px;
  margin: 0;
  line-height: 1.3;
}

.apply-btn {
  display: inline-block;
  width: 245px;
  height: 57px;
  line-height: 57px;
  background: #fff;
  color: #7C98B6;
  border: 1px solid #fff;
  border-radius: 125px;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 rgba(236, 74, 52, 0);
}

.apply-btn:hover {
  background: #EC4A34;
  color: #fff;
  border-color: #EC4A34;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(236, 74, 52, 0.4);
}

/* ---------- Responsive Breakpoints ---------- */

/* Large screens (max-width 1400px) */
@media (max-width: 1400px) {
  .careers-section {
    padding: 80px 120px;
  }

  .careers-title {
    font-size: 54px;
  }

  .careers-sub {
    font-size: 22px;
  }
}

/* Tablets (max-width 1024px) */
@media (max-width: 1024px) {
  .careers-section {
    padding: 70px 80px;
  }

  .careers-grid {
    flex-direction: column;
    align-items: center;
  }

  .careers-image {
    width: 100%;
    height: 100%;
  }

  .careers-list {
    width: 100%;
    align-items: center;
  }

  .career-card {
    width: 100%;
    max-width: 600px;
    text-align: center;
    align-items: center;
  }

  .apply-btn {
    width: 200px;
    height: 50px;
    font-size: 18px;
    line-height: 50px;
  }
}

/* Mobile (max-width 768px) */
@media (max-width: 768px) {
  .careers-section {
    padding: 60px 30px;
    gap: 60px;
  }

  .careers-title {
    font-size: 42px;
  }

  .careers-sub {
    font-size: 18px;
  }

  .career-card h3 {
    font-size: 26px;
  }

  .career-card p {
    font-size: 16px;
  }

  .apply-btn {
    width: 180px;
    height: 45px;
    font-size: 16px;
    line-height: 45px;
  }
}

/* Small Mobile (max-width 480px) */
@media (max-width: 480px) {
  .careers-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .careers-sub {
    font-size: 16px;
  }

  .career-card {
    padding: 25px 20px;
  }

  .apply-btn {
    width: 160px;
    height: 42px;
    font-size: 15px;
    line-height: 42px;
  }
}

.error-404 {
  position: relative;
  width: 100%;
  height: 100vh;
  background: conic-gradient(from 180deg at 50% 50%, #FF7959 0deg, #FFFFFF 360deg);
  transform: rotate(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
}

.error-content {
  transform: rotate(180deg);
  /* flips back content since background is rotated */
}

.error-content h1 {
  font-size: 500px;
  font-weight: 700;
  color: #EC4A34;
  margin: 0;
  line-height: 400px;
}

.error-content p {
  color: #EC4A34;
  margin-top: 10px;
  font-weight: 700;
  font-size: 46px;
  line-height: 46px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;

}

.back-home {
  display: inline-block;
  margin-top: 30px;
  background: #fff;
  color: #EC4A34;
  padding: 14px 34px;
  border-radius: 125px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #fff;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.back-home:hover {
  background: #EC4A34;
  color: #fff;
  border-color: #EC4A34;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(236, 74, 52, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .error-content h1 {
    font-size: 120px;
  }

  .error-content p {
    font-size: 18px;
  }

  .back-home {
    padding: 10px 25px;
    font-size: 14px;
  }
}

.product-showcase {
  padding: 120px 225px;
  margin: 0 auto;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: #0E191E;
}

/* HERO */
.hero-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 17px;
  flex-wrap: wrap;
}

.hero-media,
.hero-content {
  flex: 1 1 700px;
  min-width: 320px;
  border-radius: 20px;
  box-shadow: 0 2px 0 #D9DADD;
}

.hero-media {
  overflow: hidden;
  background: #EEEFF3;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  background: #fff;
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.hero-title {
  font-weight: 700;
  font-size: 54px;
  line-height: 54px;
  text-transform: capitalize;
  color: #EC4A34;
}
.hero-lead {
  font-weight: 400;
  font-size: 28px;
  line-height: 28px;
  color: #0E191E;
}

/* THUMBS */
.thumbs {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  justify-content: center;
}
.thumb {
  flex: 1 1 470px;
  height: 274px;
  border-radius: 20px;
  overflow: hidden;
  background: #EEEFF3;
  box-shadow: 0 2px 0 #D9DADD;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* INFO */
.info-block { margin-top: 36px; }
.info-h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  color: #0E191E;
  margin-bottom: 10px;
}
.info-p {
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #44494B;
}

/* Lists */
.bullet-list,
.benefit-list {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
  display: grid;
  gap: 10px;
  font-size: 20px;
  line-height: 22px;
  color: #44494B;
}
.benefit-lead {
  font-weight: 700;
  color: #0E191E;
}

/* RESPONSIVE */

/* Large tablets */
@media (max-width: 1440px) {
  .product-showcase { padding: 100px 160px; }
}

/* Tablets */
@media (max-width: 1024px) {
  .product-showcase { padding: 80px 100px; }
  .hero-title { font-size: 48px; line-height: 1.1; }
  .hero-lead { font-size: 22px; line-height: 1.3; }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .product-showcase { padding: 60px 60px; }
  .hero-content { gap: 30px; padding: 30px 20px; }
  .hero-title { font-size: 38px; }
  .hero-lead { font-size: 20px; }
  .thumb { flex: 1 1 100%; height: 220px; }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .product-showcase { padding: 40px 30px; }
  .hero-grid { flex-direction: column; }
  .hero-title { font-size: 28px; line-height: 1.2; }
  .hero-lead { font-size: 18px; line-height: 1.4; }
  .info-h3 { font-size: 22px; }
  .info-p, .bullet-list, .benefit-list {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* Responsive */
@media (max-width:1500px){
  .hero-grid{ grid-template-columns:1fr 1fr; }
  .hero-media,.hero-content{ width:100%; }
}
@media (max-width:1024px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-content{ min-height:auto; }
  .hero-title{ font-size:48px; line-height:1; }
  .hero-lead{ font-size:22px; line-height:1.2; }
  .thumbs{ grid-template-columns:1fr; }
}

/* Large tablets */
@media (max-width: 1440px) {
  .case-detail {
    padding: 100px 300px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .case-detail {
    padding: 80px 180px;
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .case-detail {
    padding: 60px 80px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .case-detail {
    padding: 40px 30px;
    gap: 30px;
  }
}