:root {
  --blue-50: #E6F1FB;
  --blue-100: #B5D4F4;
  --blue-200: #85B7EB;
  --blue-400: #378ADD;
  --blue-600: #185FA5;
  --blue-800: #0C447C;
  --blue-900: #042C53;
  --gray-50: #F7F7F5;
  --gray-100: #ECECEC;
  --gray-200: #D4D4D4;
  --gray-400: #888780;
  --gray-600: #5F5E5A;
  --gray-800: #2C2C2A;
  --white: #FFFFFF;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 68px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-600);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue-600); }

.nav-cta {
  background: var(--blue-800) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 4px;
}

.nav-cta:hover { background: var(--blue-600) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
  background: var(--blue-900);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55,138,221,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,138,221,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-bg-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,95,165,0.35) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.hero-bg-accent2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,138,221,0.15) 0%, transparent 70%);
  bottom: 0; left: 10%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--blue-400);
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--blue-400);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--blue-600);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* SECTION COMMON */
section { padding: 100px 5%; }

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gray-800);
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.8;
}

/* ABOUT */
.about { background: var(--gray-50); }

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

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.stat-cell {
  background: var(--white);
  padding: 2rem;
  text-align: center;
}

.stat-cell .stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-800);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}

.stat-cell .stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* APPROACH */
.approach { background: var(--white); }

.approach-inner { max-width: 1200px; margin: 0 auto; }

.approach-header { margin-bottom: 4rem; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
}

.approach-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.approach-card:hover { background: var(--blue-50); }

.approach-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue-100);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.approach-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 0.75rem;
}

.approach-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* SOLUTIONS */
.solutions { background: #f4f7fb; }

.solutions-inner { max-width: 1280px; margin: 0 auto; }

.solutions-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.solutions-header .section-label { color: var(--blue-600); }
.solutions-header .section-title { color: var(--blue-900); }
.solutions-header .section-desc { color: var(--gray-600); }

/* CATEGORY TABS */
.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.18s;
}

.cat-tab:hover { border-color: var(--blue-400); color: var(--blue-600); }

.cat-tab.active {
  background: var(--blue-800);
  border-color: var(--blue-800);
  color: var(--white);
}

.cat-tab .tab-count {
  background: rgba(255,255,255,0.2);
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

.cat-tab:not(.active) .tab-count {
  background: var(--blue-50);
  color: var(--blue-600);
}

/* PRODUCT GRID */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  min-height: 200px;
}

/* PRODUCT CARD */
.prod-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.prod-card:hover {
  box-shadow: 0 8px 32px rgba(12,68,124,0.12);
  transform: translateY(-2px);
}

.prod-card-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: var(--gray-50);
  display: block;
  padding: 16px;
}

.prod-card-img-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #E6F1FB 0%, #f0f6ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-card-img-placeholder svg {
  width: 40px; height: 40px;
  stroke: var(--blue-200);
  fill: none; stroke-width: 1.5;
}

.prod-card-body { padding: 14px 16px 16px; }

.prod-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 6px;
}

.prod-badge.new { background: #E1F5EE; color: #0F6E56; }
.prod-badge.featured { background: var(--blue-50); color: var(--blue-800); }
.prod-badge.sale { background: #FAECE7; color: #993C1D; }

.prod-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
  line-height: 1.35;
}

.prod-brand {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}

.prod-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-800);
}

.prod-price small {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  margin-left: 2px;
}

.prod-enquire {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-600);
  border: 1px solid var(--blue-200);
  padding: 5px 12px;
  border-radius: 3px;
  text-decoration: none;
  background: none;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}

.prod-enquire:hover {
  background: var(--blue-800);
  color: var(--white);
  border-color: var(--blue-800);
}

/* WHY US */
.why { background: var(--gray-50); }

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.why-list {
  list-style: none;
  margin-top: 3rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
  color: var(--gray-800);
}

.why-check {
  width: 20px;
  height: 20px;
  background: var(--blue-800);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.why-feat {
  background: var(--white);
  padding: 2rem;
}

.why-feat-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-50);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.why-feat-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-feat-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.why-feat-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* CAREERS */
.careers { background: var(--white); }

