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

body {
  font-family: Inter, Arial, sans-serif;
  background: #fff;
}

/* ================= CONTAINER ================= */
.container {
  width: 1280px;
  margin: 0 auto;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 720px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../hero/hero.webp') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.85) 25%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0.15) 60%,
    rgba(255,255,255,0.0) 75%
  );
}

/* ================= HEADER ================= */
.header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 5;
  padding: 28px 0;
}

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

/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-size: 20px;
}

.logo-text span {
  font-size: 12px;
  color: #6b7a90;
}

/* ================= NAV ================= */
.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  color: #1a2b49;
}

/* ================= HERO CONTENT ================= */
.hero-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-content h1 {
  font-size: 54px;
  font-weight: 700;
  color: #1a2b49;
}

.hero-content h1 span {
  color: #2b6cb0;
}

.hero-content p {
  margin-top: 20px;
  color: #4a5a70;
}

.btn-main {
  display: inline-block;
  margin-top: 25px;
  background: #2b6cb0;
  color: #fff;
  padding: 14px 24px;
  border-radius: 6px;
}

/* ================= CARDS ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e6e9ef;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.card-header {
  padding: 14px;
  font-size: 8px;
  font-weight: 800;
}

.card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body p {
  font-size: 12px;
  color: #5c6b7a;
}

.card-body a {
  margin-top: auto;
  font-size: 12px;
  color: #2f6fed;
}

/* ================= VALUE ENGINE ================= */
.value-engine {
  background: #f7f9fc;
  padding: 80px 0 40px;
}

.value-inner {
  display: flex;
  gap: 60px;
}

/* LEFT */
.value-left {
  flex: 1;
}

.value-left h2 {
  font-size: 30px;
}

.value-left h2 span {
  color: #2b6cb0;
  display: block;
}

.value-left .desc {
  margin-top: 16px;
  font-size: 14px;
  color: #5c6b7a;
}

/* FLOW - DOĞRU SİSTEM */
.value-flow {
  flex: 2;
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* TEK ÇİZGİ */
.value-flow::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 2px;
  background: #d9e1ec;
}

/* ITEM */
.flow-item {
  text-align: center;
  width: 160px;
  position: relative;
}

/* DOT */
.flow-item::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #2b6cb0;
  border-radius: 50%;
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
}

/* ICON */
.flow-item .icon {
  width: 72px;
  height: 72px;
  background: #eef3f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.flow-item img {
  width: 30px;
}

/* TEXT */
.flow-item h4 {
  font-size: 11px;
  font-weight: 700;
}

.flow-item p {
  font-size: 11px;
  color: #6b7a90;
}

/* ================= INDUSTRIES ================= */
.value-industries {
  margin-top: 60px;
}

.industries {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e1e6ef;
  padding-top: 20px;
}

.industry {
  flex: 1;
  text-align: center;
  position: relative;
}

.industry img {
  width: 26px;
  margin-bottom: 6px;
}

.industry span {
  font-size: 11px;
}

.industry:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 1px;
  height: 30px;
  background: #e1e6ef;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .container { width: 90%; }
  .cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .cards { grid-template-columns: 1fr; }
}
  
/* ================= INSIGHTS ================= */

/* ================= FOOTER FIX ================= */

.footer {
  background: #f1f5f9;
  padding: 60px 0;
}
.footer {
  margin-top: 20px;
}
/* GRID YAPI */
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

/* BRAND */
footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand img {
  width: 64px;
  height: auto;
}

.footer-brand p {
  font-size: 13px;
  color: #5c6b7a;
  line-height: 1.6;
  max-width: 260px;
}

.footer-brand span {
  font-size: 11px;
  color: #8a97ab;
}

.footer-brand img {
  margin-left: 80px;
}
/* COL */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a2b49;
}

.footer-col a {
  font-size: 12px;
  color: #5c6b7a;
  text-decoration: none;
}

/* SOCIAL */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social h4 {
  font-size: 12px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons div {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.social-icons img {
  margin-left: 40px;
}
}
/* LINE (üst çizgi) */
.footer {
  border-top: 1px solid #e1e6ef;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px; /* kenar boşluğu */
}

.btn-connect {
  background: transparent; /* içi boş */
  color: #2563eb;

  padding: 10px 20px;
  border-radius: 24px;

  border: 2px solid #2563eb; /* ÇERÇEVE */
  
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.25s ease;
}

.btn-connect:hover {
  background: #2563eb;
  color: #fff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px; /* aradaki boşluk */
}

.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.lang img {
  width: 22px;
  height: auto;
  display: block;
}
.industry {
  opacity: 0.7;
  transition: 0.3s;
}

.industry:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef3f9;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.25s;
}

.social-icons img {
  width: 18px;
  height: 18px;
}

.social-icons a:hover {
  background: transparent; /* LinkedIn resmi renk */
}

