/* ============================================================
   SAI LANGUAGE SERVICES — PAGE 2 STYLESHEET
   sai-styles-2.css
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --primary:             #83001c;
  --primary-container:   #a9162d;
  --primary-fixed:       #ffdad9;
  --primary-fixed-dim:   #ffb3b3;
  --secondary:           #994346;
  --tertiary:            #00464f;
  --tertiary-container:  #005f6b;
  --surface:             #f8f9ff;
  --surface-low:         #eff4ff;
  --surface-container:   #e6eeff;
  --surface-container-high: #dde9ff;
  --surface-container-highest: #d5e3fd;
  --surface-lowest:      #ffffff;
  --on-surface:          #0d1c2f;
  --on-surface-variant:  #5a4040;
  --on-background:       #0d1c2f;
  --on-primary:          #ffffff;
  --on-tertiary:         #ffffff;
  --outline-variant:     #e2bebd;
  --inverse-surface:     #233144;
  --slate-200:           #e2e8f0;
  --slate-400:           #94a3b8;
  --slate-500:           #64748b;
  --red-800:             #991b1b;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--on-background);
  -webkit-font-smoothing: antialiased;
  moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--primary-container);
  color: var(--primary-fixed);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ============================================================
   UTILITY HELPERS
   ============================================================ */
.text-primary-brand   { color: var(--primary) !important; }
.bg-primary-brand     { background: var(--primary) !important; }
.text-red-brand       { color: var(--red-800); }

/* Upward-pointing triangle shape */
.sai-tri {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Generic label above section titles */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.sai2-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sai2-navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 96rem;
  margin: 0 auto;
}

.sai2-navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.sai2-navbar__logo {
  height: 2.5rem;
  width: auto;
}

.sai2-navbar__brand-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--red-800);
}

/* Nav links */
.sai2-navbar__links {
  display: none;
  gap: 2.5rem;
  align-items: center;
}

.sai2-navbar__link {
  font-weight: 600;
  color: var(--slate-500);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.sai2-navbar__link:hover   { color: var(--red-800); }
.sai2-navbar__link.active  {
  color: var(--red-800);
  border-bottom: 2px solid var(--red-800);
  padding-bottom: 4px;
  font-weight: 700;
}

/* Contact Us CTA button */
.sai2-navbar__cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
  color: var(--on-primary);
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: 0.25rem;
  box-shadow: 0 4px 14px rgba(131, 0, 28, 0.3);
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.2s;
}
.sai2-navbar__cta:hover { opacity: 0.9; transform: scale(0.98); }
.sai2-navbar__cta:active { transform: scale(0.95); }

/* Hamburger */
.sai2-navbar__toggler {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.sai2-navbar__toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23991b1b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-repeat: no-repeat;
  background-size: 100%;
}

/* ============================================================
   MAIN
   ============================================================ */
.sai2-main { padding-top: 6rem; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.sai2-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface-low);
  padding: 3rem 2rem;
}

/* Full-bleed background image */
.sai2-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sai2-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.sai2-hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--surface-low) 0%, rgba(239, 244, 255, 0.8) 50%, transparent 100%);
}

/* Large decorative triangle motif */
.sai2-hero__deco-tri {
  position: absolute;
  right: -5rem;
  top: 25%;
  width: 600px;
  height: 600px;
  background: rgba(131, 0, 28, 0.05);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transform: rotate(12deg);
  pointer-events: none;
  z-index: 1;
}

/* Hero text block */
.sai2-hero__content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
}

/* Eyebrow label with left border */
.sai2-hero__eyebrow {
  display: inline-block;
  padding: 0.25rem 1rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Main headline */
.sai2-hero__headline {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--on-background);
  margin-bottom: 2rem;
}
.sai2-hero__headline span {
  color: var(--primary);
  font-style: italic;
}

