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

/* CSS Variables for black and white theme */
:root {
  --clr-black: #000000;
  --clr-white: #ffffff;
  --clr-gray-light: #f5f5f5;
  --clr-gray-dark: #333333;
  --clr-gray-medium: #cccccc;
  --clr-gray-border: #e0e0e0;
  --clr-shadow: rgba(0, 0, 0, 0.1);
  --clr-shadow-light: rgba(0, 0, 0, 0.05);
  --clr-hover: rgba(255, 255, 255, 0.1);

  --clr-footer-bg: var(--clr-white);
  --clr-blue-50: #ebf5fc;
  --clr-footer-border: #e5e5e5;
  --clr-blue-800: #074575;
  --clr-white-05: #ffffff0d;
  --clr-footer-text-dark: #161616;
  --clr-blue-950: #03243d;
  --clr-blue-100: #d6eafd;
  --clr-blue-500: #0d78ca;
  --clr-footer-text-medium: #666666;
  --clr-footer-text-light: #999999;
  --clr-footer-social-bg: #f7f7f7;
  --clr-footer-social-hover-bg: var(--clr-footer-text-dark);
  --clr-footer-social-hover-text: var(--clr-white);
}

img,
figure,
figcaption {
  max-width: 100%;
  display: inline-block;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sr-only {
  display: none;
}

button {
  cursor: pointer;
  border: none;
  display: inline-block;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

a:focus,
button:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

input,
textarea,
select {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

body.no-scroll {
  overflow: hidden;
}

.input-group label {
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
}

.parallax-wrapper {
  position: relative;
  overflow: hidden;
}

.parallax-wrapper img {
  object-fit: cover;
}

.parallax-image {
  width: 100%;
  display: block;
  transform: translateY(0) scale(1.1);
  will-change: transform;
}

/* =========================================
   NUR Standortseite: Hover-Zoom fÃ¼r Einsatzgebiet-Bilder
   (nutzt CSS-Property "scale", damit JS-transform (Parallax) nicht Ã¼berschrieben wird)
   ========================================= */
.page-standort .parallax-image[alt^="Einsatzgebiet"] {
  scale: 1;
  transform-origin: center;
  transition: scale 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .page-standort .parallax-wrapper:hover .parallax-image[alt^="Einsatzgebiet"] {
    scale: 2.00; /* ggf. 1.04 (subtil) bis 1.10 (stÃ¤rker) */
  }
}

.overflow-hidden {
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ptb-120 {
  padding: 120px 0;
}

@media only screen and (max-width: 1365px) {
  .ptb-120 {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 1199px) {
  .ptb-120 {
    padding: 90px 0;
  }
}

@media only screen and (max-width: 991px) {
  .ptb-120 {
    padding: 70px 0;
  }
}

@media only screen and (max-width: 767px) {
  .ptb-120 {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 575px) {
  .ptb-120 {
    padding: 35px 0;
  }
}

.bg-light-orange {
  background-color: #f9862d1c;
}

.bg-light-blue {
  background-color: #0e78d0;
  color: #fff;
}

.input-group input[type='text'],
.input-group input[type='email'],
.input-group input[type='tel'],
.input-group textarea {
  border: 1px solid #c8d2ffc2;
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  font-size: 16px;
  padding: 10px;
  border-radius: 8px;
}

.input-group input[type='text']::placeholder,
.input-group input[type='email']::placeholder,
.input-group input[type='tel']::placeholder,
.input-group textarea::placeholder {
  color: #9b9a9ab3;
}
.input-group textarea {
  min-height: 100px;
}

.input-group.flex {
  display: flex;
  align-items: top;
  font-size: 16px;
  color: var(--clr-gray-900);
}

.input-group.flex a {
  text-decoration: underline;
  color: #f9862d;
}

.input-group.flex label {
  cursor: pointer;
}
.input-group label span {
  color: red;
}

.input-group.flex input[type='checkbox'] {
  margin-top: 2px;
  margin-right: 8px;
  accent-color: #f9862d;
  cursor: pointer;
}

.input-group.flex input[type='checkbox'] {
  width: 13px;
  height: 13px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--clr-gray-light);
  color: var(--clr-gray-dark);
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

/* Header styles */

.header {
  position: fixed;
  top: 16px;
  max-width: 1120px;
  left: 50%;
  border-radius: 300px;
  transform: translateX(-50%);
  width: 100%;
  background-color: #ffffffcb;
  backdrop-filter: blur(10px);
  z-index: 50;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

@media screen and (max-width: 1199px) {
  .header {
    max-width: calc(100vw - 32px);
  }
}

@media screen and (max-width: 991px) {
  .header {
    border-radius: 16px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    max-width: calc(100vw - 20px);
    top: 10px;
    border-radius: 10px;
  }
}

.header .header__nav {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

@media (max-width: 767px) {
  .header .header__nav {
    padding: 0 6px;
  }
}

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

@media (min-width: 768px) {
  .header .header__container {
    height: 64px;
  }
}

.header .header__logo {
  flex-shrink: 0;
  margin-left: 10px;
}

.header .header__logo-link {
  font-size: 20px;
  font-weight: 700;
  /* color: var(--clr-black); */
  text-decoration: none;
  letter-spacing: -0.025em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -16px;
  color: #0d78ca;
}

@media (min-width: 768px) {
  .header .header__logo-link {
    font-size: 18px;
  }
}

.header .header__logo-link img {
  height: 64px;
  width: 64px;
}

@media screen and (max-width: 767px) {
  .header .header__logo-link img {
    height: 50px;
    width: 50px;
  }
}

.header .header__logo span {
  display: block;
}
.header .header__logo-subtitle {
  font-size: 9px;
  margin-top: -20px;
  /* color: #f9862d; */
}

@media screen and (max-width: 767px) {
  .header .header__logo-subtitle {
    margin-top: -25px;
  }
}

.header .header__nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1200px) {
  .header .header__nav-links {
    display: flex;
    margin-right: 40px;
  }
}

.header .header__nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-black);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.header .header__nav-has-submenu.header__nav-link {
  position: relative;
}

.header .header__nav-has-submenu.header__nav-link::after {
  display: none;
}
/*
.header .header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 16px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header .header__nav-has-submenu.header__nav-link:hover .header__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header .header__submenu .header__submenu-inner {
  background-color: var(--clr-white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4px;
  display: grid;
  gap: 4px;
}

.header .header__submenu .header__submenu-inner a {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.header .header__submenu .header__submenu-inner a:hover {
  background-color: #0d78ca;
  color: var(--clr-white);
} */

.header .header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 18px;
  z-index: 20;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(10px);
  transition: all 0.25s ease;
}

.header .header__nav-has-submenu.header__nav-link:hover .header__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

/* Submenu container */
.header .header__submenu .header__submenu-inner {
  background: var(--clr-white);
  border-radius: 14px;
  padding: 6px;
  display: grid;
  gap: 6px;
  min-width: 280px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

/* Item styles */
.header .header__submenu .header__submenu-inner a {
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.25s ease;
  color: #333;
}

/* Hover animation */
.header .header__submenu .header__submenu-inner a:hover {
  background-color: #0d78ca;
  color: #fff;
  transform: translateX(2px);
}

.header .header__nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #0d78ca;
  top: 100%;
  left: 0;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.header .mobile-has-submenu {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.header .mobile-has-submenu > .mobile-menu__link {
  padding: 0;
}
.header .mobile-has-submenu nav {
  gap: 10px;
  border: 1px solid #dfdfdf;
  padding: 10px;
  border-radius: 10px;
  display: none;
}
.header .mobile-has-submenu nav.open {
  display: grid;
}

.header .mobile-submenu-toggle.active svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.header .mobile-submenu {
  display: none;
  padding: 16px 0;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 10px;
  /* border-radius: 10px; */
}
.header .mobile-submenu.open {
  display: grid;
  gap: 10px;
}

.header .mobile-has-submenu nav a:hover {
  color: #0d78ca;
}

.header .header__nav-link:hover::after {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.header .header__nav-link:hover {
  color: var(--clr-black);
}

.header .header__cta {
  display: none;
}

@media (min-width: 1200px) {
  .header .header__cta {
    display: block;
  }
}

.header .header__actions {
  display: flex;
}

.header .header__cta-button {
  padding: 10px 24px;
  background-color: #f9862d;
  color: var(--clr-white);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 100px;
  border: none;
  box-shadow: 0 1px 2px var(--clr-shadow-light);
}

.header .header__cta-button:hover {
  background-color: var(--clr-white);
  color: var(--clr-black);
  box-shadow: 0 4px 6px var(--clr-shadow);
}

.header .header__mobile-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  color: var(--clr-black);
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

@media (min-width: 1200px) {
  .header .header__mobile-toggle {
    display: none;
  }
}

.header .header__mobile-toggle:hover {
  background-color: var(--clr-hover);
}

/* Mobile menu styles */
.header .mobile-menu {
  opacity: 0;
  border: 1px solid #dcdcdc;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--clr-white);
  padding: 16px;
  border-radius: 16px;
  max-height: calc(100vh - 80px);
  overflow: auto;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .header .mobile-menu {
    border-radius: 10px;
    height: auto;
    max-height: calc(100vh - 72px);
    padding: 10px 16px;
  }
}

.header .mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: calc(100% + 10px);
}

.header .mobile-menu__links nav {
  width: 100%;
}
.header .mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.header .mobile-menu__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-black);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .mobile-menu__link:hover {
  color: #f9862d;
}

.header .mobile-menu__button {
  padding: 8px 12px;
  background-color: #f9862d;
  color: var(--clr-white);
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid var(--clr-gray-border);
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s ease;
  display: inline-block;
}

.header .mobile-menu__button:hover {
  background-color: var(--clr-black);
  color: var(--clr-white);
}

.header .lang-dropdown {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 12px;
}

@media screen and (max-width: 1199px) {
  .header .lang-dropdown {
    right: 42px !important;
  }
}

.header .mobile-lang {
  display: block;
  margin-bottom: 12px;
}
.header .lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
}
.header .lang-current:hover {
  background: #fff;
}
.header .lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  min-width: 70px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: all 0.25s ease;
  z-index: 100;
}
.header .lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.header .lang-option {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}
.header .lang-option:hover {
  background: #0d78ca !important;
  color: #fff !important;
}
.header .lang-option.active {
  color: #0d78ca;
}
.header .mobile-lang .lang-current {
  width: 100%;
  justify-content: space-between;
}
.header .mobile-lang .lang-menu {
  left: 0;
  right: 0;
}

/* START : Footer */

.footer .footer__logo {
  flex-shrink: 0;
  margin-left: 10px;
}

.footer .footer__logo-link {
  font-size: 20px;
  font-weight: 700;
  /* color: var(--clr-black); */
  text-decoration: none;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  margin-left: -16px;
  color: #0d78ca;
}

@media (min-width: 768px) {
  .footer .footer__logo-link {
    font-size: 18px;
  }
}

.footer .footer__logo-link img {
  height: 64px;
  width: 64px;
}

@media screen and (max-width: 767px) {
  .footer .footer__logo-link img {
    height: 50px;
    width: 50px;
  }
}

.footer .footer__logo span {
  display: block;
}
.footer .footer__logo-subtitle {
  font-size: 9px;
  margin-top: -20px;
  /* color: #f9862d; */
}

@media screen and (max-width: 767px) {
  .footer .footer__logo-subtitle {
    margin-top: -25px;
  }
}

.footer .footer {
  width: 100%;
  background-color: var(--clr-footer-bg);
  border-top: 1px solid var(--clr-footer-border);
}

.footer .footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .footer .footer__container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .footer .footer__container {
    padding: 0 32px;
  }
}

.footer .footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .footer .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer .footer__content {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer .footer__brand-section {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer .footer__brand-section {
    grid-column: span 2;
  }
}

.footer .footer__logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-footer-text-dark);
  letter-spacing: -0.025em;
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .footer .footer__logo {
    font-size: 24px;
  }
}

.footer .footer__description {
  font-size: 14px;
  line-height: 1.5;
  color: var(--clr-footer-text-medium);
  margin-bottom: 24px;
  max-width: 320px;
}

.footer .footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--clr-footer-text-medium);
}