.legal {
  padding: 80px 0;
  background: #f5f7fb;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;

  background: #ffffff;
  padding: 40px;
  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.legal-card h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.legal-date {
  font-size: 12px;
  color: #94a3b8;
  display: block;
  margin-bottom: 20px;
}

.legal-card h2 {
  margin-top: 30px;
  font-size: 18px;
}

.legal-card p,
.legal-card li {
  color: #5c6b7a;
  line-height: 1.7;
  font-size: 14px;
}

/* =====================================================
   PRIVACY / LEGAL PAGE
   ===================================================== */

.legal-page {
  background: #f5f7fa;
  padding: 105px 0 80px;
  min-height: 100vh;
}

.legal-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.legal-card {
  background: #ffffff;

  border: 1px solid #e2e7ef;
  border-radius: 12px;

  padding: 50px 60px;

  box-shadow:
    0 10px 30px rgba(20, 45, 80, 0.06);
}


/* HEADER */

.legal-header {
  border-bottom: 1px solid #e1e6ef;

  padding-bottom: 25px;

  margin-bottom: 30px;
}

.legal-label {
  display: block;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.8px;

  color: #2b6cb0;

  margin-bottom: 10px;
}

.legal-header h1 {
  margin: 0;

  font-size: 42px;
  line-height: 1.15;

  font-weight: 700;

  color: #1a2b49;
}

.legal-date {
  margin-top: 10px;

  font-size: 12px;

  color: #7a8798;
}


/* BODY */

.legal-card p {

  font-size: 14px;

  line-height: 1.75;

  color: #526176;

  margin: 14px 0;
}

.legal-card strong {
  color: #1a2b49;
}


/* HEADINGS */

.legal-card h2 {

  margin-top: 34px;
  margin-bottom: 10px;

  font-size: 18px;

  line-height: 1.3;

  font-weight: 700;

  color: #1a2b49;
}


/* LIST */

.legal-card ul {

  margin: 12px 0 18px 20px;

  padding: 0;

}

.legal-card li {

  font-size: 14px;

  line-height: 1.7;

  color: #526176;

  margin-bottom: 7px;

}


/* LINKS */

.legal-card a {

  color: #2b6cb0;

  font-weight: 500;

  text-decoration: none;

}

.legal-card a:hover {

  text-decoration: underline;

}


/* =====================================================
   LEGAL PAGE HEADER FIX
   ===================================================== */

.legal-page + .footer {
  margin-top: 0;
}


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

@media (max-width: 900px) {

  .legal-page {
    padding-top: 120px;
  }

  .legal-card {
    padding: 35px 30px;
  }

  .legal-header h1 {
    font-size: 34px;
  }

}


@media (max-width: 600px) {

  .legal-page {
    padding: 110px 0 50px;
  }

  .legal-container {
    width: 94%;
  }

  .legal-card {
    padding: 28px 22px;
    border-radius: 8px;
  }

  .legal-header h1 {
    font-size: 30px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 13px;
  }

}

/* =========================================================
   ABOUT US PAGE
   Recarbeng Engineering Intelligence
========================================================= */


/* =========================================================
   GLOBAL ABOUT PAGE
========================================================= */

.about-page {
  background: #ffffff;
  color: #1a2b49;
}


/* =========================================================
   ABOUT HERO
========================================================= */

/* =========================================================
   ABOUT US HERO
========================================================= */

.about-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;

  display: flex;
  align-items: center;

  background: #f5f7fa;
}


/* ================= HERO IMAGE ================= */

.about-hero-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  display: block;

  z-index: 0;

  opacity: 0.82;
}


/* ================= FADE / TRANSPARENCY ================= */

.about-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.92) 18%,
    rgba(255,255,255,0.72) 32%,
    rgba(255,255,255,0.38) 48%,
    rgba(255,255,255,0.10) 65%,
    rgba(255,255,255,0.00) 82%
  );

  z-index: 1;
}


/* ================= CONTENT ================= */

.about-hero-content {
  position: relative;
  z-index: 2;

  width: 1280px;
  max-width: 90%;

  margin: 0 auto;

  padding-top: 20px;
}


/* ================= LABEL ================= */

.about-hero-label {
  display: block;

  margin-bottom: 16px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;

  color: #2b6cb0;
}


/* ================= TITLE ================= */

.about-hero-content h1 {
  margin: 0;

  max-width: 650px;

  font-size: 46px;
  line-height: 1.15;

  font-weight: 700;

  color: #1a2b49;
}

.about-hero-content h1 span {
  color: #2b6cb0;
}


/* ================= DESCRIPTION ================= */

.about-hero-content p {
  max-width: 540px;

  margin-top: 22px;

  font-size: 16px;
  line-height: 1.6;

  color: #4a5a70;
}


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

@media (max-width: 1200px) {

  .about-hero {
    height: 460px;
  }

  .about-hero-content h1 {
    font-size: 42px;
  }

}


