:root {
  --bg: #f4f8fc;
  --surface: #ffffff;
  --surface-soft: #f0f6fc;
  --primary: #0a4f92;
  --primary-dark: #083a69;
  --text: #14283e;
  --muted: #516479;
  --border: #d7e2ee;
  --shadow: 0 14px 34px rgba(13, 45, 73, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #e7f1fb 0%, var(--bg) 36%, #ffffff 100%);
}

body.auth-locked {
  overflow: hidden;
}

body.auth-locked main,
body.auth-locked [data-site-header],
body.auth-locked [data-site-footer],
body.auth-locked .whatsapp-btn {
  visibility: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
}

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.auth-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 22, 37, 0.76);
  backdrop-filter: blur(12px);
}

.auth-card {
  position: relative;
  width: min(460px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 48px rgba(8, 32, 55, 0.24);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.auth-logo {
  width: 120px;
  height: 56px;
  object-fit: contain;
}

.auth-kicker {
  margin: 0 0 0.2rem;
  color: #5f7690;
  font-size: 0.88rem;
  line-height: 1.3;
}

.auth-brand h1 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.25rem;
}

.auth-copy {
  margin: 0 0 1rem;
}

.auth-form {
  display: grid;
  gap: 0.75rem;
}

.auth-form label {
  font-weight: 600;
  color: #214565;
}

.auth-form input {
  width: 100%;
  border: 1px solid #cfe0ef;
  border-radius: 12px;
  padding: 0.9rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.auth-form input:focus {
  outline: 2px solid rgba(10, 79, 146, 0.15);
  border-color: #7eb0df;
}

.auth-form .btn {
  margin-top: 0.35rem;
}

.auth-error {
  min-height: 1.4rem;
  margin: 0;
  color: #b42318;
  font-weight: 600;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  overflow: visible;
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  margin-left: 0.25rem;
  flex: 1 1 auto;
  justify-content: flex-start;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  flex: 0 0 auto;
}

.language-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #c7daed;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(17, 63, 104, 0.08);
  cursor: pointer;
}

.language-toggle img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.language-toggle:hover {
  background: #f2f8ff;
  border-color: #9fc0df;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.brand-logo-only {
  width: clamp(420px, 30vw, 560px);
  min-width: 420px;
  margin-left: -36px;
}

.brand-logo {
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
  display: block;
  margin: -56px 0 -54px;
}

.brand-text {
  color: var(--primary-dark);
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
}

.desktop-nav li {
  position: relative;
}

.desktop-nav > ul > li {
  display: flex;
  align-items: center;
  min-height: 72px;
}

.desktop-nav > ul > li > a {
  display: inline-block;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  color: #17344f;
  font-weight: 500;
}

.desktop-nav > ul > li > a:hover {
  color: var(--primary);
  background: rgba(15, 82, 146, 0.06);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: -14px;
  width: 260px;
  list-style: none;
  margin: 0;
  padding: 0.7rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: all 0.2s ease;
  z-index: 1005;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.dropdown-menu li + li {
  margin-top: 0.2rem;
}

.dropdown-menu a {
  display: block;
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background: var(--surface-soft);
}

.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu {
  width: min(900px, 84vw);
  left: 50%;
  transform: translate(-50%, 4px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.9rem;
}

.mega-dropdown > .mega-menu {
  display: none;
}

.mega-dropdown:hover > .mega-menu,
.mega-dropdown:focus-within > .mega-menu {
  transform: translate(-50%, 0);
}

.mega-group {
  border: 1px solid #dfebf6;
  border-radius: 10px;
  padding: 0.58rem;
  background: #fbfdff;
}

.mega-title {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #10436d;
}

.mega-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-toggle,
.mobile-nav {
  display: none;
}

main {
  min-height: 100vh;
  padding-top: 72px;
}

.section {
  padding: 3rem 0;
}

.section-tight-top {
  padding-top: 1.1rem;
}

.section-alt {
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7rem;
  color: #12375a;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1.08rem;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(160deg, var(--primary), #1f6bb2);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(160deg, #084a89, #1b5f9e);
}

.btn-secondary {
  color: var(--primary);
  border-color: #abc9e4;
  background: #f8fbff;
}

.btn-whatsapp {
  background: linear-gradient(155deg, #14a551, #0f8b45);
  color: #fff;
}

.btn-whatsapp:hover {
  background: linear-gradient(155deg, #109347, #0d793d);
}

.text-link {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--primary);
  font-weight: 600;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(18, 50, 79, 0.08);
  padding: 1.1rem;
}

.lead-paragraph {
  font-size: clamp(1.04rem, 1.5vw, 1.16rem);
  color: #355471;
  line-height: 1.85;
}

.home-slider {
  position: relative;
}

.home-slider-track {
  position: relative;
  min-height: clamp(470px, 65vh, 720px);
  background: #092b4a;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5, 25, 43, 0.72) 0%, rgba(7, 33, 55, 0.5) 42%, rgba(7, 33, 55, 0.25) 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.slide-content.right {
  justify-content: flex-end;
}

.slide-panel {
  width: min(560px, 100%);
  padding: clamp(1rem, 2.3vw, 2rem);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(6px);
  color: #fff;
}

.slide-panel h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.2;
  color: #fff;
}

.slide-panel p {
  margin: 0 0 1rem;
  color: rgba(237, 246, 255, 0.95);
}

.slider-controls-wrap {
  position: absolute;
  left: 50%;
  width: 100vw;
  top: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
  transform: translateX(-50%);
}

.slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
}

.slider-controls button {
  min-width: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 22, 38, 0.46);
  color: #fff;
  border-radius: 999px;
  width: 58px;
  height: 58px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  pointer-events: auto;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.slider-controls button[data-slider-prev] {
  margin-left: 1rem;
}

.slider-controls button[data-slider-next] {
  margin-right: 1rem;
}

.slider-controls button:hover {
  background: rgba(7, 22, 38, 0.72);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 0.42rem;
  pointer-events: auto;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.44);
}

.slider-dots button.active {
  background: #fff;
}

.section-label {
  margin: 0 0 0.45rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.corporate-intro,
.strong-cta,
.mini-cta-strip {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
}

.corporate-intro {
  border: 1px solid var(--border);
  background: linear-gradient(120deg, #ffffff 0%, #f3f9ff 100%);
  box-shadow: var(--shadow);
}

.expertise-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(13, 51, 83, 0.12);
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid #c8ddef;
  background: linear-gradient(140deg, #eff7ff, #deefff);
  color: #143f66;
  font-weight: 700;
  font-size: 0.78rem;
}

.engineering-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.engineering-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 50, 79, 0.08);
}

.engineering-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.engineering-card .inner {
  padding: 1rem;
}

.product-preview-card {
  border-top: 4px solid #d2e5f7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.why-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 1rem;
  box-shadow: 0 8px 22px rgba(16, 41, 65, 0.06);
}

.why-metric {
  margin: 0;
  color: #0f4f8d;
  font-weight: 800;
  font-size: 1.35rem;
}

.strong-cta {
  border: 1px solid #c8ddef;
  background: linear-gradient(135deg, #0e4c86 0%, #0c3f71 62%, #0a3158 100%);
  box-shadow: 0 18px 36px rgba(10, 49, 88, 0.32);
}

.strong-cta h2,
.strong-cta p {
  color: #eef7ff;
}

.strong-cta .section-label {
  color: #b8d8f5;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  color: #5b748e;
  font-size: 0.92rem;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  color: #8ea7bf;
}

.corporate-detail-grid,
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1rem;
}

.detail-aside {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfdff;
  box-shadow: 0 10px 24px rgba(18, 49, 76, 0.08);
  padding: 1rem;
  align-self: start;
}

.detail-aside ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.inline-cta {
  margin-top: 1rem;
  border-top: 1px solid #d8e5f2;
  padding-top: 1rem;
}

.content-stack {
  display: grid;
  gap: 0.85rem;
}

.content-block {
  border: 1px solid #dee8f3;
  border-radius: 12px;
  background: #fff;
  padding: 0.9rem;
}

.hr-apply-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1rem;
}

