/* ============================================
   Virtual Restart - Compiled Stylesheet
   ============================================ */

/* === CSS Custom Properties === */
:root {
  --text-xss: 10px;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 28px;
  --text-4xl: 32px;
  --text-5xl: 36px;
  --text-6xl: 42px;
  --text-7xl: 48px;
  --text-8xl: 54px;
  --text-9xl: 64px;
  --regular: 300;
  --normal: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --extra-bold: 800;
  --black: 900;
  --secondary-100: #00b6ce;
  --primary-100: #023347;
  --light-300: #f6faff;
  --light-100: #ffff;
  --gray-100: #bdc2c5;
  --gray-200: #e0e1e1;
  --gray-300: #777777;
  --red-100: #d22f27;
}

/* === Reset === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Poppins", serif;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
}

body {
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 7px;
  background-color: var(--gray-200);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-100);
}

/* === Container === */
.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* === Section Context === */
.section__context {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.section__context p {
  font-size: var(--text-base);
  color: var(--secondary-100);
}

.section__context h2 {
  font-size: var(--text-5xl);
  font-weight: var(--semibold);
  color: var(--primary-100);
}

@media screen and (max-width: 768px) {
  .section__context h2 {
    font-size: var(--text-3xl);
  }
}

@media screen and (max-width: 576px) {
  .section__context h2 {
    font-size: var(--text-2xl);
  }
  .section__context p {
    font-size: var(--text-sm);
  }
}

/* === Utility Classes === */
.line-clamp-1 { line-clamp: 1; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { line-clamp: 2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { line-clamp: 3; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.skip-link {
  position: absolute;
  left: -1000px;
  top: 0;
  background: var(--primary-100);
  color: var(--light-100);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* === App Shell === */
.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  border-bottom: none;
}

.site-main {
  flex: 1;
}

/* === Navbar === */
header {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 0;
  box-shadow: none;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  border: none;
  box-shadow: none;
}

.site-nav .nav-brand {
  flex: 1;
}

.site-nav .nav-brand a img {
  width: 96px !important;
}

.site-nav .nav-desktop-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 2;
}

.site-nav .nav-desktop-menu > ul {
  display: flex;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav-desktop-menu > ul li a {
  display: block;
  padding: 8px 0;
  font-weight: var(--medium);
  font-size: 15px;
  color: var(--primary-100);
  transition: color 0.2s ease;
  position: relative;
}

.site-nav .nav-desktop-menu > ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-100);
  transition: width 0.3s ease;
}

.site-nav .nav-desktop-menu > ul li a:hover {
  color: var(--secondary-100);
}

.site-nav .nav-desktop-menu > ul li a:hover::after {
  width: 100%;
}

.site-nav .nav-desktop-menu > ul li a.active {
  color: var(--secondary-100);
  font-weight: var(--semibold);
}

.site-nav .nav-desktop-menu > ul li a.active::after {
  width: 100%;
}

/* Language switch */
.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-desktop-menu .language-switch select {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: var(--medium);
  color: var(--primary-100);
  background: var(--light-100);
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23023347' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.nav-desktop-menu .language-switch select:hover {
  border-color: var(--secondary-100);
  background-color: var(--light-300);
}

.nav-desktop-menu .language-switch select:focus {
  border-color: var(--secondary-100);
  box-shadow: 0 0 0 3px rgba(0, 182, 206, 0.1);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary-100);
  transition: all 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 7px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -7px);
}

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--light-100);
  border-top: 1px solid var(--gray-200);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-mobile-menu.open {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.nav-mobile-menu ul li {
  margin-bottom: 4px;
}

.nav-mobile-menu ul a {
  display: block;
  padding: 14px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 15px;
  font-weight: var(--medium);
}

.nav-mobile-menu ul a:hover {
  background: var(--light-300);
  padding-left: 20px;
}

.nav-mobile-menu ul a.active {
  color: var(--secondary-100);
  font-weight: var(--semibold);
  background: rgba(0, 182, 206, 0.08);
  border-left: 3px solid var(--secondary-100);
}

.nav-mobile-menu .language-switch {
  padding: 20px 16px;
  margin-top: 12px;
  border-top: 1px solid var(--gray-200);
  background: rgba(2, 51, 71, 0.02);
}

.nav-mobile-menu .language-switch select {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: var(--medium);
  color: var(--primary-100);
  background: var(--light-100);
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23023347' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .nav-desktop-menu {
    display: none !important;
  }
  .mobile-toggle {
    display: flex;
  }
}