@media (max-width: 768px) {

  .about-hero {
    height: 520px;
  }

  .about-hero-image {
    object-position: 65% center;
    opacity: 0.70;
  }

  .about-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.80) 45%,
      rgba(255,255,255,0.35) 100%
    );
  }

  .about-hero-content {
    max-width: 90%;
    padding-top: 0;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }

  .about-hero-content p {
    font-size: 14px;
  }

}

/* =========================================================
   GENERAL SECTION
========================================================= */

.about-section {
  padding: 100px 0;
}

.about-section:nth-of-type(even) {
  background: #f7f9fc;
}

.about-two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.about-section-heading h2 {
  margin: 0;
  max-width: 560px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.7px;
  color: #1a2b49;
}

.about-section-heading h2 span {
  display: block;
  color: #2b6cb0;
  font-weight: 600;
}

.about-section-content {
  max-width: 650px;
}

.about-section-content p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.75;
  color: #536276;
}

.about-section-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.about-foundation {
  background: #ffffff;
}

.about-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 75px;
}

.about-capability {
  position: relative;
  min-height: 245px;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.about-capability:hover {
  transform: translateY(-4px);
  border-color: #cbd7e6;
  box-shadow: 0 12px 30px rgba(26, 43, 73, 0.07);
}

.about-capability-number {
  display: block;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2b6cb0;
}

.about-capability h3 {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #1a2b49;
}

.about-capability p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #68778b;
}


/* =========================================================
   HOW WE THINK
========================================================= */

.about-thinking {
  background: #f7f9fc;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid #dfe6ee;
  border-bottom: 1px solid #dfe6ee;
}

.about-principle {
  min-height: 125px;
  padding: 30px 24px;
  border-right: 1px solid #dfe6ee;
}

.about-principle:last-child {
  border-right: none;
}

.about-principle strong {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.7px;
  color: #1a2b49;
}

.about-principle span {
  font-size: 13px;
  line-height: 1.5;
  color: #6b7a90;
}


/* =========================================================
   VALUE CREATION
========================================================= */

.about-value {
  background: #ffffff;
}

.about-section-title {
  max-width: 850px;
}

.about-section-title h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.7px;
  color: #1a2b49;
}

.about-section-title h2 span {
  color: #2b6cb0;
}

.about-section-title > p {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: #68778b;
}


/* =========================================================
   VALUE FLOW
========================================================= */

.about-value-flow {
  display: flex;
  align-items: stretch;
  margin-top: 70px;
  padding: 35px 0;
  border-top: 1px solid #e1e7ef;
  border-bottom: 1px solid #e1e7ef;
}

.about-value-step {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0 12px;
}

.about-value-step > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  border: 1px solid #cbd7e6;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: #2b6cb0;
}

.about-value-step h3 {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: #1a2b49;
}

.about-value-step p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: #738196;
}

.about-value-line {
  align-self: center;
  flex: 0 0 35px;
  height: 1px;
  background: #d8e1ec;
  position: relative;
}

.about-value-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2b6cb0;
  transform: translateY(-50%);
}


/* =========================================================
   DIFFERENCE
========================================================= */

.about-difference {
  background: #f7f9fc;
}

.about-compounding {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 70px;
  padding: 30px 24px;
  background: #ffffff;
  border: 1px solid #e0e7ef;
  border-radius: 8px;
}

.about-compounding div {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a2b49;
}

.about-compounding span {
  flex: 0 0 auto;
  color: #2b6cb0;
  font-size: 18px;
}

.about-statement {
  max-width: 800px;
  margin: 45px auto 0;
  text-align: center;
}

.about-statement strong {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: #2b6cb0;
}


/* =========================================================
   ROADMAP
========================================================= */

.about-roadmap {
  background: #ffffff;
}

.about-roadmap-list {
  position: relative;
  margin-top: 70px;
  border-top: 1px solid #dfe6ee;
}

.about-roadmap-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 145px;
  border-bottom: 1px solid #dfe6ee;
}

.about-roadmap-stage {
  display: flex;
  align-items: center;
  padding: 25px;
  background: #f7f9fc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  color: #2b6cb0;
}

.about-roadmap-content {
  padding: 27px 35px;
}

.about-roadmap-period {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 600;
  color: #7a889a;
}

.about-roadmap-content h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: #1a2b49;
}

.about-roadmap-content p {
  max-width: 750px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #68778b;
}


/* =========================================================
   PRINCIPLES FULL
========================================================= */

.about-principles {
  background: #f7f9fc;
}

.about-principles-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 65px;
  background: #dfe6ee;
  border: 1px solid #dfe6ee;
}

.about-principle-card {
  min-height: 145px;
  padding: 28px 30px;
  background: #ffffff;
}

.about-principle-card h3 {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.7px;
  color: #1a2b49;
}

.about-principle-card p {
  max-width: 450px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #6b7a90;
}


/* =========================================================
   OUTCOMES
========================================================= */

.about-outcomes {
  background: #ffffff;
}

.about-outcome-statement {
  margin-top: 70px;
  padding: 50px 30px;
  text-align: center;
  background: #f7f9fc;
  border: 1px solid #e1e7ef;
  border-radius: 8px;
}

