:root {
  --bg: #f3f5fb;
  --bg-alt: #ffffff;
  --bg-hero: radial-gradient(circle at top left, #f3f7ff 0, #e4ecff 35%, #ffffff 70%);
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.06);
  --accent-strong: #1d4ed8;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
}

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

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

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

.logo-title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.72rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-toggle,
.mobile-center-brand {
  display: none;
}

.nav-tab {
  background: transparent;
  border: none;
  padding: 0.3rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
}

.nav-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #4fd1c5, #38bdf8);
  transition: width 0.22s ease;
}

.nav-tab:hover {
  color: var(--text);
}

.nav-tab.is-active {
  color: var(--text);
}

.nav-tab.is-active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(56, 189, 248, 0.45);
}

.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.95);
}

/* Hero */

.hero {
  padding: 6.2rem 0 4.8rem;
  background: var(--bg-hero);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--accent-strong);
  margin-bottom: 0.85rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.35rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 32rem;
  margin-bottom: 1.55rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.btn-primary,
.btn-ghost {
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-strong);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.04);
}

.hero-footnote {
  font-size: 0.82rem;
  color: #64748b;
}

.hero-aside {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.12);
  max-width: 360px;
}

.hero-card-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
  margin-bottom: 0.7rem;
}

.hero-card-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

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

.metric {
  padding: 0.7rem 0.8rem;
  border-radius: 0.9rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.metric-value {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--muted);
}

.office-presence {
  margin-top: 4rem;
}

.office-presence-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.office-presence-header h2 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.office-presence-header .eyebrow {
  margin-bottom: 0;
}

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

.office-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 0.8rem 0.8rem 0.9rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.office-card h3 {
  font-size: 1rem;
  margin: 0.1rem 0.2rem 0.55rem;
}

.office-map-wrap {
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid #dbe3ef;
  background: #eef3fb;
}

.office-map {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* Sections */

.section {
  padding: 5rem 0;
}

.tab-section {
  display: none;
}

.tab-section.is-active {
  display: block;
}

.section-alt {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 2.8rem;
  align-items: flex-start;
}

.section h2 {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.section-text {
  color: var(--muted);
  font-size: 0.96rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-lead {
  color: var(--muted);
  font-size: 0.96rem;
  margin-top: 0.5rem;
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.mission-copy h2 {
  margin-bottom: 1rem;
}

.mission-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 0.95rem;
  max-width: 42rem;
}

.mission-highlights {
  border-left: 2px solid #dbe5f5;
  padding-left: 1.25rem;
}

.mission-highlights h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.mission-highlight-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.mission-highlight-item span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent-strong);
  font-weight: 700;
  padding-top: 0.12rem;
}

.mission-highlight-item p {
  font-size: 0.9rem;
  color: #475569;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.mission-card {
  background: #ffffff;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  padding: 1.3rem 1.35rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mission-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.mission-card h3 {
  font-size: 1.08rem;
  margin: 0.6rem 0 0.6rem;
  letter-spacing: -0.02em;
}

.mission-points {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.mission-points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.86rem;
  color: #475569;
}

.mission-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.mission-outcome {
  border-top: 1px solid #e2e8f0;
  padding-top: 0.7rem;
  font-size: 0.82rem;
  color: #334155;
}

.mission-cta {
  margin-top: 1.25rem;
}

/* Value / Features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.11);
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.value-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.value-media {
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: 0.85rem;
  border: 1px solid #dbe5f5;
  margin-bottom: 0.9rem;
  background-color: #f1f5f9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.value-media-integration {
  background-image: url("./pics/value-01-integration.png");
}

.value-media-tailored {
  background-image: url("./pics/value-02-tailored-services.png");
}

.value-media-support {
  background-image: url("./pics/value-03-global-support.png");
}

.value-media-roi {
  background-image: url("./pics/value-04-roi-delivery.png");
}

.value-short {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.value-points {
  list-style: none;
  display: grid;
  gap: 0.36rem;
  margin-bottom: 0.8rem;
}

.value-points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.84rem;
  color: #475569;
}

.value-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.value-outcome {
  font-size: 0.82rem;
  color: #334155;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.7rem;
}

.value-cta,
.clients-cta,
.team-cta {
  margin-top: 1.35rem;
}

/* Services */

#services {
  padding: 5.4rem 0 5.8rem;
}