.careers-inner { max-width: 1200px; margin: 0 auto; }

.careers-header { margin-bottom: 4rem; }

.careers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.job-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 4px 24px rgba(24,95,165,0.08);
}

.job-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.job-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-900);
}

.job-dept {
  font-size: 12px;
  background: var(--blue-50);
  color: var(--blue-800);
  padding: 3px 10px;
  border-radius: 2px;
  font-weight: 500;
  white-space: nowrap;
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.job-meta-item {
  font-size: 12px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 4px;
}

.job-meta-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gray-400);
  fill: none;
  stroke-width: 1.5;
}

.btn-apply {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
  border: 1px solid var(--blue-200);
  padding: 8px 20px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-apply:hover {
  background: var(--blue-800);
  color: var(--white);
  border-color: var(--blue-800);
}

.careers-cta {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 8px;
  padding: 2.5rem;
}

.careers-cta h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 1rem;
}

.careers-cta p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.email-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-800);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
}

/* CONTACT */
.contact { background: var(--blue-900); }

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact .section-label { color: var(--blue-200); }
.contact .section-title { color: var(--white); }
.contact .section-desc { color: rgba(255,255,255,0.5); }

.contact-details { margin-top: 2.5rem; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-row-icon {
  width: 36px;
  height: 36px;
  background: rgba(55,138,221,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue-400);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-row-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 3px;
}

.contact-row-value {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

a.contact-row-value:hover { color: var(--blue-400); }

.contact-form-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.form-row { margin-bottom: 1.25rem; }

.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue-400);
}

.form-row select option { background: var(--blue-900); }

.form-row textarea { height: 100px; resize: vertical; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  background: var(--blue-400);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  padding: 14px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.btn-submit:hover { background: var(--blue-600); }

/* FOOTER */
footer {
  background: #021c35;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img { height: 32px; }

.footer-text {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--blue-200); }

/* OFFICES */
.offices { background: var(--white); }

.offices-inner { max-width: 1200px; margin: 0 auto; }

.offices-header { margin-bottom: 4rem; }

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.office-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.office-card:hover {
  background: var(--blue-50);
  border-left-color: var(--blue-600);
  box-shadow: 0 4px 16px rgba(24,95,165,0.1);
  transform: translateY(-2px);
}

.office-country {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 0.5rem;
}

.office-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.office-address {
  display: flex;
  gap: 12px;
  align-items: center;
}

.office-address svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.office-contact {
  display: flex;
  gap: 12px;
  align-items: center;
}

.office-address span {
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.6;
}

.office-contact {
  display: flex;
  gap: 12px;
}

.office-contact svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.office-contact > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.office-contact a {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-800);
  text-decoration: none;
  transition: color 0.2s;
}

.office-contact a:hover {
  color: var(--blue-400);
}

.offices-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 8px;
  overflow: hidden;
}

.footer-support,
.footer-general {
  background: var(--white);
  padding: 2rem;
  border-left: 4px solid var(--blue-600);
}

.footer-general {
  border-left-color: var(--blue-400);
}

.footer-support h4,
.footer-general h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-support a,
.footer-general a {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-800);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-support a:hover,
.footer-general a:hover {
  color: var(--blue-400);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  z-index: 99;
  padding: 1.5rem 5%;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  text-decoration: none;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp 0.7s ease both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid,
  .why-inner,
  .careers-layout,
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .offices-grid { grid-template-columns: 1fr; }
  .offices-footer { grid-template-columns: 1fr; }

  .prod-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .approach-grid { grid-template-columns: 1fr 1fr; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
}

@media (max-width: 560px) {
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .why-feature-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  section { padding: 70px 5%; }
}



/* ── PARTNER BRAND LOGO GRID ─────────────────────────────────────────────── */

#prodGrid {
  display: block !important;
  padding: 0 !important;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  padding-top: 8px;
}

/* ── Standard logo tile ── */
.brand-logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border: 1.5px solid #E8ECF0;
  border-radius: 12px;
  background: #FAFBFC;
  min-height: 110px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.15s;
}