.about-outcome-statement > span {
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #6b7a90;
}

.about-outcome-statement h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.45;
  font-weight: 500;
  color: #1a2b49;
}

.about-outcome-statement h3 strong {
  color: #2b6cb0;
  font-weight: 700;
}


/* =========================================================
   CLOSING
========================================================= */

.about-closing {
  position: relative;
  padding: 110px 0 120px;
  background:
    linear-gradient(
      135deg,
      #172b49 0%,
      #1e3b61 55%,
      #214d78 100%
    );
  color: #ffffff;
  overflow: hidden;
}

.about-closing::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -300px;
  bottom: -350px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.about-closing .container {
  position: relative;
  z-index: 2;
}

.about-closing .about-label {
  color: rgba(255,255,255,0.62);
}

.about-closing h2 {
  max-width: 900px;
  margin: 0;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -1px;
  font-weight: 700;
}

.about-closing h2 span {
  display: block;
  color: #75aee8;
}

.about-closing > .container > p {
  max-width: 720px;
  margin: 25px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

.about-closing-statements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 65px;
  padding-top: 35px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.about-closing-statements > div {
  padding-right: 25px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.about-closing-statements > div:last-child {
  border-right: none;
}

.about-closing-statements strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: #ffffff;
}

.about-closing-statements span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
}

.about-closing .btn-main {
  margin-top: 45px;
  background: #ffffff;
  color: #1a2b49;
}

.about-closing .btn-main:hover {
  background: #edf3fa;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1200px) {

  .about-hero {
    padding: 150px 0 90px;
  }

  .about-hero h1 {
    font-size: 50px;
  }

  .about-two-column {
    gap: 55px;
  }

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

  .about-value-flow {
    flex-wrap: wrap;
    gap: 30px 0;
  }

  .about-value-step {
    flex: 1 1 25%;
  }

  .about-value-line {
    display: none;
  }

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

  .about-principle:nth-child(2) {
    border-right: none;
  }

  .about-principle:nth-child(-n+2) {
    border-bottom: 1px solid #dfe6ee;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 768px) {

  .about-hero {
    padding: 130px 0 75px;
  }

  .about-hero h1 {
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -0.8px;
  }

  .about-hero-lead {
    font-size: 17px;
  }

  .about-section {
    padding: 70px 0;
  }

  .about-two-column {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-section-heading h2,
  .about-section-title h2 {
    font-size: 31px;
  }

  .about-capabilities-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .about-capability {
    min-height: auto;
  }

  .about-principles-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .about-principle {
    border-right: none;
    border-bottom: 1px solid #dfe6ee;
  }

  .about-principle:last-child {
    border-bottom: none;
  }

  .about-value-flow {
    display: block;
    margin-top: 45px;
  }

  .about-value-step {
    padding: 25px 15px;
  }

  .about-value-line {
    display: block;
    width: 1px;
    height: 35px;
    margin: 0 auto;
    background: #d8e1ec;
  }

  .about-value-line::after {
    top: auto;
    bottom: -1px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-compounding {
    flex-direction: column;
    gap: 14px;
    margin-top: 45px;
  }

  .about-compounding span {
    transform: rotate(90deg);
  }

  .about-roadmap-list {
    margin-top: 45px;
  }

  .about-roadmap-item {
    grid-template-columns: 1fr;
  }

  .about-roadmap-stage {
    min-height: auto;
    padding: 16px 20px;
  }

  .about-roadmap-content {
    padding: 25px 20px 30px;
  }

  .about-principles-full {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .about-principle-card {
    min-height: auto;
  }

  .about-outcome-statement {
    margin-top: 45px;
    padding: 35px 20px;
  }

  .about-outcome-statement h3 {
    font-size: 21px;
  }

  .about-closing {
    padding: 75px 0 85px;
  }

  .about-closing h2 {
    font-size: 35px;
    letter-spacing: -0.5px;
  }

  .about-closing-statements {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 45px;
  }

  .about-closing-statements > div {
    padding-right: 0;
    padding-bottom: 25px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .about-closing-statements > div:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .about-hero {
    padding-top: 115px;
  }

  .about-hero h1 {
    font-size: 31px;
  }

  .about-hero-lead {
    font-size: 16px;
  }

  .about-section-heading h2,
  .about-section-title h2 {
    font-size: 28px;
  }

  .about-closing h2 {
    font-size: 31px;
  }

}

/* =========================================================
   GLOBAL NAVBAR — SAME ON ALL PAGES
========================================================= */

.header .nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header .nav a {
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #1a2b49;
  text-decoration: none;
  white-space: nowrap;
}

.header .nav a:hover {
  color: #2b6cb0;
}


/* =========================================================
   ABOUT US HERO
========================================================= */

.about-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;

  display: flex;
  align-items: center;

  background: #f5f7fa;
}


/* ================= BACKGROUND IMAGE ================= */

.about-hero-bg {
  position: absolute;
  inset: 0;

  background-image: url("../hero/image-about-hero.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;

  z-index: 0;
}


/* ================= CONTENT ================= */

.about-hero-content {
  position: relative;
  z-index: 2;

  padding-top: 40px;
}


/* ================= LABEL ================= */

.about-hero-label {
  display: block;

  margin-bottom: 16px;

  font-size: 12px;
  line-height: 1;

  font-weight: 700;
  letter-spacing: 1.5px;

  color: #2b6cb0;
}


/* ================= TITLE ================= */

.about-hero-content h1 {
  margin: 0;

  max-width: 760px;

  font-size: 46px;
  line-height: 1.15;

  font-weight: 700;

  color: #1a2b49;
}


.about-hero-content h1 span {
  color: #2b6cb0;
}


/* ================= DESCRIPTION ================= */

.about-hero-content p {
  max-width: 560px;

  margin-top: 22px;

  font-size: 16px;
  line-height: 1.6;

  color: #4a5a70;
}


/* =========================================================
   ABOUT HERO RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

  .about-hero {
    height: 460px;
  }

  .about-hero-content h1 {
    font-size: 42px;
  }

}


@media (max-width: 768px) {

  .about-hero {
    height: 520px;
    align-items: flex-end;
  }

  .about-hero-bg {
    background-position: 65% center;
  }

  .about-hero-content {
    padding-bottom: 50px;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }

  .about-hero-content p {
    font-size: 14px;
  }

}

/* =========================================================
   RECARBENG — CAPABILITIES PAGE
   Capabilities uses the same hero geometry as About Us.
========================================================= */

/* =========================================================
   CAPABILITIES HERO
   SAME VISUAL SYSTEM AS ABOUT US
========================================================= */

.capabilities-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;

  display: flex;
  align-items: center;

  background: #f5f7fa;
}


/* ================= HERO IMAGE ================= */

.capabilities-hero-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  display: block;

  z-index: 0;

  opacity: 0.82;
}


/* ================= FADE / TRANSPARENCY ================= */

.capabilities-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.92) 18%,
    rgba(255,255,255,0.72) 32%,
    rgba(255,255,255,0.38) 48%,
    rgba(255,255,255,0.10) 65%,
    rgba(255,255,255,0.00) 82%
  );

  z-index: 1;
}