/* Sub-paragraph */
.sai2-hero__subtext {
  font-size: 1.25rem;
  color: var(--on-surface-variant);
  max-width: 42rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* Hero buttons */
.sai2-hero__btns {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sai2-btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.25rem;
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  box-shadow: 0 25px 50px -12px rgba(131, 0, 28, 0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.2s;
}
.sai2-btn-primary:hover { background: var(--primary-container); }

.sai2-btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 1rem 2.5rem;
  border: 2px solid rgba(131, 0, 28, 0.2);
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background 0.2s;
}
.sai2-btn-outline:hover { background: var(--surface-container); }

/* ============================================================
   DIVIDER DOTS
   ============================================================ */
.sai2-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 3rem 0;
  background: #fff;
}
.sai2-divider__dots {
  display: flex;
  gap: 0.5rem;
  opacity: 0.2;
}
.sai2-divider__dot {
  width: 1rem;
  height: 1rem;
  background: var(--primary);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* ============================================================
   SERVICES / BENTO GRID SECTION
   ============================================================ */
.sai2-services {
  padding: 6rem 2rem;
}

.sai2-services__inner {
  max-width: 96rem;
  margin: 0 auto;
}

/* 12-column bento grid */
.sai2-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

/* Column 1: Title text */
.sai2-services__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sai2-services__headline {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--on-background);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.sai2-services__subtext {
  color: var(--on-surface-variant);
  line-height: 1.6;
}

/* Service cards (Interpretation & Translation) */
.sai2-service-card {
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.sai2-service-card--white { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.sai2-service-card--tinted { background: var(--surface-low); }

.sai2-service-card__deco {
  position: absolute;
  top: -1rem; right: -1rem;
  width: 6rem; height: 6rem;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transition: transform 0.5s;
}
.sai2-service-card--white .sai2-service-card__deco  { background: rgba(131, 0, 28, 0.05); }
.sai2-service-card--tinted .sai2-service-card__deco { background: rgba(131, 0, 28, 0.10); }
.sai2-service-card:hover .sai2-service-card__deco   { transform: scale(1.25); }

.sai2-service-card__icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 2rem;
  display: block;
}
.sai2-service-card__title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--on-background);
}
.sai2-service-card__text {
  color: var(--on-surface-variant);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.sai2-service-card__link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
  font-size: 0.875rem;
}
.sai2-service-card:hover .sai2-service-card__link { gap: 1rem; }

/* Localization wide card (dark teal) */
.sai2-localization-card {
  background: var(--tertiary);
  color: #fff;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
.sai2-localization-card__deco {
  position: absolute;
  bottom: 0; right: 0;
  width: 16rem; height: 16rem;
  background: rgba(255, 255, 255, 0.05);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transform: translateY(50%) translateX(25%);
}
.sai2-localization-card__icon { font-size: 3rem; color: var(--secondary); margin-bottom: 1rem; display: block; }
.sai2-localization-card__title { font-size: 2.25rem; font-weight: 900; margin-bottom: 1rem; }
.sai2-localization-card__text { opacity: 0.8; max-width: 28rem; line-height: 1.6; }
.sai2-localization-card__btn {
  background: #fff;
  color: var(--tertiary);
  font-weight: 900;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.25rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  cursor: pointer;
  white-space: nowrap;
  margin-top: auto;
}

/* 24/7 card (red) */
.sai2-support-card {
  background: var(--primary);
  color: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sai2-support-card__tri {
  width: 3rem; height: 3rem;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  margin-bottom: 2rem;
}
.sai2-support-card__title { font-size: 1.5rem; font-weight: 900; margin-bottom: 1rem; }
.sai2-support-card__quote { font-weight: 700; font-size: 1.125rem; line-height: 1.5; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.sai2-cases {
  background: var(--surface-container-high);
  padding: 8rem 2rem;
}

.sai2-cases__inner { max-width: 96rem; margin: 0 auto; }

.sai2-cases__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
}

.sai2-cases__headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--on-background);
  letter-spacing: -0.04em;
  margin-top: 1rem;
  line-height: 1.1;
}

/* Nav buttons */
.sai2-cases__nav { display: none; gap: 1rem; }
.sai2-cases__nav-btn {
  width: 3rem; height: 3rem;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.2s;
}
.sai2-cases__nav-btn:hover { background: var(--primary); color: #fff; }

/* Case cards grid */
.sai2-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Single case card */
.sai2-case-card { position: relative; }
.sai2-case-card--offset { margin-top: 3rem; }

.sai2-case-card__img-wrap {
  position: relative;
  margin-bottom: 2rem;
  background: #fff;
  padding: 1rem 1rem 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.sai2-case-card__img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* Corner triangle badge */
.sai2-case-card__badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 8rem; height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: transform 0.3s;
}
.sai2-case-card:hover .sai2-case-card__badge { transform: scale(1.1); }
.sai2-case-card__badge--red   { background: var(--primary); }
.sai2-case-card__badge--teal  { background: var(--tertiary); }
.sai2-case-card__badge--pink  { background: var(--secondary); }
.sai2-case-card__badge-inner {
  width: 100%; height: 100%;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.sai2-case-card__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--on-background);
  margin-bottom: 0.5rem;
}
.sai2-case-card--offset .sai2-case-card__title { padding-top: 2rem; }
.sai2-case-card__text { color: var(--on-surface-variant); font-weight: 500; line-height: 1.6; }

/* ============================================================
   GLOBAL STRATEGY SECTION
   ============================================================ */