/* === Footer === */
.site-footer {
  padding-top: 14px;
  padding-bottom: 14px;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-300);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 540px) {
  .footer-container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

.footer-logo {
  width: 108px;
  height: 37px;
}

.footer-copy {
  font-size: var(--text-base);
}

@media screen and (max-width: 540px) {
  .footer-copy {
    font-size: var(--text-sm);
  }
}

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

.footer-pages a {
  font-size: var(--text-base);
  transition: color 0.2s ease;
}

.footer-pages a:hover {
  color: var(--secondary-100);
}

@media screen and (max-width: 540px) {
  .footer-pages a {
    font-size: var(--text-sm);
  }
}

/* === Toast === */
.toast-wrapper {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1100;
}

.toast-wrapper .toast {
  min-width: 240px;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  background: var(--primary-100);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 35px rgba(2, 51, 71, 0.25);
}

.toast-wrapper .toast.success { background: #0f9960; }
.toast-wrapper .toast.error { background: #d22f27; }

.toast-wrapper button {
  border: none;
  background: transparent;
  color: inherit;
  font-size: 1.25rem;
  cursor: pointer;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: var(--medium);
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn.primary {
  background: var(--secondary-100);
  color: #fff;
  border: none;
}

.btn.ghost {
  border: 1px solid var(--secondary-100);
  color: var(--secondary-100);
  background: transparent;
}

.btn-link {
  color: var(--secondary-100);
  font-weight: var(--medium);
}

/* === Sections Common === */
.page-hero, .services-list, .products-list, .company-details, .not-found {
  padding: 4rem 0;
}

/* === Hero (Home) === */
.hero {
  padding: 22px 0;
  margin-bottom: 80px;
}

.hero__content {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero__heading {
  font-size: var(--text-8xl);
  font-weight: var(--semibold);
  color: var(--primary-100);
  line-height: 120%;
}

@media screen and (max-width: 1140px) { .hero__heading { font-size: var(--text-6xl); } }
@media screen and (max-width: 997px) { .hero__heading { font-size: var(--text-5xl); } }
@media screen and (max-width: 768px) { .hero__heading { font-size: var(--text-4xl); } }

.hero__heading .highlighted {
  color: var(--secondary-100);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Hero CTA Box */
.hero-cta-box {
  position: relative;
  z-index: 5;
  max-width: 1080px;
  height: 400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  box-shadow: 0px 1.4px 16px 0px rgba(2, 51, 71, 0.15);
  border-radius: 15px;
  background-color: var(--light-100);
  margin-top: -50px;
  overflow: hidden;
}

.hero-cta-box > div {
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}

.hero-cta-box > div article {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-cta-box > div article p {
  color: var(--secondary-100);
  font-weight: var(--semibold);
  font-size: var(--text-base);
}

.hero-cta-box > div article h4 {
  color: var(--primary-100);
  font-size: var(--text-4xl);
  font-weight: var(--semibold);
}

.hero-cta-box > div article h4 span {
  color: var(--secondary-100);
}

.hero-cta-box > div > img {
  width: 140px;
  align-self: flex-end;
  margin-top: -47px;
}

.hero-box-cta-image {
  object-fit: cover;
  width: 510px;
  height: 396px;
  object-position: center;
  border-radius: 20px 0 0 0;
  margin-top: 47px;
}

@media screen and (max-width: 1040px) { .hero-cta-box > div article h4 { font-size: var(--text-3xl); } }
@media screen and (max-width: 997px) {
  .hero-cta-box > div article p { font-size: var(--text-sm); }
  .hero-cta-box > div article h4 { font-size: var(--text-2xl); }
}

@media screen and (max-width: 887px) {
  .hero-cta-box {
    grid-template-columns: 1fr;
    height: 100%;
    width: 90%;
  }
  .hero-cta-box .hero-box-cta-image {
    margin-top: 0;
    width: 100%;
    border-radius: 20px 20px 0 0;
  }
  .hero-cta-box > div > img {
    margin-top: -30px;
    justify-self: center;
    align-self: center;
    transform: scaleX(-1) rotate(130deg);
  }
}

@media screen and (max-width: 480px) {
  .hero-cta-box > div { padding: 25px; }
}

/* === Why Us === */
.why-us {
  margin-bottom: 80px;
}

.why__us__grid {
  width: 100%;
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why__us__card {
  background-color: var(--light-300);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.why__us__card img {
  width: 90px;
  height: 90px;
  margin-bottom: 16px;
}

.why__us__card p {
  font-size: var(--text-2xl);
  color: var(--primary-100);
  font-weight: var(--semibold);
}

.why__us__card p span {
  color: var(--secondary-100);
}

@media screen and (max-width: 1140px) {
  .why__us__card img { width: 80px; height: 80px; }
  .why__us__card p { font-size: var(--text-xl); }
}

@media screen and (max-width: 887px) {
  .why__us__grid { grid-template-columns: 1fr; }
  .why__us__card img { width: 60px; height: 60px; }
  .why__us__card p { font-size: var(--text-lg); }
}

/* === Believe Section === */
.believe-section {
  margin-bottom: 80px;
}

.believe-section-box {
  background: var(--light-300);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  overflow: hidden;
  max-width: 1208px;
  align-self: center;
  margin: 0 auto;
}

.believe-section-box > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 417px;
}

.believe-section-box > div article {
  padding: 40px;
}

.believe-section-box > div article h4 {
  color: var(--primary-100);
  font-size: var(--text-2xl);
  font-weight: var(--semibold);
  line-height: 28px;
}

.believe-section-box > div article h4 span {
  color: var(--secondary-100);
}

.believe-section-box > div > img {
  width: 139px;
  position: absolute;
  bottom: 20px;
  right: 50px;
}

.believe-section-image {
  margin-top: 47px;
  height: 283px;
  width: 615px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px 0 0 0;
}

@media screen and (max-width: 997px) {
  .believe-section-box > div article { padding: 30px; }
}

@media screen and (max-width: 887px) {
  .believe-section-box {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }
  .believe-section-image {
    margin-top: 0px;
    height: 100%;
    width: 100%;
    border-radius: 20px 20px 0 0;
  }
  .believe-section-box > div > img {
    position: relative;
    margin-left: auto;
    transform: scaleX(-1) rotate(130deg) !important;
  }
}

@media screen and (max-width: 576px) {
  .believe-section-box > div article { padding: 20px; }
}

/* === Mission Section === */
.our-mission-container {
  margin-bottom: 80px;
}

.our-mission-container .section__context {
  gap: 16px;
  align-items: center;
  text-align: center;
}

.item-rows {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}

.item-rows .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.item-rows .item h2 {
  font-weight: var(--bold);
  font-size: var(--text-9xl);
  line-height: 96px;
  color: var(--secondary-100);
}

.item-rows .item p {
  font-weight: var(--medium);
  font-size: var(--text-base);
  line-height: 24px;
  color: var(--primary-100);
}

@media screen and (max-width: 887px) {
  .item-rows { flex-wrap: wrap; }
  .item-rows .item h2 { font-size: var(--text-7xl); line-height: 78px; }
}

/* === CTA Section === */
.cta-section {
  margin-bottom: 80px;
}

.cta-box {
  max-width: 1138px;
  margin: 0 auto;
  background: var(--primary-100);
  color: var(--light-100);
  border-radius: 20px;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.cta-col-1 {
  flex: 1;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-col-1 .section-header { color: var(--secondary-100); }
.cta-col-1 .section-subheader,
.cta-col-1 .section-subheader2 { color: var(--light-100); }
.cta-col-1 .section-subheader span { color: var(--secondary-100); }

.cta-col-2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

@media screen and (max-width: 997px) {
  .cta-box { flex-wrap: wrap; padding: 80px; gap: 50px; }
}

@media screen and (max-width: 887px) {
  .break-1, .break-2, .break-3 { display: none; }
  .cta-box { padding: 40px; }
}

@media screen and (max-width: 768px) {
  .cta-box { padding: 30px; flex-direction: column; gap: 40px; }
  .cta-col-2 { align-self: flex-start; }
}

@media screen and (max-width: 576px) {
  .cta-box { padding: 18px; gap: 20px; }
  .cta-col-1 .section-subheader2 { font-size: var(--text-sm); opacity: 0.8; }
  .cta-col-1 .section-subheader { font-size: var(--text-2xl); }
}

/* === Section Headers (shared) === */
.section-header {
  color: var(--secondary-100);
  font-size: var(--text-base);
  font-weight: var(--semibold);
}

.section-subheader {
  color: var(--primary-100);
  font-size: var(--text-4xl);
  font-weight: var(--semibold);
}

.section-subheader span {
  color: var(--secondary-100);
}

.section-subheader2 {
  color: var(--primary-100);
  font-size: var(--text-base);
}

@media screen and (max-width: 1024px) {
  .section-subheader { font-size: var(--text-3xl); }
}

/* === Service Page === */
.services-page section {
  min-height: calc(100dvh - 200px);
  background: var(--light-300);
  margin-bottom: 120px;
  padding-bottom: 80px;
}

.service-hero {
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 25px;
}

.service-hero-card-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 14px;
}

.service-hero-card {
  background-color: var(--light-100);
  padding: 35px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  min-height: 140px;
  max-width: 320px;
}

.service-hero-card div {
  display: flex;
  gap: 4px;
  color: var(--primary-100);
}

.service-hero-card div h4 {
  font-size: var(--text-base);
  font-weight: var(--semibold);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.service-hero-card p {
  color: var(--primary-100);
  opacity: 0.8;
  font-size: var(--text-sm);
}

.service-hero-img {
  margin-top: 30px;
  height: 411px;
  border-radius: 24px;
}

.service-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.service-section-header {
  font-size: var(--text-7xl);
  line-height: 57px;
  font-weight: var(--semibold);
  color: var(--primary-100);
}

.service-section-header span {
  color: var(--secondary-100);
}

@media screen and (max-width: 1180px) {
  .service-section-header { font-size: var(--text-5xl); line-height: 48px; }
}

@media screen and (max-width: 1040px) {
  .service-section-header { font-size: var(--text-4xl); line-height: 48px; max-width: 500px; }
  .service-hero { grid-template-columns: 1fr; }
}

@media screen and (max-width: 580px) {
  .service-hero-card-rows { grid-template-columns: 1fr; }
}

@media screen and (max-width: 380px) {
  .service-section-header { font-size: var(--text-3xl); line-height: 28px; }
}

/* Service detail sections */
.service-sections {
  margin-bottom: 70px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.service-sections:nth-child(even) { background-color: var(--light-300); }
.service-sections:nth-child(odd) { background-color: var(--light-100); }

.tech-consult-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 80px;
  row-gap: 28px;
  margin-bottom: 80px;
}

.service-section-intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tech-consult-section .section-subheader span { color: var(--secondary-100); }
.tech-consult-section .section-subheader2 { opacity: 0.8; font-weight: var(--normal); }

.tech-consult-section-image {
  border-radius: 10px;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}

.key-benefits-header {
  color: var(--secondary-100);
  font-size: var(--text-2xl);
  font-weight: var(--semibold);
  line-height: 24px;
  margin-bottom: 45px;
}

.key-benefit-row {
  display: flex;
  justify-content: space-between;
  gap: 120px;
}

.key-benefits-card {
  background-color: var(--light-100);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 278px;
}

.key-benefits-card div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.key-benefits-card div h3 {
  color: var(--primary-100);
  font-size: var(--text-base);
  font-weight: var(--semibold);
  line-height: 19px;
}

.key-benefits-card p {
  font-size: var(--text-xs);
  color: var(--primary-100);
}

@media screen and (max-width: 1140px) { .key-benefit-row { gap: 90px; } }
@media screen and (max-width: 1080px) { .key-benefit-row { gap: 60px; } }
@media screen and (max-width: 997px) { .key-benefit-row { gap: 40px; } }
@media screen and (max-width: 887px) { .key-benefit-row { flex-wrap: wrap; } }
@media screen and (max-width: 840px) {
  .tech-consult-section { grid-template-columns: 1fr; }
  .service-section-intro { grid-row: 1; }
}

/* === Products Page === */
.products-page section {
  background-color: var(--light-300);
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 120px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.hero-row-1 {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 10px;
}

.hero-row-1 h3 {
  font-size: var(--text-8xl);
  line-height: 67px;
  font-weight: var(--semibold);
  color: var(--primary-100);
}

.hero-row-1 h3 span { color: var(--secondary-100); }

.product-hero-image {
  border-radius: 10px;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 1080px) { .hero-row-1 h3 { font-size: var(--text-7xl); line-height: 54px; } }
@media screen and (max-width: 997px) { .hero-row-1 h3 { font-size: var(--text-5xl); line-height: 48px; } }
@media screen and (max-width: 768px) { .hero-row-1 { grid-template-columns: 1fr; row-gap: 30px; } }
@media screen and (max-width: 480px) { .hero-row-1 h3 { font-size: var(--text-3xl); line-height: 32px; } }

/* Product item box */
.product-item-box {
  background: var(--light-100);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  overflow: hidden;
  box-shadow: 0px 0px 40px 10px #0b4c8f1a;
  min-height: 443px;
}

.product-item-box > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-item-box > div article {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.product-item-box > div article h4 {
  color: var(--secondary-100);
  font-size: var(--text-4xl);
  font-weight: var(--semibold);
  line-height: 38px;
}

.product-item-box > div article h2 {
  color: var(--primary-100);
  font-size: var(--text-5xl);
  font-weight: var(--semibold);
  line-height: 43px;
}

.product-item-box > div > img {
  width: 150px;
  position: absolute;
  bottom: 8px;
  right: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.product-item-image {
  align-self: self-end;
  height: 396px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px 0 0 0;
}

.product-container figure {
  margin-top: 65px;
  background-color: var(--light-300);
  border-radius: 10px;
  padding: 50px;
}

.product-cards-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: stretch;
  gap: 45px;
}

.product-cards-row-2-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: var(--light-100);
  padding: 45px;
  border-radius: 10px;
  min-height: 300px;
  min-width: 100%;
}

.product-cards-row-2-card h4 {
  color: var(--secondary-100);
  font-size: var(--text-4xl);
  line-height: 48px;
  font-weight: var(--semibold);
}

.product-cards-row-2-card ul {
  list-style-position: inside;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-cards-row-2-card ul li {
  color: var(--primary-100);
  font-size: var(--text-xl);
  line-height: 24px;
  font-weight: var(--medium);
}

.stacks-view {
  color: var(--secondary-100);
  text-align: center;
  margin: 35px 0;
  font-weight: var(--medium);
  font-size: var(--text-3xl);
  line-height: 33px;
}

.stacks-view .product-stack { color: var(--primary-100); }

@media screen and (max-width: 1140px) {
  .product-item-box { grid-template-columns: 1fr; }
  .product-item-image { margin-top: 0px; height: 100%; width: 100%; border-radius: 20px 20px 0 0; }
  .product-item-box > div > img { position: relative; margin: 0 auto; transform: scaleX(-1) rotate(130deg) !important; }
  .product-item-box > div article h4 { font-size: var(--text-3xl); line-height: 28px; }
  .product-item-box > div article h2 { font-size: var(--text-4xl); line-height: 32px; }
  .stacks-view { font-size: var(--text-2xl); line-height: 28px; }
}

@media screen and (max-width: 997px) {
  .product-item-box > div article { padding: 30px; }
  .product-cards-row-2-card { padding: 30px; }
  .product-cards-row-2-card h4 { font-size: var(--text-2xl); line-height: 24px; }
  .product-cards-row-2-card ul li { font-size: var(--text-base); line-height: 18px; }
  .stacks-view { font-size: var(--text-xl); line-height: 20px; }
}

@media screen and (max-width: 887px) {
  .product-item-box > div article h4 { font-size: var(--text-2xl); line-height: 24px; }
  .product-item-box > div article h2 { font-size: var(--text-3xl); line-height: 28px; }
}

@media screen and (max-width: 768px) {
  .product-cards-row-2 { grid-template-columns: 1fr; }
  .product-container figure { padding: 45px 30px; }
}

@media screen and (max-width: 576px) {
  .product-item-box > div article { padding: 20px; }
  .product-item-box > div article h4 { font-size: var(--text-xl); line-height: 19px; }
  .product-item-box > div article h2 { font-size: var(--text-lg); line-height: 24px; }
  .product-container figure { padding: 45px 20px; }
}

/* === Company Page === */
.company-page section {
  margin-bottom: 80px;
}

.hero-container {
  background-color: var(--light-300);
  padding-top: 25px;
}

.hero-section-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  column-gap: 24px;
  row-gap: 40px;
}

.hero-section img.hero-section-image {
  height: 593px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px 0 0 0;
}

.hero-context {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-context h3 {
  font-size: var(--text-7xl);
  font-weight: var(--semibold);
  color: var(--primary-100);
  letter-spacing: 0.4px;
  line-height: 67px;
}

.hero-context h3 span {
  font-weight: var(--bold);
  color: var(--secondary-100);
}

/* Quote */
.hero-quote {
  position: relative;
  box-shadow: 0px 0px 40px 10px #0b4c8f1a;
  background-color: var(--light-100);
  color: var(--primary-100);
  min-height: 120px;
  border-radius: 10px;
  padding: 10px 40px;
  font-weight: var(--medium);
  font-size: var(--text-2xl);
  line-height: 33px;
  font-style: italic;
  text-align: center;
  margin-top: -40px;
  z-index: 99;
}

.hero-quote .quote {
  color: var(--secondary-100);
  font-weight: var(--medium);
  font-size: var(--text-2xl);
}

@media screen and (max-width: 1180px) { .hero-context h3 { font-size: var(--text-5xl); line-height: 50px; } }
@media screen and (max-width: 1140px) { .hero-section img.hero-section-image { height: 411px; } }
@media screen and (max-width: 1024px) { .hero-quote { font-size: var(--text-xl); line-height: 28px; } }
@media screen and (max-width: 997px) { .hero-context h3 { font-size: var(--text-4xl); line-height: 47px; } }

@media screen and (max-width: 887px) {
  .hero-section { grid-template-columns: 1fr; }
  .hero-section-image { width: 90%; margin: 0 auto; border-radius: 10px 10px 0 0; }
  .hero-quote { font-size: var(--text-lg); line-height: 24px; }
}

@media screen and (max-width: 576px) {
  .hero-quote { font-size: var(--text-base); line-height: 19px; }
  .hero-section img.hero-section-image { height: 302px; }
}

/* What makes us different */
.what-makes-us-difference-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 120px;
  row-gap: 40px;
  margin-bottom: 80px;
}

.what-makes-us-difference-section-intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 480px;
  overflow: hidden;
}

.section-col-1-sublist {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
}

.section-col-1-sublist div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-col-1-sublist div h5 {
  color: var(--secondary-100);
  font-weight: var(--semibold);
  font-size: var(--text-xl);
  line-height: 30px;
}

.section-col-1-sublist div p {
  color: var(--primary-100);
  font-weight: var(--normal);
  font-size: var(--text-base);
  line-height: 22px;
}

.what-makes-us-different-section-image {
  height: 451px;
  border-radius: 10px;
  overflow: hidden;
}

.what-makes-us-different-section-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 997px) {
  .what-makes-us-difference-section { grid-template-columns: 1fr; }
}

@media screen and (max-width: 640px) {
  .section-col-1-sublist div h5 { font-size: var(--text-lg); line-height: 24px; }
  .section-col-1-sublist div p { font-size: var(--text-sm); line-height: 19px; }
}

/* Mission and Values */
.mission-and-value-container { background-color: var(--light-300); }

.mission-and-value-rows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(414px, 1fr));
  justify-items: center;
  align-items: center;
  gap: 50px;
  min-height: 405px;
  border-radius: 10px;
  padding: 12px 16px;
}

.mission-and-value-item {
  background-color: var(--light-100);
  border-radius: 10px;
  padding: 14px;
  min-height: 267px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  max-width: 414px;
}

.mission-and-value-item div {
  color: var(--secondary-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-and-value-item div img { width: 34px; height: 34px; }

.mission-and-value-item div span {
  font-size: var(--text-2xl);
  font-weight: var(--semibold);
}

.mission-and-value-item p {
  color: var(--primary-100);
  font-size: var(--text-base);
  font-weight: var(--normal);
  line-height: 19px;
}

@media screen and (max-width: 997px) { .mission-and-value-item { max-width: 100%; } }
@media screen and (max-width: 740px) { .mission-and-value-rows { grid-template-columns: 1fr; } }
@media screen and (max-width: 640px) { .mission-and-value-item div span { font-size: var(--text-xl); } }

/* Our Story */
.our-story-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 80px;
  row-gap: 40px;
  margin-bottom: 50px;
  box-shadow: 0px 0px 40px 10px #0b4c8f1a;
  padding: 60px 50px;
  border-radius: 10px;
  min-height: 448px;
}

.our-story-section-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 523px;
  width: 100%;
}

.our-story-section .section-subheader span { color: var(--secondary-100); }
.our-story-section .section-subheader2 { opacity: 0.8; font-weight: var(--normal); }

.section-col-2-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 332px;
  width: 100%;
}

.section-col-2-items div {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: var(--semibold);
  font-size: var(--text-xl);
  line-height: 30px;
  background-color: var(--light-300);
  min-height: 55px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 1140px) { .our-story-section { column-gap: 40px; padding: 30px 58px; } }
@media screen and (max-width: 1080px) { .our-story-section { flex-direction: column; align-items: flex-start; } }
@media screen and (max-width: 840px) { .our-story-section { padding: 20px 30px; } }

/* Get in touch section */
.section-container {
  background-color: var(--light-100);
  padding: 40px 24px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.section-intro-custom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 550px;
}

.address-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.address-title {
  color: var(--secondary-100);
  display: flex;
  gap: 6px;
}

.address-title h3 {
  font-weight: var(--semibold);
  font-size: var(--text-3xl);
  line-height: 36px;
}

.address-text {
  color: var(--primary-100);
  font-weight: var(--medium);
  font-size: var(--text-base);
  line-height: 24px;
}

@media screen and (max-width: 1040px) {
  .section-container { flex-direction: column; justify-content: flex-start; align-items: flex-start; }
}

/* === Forms === */
.company-contact {
  display: flex;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: #f5f7fb;
}

.company-contact .container {
  max-width: 1173px;
  width: 100%;
}

.inquiry-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.12);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.inquiry-card h3 {
  font-weight: var(--semibold);
  font-size: var(--text-4xl);
  line-height: 48px;
  color: var(--primary-100);
}

.inquiry-card h3 span { color: var(--secondary-100); }
.inquiry-card h3 small { color: var(--red-100); }

.form-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.25rem;
  max-width: 440px;
}

.form-toggle-btn {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 150ms ease, box-shadow 150ms ease;
  outline: none;
  border: 1px solid var(--secondary-100);
  background-color: var(--light-100);
  cursor: pointer;
}

.form-toggle-btn.primary {
  transform: translateY(-1px);
  background-color: var(--secondary-100);
  color: #fff;
  border: none;
}

.forms-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 640px) {
  .inquiry-card { padding: 1.75rem 1.25rem; }
  .form-toggle-btn { font-size: 12px; }
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
}

.enquiry-form .btn {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.option-group {
  border: none;
  padding: 0;
  margin: 0;
}

.option-group legend {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.option-group .option-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.option-group .option-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #1f2937;
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(2, 51, 71, 0.2);
  font: inherit;
  outline: none;
}

.form-field textarea {
  min-height: 140px;
}

.form-status {
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--secondary-100);
}

.error {
  min-height: 1rem;
  font-size: 0.8rem;
  color: var(--red-100);
}

/* === Animations === */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

[data-animate="slide-left"] { transform: translateX(-24px); }
[data-animate="slide-right"] { transform: translateX(24px); }
[data-animate="fade-up"] { transform: translateY(24px); }
[data-animate="fade-down"] { transform: translateY(-24px); }

/* === Not Found === */
.not-found {
  text-align: center;
}

/* === Responsive Container === */
@media (min-width: 640px) { .container { padding-left: 28px; padding-right: 28px; } }
@media (min-width: 768px) { .container { padding-left: 35px; padding-right: 35px; } }
@media (min-width: 1024px) { .container { padding-left: 45px; padding-right: 45px; } }
@media (min-width: 1280px) { .container { padding-left: 55px; padding-right: 55px; } }
@media (min-width: 1440px) { .container { max-width: 1440px; padding-left: 58px; padding-right: 58px; } }