/* ================= CONTENT ================= */

.capabilities-hero-content {
  position: relative;
  z-index: 2;

  width: 1280px;
  max-width: 90%;

  margin: 0 auto;

  padding-top: 20px;
}


/* ================= LABEL ================= */

.capabilities-hero-label {
  display: block;

  margin-bottom: 16px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;

  color: #2b6cb0;
}


/* ================= TITLE ================= */

.capabilities-hero-content h1 {
  margin: 0;

  max-width: 650px;

  font-size: 46px;
  line-height: 1.15;

  font-weight: 700;

  color: #1a2b49;
}

.capabilities-hero-content h1 span {
  color: #2b6cb0;
}


/* ================= DESCRIPTION ================= */

.capabilities-hero-content p {
  max-width: 540px;

  margin-top: 22px;

  font-size: 16px;
  line-height: 1.6;

  color: #4a5a70;
}

/* =========================================================
   FIVE-LAYER CAPABILITY ARCHITECTURE
========================================================= */

.capabilities-layer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.capability-architecture-card {
  position: relative;

  min-height: 390px;

  padding: 30px 25px;

  background: #081827;

  border: none;

  box-sizing: border-box;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.capability-architecture-card:hover {
  background: #ced5db;

  transform: translateY(-3px);
}
.capability-card-number {
  display: block;
  margin-bottom: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(88,175,229,0.60);
}

.capability-card-label {
  display: block;
  margin-bottom: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #58afe5;
}

.capability-architecture-card h3 {
  margin: 0 0 14px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 600;
  color: #ffffff;
}

.capability-architecture-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
}

.capability-card-items {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 24px;
}