.footer .footer__contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer .footer__contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer .footer__contact-link:hover {
  color: var(--clr-footer-text-medium);
}

.footer .footer__section {
  margin-bottom: 0;
}

.footer .footer__section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-footer-text-dark);
  margin-bottom: 16px;
}

.footer .footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .footer__link {
  font-size: 14px;
  color: var(--clr-footer-text-medium);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.footer .footer__link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #0d78ca;
  top: 100%;
  left: 0;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.footer .footer__link:hover::after {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.footer .footer__link:hover {
  color: var(--clr-footer-text-medium);
}

.footer .footer__divider {
  border-top: 1px solid var(--clr-footer-border);
  width: 100%;
}

.footer .footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
}

@media (min-width: 768px) {
  .footer .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer .footer__copyright {
  font-size: 14px;
  color: var(--clr-footer-text-light);
}

.footer .footer__social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer .footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  background-color: var(--clr-footer-social-bg);
  color: var(--clr-footer-text-dark);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer .footer__social-link:hover {
  background-color: #0d78ca;
  color: var(--clr-footer-social-hover-text);
}

.footer .footer__social-icon {
  width: 18px;
  height: 18px;
}

/* END : Footer */

/* START : hero */

.sec-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  background: #f4f4f4;
}

.sec-hero .hero-title.hero-title--small {
  font-size: 24px;
}

.sec-hero .hero-title {
  font-size: 60px;
  max-width: 1000px;
  line-height: 1.1;
  margin-bottom: 25px;
}
.sec-hero .hero-text {
  font-size: 20px;
  max-width: 650px;
  margin-bottom: 30px;
}
.sec-hero .hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: black;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
}
.sec-hero .char {
  display: inline-block;
  opacity: 0;
}

.letter {
  display: inline-block;
  opacity: 0;
}

.sec-hero {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)),
    url('../img/istock-157485438.webp') no-repeat center/cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  /* backdrop-filter: grayscale(100%); */
  /* filter: grayscale(0.6); */
  min-height: 100vh;
  color: var(--clr-white);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 200px 50px 100px;
}

.ueber-hero {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)),
    url('../img/office.png') no-repeat center/cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  /* backdrop-filter: grayscale(100%); */
  /* filter: grayscale(0.6); */
  min-height: 100vh;
  color: var(--clr-white);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 200px 50px 100px;
}

@media screen and (max-width: 1440px) {
  .sec-hero {
    padding: 160px 50px 80px;
  }
}

@media screen and (max-width: 1280px) {
  .sec-hero {
    padding: 140px 40px 70px;
  }
}

@media screen and (max-width: 1023px) {
  .sec-hero {
    padding: 120px 30px 60px;
  }
}

@media screen and (max-width: 767px) {
  .sec-hero {
    padding: 100px 10px 50px;
    min-height: 85vh;
    height: 85vh;
  }
}

.hero {
  width: 100%;
  max-width: 1390px;
  margin: 0 auto;
}

.hero .hero-title {
  font-size: 32px;
  font-weight: 500;
}

@media screen and (max-width: 1440px) {
  .hero .hero-title {
    font-size: 48px;
  }
}

@media screen and (max-width: 1280px) {
  .hero .hero-title {
    font-size: 40px;
  }
}