.mini-cta-strip {
  border: 1px solid var(--border);
  background: #f8fbff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 48, 75, 0.06);
  padding: 0.9rem;
}

.process-index {
  margin: 0;
  color: #0f4f8d;
  font-weight: 800;
}

.check-list-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.check-list-grid li {
  border: 1px solid #dbe7f2;
  border-radius: 10px;
  background: #fff;
  padding: 0.75rem;
  color: #35506a;
}

.category-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.category-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 46, 73, 0.07);
  padding: 1rem;
}

.category-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.3rem;
}

.brand-index-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.brand-filter-bar {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  border: 1px solid #dbe7f2;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 8px 20px rgba(18, 50, 79, 0.06);
}

.brand-filter-note {
  margin: -0.35rem 0 1rem;
  color: #557089;
  font-size: 0.95rem;
}

.brand-search-field {
  display: grid;
  gap: 0.45rem;
}

.brand-search-field span {
  color: #234868;
  font-weight: 700;
}

.brand-search-field input {
  width: 100%;
  border: 1px solid #bfd4e8;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  background: #fff;
}

.brand-search-field input:focus {
  outline: 2px solid rgba(10, 79, 146, 0.15);
  border-color: #7eb0df;
}

.brand-letter-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.brand-letter-chip {
  min-width: 42px;
  height: 40px;
  padding: 0 0.85rem;
  border: 1px solid #d1e1ef;
  border-radius: 999px;
  background: #fff;
  color: #0f4f8d;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.brand-letter-chip:hover {
  background: #eef6ff;
  border-color: #9fc0df;
}