.capability-card-items span {
  display: block;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 10px;
  line-height: 1.4;
  color: rgba(255,255,255,0.52);
}
.capabilities-foundation {
  background: #F5F6F7;
}
.capability-card-highlight {
  background: linear-gradient(180deg, rgba(74,157,211,0.10), #071827);
  border-top: 2px solid rgba(89,170,220,0.70);
}

.capability-card-highlight h3 { color: #72bbed; }


/* =========================================================
   ENGINEERING CAPABILITIES
========================================================= */

.capabilities-services { background: #F5F6F7; }

.capabilities-section-title {
        padding-top: 35px;
  max-width: 850px;
  margin-bottom: 60px;
}

.capabilities-section-title h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.7px;
  color: #58afe5;
}

.capabilities-section-title h2 span { color: #58afe5; }

.capabilities-section-title p {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: #405568;
}

.capabilities-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.capability-service-card {
  position: relative;
  min-height: 390px;
  padding: 38px;
  background: #071522;
  transition: background 0.25s ease;
}

.capability-service-card:hover { background: #c5cbd1
; }

.capability-service-number {
  display: block;
  margin-bottom: 45px;
  color: #5198c9;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}

.capability-service-card h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
}

.capability-service-card > p {
  max-width: 560px;
  margin: 0 0 25px;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  line-height: 1.7;
}

.capability-service-card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-service-card li {
  position: relative;
  padding-left: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  line-height: 1.5;
}

.capability-service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #55a8dc;
}


/* =========================================================
   DIGITAL ENGINEERING & INTELLIGENCE
========================================================= */

.capabilities-intelligence { background: #F5F6F7;
  padding-top: 35px;
    
}

.capability-intelligence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.capability-intelligence-grid article {
  min-height: 275px;
  padding: 35px;
  background: #081a2a;
}

.capability-intelligence-grid article > span {
  display: block;
  margin-bottom: 45px;
  color: #5da9dc;
  font-size: 11px;
  letter-spacing: 2px;
}

.capability-intelligence-grid h3 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.capability-intelligence-grid p {
  margin: 0;
  color: rgba(255,255,255,0.56);
  font-size: 12px;
  line-height: 1.7;
}


/* =========================================================
   TECHNOLOGY / VALUE / INDUSTRIES / ECOSYSTEM / CLOSING
========================================================= */

.capabilities-technology { background: #F5F6F7; }

.capability-technology-flow,
.capabilities-value-flow {
  display: flex;
  align-items: stretch;
  margin-top: 70px;
}

.technology-flow-step,
.capability-value-step {
  flex: 1;
  min-width: 0;
  padding: 30px 22px;
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.07);
}

.technology-flow-step > span,
.capability-value-step > span {
  display: block;
  margin-bottom: 30px;
  color: #5da9dc;
  font-size: 10px;
  letter-spacing: 2px;
}

.technology-flow-step h3 {
  margin: 0 0 13px;
  color: #071827;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
}

.technology-flow-step p,
.capability-value-step p {
  margin: 0;
  color: #405568;
  font-size: 11px;
  line-height: 1.65;
}

.technology-flow-arrow,
.capability-value-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  color: #5da9dc;
}

.capability-value-step strong {
  display: block;
  margin-bottom: 14px;
  color: #071827;
  font-size: 13px;
  font-weight: 500;
}

.capabilities-industries { background: #050e19;
      padding-top: 35px;
}

  
.capabilities-industries .capabilities-section-heading h2 {
  color: #ffffff;
}

.capabilities-industries .capabilities-section-heading h2 span {
  color: #5da9dc;
}

.capabilities-industries .capabilities-section-content p {
  color: rgba(255,255,255,0.72);
}

.capabilities-industries .capabilities-label {
  color: #5da9dc;
}
.capability-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 65px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.capability-industry-grid article {
  min-height: 210px;
  padding: 32px;
  background: #071623;
}

.capability-industry-grid h3 {
  margin: 0 0 17px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
}

.capability-industry-grid p {
  margin: 0;
  color: rgba(255,255,255,0.53);
  font-size: 12px;
  line-height: 1.7;
}

.capabilities-ecosystem { background: #071523;}

.capabilities-ecosystem .capabilities-section-heading {
  color: #ffffff;
}

.capabilities-ecosystem .capabilities-section-heading * {
  color: #ffffff;
}

.capability-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 65px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.capability-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 65px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.capability-ecosystem-grid > div {
  min-height: 220px;
  padding: 30px 24px;
  background: #081827;
}

.capability-ecosystem-grid strong {
  display: block;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}

.capability-ecosystem-grid span {
  display: block;
  color: rgba(255,255,255,0.50);
  font-size: 11px;
  line-height: 1.7;
}

.capabilities-closing {
  position: relative;
  padding: 110px 0 120px;
  text-align: center;
  background: linear-gradient(135deg,#071a2a 0%,#06111d 55%,#030b14 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #ffffff;
}

.capabilities-closing > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.capabilities-closing h2 {
  max-width: 900px;
  margin: 0;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
  color: #ffffff;
}

.capabilities-closing h2 span { color: #58afe5; }

.capabilities-closing > .container > p {
  max-width: 720px;
  margin: 25px auto 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
}

.capabilities-closing-statements {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  width: 100%;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.capabilities-closing-statements > div {
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.10);
}

.capabilities-closing-statements > div:last-child { border-right: none; }

.capabilities-closing-statements strong {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 1.3px;
  color: #ffffff;
}

.capabilities-closing-statements span {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
}

.capabilities-closing .btn-main { margin-top: 40px; }


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

@media (max-width: 1200px) {
  .capabilities-hero { height: 500px; }
  .capabilities-hero-content { max-width: 90%; }
  .capabilities-layer-grid { grid-template-columns: repeat(3,1fr); }
  .capability-intelligence-grid { grid-template-columns: repeat(2,1fr); }
  .capability-ecosystem-grid { grid-template-columns: repeat(3,1fr); }
  .capabilities-closing-statements { grid-template-columns: repeat(2,1fr); }
  .capabilities-closing-statements > div:nth-child(2) { border-right: none; }
}

@media (max-width: 900px) {
  .capabilities-two-column { grid-template-columns: 1fr; gap: 40px; }
  .capabilities-service-grid { grid-template-columns: 1fr; }
  .capability-industry-grid { grid-template-columns: repeat(2,1fr); }
  .capability-technology-flow,
  .capabilities-value-flow { flex-wrap: wrap; }
  .technology-flow-arrow,
  .capability-value-arrow { display: none; }
  .technology-flow-step,
  .capability-value-step { flex: 1 1 30%; }
}

@media (max-width: 768px) {
  .capabilities-hero { height: 500px; }
  .capabilities-hero-image { object-position: center center; opacity: 0.82; }
  .capabilities-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0.98) 0%,
      rgba(255,255,255,0.88) 24%,
      rgba(255,255,255,0.55) 48%,
      rgba(255,255,255,0.12) 72%,
      rgba(255,255,255,0.00) 90%
    );
  }
  .capabilities-hero-content { max-width: 90%; padding-top: 20px; }
  .capabilities-hero-content h1 { font-size: 34px; line-height: 1.12; color: #1a2b49; }
  .capabilities-hero-content p { font-size: 14px; color: #4a5a70; }
  .capabilities-section { padding: 70px 0; }
  .capabilities-two-column { gap: 35px; }
  .capabilities-layer-grid,
  .capability-intelligence-grid,
  .capability-ecosystem-grid,
  .capability-industry-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .capability-service-card ul { grid-template-columns: 1fr; }
  .capability-technology-flow,
  .capabilities-value-flow { display: block; margin-top: 45px; }
  .technology-flow-step,
  .capability-value-step { width: 100%; margin-bottom: 1px; }
  .capabilities-closing { padding: 75px 0 85px; }
  .capabilities-closing h2 { font-size: 35px; }
  .capabilities-closing-statements { grid-template-columns: 1fr; margin-top: 45px; }
  .capabilities-closing-statements > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .capabilities-closing-statements > div:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .capabilities-hero { height: 520px; }
  .capabilities-hero-content h1 { font-size: 31px; }
  .capabilities-hero-label { font-size: 11px; }
  .capabilities-section-heading h2,
  .capabilities-section-title h2 { font-size: 28px; }
  .capabilities-closing h2 { font-size: 31px; }
}

.capabilities-foundation {
  background: #071321;
}

.capabilities-ecosystem .capabilities-section-title .capabilities-label {
  color: #ffffff !important;
}

footer a,
footer span {
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   FOOTER — NON-CLICKABLE RESOURCE ITEMS
========================================================= */

.footer-col span {
  font-size: 12px;
  color: #5c6b7a;
  text-decoration: none;
  font-family: inherit;
  font-weight: 400;
  line-height: normal;
}
/* Legal page frame position */
.legal-container {
  padding-top: 30px;
}
/* PRIVACY PAGE — FRAME POSITION */
main.legal-page > .legal-container > .legal-card {
  position: relative !important;
  top: 50px !important;
}

.legal-card {
  margin-top: 105px;
}
/* =========================================================
   MOBILE V2 — NAVBAR & FOOTER
   Desktop layout remains unchanged.
========================================================= */
.mobile-nav-toggle{display:none;width:42px;height:42px;padding:0;border:1px solid rgba(26,43,73,.18);border-radius:10px;background:rgba(255,255,255,.72);align-items:center;justify-content:center;flex-direction:column;gap:5px;cursor:pointer;-webkit-tap-highlight-color:transparent}
.mobile-nav-toggle span{display:block;width:19px;height:2px;background:#1a2b49;border-radius:2px;transition:transform .2s ease,opacity .2s ease}
.mobile-nav-actions{display:none}
@media (max-width:768px){
.header{padding:16px 0;z-index:1000}.header-inner{position:relative;width:90%}.logo{min-width:0;gap:9px}.logo img{height:38px;width:auto}.logo-text strong{font-size:17px}.logo-text span{font-size:9px;line-height:1.2}.header-right{display:none}.mobile-nav-toggle{display:flex}
.header .nav{display:none;position:absolute;top:calc(100% + 12px);left:0;right:0;z-index:1001;flex-direction:column;align-items:stretch;gap:0;padding:10px 0;background:rgba(255,255,255,.98);border:1px solid #e1e6ef;border-radius:14px;box-shadow:0 16px 40px rgba(20,45,80,.12);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}
.header.mobile-open .nav{display:flex}.header .nav a{display:block;padding:13px 20px;font-size:14px;line-height:1.2}.mobile-nav-actions{display:flex;align-items:center;gap:12px;padding:12px 20px 10px;margin-top:4px;border-top:1px solid #e8edf3}.mobile-nav-actions .btn-connect{display:inline-flex;align-items:center;justify-content:center;padding:9px 16px;font-size:12px;white-space:nowrap}.mobile-nav-actions .lang{display:flex;align-items:center;gap:6px;font-size:12px;color:#1a2b49}.mobile-nav-actions .lang img{width:20px;height:auto}
.header.mobile-open .mobile-nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}.header.mobile-open .mobile-nav-toggle span:nth-child(2){opacity:0}.header.mobile-open .mobile-nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.footer-inner{width:90%;padding:0;grid-template-columns:repeat(2,minmax(0,1fr));gap:36px 24px}.footer-brand img{margin-left:0}.social-icons img{margin-left:0}
}
@media (max-width:480px){.header{padding:14px 0}.logo img{height:34px}.logo-text strong{font-size:15px}.logo-text span{font-size:8px}.mobile-nav-toggle{width:40px;height:40px}.header .nav a{padding:12px 18px}.mobile-nav-actions{padding-left:18px;padding-right:18px;flex-wrap:wrap}.footer-inner{grid-template-columns:1fr;gap:30px}.footer{padding:48px 0}}

/* =========================================================
   HOMEPAGE — INDUSTRY STRIP MOBILE FIX
   No hero or global width changes.
========================================================= */
@media (max-width: 768px) {
  .value-industries .industries {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0;
  }

  .value-industries .industry {
    min-width: 0;
    padding: 12px 6px;
  }

  .value-industries .industry span {
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 9px;
    line-height: 1.25;
  }

  .value-industries .industry::after {
    display: none;
  }
}

/* =========================================================
   HOMEPAGE — MOBILE WIDTH & OVERFLOW FIX
   DO NOT MODIFY DESKTOP
========================================================= */

@media (max-width: 768px) {

  /* -------------------------------------------------------
     1. PAGE WIDTH
  ------------------------------------------------------- */

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }


  /* -------------------------------------------------------
     2. HOMEPAGE SECTIONS MUST USE FULL VIEWPORT
  ------------------------------------------------------- */

  .hero,
  .capabilities,
  .value-engine,
  .footer {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }


  /* -------------------------------------------------------
     3. CONTAINER
     Keep side breathing room, but do NOT make the
     whole page 90% wide.
  ------------------------------------------------------- */

  .hero .container,
  .capabilities .container,
  .value-engine .container,
  .footer .container {
    width: calc(100% - 32px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }


  /* -------------------------------------------------------
     4. HERO
  ------------------------------------------------------- */

  .hero {
    height: auto;
    min-height: 680px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
  }

  .hero-wrap {
    width: 100%;
    height: auto;
    min-height: 680px;
    display: flex;
    align-items: center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-content h1 {
    width: 100%;
    max-width: 100%;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.4px;
    overflow-wrap: break-word;
  }

  .hero-content p {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-content .btn-main {
    max-width: 100%;
    white-space: normal;
  }


  /* -------------------------------------------------------
     5. CAPABILITIES CARDS
  ------------------------------------------------------- */

  .capabilities .cards {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .capabilities .card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .capabilities .card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }


  /* -------------------------------------------------------
     6. OUR VALUE CREATION ENGINE
     
     THIS IS THE IMPORTANT FIX.
     
     Desktop:
     LEFT TEXT | 5 VALUE ITEMS

     Mobile:
     TEXT
     ↓
     ENGINEERING
     ↓
     KNOWLEDGE
     ↓
     DIGITAL & AI
     ↓
     INNOVATION
     ↓
     IMPACT
  ------------------------------------------------------- */

  .value-engine {
    overflow: hidden;
  }

  .value-inner {
    width: calc(100% - 32px);
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 45px;
  }

  .value-left {
    width: 100%;
    max-width: 100%;
  }

  .value-left h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.12;
  }

  .value-left .desc {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.5;
  }

  .value-flow {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .value-flow::before {
    display: none;
  }

  .flow-item {
    width: 100%;
    max-width: 260px;
    min-width: 0;
    text-align: center;
  }

  .flow-item h4 {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .flow-item p {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    overflow-wrap: break-word;
  }


  /* -------------------------------------------------------
     7. TRUSTED BY INDUSTRY LEADERS
  ------------------------------------------------------- */

  .value-industries {
    width: 100%;
    max-width: 100%;
    margin-top: 50px;
  }

  .value-industries .industries {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  .value-industries .industry {
    width: 100%;
    min-width: 0;
    padding: 8px 4px;
    text-align: center;
  }

  .value-industries .industry span {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    font-size: 9px;
    line-height: 1.3;
  }

  .value-industries .industry::after {
    display: none;
  }


  /* -------------------------------------------------------
     8. FOOTER
  ------------------------------------------------------- */

  .footer {
    overflow: hidden;
  }

  .footer-inner {
    width: calc(100% - 32px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 31px;
    line-height: 1.08;
  }

  .hero-content p {
    font-size: 14px;
  }

  .value-left h2 {
    font-size: 28px;
  }

  .flow-item {
    max-width: 240px;
  }

}