@media screen and (max-width: 1023px) {
  .hero .hero-title {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  .hero .hero-title {
    font-size: 24px;
  }
}

.hero .hero-text {
  margin-top: 20px;
  font-size: 18px;
  max-width: 607px;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .hero .hero-text {
    font-size: 16px;
    max-width: 100%;
  }
}

.hero .hero-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 16px;
  background-color: #f9862d;
  color: var(--clr-white);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero .hero-btn:focus,
.hero .hero-btn:hover {
  background-color: var(--clr-white);
  color: var(--clr-black);
}

@media screen and (max-width: 767px) {
  .hero .hero-btn {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 10px;
  }
}

/* END : hero */

/* START : service */

.service {
  padding: 90px 0;
}

@media screen and (max-width: 1599px) {
  .service.service-page {
    padding-top: 100px;
  }
}

@media screen and (max-width: 1599px) {
  .service {
    padding: 70px 0;
  }
}

@media screen and (max-width: 1199px) {
  .service {
    padding: 55px 0;
  }
}

@media screen and (max-width: 991px) {
  .service {
    padding: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .service {
    padding: 45px 0;
  }
}

@media screen and (max-width: 575px) {
  .service {
    padding: 35px 0;
  }
}

.service .service-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service .service-super-title {
  font-size: 14px;
  background-color: #0d78ca12;
  border: 1px solid hsla(232, 45%, 20%, 0.1);
  color: var(--clr-black);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .service .service-super-title {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
  }
}

.service .service-main-title {
  color: var(--clr-teal-500);
  font-size: 64px;
  font-weight: 500;
  margin: 0 auto 50px;
  text-align: center;
}

/* 1440px */
@media (max-width: 1439px) {
  .service .service-main-title {
    font-size: 58px;
  }
}

/* 1200px */
@media (max-width: 1199px) {
  .service .service-main-title {
    font-size: 50px;
    margin-bottom: 30px;
  }
}

/* 992px */
@media (max-width: 991px) {
  .service .service-main-title {
    font-size: 42px;
  }
}

/* 768px */
@media (max-width: 767px) {
  .service .service-main-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
}

/* 480px */
@media (max-width: 479px) {
  .service .service-main-title {
    font-size: 30px;
  }
}

@media (min-width: 1280px) {
  .service .service-main-title.service-main-title--md {
    margin-bottom: 30px;
  }
}

.service .service-p {
  font-size: 18px;
  color: var(--clr-gray-900);
  margin-bottom: 50px;
  padding: 0 10px;
  text-align: center;
}

@media screen and (max-width: 1599px) {
  .service .service-p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .service .service-p {
    margin-bottom: 24px;
  }
}

.service .service-main-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media screen and (max-width: 1439px) {
  .service .service-main-title span img {
    height: 58px;
    width: 58px;
  }
}

@media screen and (max-width: 1199px) {
  .service .service-main-title span img {
    height: 50px;
    width: 50px;
  }
}

@media screen and (max-width: 991px) {
  .service .service-main-title span img {
    height: 42px;
    width: 42px;
  }
}

@media screen and (max-width: 767px) {
  .service .service-main-title span img {
    height: 36px;
    width: 36px;
  }
}

@media screen and (max-width: 479px) {
  .service .service-main-title span img {
    height: 30px;
    width: 30px;
  }
}

.service .service-item {
  padding: 50px;
  margin: 0 auto;
  border: 1px solid var(--clr-white);
  border-radius: 32px;
  max-width: 718px;
  width: 100%;
  color: var(--clr-white);
  min-height: 438px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service .service-item:nth-child(2) {
  top: calc(100px + 10vh);
}

.service .service-item:nth-child(3) {
  top: calc(115px + 10vh);
}

.service .service-item:nth-child(4) {
  top: calc(130px + 10vh);
}

.service .service-item:nth-child(5) {
  top: calc(145px + 10vh);
}

@media screen and (min-width: 1280px) {
  .service .service-item {
    position: sticky;
    position: -webkit-sticky;
    top: calc(84px + 10vh);
  }
}

@media screen and (max-width: 1199px) {
  .service .service-item {
    margin: 0;
    border-radius: 24px;
    padding: 24px 14px;
    width: 65%;
    flex: 0 0 65%;
  }
}

@media screen and (max-width: 767px) {
  .service .service-item {
    border-radius: 16px;
    padding: 20px;
    max-width: calc(100% - 20px);
    width: 95%;
    flex: 0 0 95%;
  }
}

.service .service-title {
  font-size: 36px;
  font-weight: 600;
}

@media screen and (max-width: 1439px) {
  .service .service-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 1199px) {
  .service .service-title {
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .service .service-title {
    font-size: 22px;
  }
}

.service .service-text {
  font-size: 18px;
  margin-top: 8px;
  line-height: 1.5;
  max-width: 480px;
}

@media screen and (max-width: 767px) {
  .service .service-text {
    font-size: 16px;
  }
}

.service .service-tag-list {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service .service-tag-list li {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: var(--clr-white-90);
  border: 1px solid var(--clr-white-30);
  border-radius: 20px;
  padding: 8px 16px;
}

@media screen and (max-width: 767px) {
  .service .service-tag-list li {
    padding: 6px 12px;
    font-size: 14px;
  }
}

@media screen and (max-width: 1199px) {
  .service .service-list {
    display: flex;
    gap: 20px;
    overflow: auto;
    padding: 0 10px 10px;
  }
}

@media screen and (max-width: 767px) {
  .service .service-list {
    gap: 10px;
  }
}

.service .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .service .service-grid {
    display: flex;
    overflow: auto;
    padding: 0 10px 10px;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .service .service-grid {
    gap: 10px;
  }
}

.service .service-grid-item {
  background-color: var(--clr-teal-50);
  color: var(--clr-gray-900);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--clr-black-05);
}

@media screen and (max-width: 1199px) {
  .service .service-grid-item {
    flex: 0 0 45%;
    width: 45%;
  }
}

@media screen and (max-width: 991px) {
  .service .service-grid-item {
    flex: 0 0 70%;
    width: 70%;
    padding: 20px;
    border-radius: 16px;
  }
}

@media screen and (max-width: 767px) {
  .service .service-grid-item {
    flex: 0 0 95%;
    width: 95%;
  }
}

.service .service-grid-item img {
  display: inline-block;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .service .service-grid-item img {
    margin-bottom: 10px;
  }
}

.service .service-grid-title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.25px;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .service .service-grid-title {
    font-size: 18px;
  }
}

.service .service-grid-text {
  font-size: 18px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .service .service-grid-text {
    font-size: 16px;
  }
}

.service .service-form-wrapper {
  padding: 64px;
  background-color: #0d78ca12;
  border: 1px solid hsla(232, 45%, 20%, 0.1);
  max-width: 1118px;
  margin: 0 auto;
  border-radius: 24px;
}

.service .service-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: flex-start;
}

@media screen and (max-width: 1440px) {
  .service .service-form-wrapper {
    max-width: calc(100vw - 40px);
    margin: 0 auto;
    padding: 32px;
  }

  .service .service-form {
    gap: 32px;
  }
}

@media screen and (max-width: 991px) {
  .service .service-form-wrapper {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .service .service-form {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .service .service-form-wrapper {
    padding: 16px;
    border-radius: 16px;
    max-width: calc(100vw - 20px);
  }
}

.service .service-form form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media screen and (max-width: 767px) {
  .service .service-form form {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.service .service-form form .input-group:has(textarea) {
  grid-column: span 2;
}

@media screen and (max-width: 767px) {
  .service .service-form form .input-group:has(textarea) {
    grid-column: span 1;
  }
}

.service .service-form form .input-group:has(input[type='checkbox']) {
  grid-column: span 2;
}

@media screen and (max-width: 767px) {
  .service .service-form form .input-group:has(input[type='checkbox']) {
    grid-column: span 1;
  }
}

.service .service-form form button {
  padding: 12px 24px;
  display: inline-block;
  border-radius: 16px;
  transition: all 0.3s ease;
  background-color: #f9862d;
  color: var(--clr-white);
}

@media screen and (max-width: 767px) {
  .service .service-form form button {
    padding: 8px 16px;
    border-radius: 10px;
    margin-top: 10px;
  }
}

.service .service-form form button:focus,
.service .service-form form button:hover {
  background-color: #f9862d;
  color: var(--clr-white);
}

.service .service-form-img {
  max-height: 320px;
  border-radius: 24px;
  margin-bottom: 32px;
  display: block;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .service .service-form-img {
    border-radius: 16px;
  }
}

@media screen and (max-width: 767px) {
  .service .service-form-img {
    border-radius: 16px;
  }
}

.service .service-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

@media screen and (max-width: 991px) {
  .service .service-form-grid {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .service .service-form-grid {
    gap: 0;
    grid-template-columns: 1fr;
  }
}

.service .service-form-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-gray-900);
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .service .service-form-title {
    font-size: 16px;
  }
}

.service .service-form-item {
  font-size: 18px;
  margin-bottom: 16px;
}

.service .service-form-item img {
  filter: brightness(0);
}

.service .service-form-item p {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .service .service-form-item {
    margin-bottom: 10px;
  }
}

.service .service-form-item a {
  color: #f9862d;
  text-decoration: underline;
}

.service .service-form-item a.service-form-item-link {
  background-color: #f9862d;
  color: var(--clr-white);
  padding: 12px 24px;
  display: inline-block;
  border-radius: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .service .service-form-item a.service-form-item-link {
    padding: 12px 20px;
    border-radius: 12px;
    margin-top: 10px;
  }
}

.service .service-form-item a.service-form-item-link:focus,
.service .service-form-item a.service-form-item-link:hover {
  background-color: var(--clr-black);
  color: var(--clr-white);
}

/* END : service */

/*section cards css starts here*/

.section-cards {
  position: relative;
}

.section-cards .title-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media screen and (max-width: 991px) {
  .section-cards .title-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.section-cards .title-wrapper .text-outer {
  font-size: 26px;
  line-height: 1.5;
}

.section-cards .title-wrapper .para-outer {
  font-size: 18px;
  line-height: 1.5;
}

@media only screen and (max-width: 1299px) {
  .section-cards .font-38 {
    font-size: 28px;
    line-height: 1.4;
  }
}

@media only screen and (max-width: 1199px) {
  .section-cards .list-unstyled {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .section-cards .list-unstyled {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .section-cards .list-unstyled {
    display: flex;
    flex-direction: column;
    grid-gap: 0;
  }
}

.section-cards .section-content {
  text-align: center;
}

.section-cards .section-content .bg-div-one {
  display: none;
}

.section-cards .section-content .bg-div-two {
  display: none;
}

.section-cards .section-content .bg {
  z-index: 1;
  background-color: var(--firstcolor);
}

.section-cards .section-content li {
  transform: translateZ(0);
  will-change: transform, opacity;
  height: 500px;
  position: sticky;
  top: calc(35vh + 52px - 215px - 40px);
  padding: 250px 0;
}

@media only screen and (max-width: 1299px) {
  .section-cards .section-content li {
    top: calc(35vh + 75px - 215px - 40px);
  }
}

@media only screen and (max-width: 1199px) {
  .section-cards .section-content li {
    position: initial;
    height: auto;
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .section-cards .section-content li {
    padding: 0;
    height: auto;
    position: initial;
  }

  .section-cards .section-content li:not(:last-child) {
    margin-bottom: 10px;
  }
}

.section-cards .section-content li:nth-child(1) {
  top: calc(35vh + 52px - 215px - 40px);
  padding: 0;
}

@media only screen and (max-width: 1699px) {
  .section-cards .section-content li:nth-child(1) {
    top: calc(35vh + 96px - 215px - 40px);
  }
}

@media only screen and (max-width: 1299px) {
  .section-cards .section-content li:nth-child(1) {
    top: 90px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-cards .section-content li:nth-child(1) {
    grid-column: span 2;
    margin-bottom: 24px;
  }
}

@media only screen and (max-width: 991px) {
  .section-cards .section-content li:nth-child(1) {
    grid-column: span 1;
  }
}

@media screen and (max-height: 700px) {
  .section-cards .section-content li:nth-child(1) {
    top: calc(35vh + 52px - 165px);
  }
}

.section-cards .section-content li:nth-child(2) {
  margin-top: -400px;
}

@media only screen and (max-width: 1199px) {
  .section-cards .section-content li:nth-child(2) {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .section-cards .section-content li:nth-child(2) {
    margin: 0 0 10px;
  }
}

.section-cards .section-content li .card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  background-repeat: no-repeat;
  transform-origin: top center;
  background-position: center center;
  border: none;
  border-radius: 40px;
  background-color: var(--clr-white);
}

@media only screen and (max-width: 575px) {
  .section-cards .section-content li .card {
    border-radius: 15px;
  }
}

.section-cards .section-content li:nth-child(1) .card {
  border-radius: 0;
  background-color: transparent;
}

@media only screen and (max-width: 991px) {
  .section-cards .section-content li:nth-child(1) .card .text-outer {
    max-width: none !important;
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .section-cards .section-content li:nth-child(1) .card .text-outer {
    font-size: 18px;
    line-height: 1.3;
  }
}

@media only screen and (max-width: 991px) {
  .section-cards .section-content li:nth-child(1) .card .para-outer {
    max-width: none !important;
    margin-right: auto !important;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .section-cards .section-content li:nth-child(1) .card .para-outer {
    font-size: 16px;
  }
}

.section-cards .section-content li .card-container {
  position: absolute;
  left: 50%;
  width: 750px;
  margin-left: -375px;
  transform: translateZ(0);
  margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
  .section-cards .section-content li .card-container {
    transform: translateZ(0) rotate(0) !important;
    position: initial;
    margin: 0;
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .section-cards .section-content li .card-container {
    width: auto;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .section-cards .section-content li .card-container {
    position: initial;
  }
}

.section-cards .section-content li:nth-child(1) .card-container {
  width: 100%;
  margin-left: 0;
  left: 0;
  text-align: left;
  top: 0;
}

.section-cards .section-content .game-development-process-new {
  padding: 50px;
  border-radius: 40px;
  border: 3px solid rgba(176, 176, 176, 0.2);
  background: linear-gradient(
    180deg,
    rgba(213, 236, 242, 0.25) 0%,
    rgba(254, 254, 254, 0) 48.96%,
    #f9862d1a 100%
  );

  box-shadow: 0px 14px 24px 0px rgba(0, 0, 0, 0.05);
  max-width: 745px;
  margin: 0 auto;
  text-align: left;
  min-height: 320px;
}

@media only screen and (min-width: 768px) and (max-width: 1299px) {
  .section-cards .section-content .game-development-process-new {
    padding: 30px;
    min-height: 1px;
  }
}

@media only screen and(max-width: 1199px) {
  .section-cards .section-content .game-development-process-new {
    padding: 20px;
    border-radius: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-cards .section-content .game-development-process-new {
    min-height: 1px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-cards .section-content .game-development-process-new {
    height: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .section-cards .section-content .game-development-process-new {
    padding: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .section-cards .section-content .game-development-process-new {
    padding: 15px;
    border-radius: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .section-cards .section-content .game-development-process-new {
    min-height: 1px;
  }
}

.section-cards .section-content .game-development-process-new .process-number {
  height: 70px;
  width: 70px;
  background-color: var(--clr-black);
  color: var(--clr-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  font-size: 25px;
  flex: 0 0 auto;
}

@media only screen and (max-width: 1299px) {
  .section-cards
    .section-content
    .game-development-process-new
    .process-number {
    width: 60px;
    height: 60px;
  }
}

@media only screen and (max-width: 1299px) {
  .section-cards
    .section-content
    .game-development-process-new
    .process-number {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .section-cards
    .section-content
    .game-development-process-new
    .process-number {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 400px) {
  .section-cards
    .section-content
    .game-development-process-new
    .process-number {
    margin-bottom: 10px;
  }
}

.section-cards .section-content .process-title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
}

@media only screen and (max-width: 375px) {
  .section-cards .section-content .process-title {
    display: block !important;
  }
}

.section-cards .section-content .process-title .card-title {
  font-size: 24px;
  padding-left: 30px;
}

@media only screen and (min-width: 991px) {
  .section-cards .section-content .process-title .card-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .section-cards .section-content .process-title .card-title {
    max-width: 100%;
    line-height: 2.5rem;
    padding-left: 20px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1299px) {
  .section-cards .section-content .process-title .card-title {
    font-size: 20px;
    line-height: 1.4;
  }
}

@media only screen and (max-width: 575px) {
  .section-cards .section-content .process-title .card-title {
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.3;
  }
}

@media only screen and (max-width: 375px) {
  .section-cards .section-content .process-title .card-title {
    padding-left: 0;
  }
}

.section-cards
  .section-content
  .game-development-process-new
  .process-description {
  padding-left: 92px;
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
}

@media only screen and (max-width: 1299px) {
  .section-cards
    .section-content
    .game-development-process-new
    .process-description {
    padding-left: 62px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 991px) {
  .section-cards
    .section-content
    .game-development-process-new
    .process-description {
    padding-left: 60px;
  }
}

@media only screen and (max-width: 575px) {
  .section-cards
    .section-content
    .game-development-process-new
    .process-description {
    padding-left: 50px;
  }
}

@media only screen and (max-width: 375px) {
  .section-cards
    .section-content
    .game-development-process-new
    .process-description {
    padding-left: 0;
  }
}

.section-cards
  .section-content
  .game-development-process-new
  .process-description
  .para-text {
  color: #1a1a1a;
}

.section-cards .section-content li:nth-child(2) .card-container {
  transform: translateZ(0) rotate(-12.014deg);
}

.section-cards .section-content li:nth-child(3) .card-container {
  transform: translateZ(0) rotate(-10.009deg);
}

.section-cards .section-content li:nth-child(4) .card-container {
  transform: translateZ(0) rotate(-8deg);
}

.section-cards .section-content li:nth-child(5) .card-container {
  transform: translateZ(0) rotate(-6deg);
}

.section-cards .section-content li:nth-child(6) .card-container {
  transform: translateZ(0) rotate(-4deg);
}

.section-cards .section-content li:nth-child(7) .card-container {
  transform: translateZ(0) rotate(-2deg);
}

/*section cards css ends here*/

/* ######################################################## */
/* START : who are we */
/* ######################################################## */

.who-are-we {
  margin-bottom: 80px;
}

@media screen and (max-width: 1199px) {
  .who-are-we {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 991px) {
  .who-are-we {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .who-are-we {
    margin-bottom: 40px;
  }
}

.who-are-we .who-are-we__top {
  text-align: center;
  margin-bottom: 90px;
}

@media screen and (max-width: 991px) {
  .who-are-we .who-are-we__top {
    max-width: 100%;
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 767px) {
  .who-are-we .who-are-we__top {
    margin-bottom: 20px;
  }
}

.who-are-we .who-are-we__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 767px) {
  .who-are-we .who-are-we__grid {
    display: flex;
    overflow: auto;
    padding: 10px 0;
    grid-gap: 10px;
  }
}

.who-are-we .who-are-we__item .who-are-we__item-inner * {
  transition: all 0.3s ease;
}

.who-are-we .who-are-we__item .who-are-we__item-inner {
  padding: 60px 60px 60px 30px;
  display: flex;
  gap: 20px;
  /* min-height: 340px; */
  min-height: 210px;
  transition: all 1s ease;
  will-change: transform, opacity;
  background: linear-gradient(180deg, #fff, #fff, #a5c7e4);
}

@media screen and (max-width: 1023px) {
  .who-are-we .who-are-we__item .who-are-we__item-inner {
    padding: 20px 40px 20px 20px;
  }
}

@media screen and (max-width: 991px) {
  .who-are-we .who-are-we__item .who-are-we__item-inner {
    padding: 20px 20px 20px 20px;
  }
}

@media screen and (max-width: 767px) {
  .who-are-we .who-are-we__item .who-are-we__item-inner {
    padding: 16px;
    gap: 10px;
    display: grid;
    box-shadow: none !important;
    min-height: 100%;
  }

  .who-are-we .who-are-we__item {
    flex: 0 0 95%;
    width: 95%;
  }
}

@media screen and (max-width: 350px) {
  .who-are-we .who-are-we__item .who-are-we__item-inner {
    flex-direction: column;
    padding: 10px 24px 10px 12px;
  }
}

.who-are-we .who-are-we__item:nth-child(1) .who-are-we__item-inner {
  box-shadow: 0 14px 24px 0 rgba(0, 0, 0, 0.05);
  border-radius: 0px 40px 40px 40px;
  transform: translateY(-45px);
}

@media screen and (max-width: 991px) {
  .who-are-we .who-are-we__item:nth-child(1) .who-are-we__item-inner {
    border-radius: 0px 20px 20px 20px;
  }
}

.who-are-we .who-are-we__item:nth-child(2) .who-are-we__item-inner {
  box-shadow: -20px 14px 24px 0 rgba(0, 0, 0, 0.05);
  border-radius: 40px 0px 40px 40px;
  transform: translate(-12px, 10px);
}

@media screen and (max-width: 991px) {
  .who-are-we .who-are-we__item:nth-child(2) .who-are-we__item-inner {
    border-radius: 20px 0px 20px 20px;
  }
}

.who-are-we .who-are-we__item:nth-child(3) .who-are-we__item-inner {
  box-shadow: 0 -20px 24px 0 rgba(0, 0, 0, 0.05);
  border-radius: 40px 40px 40px 0px;
  transform: translate(8px, -50px);
}

@media screen and (max-width: 991px) {
  .who-are-we .who-are-we__item:nth-child(3) .who-are-we__item-inner {
    border-radius: 20px 20px 20px 0px;
  }
}

.who-are-we .who-are-we__item:nth-child(4) .who-are-we__item-inner {
  transform: translate(-12px, -5px);
  border-radius: 40px 40px 0px 40px;
  box-shadow: -20px -20px 24px 0 rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 991px) {
  .who-are-we .who-are-we__item:nth-child(4) .who-are-we__item-inner {
    border-radius: 20px 20px 0px 20px;
  }
}

@media screen and (max-width: 767px) {
  .who-are-we .who-are-we__item:nth-child(1) .who-are-we__item-inner,
  .who-are-we .who-are-we__item:nth-child(2) .who-are-we__item-inner,
  .who-are-we .who-are-we__item:nth-child(3) .who-are-we__item-inner,
  .who-are-we .who-are-we__item:nth-child(4) .who-are-we__item-inner {
    transform: translate(0);
  }
}

.who-are-we .who-are-we__item-content .font-30 {
  line-height: 1.5;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .who-are-we .who-are-we__item-content .font-30 {
    font-size: 24px;
  }
}

@media screen and (min-width: 1200px) {
  .who-are-we
    .hover-1
    .who-are-we__item:nth-child(2)
    .who-are-we__item-inner
    * {
    opacity: 0.8;
  }

  .who-are-we .hover-1 .who-are-we__item:nth-child(2) .who-are-we__item-inner {
    transform: translate(22px, 10px);
  }

  .who-are-we
    .hover-1
    .who-are-we__item:nth-child(3)
    .who-are-we__item-inner
    * {
    opacity: 0.8;
  }

  .who-are-we .hover-1 .who-are-we__item:nth-child(3) .who-are-we__item-inner {
    transform: translate(-8px, -24px);
  }

  .who-are-we
    .hover-1
    .who-are-we__item:nth-child(4)
    .who-are-we__item-inner
    * {
    opacity: 0.8;
  }

  .who-are-we .hover-1 .who-are-we__item:nth-child(4) .who-are-we__item-inner {
    transform: translate(14px, 30px);
  }

  .who-are-we
    .hover-2
    .who-are-we__item:nth-child(1)
    .who-are-we__item-inner
    * {
    opacity: 0.8;
  }

  .who-are-we .hover-2 .who-are-we__item:nth-child(1) .who-are-we__item-inner {
    transform: translate(-30px, 10px);
  }

  .who-are-we
    .hover-2
    .who-are-we__item:nth-child(3)
    .who-are-we__item-inner
    * {
    opacity: 0.8;
  }

  .who-are-we .hover-2 .who-are-we__item:nth-child(3) .who-are-we__item-inner {
    transform: translate(-40px, 30px);
  }

  .who-are-we
    .hover-2
    .who-are-we__item:nth-child(4)
    .who-are-we__item-inner
    * {
    opacity: 0.8;
  }

  .who-are-we .hover-2 .who-are-we__item:nth-child(4) .who-are-we__item-inner {
    transform: translate(-20px, 30px);
  }

  .who-are-we
    .hover-3
    .who-are-we__item:nth-child(1)
    .who-are-we__item-inner
    * {
    opacity: 0.8;
  }

  .who-are-we .hover-3 .who-are-we__item:nth-child(1) .who-are-we__item-inner {
    transform: translate(-30px, -70px);
  }

  .who-are-we
    .hover-3
    .who-are-we__item:nth-child(2)
    .who-are-we__item-inner
    * {
    opacity: 0.8;
  }

  .who-are-we .hover-3 .who-are-we__item:nth-child(2) .who-are-we__item-inner {
    transform: translate(-10px, -30px);
  }

  .who-are-we
    .hover-3
    .who-are-we__item:nth-child(4)
    .who-are-we__item-inner
    * {
    opacity: 0.8;
  }

  .who-are-we .hover-3 .who-are-we__item:nth-child(4) .who-are-we__item-inner {
    transform: translate(30px, -10px);
  }

  .who-are-we
    .hover-4
    .who-are-we__item:nth-child(1)
    .who-are-we__item-inner
    * {
    opacity: 0.8;
  }

  .who-are-we .hover-4 .who-are-we__item:nth-child(1) .who-are-we__item-inner {
    transform: translate(-30px, -20px);
  }

  .who-are-we
    .hover-4
    .who-are-we__item:nth-child(2)
    .who-are-we__item-inner
    * {
    opacity: 0.8;
  }

  .who-are-we .hover-4 .who-are-we__item:nth-child(2) .who-are-we__item-inner {
    transform: translate(-10px, -30px);
  }

  .who-are-we
    .hover-4
    .who-are-we__item:nth-child(3)
    .who-are-we__item-inner
    * {
    opacity: 0.8;
  }

  .who-are-we .hover-4 .who-are-we__item:nth-child(3) .who-are-we__item-inner {
    transform: translate(-30px, 0px);
  }
}

.who-are-we .who-are-we__item:hover .who-are-we__item-inner {
  box-shadow: 0 14px 24px 0 rgba(0, 0, 0, 0.05), 0 0 0 2px #0d78c980;
}

.who-are-we .who-are-we__inner {
  position: relative;
}

.who-are-we .who-are-we__top-decoration {
  object-fit: contain;
  position: absolute;
  height: auto;
  vertical-align: middle;
  border-style: none;
  right: 40px;
  top: 30px;
  width: 330px;
  animation: infinite mover 6s;
}

@media screen and (max-width: 991px) {
  .who-are-we .who-are-we__top-decoration {
    display: none;
  }
}

.who-are-we .who-are-we__item-icon {
  flex: 0 0 24px;
  width: 24px;
}

.who-are-we .who-are-we__bottom-decoration {
  object-fit: contain;
  position: absolute;
  left: -100px;
  bottom: 100px;
  width: 190px;
  height: auto;
  animation: infinite mover 6s;
}

@media screen and (max-width: 991px) {
  .who-are-we .who-are-we__bottom-decoration {
    display: none;
  }
}

.who-are-we .who-are-we__item .who-are-we__item-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .who-are-we .who-are-we__item .who-are-we__item-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.who-are-we .who-are-we__item .who-are-we__item-desc {
  font-size: 18px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .who-are-we .who-are-we__item .who-are-we__item-desc {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* ------start--unity-game-development-page--------- */
.who-are-we .who-are-we__top-decoration-unity {
  object-fit: contain;
  position: absolute;
  right: 0;
  top: -30px;
  width: 400px;
  height: auto;
  animation: infinite mover 6s;
}

@media screen and (max-width: 1439px) {
  .who-are-we .who-are-we__top-decoration-unity {
    right: -15px;
    top: -10px;
    width: 400px;
  }
}
@media screen and (max-width: 1199px) {
  .who-are-we .who-are-we__top-decoration-unity {
    right: -15px;
    top: -20px;
    width: 420px;
  }
}
@media screen and (max-width: 991px) {
  .who-are-we .who-are-we__top-decoration-unity {
    display: none;
  }
}

.who-are-we .who-are-we__title {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 16px;
}

@media screen and (max-width: 991px) {
  .who-are-we .who-are-we__title {
    font-size: 26px;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 767px) {
  .who-are-we .who-are-we__title {
    font-size: 22px;
    margin-bottom: 12px;
  }
}

.who-are-we .who-are-we__desc {
  font-size: 16px;
  line-height: 1.3;
}

/* ------end--unity-game-development-page--------- */

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ######################################################## */
/* END : who are we */
/* ######################################################## */

/* ####################################################### */
/* START : solutions section */
/* ####################################################### */

.solutions-section {
  padding-top: 80px;
}

@media (max-width: 1199px) {
  .solutions-section {
    padding-top: 60px;
  }
}

@media (max-width: 991px) {
  .solutions-section {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .solutions-section {
    padding-top: 35px;
  }
}

.solutions-section .container {
  max-width: 1440px;
}

.solutions-section .solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.solutions-section .solutions-section {
  padding: 80px 0;
}
.solutions-section .solutions-header {
  text-align: center;
  margin-bottom: 48px;
}

@media screen and (max-width: 991px) {
  .solutions-section .solutions-header {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 767px) {
  .solutions-section .solutions-header {
    margin-bottom: 26px;
  }
}
.solutions-section .solutions-title {
  font-size: 48px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

@media screen and (max-width: 1199px) {
  .solutions-section .solutions-title {
    font-size: 40px;
  }
}

@media screen and (max-width: 991px) {
  .solutions-section .solutions-title {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  .solutions-section .solutions-title {
    font-size: 24px;
  }
}

.solutions-section .solutions-subtitle {
  font-size: 20px;
  color: #6b7280;
  max-width: 768px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .solutions-section .solutions-subtitle {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .solutions-section .solutions-subtitle {
    font-size: 16px;
  }
}

.solutions-section .solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1199px) {
  .solutions-section .solutions-grid {
    overflow: auto;
    padding-bottom: 10px;
    display: flex;
    gap: 12px;
  }
}

@media screen and (max-width: 767px) {
  .solutions-section .solutions-grid {
    gap: 10px;
  }
}

.solutions-section .solution-card {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 384px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 1199px) {
  .solutions-section .solution-card {
    flex: 0 0 calc(45% - 16px);
    width: calc(45% - 16px);
  }
}

@media screen and (max-width: 991px) {
  .solutions-section .solution-card {
    flex: 0 0 85%;
    width: 85%;
  }
}

@media screen and (max-width: 575px) {
  .solutions-section .solution-card {
    flex: 0 0 95%;
    width: 95%;
  }
}

.solutions-section .solution-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.solutions-section .solution-card:hover .solution-image {
  transform: scale(1.1);
}
.solutions-section .solution-card:hover .solution-link {
  gap: 12px;
}
.solutions-section .solution-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.solutions-section .solution-image-container .solution-image img {
  height: 100%;
  width: 100%;
}
.solutions-section .solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.solutions-section .solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    transparent
  );
}
.solutions-section .solution-icon-container {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 991px) {
  .solutions-section .solution-icon-container {
    top: 24px;
    left: 24px;
  }
}

@media screen and (max-width: 767px) {
  .solutions-section .solution-icon-container {
    top: 16px;
    left: 16px;
  }
}

.solutions-section .solution-icon {
  font-size: 36px;
  color: white;
}
.solutions-section .solution-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}

@media screen and (max-width: 991px) {
  .solutions-section .solution-content {
    padding: 24px;
  }
}

@media screen and (max-width: 767px) {
  .solutions-section .solution-content {
    padding: 16px;
  }
}

.solutions-section .solution-name {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.solutions-section .solution-description {
  color: #e5e7eb;
  margin-bottom: 16px;
  line-height: 1.5;
}
.solutions-section .solution-link {
  display: inline-flex;
  align-items: center;
  color: #0d78ca;
  font-weight: 600;
  transition: gap 0.3s ease;
}
.solutions-section .solution-link-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.solutions-section .solution-card:hover .solution-link-icon {
  transform: translateX(4px);
}
.solutions-section .solutions-cta {
  text-align: center;
  margin-top: 48px;
}

@media screen and (max-width: 991px) {
  .solutions-section .solutions-cta {
    margin-top: 32px;
  }
}

@media screen and (max-width: 767px) {
  .solutions-section .solutions-cta {
    margin-top: 20px;
  }
}

.solutions-section .cta-button {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: #f9862d;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

@media screen and (max-width: 767px) {
  .solutions-section .cta-button {
    padding: 8px 16px;
    font-size: 14px;
  }
}

.solutions-section .cta-button:hover {
  background-color: #111827;
  transform: translateY(-2px);
}
.solutions-section .cta-button-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.solutions-section .cta-button:hover .cta-button-icon {
  transform: translateX(4px);
}
.solutions-section .water-mitigation .solution-icon-container {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.6),
    rgba(37, 99, 235, 0.6)
  );
}
.solutions-section .fire-damage .solution-icon-container {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.6), #f9862d99);
}
.solutions-section .home-remodeling .solution-icon-container {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.6),
    rgba(22, 163, 74, 0.6)
  );
}

/* ####################################################### */
/* END : solutions section */
/* ####################################################### */

/* ####################################################### */
/* START : feature */
/* ####################################################### */

.features-main {
  padding: 80px 0;
  display: grid;
  gap: 40px;
}

@media screen and (max-width: 1199px) {
  .features-main {
    padding: 60px 0;
  }
}

@media screen and (max-width: 991px) {
  .features-main {
    padding: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .features-main {
    padding: 35px 0;
  }
}

.features-main .container {
  display: grid;
  gap: 80px;
}

@media screen and (max-width: 991px) {
  .features-main .container {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .features-main .container {
    gap: 32px;
  }
}

.features-main .features-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

@media screen and (max-width: 991px) {
  .features-main .features-item {
    gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .features-main .features-item {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}

.features-main .feature-image-main {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

@media screen and (max-width: 1199px) {
  .features-main .feature-image-main {
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  .features-main .feature-image-main {
    border-radius: 10px;
  }
}

.features-main .feature-image {
  position: relative;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .features-main .feature-image {
    order: -1;
  }
}

.features-main .feature-image-txt {
  position: absolute;
  bottom: -15px;
  right: -15px;
  padding: 32px;
  background-color: #111827;
  border-radius: 14px;
  color: var(--clr-white);
}

@media screen and (max-width: 991px) {
  .features-main .feature-image-txt {
    position: absolute;
    bottom: 12px;
    right: 12px;
    left: auto;

    margin-top: 0;
    padding: 14px 16px;

    border-radius: 12px;
    max-width: calc(100% - 24px);
    z-index: 2;
  }
}

@media screen and (max-width: 767px) {
  .features-main .feature-image-txt {
    padding: 16px;
  }
}

.features-main .feature-image-txt .number {
  font-size: 24px;
  margin-bottom: 10px;
}

.features-main .features-title {
  font-size: 56px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1199px) {
  .features-main .features-title {
    font-size: 45px;
  }
}

@media screen and (max-width: 991px) {
  .features-main .features-title {
    font-size: 35px;
  }
}

@media screen and (max-width: 767px) {
  .features-main .features-title {
    font-size: 25px;
  }
}
.features-main .features-description {
  font-size: 18px;
  margin-bottom: 20px;
}

.features-main ul {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .features-main ul {
    margin-bottom: 0;
  }
}

.features-main ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
}

.features-main ul li::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23000000'%3E%3Cpath d='m424-408-86-86q-11-11-28-11t-28 11q-11 11-11 28t11 28l114 114q12 12 28 12t28-12l226-226q11-11 11-28t-11-28q-11-11-28-11t-28 11L424-408Zm56 328q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z'/%3E%3C/svg%3E");
  background-size: contain;
}

.features-main .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: #f9862d;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

@media screen and (max-width: 767px) {
  .features-main .cta-button {
    padding: 8px 16px;
    gap: 0;
    font-size: 14px;
  }
}

.features-main .cta-button:hover {
  background-color: #111827;
  transform: translateY(-2px);
}
.features-main .cta-button-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.features-main .cta-button:hover .cta-button-icon {
  transform: translateX(4px);
}

.features-main .features-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .features-main .features-item-content {
    padding-bottom: 0;
  }
}

.features-main .features-item:nth-child(even) .feature-image {
  order: -1;
}

/* ####################################################### */
/* END : feature */
/* ####################################################### */

/* ####################################################### */
/* START : service hero */
/* ####################################################### */

.service-hero-wrapper .hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff;
  padding: 80px 20px;
}

@media screen and (max-width: 767px) {
  .service-hero-wrapper .hero-section {
    padding: 20px 10px;
  }
}

.service-hero-wrapper .hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.service-hero-wrapper .accent-circle--blue {
  position: absolute;
  right: 0;
  top: 0;
  height: 500px;
  width: 500px;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(60px);
  background-color: #0d78ca;
}
.service-hero-wrapper .accent-circle--orange {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 400px;
  width: 400px;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(60px);
  background-color: #f9862d;
}
.service-hero-wrapper .grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: linear-gradient(#0d78ca 1px, transparent 1px),
    linear-gradient(90deg, #0d78ca 1px, transparent 1px);
  background-size: 50px 50px;
}
.service-hero-wrapper .hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

@media screen and (max-width: 767px) {
  .service-hero-wrapper .hero-container {
    padding-inline: 0;
  }
}
.service-hero-wrapper .hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.service-hero-wrapper .title-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.service-hero-wrapper .accent-line {
  height: 1px;
  width: 48px;
}
.service-hero-wrapper .accent-line--orange {
  background-color: #f9862d;
}
.service-hero-wrapper .accent-line--blue {
  background-color: #0d78ca;
}
.service-hero-wrapper .accent-dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
}
.service-hero-wrapper .accent-dot--blue {
  background-color: #0d78ca;
}
.service-hero-wrapper .hero-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #000;
  margin-bottom: 24px;
  text-wrap: balance;
}
@media (max-width: 992px) {
  .service-hero-wrapper .hero-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .service-hero-wrapper .hero-title {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .service-hero-wrapper .hero-title {
    font-size: 28px;
  }
}
.service-hero-wrapper .title-highlight {
  position: relative;
  display: inline-block;
  color: #0d78ca;
}
.service-hero-wrapper .title-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 12px;
}
.service-hero-wrapper .title-underline path {
  stroke: #f9862d;
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.5;
}
.service-hero-wrapper .hero-subtext {
  font-size: 16px;
  line-height: 1.6;
  color: #737373;
  max-width: 1000px;
  margin: 0 auto 14px;
  text-wrap: pretty;
}
@media (max-width: 768px) {
  .service-hero-wrapper .hero-subtext {
    font-size: 15px;
  }
}
.service-hero-wrapper .decorative-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
}
@media (max-width: 768px) {
  .service-hero-wrapper .decorative-dots {
    padding-top: 6px;
  }
}

.service-hero-wrapper .decorative-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
}
.service-hero-wrapper .decorative-dot--primary {
  background-color: #0d78ca;
}
.service-hero-wrapper .decorative-dot--secondary {
  background-color: #f9862d;
}
.service-hero-wrapper .decorative-dot--primary-opacity-50 {
  background-color: #0d78ca;
  opacity: 0.5;
}
.service-hero-wrapper .decorative-dot--primary-opacity-30 {
  background-color: #0d78ca;
  opacity: 0.3;
}
.service-hero-wrapper .corner-accent {
  position: absolute;
  height: 64px;
  width: 64px;
  opacity: 0.2;
}
.service-hero-wrapper .corner-accent--top-left {
  top: 32px;
  left: 32px;
  border-left: 2px solid #0d78ca;
  border-top: 2px solid #0d78ca;
}
.service-hero-wrapper .corner-accent--bottom-right {
  bottom: 32px;
  right: 32px;
  border-right: 2px solid #f9862d;
  border-bottom: 2px solid #f9862d;
}
.service-hero-wrapper .hero-cta {
  margin-top: 40px;
}
.service-hero-wrapper .cta-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #0d78ca;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid #0d78ca;
}

@media screen and (max-width: 767px) {
  .service-hero-wrapper .cta-button {
    padding: 8px 16px;
    font-size: 16px;
  }
}
.service-hero-wrapper .cta-button:hover {
  background-color: transparent;
  color: #0d78ca;
}
.service-hero-wrapper .cta-button--secondary {
  background-color: transparent;
  color: #0d78ca;
  margin-left: 16px;
}
.service-hero-wrapper .cta-button--secondary:hover {
  background-color: #f9862d;
  color: #fff;
  border-color: #f9862d;
}
@media (max-width: 768px) {
  .service-hero-wrapper .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    align-items: center;
  }
  .service-hero-wrapper .cta-button--secondary {
    margin-left: 0;
  }
}

/* ####################################################### */
/* END : service hero */
/* ####################################################### */

/* ####################################################### */
/* START : about */
/* ####################################################### */

.about-wrapper .hero-section {
  background-color: #073963;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(100px);
}
.about-wrapper .hero-container {
  position: relative;
  isolation: isolate;
  padding: 0 24px;
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
}
.about-wrapper .hero-blur-top {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
  filter: blur(100px);
}
.about-wrapper .hero-blur-shape-1 {
  position: absolute;
  left: calc(50% - 11rem);
  width: 36.125rem;
  height: 40rem;
  transform: translateX(-50%) rotate(30deg);
  background: linear-gradient(to top right, #ff80b5, #f9862d);
  opacity: 0.3;
  filter: blur(64px);
  clip-path: polygon(
    74.1% 44.1%,
    100% 61.6%,
    97.5% 26.9%,
    85.5% 0.1%,
    80.7% 2%,
    72.5% 32.5%,
    60.2% 62.4%,
    52.4% 68.1%,
    47.5% 58.3%,
    45.2% 34.5%,
    27.5% 76.7%,
    0.1% 64.9%,
    17.9% 100%,
    27.6% 76.8%,
    76.1% 97.7%,
    74.1% 44.1%
  );
}
.about-wrapper .hero-blur-bottom {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.about-wrapper .hero-content {
  max-width: 768px;
  margin: 0 auto;
  padding: 128px 0;
}
.about-wrapper .announcement-container {
  display: none;
  justify-content: center;
  margin-bottom: 32px;
}
.about-wrapper .announcement-badge {
  position: relative;
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 14px;
  line-height: 24px;
  color: #9ca3af;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s;
}
.about-wrapper .announcement-badge:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.about-wrapper .announcement-link {
  font-weight: 600;
  color: #818cf8;
  text-decoration: none;
}
.about-wrapper .announcement-link-span {
  position: absolute;
  inset: 0;
}
.about-wrapper .text-center {
  text-align: center;
}
.about-wrapper .hero-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.2;
  text-wrap: balance;
  margin-bottom: 32px;
}
.about-wrapper .hero-description {
  font-size: 18px;
  font-weight: 500;
  color: #dfdfdf;
  line-height: 1.75;
  text-wrap: pretty;
  margin-bottom: 40px;
}
.about-wrapper .cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.about-wrapper .primary-button {
  display: inline-block;
  border-radius: 6px;
  background-color: #f9862d;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}
.about-wrapper .primary-button:hover {
  background-color: #0d78ca;
}
.about-wrapper .primary-button:focus {
  outline: 2px solid #0d78ca;
  outline-offset: 2px;
}
.about-wrapper .secondary-link {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  line-height: 24px;
}
.about-wrapper .secondary-link:hover {
  text-decoration: underline;
}
@media (min-width: 640px) {
  .about-wrapper .announcement-container {
    display: flex;
  }
  .about-wrapper .hero-title {
    font-size: 72px;
  }
  .about-wrapper .hero-description {
    font-size: 20px;
    line-height: 2;
  }
  .about-wrapper .hero-content {
    padding: 192px 0;
  }
  .about-wrapper .hero-blur-shape-1 {
    left: calc(50% - 30rem);
    width: 72.188rem;
  }
}
@media (min-width: 1024px) {
  .about-wrapper .hero-container {
    padding: 0 32px;
  }
  .about-wrapper .hero-content {
    padding: 224px 0;
  }
}
.about-wrapper .hero-blur-shape-1 {
  position: absolute;
  left: calc(50% - 11rem);
  width: 36.125rem;
  height: 40rem;
  transform: translateX(-50%) rotate(30deg);
  /* Added rotate(30deg) */
  background: linear-gradient(to top right, #f9862d, #f9862d);
  opacity: 0.3;
  filter: blur(64px);
  clip-path: polygon(
    74.1% 44.1%,
    100% 61.6%,
    97.5% 26.9%,
    85.5% 0.1%,
    80.7% 2%,
    72.5% 32.5%,
    60.2% 62.4%,
    52.4% 68.1%,
    47.5% 58.3%,
    45.2% 34.5%,
    27.5% 76.7%,
    0.1% 64.9%,
    17.9% 100%,
    27.6% 76.8%,
    76.1% 97.7%,
    74.1% 44.1%
  );
}

/* ####################################################### */
/* END : about */
/* ####################################################### */

/* ####################################################### */
/* START : deployment */
/* ####################################################### */
.deployment-section {
  background-color: #f9fafb;
  padding: 50px 0;
}
@media (min-width: 640px) {
  .deployment-section {
    padding: 80px 0;
  }
}
.deployment-container {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .deployment-container {
    max-width: 1280px;
    padding: 0 32px;
  }
}

.deployment-section .deployment-header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .deployment-section .deployment-header {
    margin-bottom: 64px;
  }
}

.deployment-section .deployment-card-icon {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #dfdfdf;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.deployment-section .deployment-card-number {
  font-size: 32px;
  font-weight: 700;
  color: #f9862d;
}

.deployment-section .deployment-subtitle {
  color: #4f46e5;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
}

.deployment-card .deployment-card-flex {
  display: flex;
  gap: 20px;
  align-items: center;
}

.deployment-card .deployment-card-flex .deployment-card-heading {
  margin: 0;
}

.deployment-card .deployment-card-flex .deployment-card-icon {
  margin: 0;
}

.deployment-section.bg-blue {
  background-color: #0e78d00a;
}

.deployment-section .deployment-title {
  color: #030712;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 auto;
  text-wrap: balance;
}
@media (min-width: 640px) {
  .deployment-section .deployment-title {
    font-size: 48px;
  }
}
.deployment-section .deployment-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 640px) {
  .deployment-section .deployment-grid {
    margin-top: 64px;
  }
}
@media (min-width: 1024px) {
  .deployment-section .deployment-grid.deployment-grid-col-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .deployment-section .deployment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.deployment-section .deployment-card {
  position: relative;
  border-radius: 8px;
}
.deployment-section .deployment-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 9px;
  background-color: #fff;
}
.deployment-section .deployment-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  outline: 1px solid rgba(0, 0, 0, 0.05);
  pointer-events: none;
  z-index: 2;
}
.deployment-section .deployment-card-content {
  padding: 24px;
}
@media (min-width: 640px) {
  .deployment-section .deployment-card-content {
    padding: 32px;
  }
}

.deployment-section .deployment-card-content.p-4 {
  padding: 16px;
}
.deployment-section .deployment-card-heading {
  color: #030712;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 8px;
}
@media (max-width: 1023px) {
  .deployment-section .deployment-card-heading {
    text-align: center;
  }
}
.deployment-section .deployment-card-description {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
  max-width: 576px;
}
@media (max-width: 1023px) {
  .deployment-section .deployment-card-description {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .deployment-section .deployment-card-left::before {
    border-radius: 32px 8px 8px 8px;
  }
  .deployment-section .deployment-card-left .deployment-card-inner {
    border-radius: 33px 9px 9px 9px;
  }

  .deployment-section .deployment-card-right::before {
    border-radius: 8px 32px 8px 8px;
  }
  .deployment-section .deployment-card-right .deployment-card-inner {
    border-radius: 9px 33px 9px 9px;
  }
  .deployment-section .deployment-card-right::after {
    border-radius: 8px 32px 8px 8px;
  }
}
@media (max-width: 1023px) {
  .deployment-section .deployment-card-top::before {
    border-radius: 32px 32px 8px 8px;
  }
  .deployment-section .deployment-card-top .deployment-card-inner {
    border-radius: 33px 33px 9px 9px;
  }
  .deployment-section .deployment-card-top::after {
    border-radius: 32px 32px 8px 8px;
  }
  .deployment-section .deployment-card-middle {
    order: 3;
  }
}
@media (min-width: 1024px) {
  .deployment-section .deployment-card-small:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .deployment-section .deployment-card-small:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
}
.deployment-section .deployment-card-mobile {
  padding: 0 32px 12px;
  margin: 0 auto;
  max-width: 384px;
  min-height: 480px;
  width: 100%;
  flex-grow: 1;
}
@media (min-width: 640px) {
  .deployment-section .deployment-card-mobile {
    padding: 0 40px 0;
    max-width: 448px;
  }
}
@media (min-width: 1024px) {
  .deployment-section .deployment-card-mobile {
    max-width: 100%;
  }
}
.deployment-section .mobile-preview {
  position: absolute;
  inset: 40px 40px 0;
  overflow: hidden;
  border-top-left-radius: 12cqw;
  border-top-right-radius: 12cqw;
  border-top: 3cqw solid #374151;
  border-left: 3cqw solid #374151;
  border-right: 3cqw solid #374151;
  background-color: #111827;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.deployment-section .mobile-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.deployment-section .deployment-card-small .deployment-card-media {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  padding-top: 40px;
  padding-bottom: 48px;
}
@media (min-width: 640px) {
  .deployment-section .deployment-card-small .deployment-card-media {
    padding: 0 40px;
    padding-top: 40px;
    padding-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .deployment-section .deployment-card-small .deployment-card-media {
    padding-bottom: 8px;
  }
}
.deployment-section .performance-image {
  width: 100%;
  max-width: 320px;
}
@media (max-width: 1023px) {
  .deployment-section .performance-image {
    max-width: 320px;
  }
}
.deployment-section .security-image {
  height: 152px;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .deployment-section .deployment-card-middle .deployment-card-media {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.deployment-section .deployment-card-code {
  position: relative;
  min-height: 480px;
  width: 100%;
  flex-grow: 1;
}
.deployment-section .code-preview {
  position: absolute;
  top: 40px;
  right: 0;
  bottom: 0;
  left: 40px;
  overflow: hidden;
  border-top-left-radius: 12px;
  background-color: #111827;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  outline: 1px solid rgba(255, 255, 255, 0.1);
}
.deployment-section .code-tabs {
  display: flex;
  background-color: #111827;
  outline: 1px solid rgba(255, 255, 255, 0.05);
}
.deployment-section .code-tab {
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: #9ca3af;
  border-right: 1px solid rgba(156, 163, 175, 0.1);
  cursor: pointer;
}
.deployment-section .code-tab-active {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.deployment-section .code-content {
  padding: 24px 24px 56px;
}
@media (max-width: 1023px) {
  .deployment-section .deployment-card:last-child::before {
    border-radius: 8px 8px 32px 32px;
  }
  .deployment-section .deployment-card:last-child .deployment-card-inner {
    border-radius: 9px 9px 33px 33px;
  }
  .deployment-section .deployment-card:last-child::after {
    border-radius: 8px 8px 32px 32px;
  }
}

/* ####################################################### */
/* END : deployment */
/* ####################################################### */

/* ####################################################### */
/* START : benefits-section */
/* ####################################################### */

/* Customer Benefits Section Styles */
.benefits-section {
  background-color: #073963;
  /* Blue-500 as primary color */
  color: #fff;
  padding: 64px 0;
}
@media (min-width: 768px) {
  .benefits-section {
    padding: 96px 0;
  }
}
.benefits-section .benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) {
  .benefits-section .benefits-container {
    padding: 0 32px;
  }
}
.benefits-section .benefits-header {
  max-width: 768px;
  margin: 0 auto 48px;
  text-align: center;
}
.benefits-section .benefits-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .benefits-section .benefits-title {
    font-size: 36px;
  }
}
.benefits-section .benefits-grid {
  display: grid;
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .benefits-section .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .benefits-section .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.benefits-section .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.benefits-section .benefit-icon {
  height: 24px;
  width: 24px;
  color: #fbbf24;
  /* Amber-400 as accent color */
  flex-shrink: 0;
}
.benefits-section .benefit-text {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

/* ####################################################### */
/* END : benefits-section */
/* ####################################################### */

/* ####################################################### */
/* START : quality-section */
/* ####################################################### */

/* Quality & Safety Section Styles */
.quality-section {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05) 0%,
    rgba(251, 191, 36, 0.05) 50%,
    rgba(59, 130, 246, 0.05) 100%
  );
  padding: 64px 0;
}
@media (min-width: 768px) {
  .quality-section {
    padding: 96px 0;
  }
}

.quality-section .quality-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) {
  .quality-section .quality-container {
    padding: 0 32px;
  }
}
.quality-section .quality-header {
  max-width: 768px;
  margin: 0 auto 64px;
  text-align: center;
}
.quality-section .quality-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-wrap: balance;
  color: #1f2937;
}
@media (min-width: 768px) {
  .quality-section .quality-title {
    font-size: 36px;
  }
}
.quality-section .quality-subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: #6b7280;
}
.quality-section .quality-main-card {
  background: #073963;
  color: #fff;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 0;
}
@media (min-width: 768px) {
  .quality-section .quality-main-card {
    padding: 48px;
  }
}
.quality-section .quality-main-card-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .quality-section .quality-main-card-content {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}
.quality-section .quality-main-card-icon-container {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .quality-section .quality-main-card-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.quality-section .quality-main-card-icon-wrapper {
  width: 96px;
  height: 96px;
  background-color: #f9862d;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: rotate(-6deg);
}
.quality-section .quality-main-card-icon {
  height: 48px;
  width: 48px;
  color: #fff;
}
.quality-section .quality-main-card-text {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .quality-section .quality-main-card-text {
    text-align: left;
  }
}
.quality-section .quality-main-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  text-wrap: balance;
  color: #fff;
}
@media (min-width: 768px) {
  .quality-section .quality-main-card-title {
    font-size: 28px;
  }
}
.quality-section .quality-main-card-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}
.quality-section .quality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (min-width: 768px) {
  .quality-section .quality-tags {
    justify-content: flex-start;
  }
}
.quality-section .quality-tag {
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.quality-section .quality-features-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .quality-section .quality-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.quality-section .quality-feature-card {
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 0;
  transition: box-shadow 300ms ease;
}
.quality-section .quality-feature-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.quality-section .quality-feature-card-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.quality-section .quality-feature-card-icon-container {
  flex-shrink: 0;
}
.quality-section .quality-feature-card-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 300ms ease;
}
.quality-section
  .quality-feature-card:hover
  .quality-feature-card-icon-wrapper {
  transform: scale(1.1);
}
.quality-section .quality-feature-card-icon {
  height: 28px;
  width: 28px;
  color: #fff;
}
.quality-section .quality-feature-card-text {
  flex: 1;
}
.quality-section .quality-feature-card-title {
  font-size: 20px;
  font-weight: 700;
  /* line-height: 1.2; */
  margin-bottom: 8px;
  text-wrap: balance;
  color: #1f2937;
}
.quality-section .quality-feature-card-description {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}
.quality-section .quality-feature-card-blue {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(6, 182, 212, 0.1) 100%
  );
}
.quality-section .quality-feature-card-icon-blue {
  background-color: #3b82f6;
}
.quality-section .quality-feature-card-purple {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1) 0%,
    rgba(236, 72, 153, 0.1) 100%
  );
}
.quality-section .quality-feature-card-icon-purple {
  background-color: #a855f7;
}
.quality-section .quality-feature-card-orange {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.1) 0%,
    rgba(239, 68, 68, 0.1) 100%
  );
}
.quality-section .quality-feature-card-icon-orange {
  background-color: #f97316;
}
.quality-section .quality-feature-card-green {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1) 0%,
    rgba(16, 185, 129, 0.1) 100%
  );
}
.quality-section .quality-feature-card-icon-green {
  background-color: #22c55e;
}
.quality-section .quality-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .quality-section .quality-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
.quality-section .quality-stat-card {
  background-color: #fff;
  color: #1f2937;
  border-radius: 12px;
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: border-color 300ms ease;
}
.quality-section .quality-stat-card:hover {
  border-color: rgba(251, 191, 36, 0.4);
}
.quality-section .quality-stat-value {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fbbf24;
}
@media (min-width: 768px) {
  .quality-section .quality-stat-value {
    font-size: 48px;
  }
}
.quality-section .quality-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
}
@media (min-width: 768px) {
  .quality-section .quality-stat-label {
    font-size: 14px;
  }
}

/* ####################################################### */
/* END : quality-section */
/* ####################################################### */

/* ####################################################### */
/* START : breadcrumb-section */
/* ####################################################### */

.breadcrumb-section {
  background-color: #ffffffcb;
  border: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 1118px;
  border-radius: 30px;
  margin: 0 auto;
  margin-top: 32px;
  position: sticky;
  position: -webkit-sticky;
  top: 32px;
  z-index: 10;
  backdrop-filter: blur(10px);
}

@media screen and (max-width: 1199px) {
  .breadcrumb-section {
    margin-inline: 16px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb-section {
    margin-inline: 10px;
    border-radius: 10px;
  }
}

.breadcrumb-section .breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) {
  .breadcrumb-section .breadcrumb-container {
    padding: 0 32px;
  }
}
.breadcrumb-section .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 14px;
  padding-top: 62px;
}

@media screen and (max-width: 767px) {
  .breadcrumb-section .breadcrumb-nav {
    padding-top: 42px;
  }
}

.breadcrumb-section .breadcrumb-link {
  color: #0e78ca;
  display: flex;
  align-items: center;
  transition: color 300ms ease;
  text-decoration: none;
}
.breadcrumb-section .breadcrumb-link:hover {
  color: #f9862d;
}
.breadcrumb-section .breadcrumb-home-icon {
  height: 16px;
  width: 16px;
}
.breadcrumb-section .breadcrumb-separator {
  height: 14px;
  width: 14px;
  color: #6b7280;
}
.breadcrumb-section .breadcrumb-current {
  color: #1f2937;
  font-weight: 500;
}

/* ####################################################### */
/* END : breadcrumb-section */
/* ####################################################### */

/* ####################################################### */
/* START: article hero */
/* ####################################################### */

.article-hero {
  margin-top: 40px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid #dfdfdf;
  margin-inline: 40px;
}

@media screen and (max-width: 991px) {
  .article-hero {
    margin-top: 16px;
    margin-inline: 16px;
    border-radius: 16px;
  }
}

@media screen and (max-width: 767px) {
  .article-hero {
    margin-top: 16px;
    margin-inline: 16px;
    border-radius: 10px;
  }
}
.article-hero .hero-section {
  position: relative;
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    rgba(219, 234, 254, 0.3) 50%,
    #f8fafc 100%
  );
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}
.article-hero .hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(128, 128, 128, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(128, 128, 128, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  transform: scale(1.01);
}
.article-hero .hero-container {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 767px) {
  .article-hero .hero-container {
    padding: 0 10px;
  }
}
.article-hero .hero-content-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  padding: 10px 0;
}
@media (min-width: 1024px) {
  .article-hero .hero-content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .article-hero .hero-content-grid {
    padding: 40px 0;
  }
}
.article-hero .hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .article-hero .hero-text-content {
    gap: 12px;
  }
}
.article-hero .hero-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  text-wrap: balance;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .article-hero .hero-title {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .article-hero .hero-title {
    font-size: 60px;
  }
}
.article-hero .hero-description {
  font-size: 16px;
  color: #6b7280;
  text-wrap: pretty;
  line-height: 1.7;
  max-width: 768px;
}
@media (min-width: 768px) {
  .article-hero .hero-description {
    font-size: 20px;
  }
}
.article-hero .hero-image-container {
  position: relative;
}
.article-hero .hero-image-glow {
  position: absolute;
  inset: -16px;
  background: linear-gradient(
    to right,
    rgba(59, 130, 246, 0.2),
    rgba(251, 191, 36, 0.2)
  );
  filter: blur(32px);
  opacity: 0.3;
  border-radius: 24px;
}
.article-hero .hero-image {
  position: relative;
  border-radius: 16px;
  width: 100%;
  height: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e2e8f0;
  max-height: 300px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .article-hero .hero-image {
    border-radius: 8px;
  }
}

/* ####################################################### */
/* END : article hero */
/* ####################################################### */

/* ####################################################### */
/* START : Guide */
/* ####################################################### */

.guide-section-wrapper .guide-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) {
  .guide-section-wrapper .guide-container {
    padding: 0 32px;
  }
}
.guide-section-wrapper .guide-layout {
  display: grid;
  gap: 48px;
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .guide-section-wrapper .guide-layout {
    grid-template-columns: 1fr 340px;
  }
}
.guide-section-wrapper .guide-main-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.guide-section-wrapper .guide-sections {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.guide-section-wrapper .guide-section {
  scroll-margin-top: 32px;
}
.guide-section-wrapper .guide-section-title {
  font-size: 30px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}
@media (min-width: 768px) {
  .guide-section-wrapper .guide-section-title {
    font-size: 36px;
  }
}
.guide-section-wrapper .guide-content {
  max-width: none;
}
.guide-section-wrapper .guide-paragraph {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
}
.guide-section-wrapper .guide-benefits-intro {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 16px;
}
.guide-section-wrapper .guide-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #6b7280;
}
.guide-section-wrapper .guide-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.guide-section-wrapper .guide-benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.guide-section-wrapper .guide-checkmark {
  color: #3b82f6;
  font-size: 14px;
  font-weight: 700;
}
.guide-section-wrapper .guide-benefit-text {
  font-size: 16px;
  line-height: 1.7;
}
.guide-section-wrapper .guide-categories-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.guide-section-wrapper .guide-categories-section,
.guide-section-wrapper .guide-classes-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.guide-section-wrapper .guide-subsection-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.guide-section-wrapper .guide-title-decoration {
  display: block;
}
.guide-section-wrapper .guide-primary-line {
  height: 2px;
  width: 48px;
  background-color: #3b82f6;
  border-radius: 1px;
}
.guide-section-wrapper .guide-accent-line {
  height: 2px;
  width: 48px;
  background-color: #fbbf24;
  border-radius: 1px;
}
.guide-section-wrapper .guide-categories-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.guide-section-wrapper .guide-category-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
}
.guide-section-wrapper .guide-category-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.guide-section-wrapper .guide-category-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.guide-section-wrapper .guide-primary-number {
  background-color: #3b82f6;
}
.guide-section-wrapper .guide-category-details {
  flex: 1;
}
.guide-section-wrapper .guide-category-name {
  color: #1f2937;
  font-size: 16px;
}
.guide-section-wrapper .guide-category-description {
  color: #6b7280;
  margin-top: 4px;
  font-size: 16px;
}
.guide-section-wrapper .guide-classes-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) {
  .guide-section-wrapper .guide-classes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.guide-section-wrapper .guide-class-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
}
.guide-section-wrapper .guide-class-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.guide-section-wrapper .guide-class-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.guide-section-wrapper .guide-accent-number {
  background-color: #fbbf24;
}
.guide-section-wrapper .guide-class-name {
  color: #1f2937;
  font-size: 16px;
}
.guide-section-wrapper .guide-class-description {
  color: #6b7280;
  margin-top: 4px;
  font-size: 14px;
}
.guide-section-wrapper .guide-steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.guide-section-wrapper .guide-step-card {
  display: flex;
  gap: 20px;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow 300ms ease;
}
.guide-section-wrapper .guide-step-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.guide-section-wrapper .guide-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6 0%, rgba(59, 130, 246, 0.8) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.guide-section-wrapper .guide-step-content {
  flex: 1;
}
.guide-section-wrapper .guide-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}
.guide-section-wrapper .guide-step-description {
  color: #6b7280;
  line-height: 1.7;
  font-size: 16px;
}
.guide-section-wrapper .guide-sidebar {
  position: sticky;
  top: 32px;
  align-self: flex-start;
}
@media (min-width: 1024px) {
  .guide-section-wrapper .guide-sidebar {
    position: sticky;
    top: 152px;
  }
}
.guide-section-wrapper .guide-toc-card {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.guide-section-wrapper .guide-toc-header {
  background: linear-gradient(
    to right,
    #3b82f6 0%,
    rgba(59, 130, 246, 0.9) 100%
  );
  color: #fff;
  padding: 16px 24px;
}
.guide-section-wrapper .guide-toc-title {
  font-weight: 700;
  font-size: 18px;
}
.guide-section-wrapper .guide-toc-nav {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overscroll-behavior: contain;
  max-height: calc(100vh - 230px);
  overflow: auto;
}

.guide-section-wrapper .guide-toc-link {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 14px;
  color: #6b7280;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 300ms ease;
}
.guide-section-wrapper .guide-toc-link:hover {
  color: #1f2937;
  background-color: #f8fafc;
}
.guide-section-wrapper .guide-toc-link-active {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ####################################################### */
/* END : Guide */
/* ####################################################### */

/* ####################################################### */
/* START : FAQ */
/* ####################################################### */

.faq-wrapper .faq-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.faq-wrapper .faq-background-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #fff 50%,
    rgba(219, 234, 254, 0.4) 100%
  );
}
.faq-wrapper .faq-blob-primary {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background-color: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}
.faq-wrapper .faq-blob-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 384px;
  height: 384px;
  background-color: rgba(251, 191, 36, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}
.faq-wrapper .faq-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) {
  .faq-wrapper .faq-container {
    padding: 0 32px;
  }
}
.faq-wrapper .faq-content {
  max-width: 768px;
  margin: 0 auto;
}
.faq-wrapper .faq-header {
  text-align: center;
  margin-bottom: 64px;
}
.faq-wrapper .faq-header-decoration {
  display: inline-block;
  margin-bottom: 16px;
}
.faq-wrapper .faq-header-line {
  height: 2px;
  width: 64px;
  background: linear-gradient(to right, #3b82f6, #fbbf24);
  border-radius: 1px;
}
.faq-wrapper .faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .faq-wrapper .faq-title {
    font-size: 48px;
  }
}
.faq-wrapper .faq-subtitle {
  font-size: 18px;
  color: #6b7280;
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .faq-wrapper .faq-subtitle {
    font-size: 20px;
  }
}
.faq-wrapper .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-wrapper .faq-item {
  background-color: #fff;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
}
.faq-wrapper .faq-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}
.faq-wrapper .faq-item-open {
  background: linear-gradient(
    to right,
    rgba(59, 130, 246, 0.1),
    rgba(251, 191, 36, 0.05)
  );
  border-color: rgba(59, 130, 246, 0.2);
}
.faq-wrapper .faq-question {
  display: flex;
  flex: 1;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-radius: 8px;
  outline: none;
  text-align: left;
  font-weight: 600;
  color: #1f2937;
  padding: 16px 16px 18px;
  font-size: 18px;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 300ms ease;
  width: 100%;
}
@media (min-width: 768px) {
  .faq-wrapper .faq-question {
    font-size: 20px;
  }
}
.faq-wrapper .faq-question:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}
.faq-wrapper .faq-question-open {
  background: linear-gradient(
    to right,
    rgba(59, 130, 246, 0.1),
    rgba(251, 191, 36, 0.05)
  );
  color: #3b82f6;
}
.faq-wrapper .faq-question-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.faq-wrapper .faq-question-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
  transition: background-color 300ms ease, color 300ms ease;
}
.faq-wrapper .faq-question-number-open {
  background-color: #3b82f6;
  color: #fff;
}
.faq-wrapper .faq-question-text {
  flex: 1;
  padding-right: 16px;
  padding-top: 6px;
}
.faq-wrapper .faq-arrow {
  height: 24px;
  width: 24px;
  color: #6b7280;
  pointer-events: none;
  flex-shrink: 0;
  transition: transform 200ms ease;
  /* transform: translateY(4px); */
  margin: 7px;
}
.faq-wrapper .faq-arrow-open {
  transform: rotate(180deg);
  color: #3b82f6;
}
.faq-wrapper .faq-answer {
  overflow: hidden;
  font-size: 14px;
  padding: 0;
  height: 0;
  transition: height 0.3s ease;
}
.faq-wrapper .faq-answer-open {
  animation: accordion-down 300ms ease-out;
}
@keyframes accordion-down {
  from {
    height: 0;
  }
  to {
    height: 123.75px;
  }
}
@keyframes accordion-up {
  from {
    height: 123.75px;
  }
  to {
    height: 0;
  }
}
.faq-wrapper .faq-answer-wrapper {
  padding: 24px;
  padding-left: 30px;
}
.faq-wrapper .faq-answer-text {
  color: #6b7280;
  line-height: 1.7;
  font-size: 16px;
  border-left: 4px solid rgba(251, 191, 36, 0.3);
  padding-left: 24px;
}
@media (min-width: 768px) {
  .faq-wrapper .faq-answer-text {
    font-size: 18px;
  }
}
.faq-wrapper .faq-cta {
  margin-top: 64px;
  text-align: center;
}
.faq-wrapper .faq-cta-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(
    to right,
    rgba(59, 130, 246, 0.1),
    rgba(251, 191, 36, 0.1)
  );
  border-radius: 9999px;
  border: 2px solid rgba(59, 130, 246, 0.2);
}
.faq-wrapper .faq-cta-text {
  color: #1f2937;
  font-weight: 500;
}
.faq-wrapper .faq-cta-link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 300ms ease;
}
.faq-wrapper .faq-cta-link:hover {
  color: #fbbf24;
}

/* ####################################################### */
/* END : FAQ */
/* ####################################################### */

/* START : about */

.about .about-sup-title {
  font-size: 15px;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 6px;
  background-color: var(--clr-blue-100);
  color: var(--clr-blue-500);
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .about .about-sup-title {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
  }
}

.about .about-title {
  font-size: 42px;
  max-width: 800px;
  margin: 0 auto 32px;
  font-weight: 500;
  margin-top: 16px;
}

@media screen and (max-width: 1439px) {
  .about .about-title {
    font-size: 58px;
  }
}

@media screen and (max-width: 1199px) {
  .about .about-title {
    font-size: 50px;
  }
}

@media screen and (max-width: 991px) {
  .about .about-title {
    font-size: 42px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 479px) {
  .about .about-title {
    font-size: 26px;
  }
}

.about .about-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--clr-blue-500);
}

.about .about-title span img {
  height: 64px;
  width: 64px;
}

@media screen and (max-width: 1439px) {
  .about .about-title span img {
    height: 58px;
    width: 58px;
  }
}

@media screen and (max-width: 1199px) {
  .about .about-title span img {
    height: 50px;
    width: 50px;
  }
}

@media screen and (max-width: 991px) {
  .about .about-title span img {
    height: 42px;
    width: 42px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-title span img {
    height: 36px;
    width: 36px;
  }
}

@media screen and (max-width: 479px) {
  .about .about-title span img {
    height: 30px;
    width: 30px;
  }
}

.about .about-text {
  max-width: 634px;
  text-align: center;
  color: var(--clr-gray-900);
  margin: 0 auto;
  font-size: 18px;
}

.about .about-text + .about-text {
  margin-top: 18px;
}

@media screen and (max-width: 767px) {
  .about .about-text {
    font-size: 16px;
  }
}

.about .about-top {
  margin-bottom: 32px;
}

.about .about-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 80px;
}

@media screen and (max-width: 1199px) {
  .about .about-info {
    margin-top: 32px;
    margin-bottom: 64px;
  }
}

@media screen and (max-width: 991px) {
  .about .about-info {
    margin-top: 24px;
    margin-bottom: 48px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-info {
    margin-top: 20px;
    margin-bottom: 40px;
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about .about-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 190px;
  gap: 8px;
  background-color: var(--clr-white);
  padding: 32px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid var(--clr-teal-600-10);
}

@media screen and (max-width: 767px) {
  .about .about-info-item {
    padding: 24px;
    min-width: 160px;
    border-radius: 10px;
  }
}

.about .about-info-text {
  font-size: 18px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .about .about-info-item img {
    width: 38px;
    height: 38px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-info-text {
    font-size: 16px;
  }
}

.about .about-info-text span {
  display: block;
}

.about .about-income {
  /* padding: 80px; */
  /* background-color: var(--clr-blue-950); */
  color: var(--clr-white);
  border: 1px solid var(--clr-black-05);
  border-radius: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

@media screen and (max-width: 1365px) {
  .about .about-income {
    /* padding: 60px; */
    max-width: calc(100vw - 40px);
    margin: 0 auto;
  }
}

/* @media screen and (max-width: 1199px) {
  .about .about-income {
    padding: 40px;
  }
}

@media screen and (max-width: 991px) {
  .about .about-income {
    padding: 24px;
  }
} */

@media screen and (max-width: 767px) {
  .about .about-income {
    border-radius: 16px;
    /* padding: 20px 16px 10px; */
    max-width: calc(100vw - 20px);
  }
}

.about .about-income .about-income-title {
  font-size: 48px;
  text-align: center;
  letter-spacing: -0.5px;
  line-height: 1.2em;
  margin-bottom: 16px;
}

@media screen and (max-width: 1199px) {
  .about .about-income .about-income-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 991px) {
  .about .about-income .about-income-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-income .about-income-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.about .about-income .about-income-text {
  max-width: 542px;
  text-align: center;
  font-size: 18px;
  margin: 0 auto 64px;
  line-height: 1.3;
}

@media screen and (max-width: 1199px) {
  .about .about-income .about-income-text {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 991px) {
  .about .about-income .about-income-text {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-income .about-income-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.about .about-income .about-income-content {
  max-width: 542px;
  font-size: 18px;
  margin: 0 auto 20px;
  line-height: 1.3;
}

@media screen and (max-width: 1199px) {
  .about .about-income .about-income-content {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 991px) {
  .about .about-income .about-income-content {
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-income .about-income-content {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.about .about-income-represent {
  padding: 8px;
  /* background-color: var(--clr-blue-800); */
  background-color: oklab(0.56 -0.05 -0.14 / 0.9);
  border-radius: 24px;
  display: grid;
  border: 1px solid var(--clr-white-05);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

@media screen and (max-width: 1199px) {
  .about .about-income-represent {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-income-represent {
    border-radius: 10px;
  }
}

.about .about-income-represent .parallax-wrapper {
  border-radius: 18px;
}
.about .about-income-represent .parallax-wrapper img {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .about .about-income-represent .parallax-wrapper {
    border-radius: 12px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-income-represent .parallax-wrapper {
    border-radius: 10px;
  }
}
.about .about-income-represent img {
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 560px;
}

@media screen and (max-width: 1199px) {
  .about .about-income-represent img {
    border-radius: 12px;
    max-height: 480px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-income-represent img {
    max-height: 360px;
  }
}

.about .about-income-represent-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media screen and (max-width: 1199px) {
  .about .about-income-represent-content {
    padding: 24px;
  }
}

@media screen and (max-width: 991px) {
  .about .about-income-represent-content {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-income-represent-content {
    padding: 16px 0 0;
  }
}

.about .about-income-represent-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

@media screen and (max-width: 1199px) {
  .about .about-income-represent-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-income-represent-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

.about .about-income-represent-text {
  font-size: 18px;
  line-height: 1.3;
}

@media screen and (max-width: 1199px) {
  .about .about-income-represent-text {
    font-size: 16px;
  }
}

.about .about-income-grid {
  display: grid;
  text-align: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

@media screen and (max-width: 991px) {
  .about .about-income-grid {
    display: flex;
    overflow: auto;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-income-grid {
    gap: 10px;
  }
}

.about .about-income-grid-item {
  padding: 32px;
  /* background-color: var(--clr-blue-800); */
  background-color: oklab(0.56 -0.05 -0.14 / 0.9);
  border: 1px solid var(--clr-white-05);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media screen and (max-width: 991px) {
  .about .about-income-grid-item {
    padding: 24px;
    border-radius: 20px;
    flex: 0 0 30%;
    width: 30%;
  }
}

@media screen and (max-width: 767px) {
  .about .about-income-grid-item {
    padding: 16px;
    border-radius: 10px;
    flex: 0 0 95%;
    width: 95%;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}

.about .about-income-grid-item img {
  margin-bottom: 16px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .about .about-income-grid-item img {
    margin-bottom: 0;
    height: 38px;
    width: 38px;
  }
}

.about .about-income-grid-item-text {
  font-size: 21px;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .about .about-income-grid-item-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .about .about-income-grid-item-text {
    font-size: 16px;
  }
}

.about .about-income-grid-item.about-income-grid-item-span-2 {
  grid-row: span 2;
}

@media screen and (max-width: 991px) {
  .about .about-income-grid-item.about-income-grid-item-span-2 {
    grid-row: initial;
  }
}
/* END : about */

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

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

.text-right {
  text-align: right;
}
/* Eyecatcher nur fÃ¼r die 7 Service-Bilder (Container, nicht das img) */
.feature-image.feature-eyecatcher {
  transform: translateY(14px) scale(0.985);
  opacity: 0.001; /* statt 0, damit es nicht â€œpopptâ€ */
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), opacity 700ms ease;
  will-change: transform, opacity;
}

/* Wenn im Viewport */
/* Container Fade/Move bleibt */
.feature-image.feature-eyecatcher {
  transform: translateY(14px);
  opacity: 0.001;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), opacity 700ms ease;
  will-change: transform, opacity;
}

.feature-image.feature-eyecatcher.is-inview {
  transform: translateY(0);
  opacity: 1;
}

/* >>> Der eigentliche Zoom auf dem Bild <<< */
.feature-image.feature-eyecatcher .feature-image-main {
  transform: scale(1.12);                 /* Start: reingezoomt */
  transition: transform 900ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.feature-image.feature-eyecatcher.is-inview .feature-image-main {
  transform: scale(1);                    /* Ende: normal */
}

/* Optional: dezenter â€œPremiumâ€-Glow beim Reinkommen */
.feature-image.feature-eyecatcher::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 55%);
  opacity: 0;
  transition: opacity 700ms ease;
}

.feature-image.feature-eyecatcher.is-inview::after {
  opacity: 1;
}