.sai2-strategy {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.sai2-strategy__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sai2-strategy__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sai2-strategy__bg-overlay {
  position: absolute; inset: 0;
  background: rgba(13, 28, 47, 0.4);
}

/* Glassmorphism card */
.sai2-strategy__card {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.sai2-strategy__deco-tri {
  position: absolute;
  top: -2.5rem; left: -2.5rem;
  width: 5rem; height: 5rem;
  background: var(--primary);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.8;
}

.sai2-strategy__eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 1rem;
}

.sai2-strategy__headline {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.sai2-strategy__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.sai2-strategy__list { list-style: none; padding: 0; margin: 0; }
.sai2-strategy__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}
.sai2-strategy__item:last-child { margin-bottom: 0; }
.sai2-strategy__item-tri {
  width: 0.75rem; height: 0.75rem;
  min-width: 0.75rem;
  background: var(--primary);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  margin-top: 4px;
}

/* ============================================================
   TECHNOLOGY & HUMAN INSIGHT
   ============================================================ */
.sai2-tech {
  background: #fff;
  padding: 8rem 2rem;
}

.sai2-tech__inner {
  max-width: 96rem;
  margin: 0 auto;
}

/* Image column */
.sai2-tech__img-col { position: relative; }
.sai2-tech__img-deco {
  position: absolute;
  bottom: -2.5rem; left: -2.5rem;
  width: 12rem; height: 12rem;
  background: rgba(131, 0, 28, 0.05);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transform: rotate(-12deg);
}
.sai2-tech__img {
  width: 100%;
  height: auto;
  border-radius: 0.25rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  display: block;
}

/* Text column */
.sai2-tech__eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 1rem;
}
.sai2-tech__headline {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 900;
  color: var(--on-background);
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  line-height: 1.1;
}
.sai2-tech__headline span { color: var(--primary); font-style: italic; }

.sai2-tech__body {
  color: var(--on-surface-variant);
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Feature items 2-col grid */
.sai2-tech__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.sai2-tech__feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.sai2-tech__feature-tri {
  width: 0.75rem; height: 0.75rem;
  min-width: 0.75rem;
  background: var(--primary);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.sai2-tech__feature-title { font-weight: 900; font-size: 1.125rem; }
.sai2-tech__feature-text {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  line-height: 1.6;
  padding-left: 1.5rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.sai2-cta {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
}

.sai2-cta__bg {
  position: absolute; inset: 0;
  background: var(--primary);
  z-index: 0;
}
.sai2-cta__bg-deco {
  position: absolute;
  right: 0; top: 0;
  width: 66%;
  height: 100%;
  background: var(--primary-container);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.3;
  transform-origin: top right;
}

.sai2-cta__inner {
  position: relative;
  z-index: 10;
  max-width: 96rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

/* Left text */
.sai2-cta__text { flex: 1; }
.sai2-cta__headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.sai2-cta__subtext {
  color: var(--primary-fixed-dim);
  font-size: 1.5rem;
  line-height: 1.5;
  max-width: 32rem;
}

/* Right: white form card */
.sai2-cta__form-wrap { width: 100%; }
.sai2-cta__form-card {
  background: #fff;
  padding: 3rem;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Form fields */
.sai2-form__group { margin-bottom: 2rem; }
.sai2-form__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--on-surface-variant);
  margin-bottom: 0.5rem;
}
.sai2-form__input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--outline-variant);
  background: transparent;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  font-family: 'Inter', sans-serif;
  color: var(--on-background);
  outline: none;
  transition: border-color 0.2s;
}
.sai2-form__input::placeholder { color: #b0bec5; }
.sai2-form__input:focus { border-color: var(--primary); }

/* Submit button */
.sai2-form__submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  padding: 1.25rem 2rem;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.sai2-form__submit:hover { background: var(--primary-container); }
.sai2-form__submit .material-symbols-outlined {
  transition: transform 0.2s;
}
.sai2-form__submit:hover .material-symbols-outlined { transform: translateX(0.5rem); }

/* ============================================================
   FOOTER
   ============================================================ */
.sai2-footer {
  background: #f8fafc;
  border-top: 1px solid var(--surface-container-high);
}

.sai2-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 96rem;
  margin: 0 auto;
}

/* Brand col */
.sai2-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.sai2-footer__logo { height: 2rem; width: auto; }
.sai2-footer__brand-text { font-size: 1.25rem; font-weight: 900; color: var(--red-800); }
.sai2-footer__desc { color: var(--slate-500); line-height: 1.6; font-size: 0.875rem; }

/* Column headings */
.sai2-footer__col-heading {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red-800);
  margin-bottom: 1.5rem;
}

/* Footer nav links */
.sai2-footer__list { list-style: none; padding: 0; margin: 0; }
.sai2-footer__list li { margin-bottom: 1rem; }
.sai2-footer__link {
  color: var(--slate-500);
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
  cursor: pointer;
}
.sai2-footer__link:hover { color: var(--red-800); }
.sai2-footer__link-tri {
  width: 0.5rem; height: 0.5rem;
  background: var(--red-800);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  flex-shrink: 0;
}