#services .container {
  max-width: 1360px;
}

#value .container {
  max-width: 1360px;
}

#services .section-header {
  max-width: 58rem;
  margin-bottom: 3rem;
}

#services .section-header h2 {
  font-size: clamp(2rem, 3vw, 2.45rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
}

#services .section-lead {
  font-size: 1rem;
  line-height: 1.75;
}

#services .service-group-text {
  max-width: 64rem;
}

.service-group {
  margin-top: 3rem;
  padding: 1.55rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.95));
}

.service-group-title {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.service-group-text {
  font-size: 0.96rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1rem;
  padding: 1.2rem 1.2rem 1.15rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-media {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 0.72rem;
  border: 1px solid #dbe5f5;
  margin-bottom: 0.8rem;
  display: block;
  background: #f8fafc;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.service-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(56, 189, 248, 0.2));
  border: 1px solid rgba(37, 99, 235, 0.15);
  flex-shrink: 0;
}

.service-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: rgba(37, 99, 235, 0.08);
}

.service-card h4 {
  font-size: 1.01rem;
  line-height: 1.35;
  margin-bottom: 0.45rem;
}

.service-short {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.service-bullets {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.service-bullets li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.84rem;
  color: #475569;
}

.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.57rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.service-outcome {
  font-size: 0.82rem;
  color: #334155;
  padding-top: 0.7rem;
  border-top: 1px solid #e2e8f0;
}

.service-group-cta {
  margin-top: 1.25rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.84rem;
  border-color: rgba(37, 99, 235, 0.3);
}

.service-group-cta:hover {
  background: rgba(37, 99, 235, 0.08);
}

.client-proof {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.client-proof blockquote {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.45;
  color: #1e293b;
  margin-bottom: 1.6rem;
  font-weight: 500;
}

.client-proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.client-proof-metrics div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  padding: 0.95rem 0.7rem;
}

.client-proof-metrics strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.client-proof-metrics span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Contact */

.contact-grid-saas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.contact-panel {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.8rem 1.6rem 1.7rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.contact-panel-copy {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-draft-box {
  text-align: left;
  margin: 0 auto 1rem;
  max-width: 34rem;
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: 1px solid #d7e1f0;
  border-radius: 0.7rem;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-textarea {
  resize: vertical;
  min-height: 116px;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.contact-panel-note {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #94a3b8;
}

.contact-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  margin: 0.75rem 0 0.15rem;
  text-decoration: none;
}

.contact-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  text-decoration: none;
}

.contact-trust-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 0.7rem;
}

.contact-trust-list li {
  position: relative;
  padding-left: 0.8rem;
  font-size: 0.8rem;
  color: #64748b;
}

.contact-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.contact-popup {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: 360px;
  padding: 0.85rem 1rem;
  border-radius: 0.8rem;
  font-size: 0.85rem;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 120;
}

.contact-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-popup.is-success {
  background: linear-gradient(135deg, #0f766e, #0ea5a3);
}

.contact-popup.is-error {
  background: linear-gradient(135deg, #b91c1c, #dc2626);
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.gmail-button {
  margin: 0;
}

/* Team */

.team-subtitle {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.team-values-label {
  margin-top: 0.2rem;
}

.team-values-box {
  width: 100%;
  margin-bottom: 3rem;
}

.team-values-box + .team-subtitle {
  margin-top: 0.6rem;
}

.team-values-box p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.68;
  color: var(--muted);
}

.team-values-keyword {
  color: #60a5fa;
  font-weight: 600;
}

.team-values-bridge {
  margin-top: 0.85rem !important;
}

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

.team-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.5rem 1.6rem;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.11);
}

.team-card img {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 0.9rem;
}

.team-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent-strong);
  margin-bottom: 0.6rem;
}

.team-bio {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

/* Footer */

.footer {
  border-top: 1px solid var(--border);
  padding: 1.1rem 0 1.4rem;
  margin-top: auto;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-brand {
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

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

/* Partners carousel */

.partners-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
  margin-top: 4.5rem;
}

.partners-inner {
  padding: 4.5rem 0 4.8rem;
}

.partners-header {
  margin-bottom: 1.2rem;
  text-align: center;
}

.partners-header .eyebrow {
  margin-bottom: 0;
}

.logo-carousel {
  overflow: hidden;
  position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.3rem;
  background: #ffffff;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
}

.logo-carousel::after {
  right: 0;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: logo-scroll 16s linear infinite;
}

.logo-item img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: none;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-grid,
  .service-grid,
  .mission-pillars,
  .contact-grid-saas,
  .client-proof-metrics,
  .office-grid,
  .team-grid,
  .contact-simple {
    grid-template-columns: minmax(0, 1fr);
  }

  .mission-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
  }

  .mission-highlights {
    border-left: none;
    border-top: 2px solid #dbe5f5;
    padding-left: 0;
    padding-top: 1rem;
  }
}

@media (max-width: 780px) {
  .navbar-inner {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    padding: 1.05rem 0;
    min-height: 78px;
    position: relative;
  }

  .nav-left {
    width: auto;
    justify-content: flex-end;
    gap: 0;
  }

  .nav-left .logo-text {
    display: none;
  }

  .mobile-center-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    text-align: center;
  }

  .mobile-brand-title {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    line-height: 1.05;
  }

  .mobile-brand-sub {
    font-size: 0.64rem;
    color: #94a3b8;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.25;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.22rem;
    width: 42px;
    height: 38px;
    border: 1px solid #dbe5f5;
    border-radius: 0.6rem;
    background: #ffffff;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: #475569;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 0.7rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    z-index: 45;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-tab {
    width: 100%;
    text-align: left;
    padding: 0.5rem 0.6rem;
    border-radius: 0.55rem;
    background: #f8fafc;
    font-size: 0.84rem;
  }

  .nav-tab::after {
    display: none;
  }

  .nav-tab.is-active {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-strong);
  }

  .nav-cta {
    grid-column: auto;
    width: 100%;
    margin-top: 0.15rem;
    text-align: center;
    box-shadow: none;
  }

  .hero {
    padding-top: 3.4rem;
    padding-bottom: 3.3rem;
  }

  .office-presence-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 0.96rem;
    margin-bottom: 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    max-width: none;
    padding: 1.2rem 1.1rem;
  }

  .hero-metrics {
    gap: 0.55rem;
  }

  .metric {
    padding: 0.58rem 0.56rem;
  }

  .office-presence {
    margin-top: 2.3rem;
  }

  .office-map {
    height: 180px;
  }

  .section {
    padding: 3.8rem 0;
  }

  .section-header {
    margin-bottom: 2.2rem;
  }

  .service-group {
    margin-top: 1.7rem;
    padding: 1.05rem;
  }

  .service-card,
  .feature-card,
  .team-card,
  .mission-card,
  .contact-card {
    padding: 1rem;
  }

  .value-media {
    aspect-ratio: 16 / 9;
    margin-bottom: 0.75rem;
  }

  .service-card h4,
  .feature-card h3,
  .team-card h3 {
    font-size: 0.98rem;
  }

  .contact-panel {
    padding: 1.25rem 1rem 1.2rem;
  }

  .contact-popup {
    left: 1rem;
    right: 1rem;
    max-width: none;
    bottom: 0.8rem;
  }

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

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

  .contact-actions .gmail-button {
    margin-top: 0.7rem;
  }

  .client-proof blockquote {
    font-size: 1.05rem;
  }

  .partners-inner {
    padding: 3.2rem 0 3.5rem;
  }

  .logo-track {
    gap: 2.2rem;
  }

  .logo-item img {
    height: 44px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .logo-image img {
    height: 30px;
  }

  .mobile-brand-title {
    font-size: 0.86rem;
  }

  .mobile-brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .hero-copy h1 {
    font-size: 1.82rem;
  }

  .hero-footnote {
    font-size: 0.78rem;
  }

  .office-map {
    height: 160px;
  }

  .service-tag,
  .feature-tag {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }
}