.brand-letter-chip.active {
  background: linear-gradient(135deg, #0f4f8d 0%, #2c78c0 100%);
  border-color: #0f4f8d;
  color: #fff;
}

.brand-index-header p:last-child {
  max-width: 640px;
  margin: 0;
}

.brand-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.brand-index-group {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(15, 46, 73, 0.07);
  padding: 1rem;
}

.brand-index-letter {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: linear-gradient(145deg, var(--primary), #2d79c1);
  color: #fff;
  font-weight: 700;
}

.brand-index-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 0.55rem;
}

.brand-index-item {
  display: block;
  border: 1px solid #dbe7f2;
  border-radius: 10px;
  background: #fff;
  padding: 0.75rem 0.85rem;
  color: #234868;
  font-weight: 500;
   line-height: 1.5;
   word-break: break-word;
   transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-index-group a.brand-index-item:hover {
  border-color: #9ebfde;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(17, 63, 104, 0.08);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-map-card {
  display: grid;
  gap: 1rem;
}

.contact-map-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.contact-map-header h2 {
  margin: 0 0 0.35rem;
}

.contact-map-lead {
  margin: 0;
  color: #4b6680;
}

.contact-badge {
  white-space: nowrap;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: #eef6ff;
  border: 1px solid #c7dbef;
  color: #0f4f8d;
  font-weight: 700;
}

.contact-address-box {
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
  border: 1px solid #dbe7f2;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.contact-address-line {
  margin: 0;
  color: #234868;
}

.contact-form {
  display: grid;
  gap: 0.52rem;
}

.contact-form label {
  color: #284a68;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #b8cee3;
  border-radius: 10px;
  padding: 0.72rem 0.78rem;
  font: inherit;
  background: #fbfdff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #9dc1e4;
  border-color: #7ca8d4;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
  color: #617890;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.map-placeholder {
  margin-top: 0;
  min-height: 320px;
  border: 1px solid #cfe0ef;
  border-radius: 12px;
  overflow: hidden;
  background: #f7fbff;
  box-shadow: 0 12px 28px rgba(17, 63, 104, 0.08);
}

.map-placeholder iframe,
.map-placeholder {
  width: 100%;
  min-height: 320px;
  height: 100%;
}

.map-placeholder iframe {
  border: 0;
  display: block;
}

.map-note {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid #d7e6f3;
  border-radius: 12px;
  background: #f8fbff;
  color: #234868;
}

.contact-actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-actions .btn {
  flex: 1 1 160px;
  text-align: center;
}

.site-footer {
  margin-top: 2rem;
  background: linear-gradient(180deg, #0e2f4f 0%, #0a2741 100%);
  color: #d5e9fc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 1rem;
  padding: 2.5rem 0;
}

.site-footer h2 {
  margin: 0 0 0.75rem;
  color: #f3f9ff;
  font-size: 1.05rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #bdd4eb;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(216, 227, 239, 0.2);
  padding: 0.95rem 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #abc8e4;
}

.whatsapp-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(145deg, #119d4e, #0f8643);
  box-shadow: 0 12px 28px rgba(15, 134, 67, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 134, 67, 0.4);
}

.page-hero {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, rgba(7, 32, 55, 0.75) 0%, rgba(7, 32, 55, 0.42) 45%, rgba(7, 32, 55, 0.24) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 2.4rem 0;
  color: #fff;
}

.page-hero-content h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.page-hero-content p {
  color: #e3effa;
  max-width: 760px;
}

.active-link {
  color: var(--primary) !important;
}

@media (max-width: 1060px) {
  .mega-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(700px, 86vw);
  }

  .card-grid.four {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    gap: 0.65rem;
  }

  .desktop-nav {
    display: none;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-logo-only {
    width: min(280px, calc(100vw - 120px));
    min-width: 180px;
  }

  .brand-logo {
    height: 84px;
    margin: -14px 0 -12px;
  }

  .nav-actions {
    margin-left: auto;
    flex: 0 0 auto;
    gap: 0.5rem;
  }

  .language-toggle,
  .mobile-toggle {
    height: 42px;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a7c3dd;
    background: #f6fbff;
    color: #164067;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
  }

  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-top: 1px solid transparent;
    background: #fff;
    box-shadow: 0 16px 32px rgba(13, 45, 73, 0.08);
  }

  .mobile-nav.open {
    max-height: calc(100vh - 86px);
    border-top-color: var(--border);
    overflow-y: auto;
  }

  .mobile-nav-inner {
    display: grid;
    gap: 0.5rem;
    padding: 1rem 0 1.25rem;
    width: 100%;
  }

  .mobile-link,
  .mobile-sub-toggle,
  .mobile-submenu a,
  .mobile-cluster-title {
    display: block;
    border: 1px solid #d7e4f1;
    background: #f9fcff;
    border-radius: 8px;
    color: #22486c;
    font-weight: 500;
    padding: 0.58rem 0.68rem;
    text-align: left;
    width: 100%;
    min-height: 44px;
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .mobile-submenu {
    display: none;
    margin-top: 0.35rem;
    padding-left: 0;
    width: 100%;
    padding: 0.35rem 0 0.2rem 0.85rem;
    border-left: 2px solid #d6e6f5;
  }

  .mobile-submenu.open {
    display: grid;
    gap: 0.35rem;
  }

  .mobile-sub-toggle[aria-expanded="true"] {
    background: #eaf4ff;
    border-color: #bed6ec;
    color: #0d4474;
  }

  .mobile-cluster {
    display: grid;
    gap: 0.35rem;
    width: 100%;
    border: 1px solid #d7e4f1;
    border-radius: 8px;
    background: #fff;
    padding: 0.5rem;
    margin-left: 0;
  }

  .mobile-nav a.active-link,
  .mobile-nav button.active-link {
    border-color: #96bbdd;
    background: #edf6ff;
    color: #0c4476;
  }

  .mobile-cluster-title {
    background: #eef6ff;
    border-color: #c8dbee;
    color: #12406d;
    font-weight: 700;
    font-size: 0.98rem;
    padding-left: 0.82rem;
    margin-bottom: 0;
  }

  .mobile-submenu > a:not(.mobile-cluster-title) {
    background: #ffffff;
    border-color: #e0ebf5;
    color: #35506a;
    margin-left: 0;
    font-size: 0.94rem;
  }

  .mobile-cluster a:not(.mobile-cluster-title) {
    background: #ffffff;
    border-color: #e0ebf5;
    color: #35506a;
    font-size: 0.94rem;
    margin-left: 0;
    padding-left: 0.82rem;
  }

  .slide-content {
    align-items: flex-end;
    padding-bottom: 4.2rem;
  }

  .slide-content.right {
    justify-content: flex-start;
  }

  .slide-panel {
    width: 100%;
  }

  .slider-controls-wrap {
    bottom: 0.7rem;
  }

  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .brand-index-grid,
  .engineering-showcase,
  .why-grid,
  .corporate-detail-grid,
  .product-detail-grid,
  .contact-layout,
  .category-layout,
  .check-list-grid,
  .process-grid,
  .footer-grid,
  .hr-apply-wrap {
    grid-template-columns: 1fr;
  }

  .corporate-intro,
  .strong-cta,
  .mini-cta-strip,
  .brand-index-header,
  .contact-map-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .contact-badge {
    white-space: normal;
  }

  .map-placeholder,
  .map-placeholder iframe {
    min-height: 280px;
  }

  .brand-index-group ul {
    grid-template-columns: 1fr;
  }

  .brand-filter-bar {
    padding: 0.85rem;
  }

  .brand-letter-filter {
    gap: 0.45rem;
  }

  .brand-letter-chip {
    flex: 0 0 auto;
    min-width: 40px;
    height: 38px;
    padding: 0 0.75rem;
  }

  .whatsapp-btn {
    min-width: 98px;
    padding: 0.64rem 0.78rem;
    right: 12px;
    bottom: 12px;
  }
}