/* Compliance text */
.sai2-footer__compliance {
  font-size: 0.75rem;
  color: var(--slate-500);
  line-height: 2;
  margin-bottom: 1.5rem;
}

/* Social icons */
.sai2-footer__socials { display: flex; gap: 1rem; }
.sai2-footer__social {
  color: var(--slate-400);
  cursor: pointer;
  transition: color 0.2s;
}
.sai2-footer__social:hover { color: var(--primary); }

/* Bottom bar */
.sai2-footer__bottom {
  padding: 2rem;
  border-top: 1px solid var(--slate-200);
  max-width: 96rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.sai2-footer__copyright { font-size: 0.875rem; color: var(--slate-500); text-align: center; }
.sai2-footer__legal { display: flex; gap: 2rem; }
.sai2-footer__legal a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-500);
  text-decoration: none;
  transition: color 0.2s;
}
.sai2-footer__legal a:hover { color: var(--red-800); }

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 575px)
   ============================================================ */
@media (max-width: 575.98px) {
  .sai2-navbar__inner { padding: 1rem 1rem; }
  .sai2-hero { padding: 2rem 1rem; min-height: auto; }
  .sai2-hero__deco-tri { display: none; }
  .sai2-hero__btns { width: 100%; }
  .sai2-btn-primary, .sai2-btn-outline { width: 100%; justify-content: center; }
  .sai2-services { padding: 3rem 1rem; }
  .sai2-service-card { padding: 2rem; }
  .sai2-localization-card { padding: 2rem; }
  .sai2-support-card { padding: 2rem; }
  .sai2-cases { padding: 4rem 1rem; }
  .sai2-cases__header { margin-bottom: 3rem; }
  .sai2-case-card--offset { margin-top: 0; }
  .sai2-strategy { padding: 4rem 1rem; }
  .sai2-strategy__card { padding: 2rem; }
  .sai2-tech { padding: 4rem 1rem; }
  .sai2-cta { padding: 4rem 1rem; }
  .sai2-cta__form-card { padding: 2rem; }
  .sai2-footer__inner { padding: 3rem 1rem; }
  .sai2-footer__bottom { padding: 1.5rem 1rem; }
}

/* ============================================================
   RESPONSIVE — TABLET (576px – 767px)
   ============================================================ */
@media (min-width: 576px) {
  .sai2-hero__btns { flex-direction: row; }
  .sai2-tech__features { grid-template-columns: 1fr 1fr; }
  .sai2-localization-card { flex-direction: row; align-items: center; }
  .sai2-footer__inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MD+ (768px)
   ============================================================ */
@media (min-width: 768px) {
  /* Navbar links show */
  .sai2-navbar__links { display: flex; }
  .sai2-navbar__toggler { display: none; }

  /* Services bento grid */
  .sai2-services__grid { grid-template-columns: repeat(12, 1fr); }
  .sai2-services__intro  { grid-column: span 4; }
  .sai2-services__interp { grid-column: span 4; }
  .sai2-services__transl { grid-column: span 4; }
  .sai2-services__local  { grid-column: span 8; }
  .sai2-services__support{ grid-column: span 4; }

  /* Case studies */
  .sai2-cases__header { flex-direction: row; align-items: flex-end; }
  .sai2-cases__nav { display: flex; }
  .sai2-cases__grid { grid-template-columns: repeat(3, 1fr); }
  .sai2-case-card--offset { transform: translateY(2rem); }

  /* Tech section 2-col */
  .sai2-tech__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .sai2-tech__img-col { order: 1; }
  .sai2-tech__text-col { order: 2; }

  /* CTA side-by-side */
  .sai2-cta__inner { flex-direction: row; align-items: center; }
  .sai2-cta__form-wrap { width: 50%; flex-shrink: 0; }

  /* Footer 4-col */
  .sai2-footer__inner { grid-template-columns: repeat(4, 1fr); }
  .sai2-footer__bottom { flex-direction: row; justify-content: space-between; }
  .sai2-footer__copyright { text-align: left; }
}

/* ============================================================
   RESPONSIVE — LG (992px)
   ============================================================ */
@media (min-width: 992px) {
  .sai2-navbar__inner { padding: 1.5rem 3rem; }
  .sai2-services { padding: 6rem 3rem; }
  .sai2-cases { padding: 8rem 3rem; }
  .sai2-strategy { padding: 8rem 3rem; }
  .sai2-tech { padding: 8rem 3rem; }
  .sai2-cta { padding: 8rem 3rem; }
  .sai2-footer__inner { padding: 4rem 3rem; }
  .sai2-footer__bottom { padding: 2rem 3rem; }
}
