/* ==========================================================================
   COJ 企跃 — Global Styles
   ========================================================================== */

:root {
  --navy-900: #0f1f4d;
  --navy-800: #14275e;
  --navy: #1b3380;
  --blue: #2447a8;
  --blue-light: #3a5fc0;
  --blue-pale: #eef1fb;
  --blue-pale-2: #e4e9f9;
  --ink: #1a1d29;
  --gray-700: #4a4f5c;
  --gray-500: #6b7280;
  --gray-300: #d6dae3;
  --gray-100: #f5f6fa;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 10px rgba(20, 39, 94, 0.06);
  --shadow-md: 0 8px 30px rgba(20, 39, 94, 0.10);
  --shadow-lg: 0 20px 60px rgba(20, 39, 94, 0.18);
  --container: 1180px;
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0 0 14px;
  font-weight: 400;
  line-height: 1.2;
}

h2 { font-size: 34px; }
h3 { font-size: 20px; }

p { color: var(--gray-700); margin: 0 0 16px; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head p { margin-bottom: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--blue-pale); }

.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-dropdown { position: relative; }
.nav-dropdown-caret {
  width: 15px;
  height: 15px;
  margin-left: 3px;
  vertical-align: -2px;
  transition: transform 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  border-bottom: none;
  font-weight: 500;
  color: var(--ink);
}
.nav-dropdown-menu a:hover { background: var(--blue-pale); color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-cta .btn { padding: 11px 20px; font-size: 14px; }

.language-selector {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 5px 8px 5px 11px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(20, 39, 94, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.language-selector-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
}
.language-selector:hover,
.language-selector:focus-within {
  border-color: var(--blue);
  box-shadow: 0 3px 12px rgba(20, 39, 94, 0.15);
}
.language-selector-label {
  font: 600 12px/1 var(--font);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.language-selector select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 92px;
  padding: 7px 29px 7px 10px;
  border: 0;
  border-left: 1px solid var(--gray-300);
  border-radius: 0;
  background-color: transparent;
  color: var(--navy);
  font: 700 14px/1.2 var(--font);
  cursor: pointer;
}
.language-selector::after {
  content: "";
  position: absolute;
  right: 14px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg) translateY(-2px);
  pointer-events: none;
}
.language-selector select:focus {
  outline: 2px solid transparent;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
}

/* ==========================================================================
   Hero (Home)
   ========================================================================== */

.hero {
  background: linear-gradient(180deg, #f4f6fb 0%, #eef1fb 100%);
  overflow: hidden;
  width: 100%;
}

.hero-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: 650px;
}

.hero-copy {
  flex: 0 0 clamp(460px, 34vw, 560px);
  max-width: none;
  box-sizing: border-box;
  padding: 48px 48px 48px max(32px, calc((100vw - 1180px) / 2 + 32px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-copy h1 {
  font-size: 42px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
html[data-language="zh"] .hero-copy h1 {
  line-height: 1.28;
  letter-spacing: 0.01em;
}

.hero-copy p {
  font-size: 15.5px;
  max-width: 420px;
  margin-bottom: 22px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--gray-500);
}

.hero-media {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  margin: 0;
  padding: 0;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #eef1fb 0%, rgba(238, 241, 251, 0.9) 8%, rgba(238, 241, 251, 0.45) 20%, rgba(238, 241, 251, 0) 42%);
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services { padding: 96px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue-light);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 10px;
}
.service-card p { font-size: 13.5px; color: var(--gray-500); margin: 0; }

/* ==========================================================================
   Industries
   ========================================================================== */

.industries { padding: 84px 0 92px; overflow: hidden; }

.industries-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-left: max(32px, calc((100vw - 1180px) / 2 + 32px));
}

.industries-copy {
  flex: 0 0 300px;
  max-width: 300px;
  box-sizing: border-box;
}
.industries-copy h2 { font-size: 28px; }
.industries-copy p { font-size: 14.5px; }

.industries-grid {
  display: flex;
  gap: 14px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px;
  padding-right: 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
}
.industries-grid::-webkit-scrollbar { height: 6px; }
.industries-grid::-webkit-scrollbar-track { background: transparent; }
.industries-grid::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
.industries-grid::-webkit-scrollbar-thumb:hover { background: var(--blue-light); }

.industry-tile {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 172px;
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
}
.industry-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.industry-tile:hover img { transform: scale(1.06); }
.industry-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,31,77,0) 40%, rgba(10,20,50,0.85) 100%);
}
.industry-tile span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  z-index: 2;
  line-height: 1.3;
}