.brand-logo-tile:hover {
  border-color: #CBD5E1;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

/* Default: all logos — contained with padding */
.brand-logo-img {
  width: 100%;
  max-width: 140px;
  height: 60px;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Specific brands: full cover, tile padding removed via parent class */
.brand-logo-tile--cover {
  padding: 0;
}

.brand-logo-img--lg {
  width: 100%;
  height: 110px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
}

.brand-logo-fallback {
  font-size: 12px;
  font-weight: 700;
  color: #64748B;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Placeholder / upload tile ── */
.brand-placeholder-tile {
  border-style: dashed;
  border-color: #CBD5E1;
  background: #F8FAFC;
}

.brand-placeholder-tile:hover {
  border-color: #94A3B8;
  background: #F1F5F9;
  box-shadow: none;
  transform: none;
}

.brand-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  text-align: center;
}

.brand-upload-input {
  display: none;
}

.brand-upload-icon svg {
  width: 22px;
  height: 22px;
  stroke: #94A3B8;
  transition: stroke 0.2s;
}

.brand-placeholder-tile:hover .brand-upload-icon svg {
  stroke: #64748B;
}

.brand-upload-name {
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.brand-placeholder-tile:hover .brand-upload-name {
  color: #475569;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .brand-logo-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 11px;
  }
}

@media (max-width: 560px) {
  .brand-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
  }
  .brand-logo-tile {
    padding: 16px 12px;
    min-height: 90px;
  }
  .brand-logo-tile--cover {
    padding: 0;
  }
  .brand-logo-img--lg {
    height: 90px;
  }
}

/* ── WHY SECTION REDESIGN ────────────────────────────────────────────────── */

.why-inner-new {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ── Counters ── */
.why-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-counter-card {
  background: var(--blue-700, #1a3c6e);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-counter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.why-counter-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.why-counter-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.4;
}

/* ── Value Cards ── */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: #fff;
  border: 1.5px solid #E8ECF0;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.why-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  background: #EFF6FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-600, #2563EB);
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .why-counters {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-inner-new {
    padding: 60px 24px;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .why-counters {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .why-counter-num {
    font-size: 32px;
  }
  .why-cards-grid {
    grid-template-columns: 1fr;
  }
  .why-inner-new {
    padding: 40px 16px;
  }
}
/* ── PARTNERS MARQUEE SECTION ─────────────────────────────────────────────── */

.partners-section {
  background: #f4f7fb;
  padding: 60px 0 50px;
  overflow: hidden;
}

.partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 1.5rem;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f4f7fb, transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f4f7fb, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

/* Forward scroll */
.marquee-track--fwd {
  animation: marquee-fwd 40s linear infinite;
}

/* Reverse scroll */
.marquee-track--rev {
  animation: marquee-rev 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-fwd {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-rev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Marquee card ── */
.marquee-card {
  flex-shrink: 0;
  width: 160px;
  height: 100px;
  border-radius: 14px;
  border: 1.5px solid #E8ECF0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.marquee-card:hover {
  box-shadow: 0 8px 28px rgba(12,68,124,0.1);
  transform: translateY(-3px);
  border-color: #CBD5E1;
}

/* Cover-style logos (JPG partners) — fill tile fully */
.marquee-card--cover {
  padding: 0;
}

.marquee-card--cover .marquee-logo {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  border-radius: 12px;
  display: block;
}

/* Contain-style logos (SVG partners) */
.marquee-card--contain {
  padding: 16px 18px;
}

.marquee-card--contain .marquee-logo {
  width: 100%;
  height: 100%;
  max-height: 48px;
  object-fit: contain;
  object-position: center;
}

.marquee-fallback {
  font-size: 11px;
  font-weight: 700;
  color: #64748B;
  text-align: center;
  padding: 0 8px;
}

@media (max-width: 768px) {
  .marquee-card {
    width: 120px;
    height: 80px;
  }
  .partners-section {
    padding: 60px 0;
  }
}
/* ── Google Directions Button ─────────────────────────────────────────────── */
.office-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--blue-600, #2563eb);
  color: #fff;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.office-directions-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.office-directions-btn:hover {
  background: var(--blue-700, #1d4ed8);
  transform: translateY(-1px);
}