/* ==========================================================================
   Why Singapore
   ========================================================================== */

.why-sg {
  background: var(--gray-100);
  padding: 90px 0;
}

.why-sg-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}

.why-sg-copy h2 { font-size: 30px; }

.why-sg-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-sg-item { display: flex; flex-direction: column; gap: 14px; }
.why-sg-item .icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-pale-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.why-sg-item .icon-badge svg {
  width: 22px; height: 22px;
}
.why-sg-item h4 { font-family: var(--font); font-size: 14.5px; color: var(--ink); margin: 0; font-weight: 700; }
.why-sg-item p { font-size: 13px; margin: 0; color: var(--gray-500); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  margin-top: 8px;
}

/* ==========================================================================
   About teaser (home) / Journey cards
   ========================================================================== */

.about-teaser { padding: 96px 0 60px; }

.about-teaser-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}

.about-teaser-head p { font-size: 15px; }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.journey-item .icon { width: 30px; height: 30px; color: var(--blue); margin-bottom: 16px; }
.journey-item h4 { font-family: var(--font); font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.journey-item p { font-size: 13.5px; color: var(--gray-500); }

/* ==========================================================================
   Banner strip
   ========================================================================== */

.banner-strip {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 22px 0;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 14px;
}

/* ==========================================================================
   Process
   ========================================================================== */

.process { padding: 90px 0; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-item { display: flex; align-items: flex-start; gap: 18px; position: relative; }
.process-num {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--gray-300);
  line-height: 1;
}
.process-item h4 { font-family: var(--font); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-item p { font-size: 13px; margin: 0; color: var(--gray-500); }
.process-arrow {
  position: absolute;
  right: -22px;
  top: 8px;
  color: var(--blue);
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final-cta {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.final-cta-left {
  background: var(--navy);
  color: var(--white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.final-cta-left .eyebrow { color: #a9bdf5; }
.final-cta-left h2 { color: var(--white); font-size: 28px; margin-bottom: 10px; }
.final-cta-left p { color: #cfd8f2; max-width: 420px; margin-bottom: 20px; }

.final-cta-right {
  background: var(--gray-100);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item .icon {
  width: 56px; height: 56px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-item .icon svg { width: 24px; height: 24px; }
.contact-item .label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contact-item .value { font-size: 22px; font-weight: 700; color: var(--navy); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
}
.site-footer .footer-links { display: flex; gap: 24px; }

/* ==========================================================================
   About Us page specific
   ========================================================================== */

.page-hero {
  background: linear-gradient(180deg, #f4f6fb 0%, #eef1fb 100%);
  overflow: hidden;
  width: 100%;
}
.page-hero-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: 570px;
}
.page-hero-copy {
  flex: 0 0 clamp(460px, 34vw, 560px);
  max-width: none;
  box-sizing: border-box;
  padding: 40px 48px 40px max(32px, calc((100vw - 1180px) / 2 + 32px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.page-hero-copy h1 { font-size: 38px; }
html[data-language="zh"] .page-hero-copy h1 {
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.page-hero-copy .rule {
  width: 56px; height: 3px; background: var(--blue); margin: 6px 0 18px;
}
.page-hero-media {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  margin: 0;
  padding: 0;
}
.page-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #eef1fb 0%, rgba(238, 241, 251, 0.9) 8%, rgba(238, 241, 251, 0.45) 20%, rgba(238, 241, 251, 0) 42%);
  z-index: 1;
  pointer-events: none;
}

.who-we-are { padding: 90px 0; }
.who-we-are-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.who-we-are-copy .tagline {
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
  margin-top: 20px;
}
.who-we-are-copy { max-width: 690px; }
.who-we-are-copy h2 { max-width: 650px; }
.who-we-are-copy > p:not(.tagline) {
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.who-we-are-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.commitment { background: var(--gray-100); padding: 90px 0; }
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.commitment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.commitment-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--blue-pale-2);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.commitment-icon svg { width: 24px; height: 24px; }
.commitment-card h3 { font-family: var(--font); font-size: 16px; font-weight: 700; }
.commitment-card p { font-size: 13.5px; margin: 0; }

.approach { padding: 90px 0; }
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.approach h2 { font-size: 26px; }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--gray-700); }
.check-list .check {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--blue);
}

.partner-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 60px 32px;
}
.partner-cta h2 { color: var(--white); font-size: 32px; max-width: 700px; margin: 0 auto 14px; }
.partner-cta p { color: #cfd8f2; font-size: 16px; max-width: 560px; margin: 0 auto 32px; }
.partner-cta .btn-row { display: flex; gap: 14px; justify-content: center; }

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal-page { max-width: var(--container); margin: 0 auto; padding: 64px 32px 80px; }
.legal-hero { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.legal-hero h1 { font-size: 42px; margin-bottom: 4px; }
.legal-hero p { color: var(--blue); font-size: 20px; margin-bottom: 12px; }
.legal-hero small { color: var(--gray-500); }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: start; }
.legal-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.legal-language { display: inline-block; margin-bottom: 24px; padding: 6px 12px; border-radius: 999px; background: var(--blue-pale); color: var(--blue); font-size: 13px; font-weight: 700; }
.legal-card h2 { font-family: var(--font); font-size: 17px; font-weight: 700; margin: 28px 0 9px; }
.legal-card h2:first-of-type { margin-top: 0; }
.legal-card p { font-size: 14px; line-height: 1.75; }
.legal-card a { color: var(--blue); text-decoration: underline; }
.legal-footer { padding-left: 32px; padding-right: 32px; }

/* ==========================================================================
   Service detail drawer
   ========================================================================== */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 40, 0.45);
  display: none;
  z-index: 1000;
}
.drawer-overlay.open { display: block; }

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 460px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.drawer-overlay.open .drawer-panel { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--gray-100);
}

.drawer-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.drawer-icon svg { width: 20px; height: 20px; }

.drawer-heading { flex: 1; }
.drawer-title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}
.drawer-subtitle {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: var(--gray-500);
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.drawer-close:hover { color: var(--navy); }

.drawer-body {
  padding: 26px 28px 36px;
  display: flex;
  flex-direction: column;
}

.drawer-body .eyebrow { margin-bottom: 10px; }

.drawer-overview {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 24px;
}

.drawer-why {
  background: var(--blue-pale);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 24px;
}
.drawer-why h4 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.drawer-why-text {
  font-size: 14px;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.6;
}

.drawer-note {
  font-size: 13px;
  color: var(--gray-500);
  font-style: italic;
  margin: 0 0 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.drawer-cta { margin-bottom: 18px; }

.drawer-contact {
  text-align: center;
  font-size: 13.5px;
  color: var(--gray-500);
  margin: 0;
}

/* ==========================================================================
   Contact modal (Speak to Our Experts form)
   ========================================================================== */

.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 40, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 24px;
}
.contact-modal-overlay.open { display: flex; }

.contact-modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.contact-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 30px 34px 22px;
}
.contact-modal-header h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}
.contact-modal-header p {
  font-size: 13.5px;
  color: var(--gray-500);
  margin: 0;
}
.contact-modal-close {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--gray-500);
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.contact-modal-close:hover { color: var(--navy); }

.contact-modal-form {
  padding: 26px 34px 34px;
  border-top: 1px solid var(--gray-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 96px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 24px;
}
.form-consent input { margin-top: 3px; flex-shrink: 0; }

.contact-modal-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
}
.contact-modal-form .btn-primary:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-modal-footer {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin: 16px 0 0;
}

.form-success {
  display: none;
  padding: 40px 34px 46px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success .success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.form-success .success-icon svg { width: 24px; height: 24px; }
.form-success h3 { font-family: var(--font); font-size: 19px; font-weight: 700; }
.form-success p { font-size: 14px; margin: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-tile { flex-basis: 160px; }
  .why-sg-panel { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .commitment-grid { grid-template-columns: 1fr; }
  .approach-inner { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; }
  .process-arrow { display: none; }
  .legal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 10px; }
  .why-sg-inner, .about-teaser-head, .who-we-are-inner {
    grid-template-columns: 1fr;
  }
  .hero-inner, .page-hero-inner {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding-left: 0;
  }
  .hero-copy, .page-hero-copy {
    flex: none;
    max-width: none;
    padding: 48px 32px 40px;
    display: block;
  }
  .hero-media, .page-hero-media {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1672 / 941;
  }
  .hero-copy h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .industries-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .industries-copy {
    flex: none;
    max-width: none;
    padding: 0 32px 28px;
  }
  .industries-grid { padding-left: 32px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-tile { flex-basis: 130px; }
  .why-sg-panel, .journey-grid, .process-grid { grid-template-columns: 1fr; }
  .final-cta-right { flex-direction: column; align-items: flex-start; }
  .site-footer { flex-direction: column; gap: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
