/*
Theme Name: Sastructures Theme
Theme URI: https://sastructures.com/
Author: Sama Aburahma
Author URI: https://sastructures.com/
Description: Custom WordPress theme rebuild for sastructures.com
Version: 1.0.0
Text Domain: sastructures-theme
*/

:root {
  --sa-soft: #E7F0FA;
  --sa-ice: #7BA4D0;
  --sa-blue: #2E5E99;
  --sa-navy: #0D2440;
  --sa-deep: #071321;

  --sa-text: #ffffff;
  --sa-text-muted: rgba(255, 255, 255, 0.68);
  --sa-border: rgba(255, 255, 255, 0.08);

  --sa-sidebar-w: 260px;
  --sa-sidebar-collapsed-w: 72px;
  --sa-sidebar-w-laptop: 235px;
  --sa-mobile-topbar-h: 64px;
  --sa-mobile-bottombar-h: 88px;

  --sa-shell-gradient: linear-gradient(180deg, rgba(13, 36, 64, 0.96) 0%, rgba(7, 19, 33, 1) 100%);
  --sa-shell-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  --sa-sidebar-shadow: 10px 0 30px rgba(0, 0, 0, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: #eef2f6;
  color: #071321;
  font-family: Lato, Arial, sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* =========================
   DESKTOP SIDEBAR
========================= */

#sa-desktop-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sa-sidebar-w);
  height: 100vh;
  background: #071321;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 9999;
  box-shadow: none;
  overflow: hidden;
  transition: width 0.28s ease;
}

.sa-sidebar-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.sa-sidebar-top {
  flex: 0 0 auto;
}

.sa-sidebar-brand {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sa-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #ffffff;
  text-decoration: none;
}

.sa-brand-logo {
  width: 38px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.sa-brand-text-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sa-brand-text {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  white-space: nowrap;
}

/* floating sidebar toggle */

.sa-sidebar-toggle {
  position: fixed;
  top: 12px;
  left: calc(var(--sa-sidebar-w) - 21px);
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  transition: opacity 0.22s ease, left 0.28s ease;
}

.sa-sidebar-toggle:hover {
  opacity: 1;
}

.sa-sidebar-toggle:focus-visible {
  outline: none;
}

.sa-sidebar-toggle-img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
  transition: transform 0.22s ease, filter 0.22s ease;
}

.sa-sidebar-toggle:hover .sa-sidebar-toggle-img {
  transform: scale(1.06);
  filter: drop-shadow(0 6px 14px rgba(46, 94, 153, 0.22));
}

body.sa-sidebar-collapsed .sa-sidebar-toggle {
  left: calc(var(--sa-sidebar-collapsed-w) - 21px);
}

body.sa-sidebar-collapsed .sa-sidebar-toggle-img {
  transform: rotate(180deg);
}

body.sa-sidebar-collapsed .sa-sidebar-toggle:hover .sa-sidebar-toggle-img {
  transform: rotate(180deg) scale(1.06);
}

.sa-sidebar-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 10px 4px;
}

.sa-sidebar-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 6px;
}

.sa-sidebar-section-label {
  font-size: 11px;
  line-height: 1.1;
  color: #7BA4D0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 6px 0 2px 8px;
}

.sa-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

.sa-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(2px);
}

.sa-nav-item.is-active {
  background: rgba(255, 255, 255, 0.04);
}

.sa-nav-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.95;
}

.sa-nav-label {
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
}

.sa-sidebar-utility {
  flex: 0 0 auto;
  padding: 10px 14px 12px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.sa-sidebar-search-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin: 4px 0 10px;
  padding: 0 10px;
  border-radius: 10px;
  background: #E7F0FA;
  border: 0;
}

.sa-search-input {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: #071321;
  font-size: 14px;
}

.sa-search-input::placeholder {
  color: rgba(7, 19, 33, 0.55);
}

.sa-search-submit {
  width: 22px;
  height: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.sa-search-submit-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.sa-sidebar-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
}

.sa-sidebar-legal > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.sa-sidebar-legal a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  white-space: nowrap;
}

.sa-sidebar-legal a:hover {
  color: rgba(255, 255, 255, 0.82);
}

.sa-sidebar-legal span {
  color: rgba(255, 255, 255, 0.34);
}

.sa-sidebar-rights {
  display: block;
  width: 100%;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
}

/* =========================
   COLLAPSED DESKTOP
========================= */

body.sa-sidebar-collapsed #sa-desktop-sidebar {
  width: var(--sa-sidebar-collapsed-w);
}

body.sa-sidebar-collapsed .sa-brand-text,
body.sa-sidebar-collapsed .sa-sidebar-section-label,
body.sa-sidebar-collapsed .sa-nav-label,
body.sa-sidebar-collapsed .sa-sidebar-legal,
body.sa-sidebar-collapsed .sa-search-input {
  display: none !important;
}

body.sa-sidebar-collapsed .sa-sidebar-brand {
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
}

body.sa-sidebar-collapsed .sa-brand-link {
  width: 100%;
  justify-content: center;
  gap: 0;
}

body.sa-sidebar-collapsed .sa-brand-logo {
  margin: 0 auto;
}

body.sa-sidebar-collapsed .sa-sidebar-scroll {
  padding-left: 8px;
  padding-right: 8px;
}

body.sa-sidebar-collapsed .sa-nav-item {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

body.sa-sidebar-collapsed .sa-sidebar-search-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  margin: 4px 0 10px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

body.sa-sidebar-collapsed .sa-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0.92;
}

body.sa-sidebar-collapsed .sa-search-submit-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  filter: none;
}

/* =========================
   MAIN AREA
========================= */

main {
  margin-left: var(--sa-sidebar-w);
  min-height: 100vh;
  transition: margin-left 0.28s ease;
}

body.sa-sidebar-collapsed main {
  margin-left: var(--sa-sidebar-collapsed-w);
}
/* =========================
   MOBILE TOP BAR
========================= */

#sa-mobile-topbar {
  display: none;
}

.sa-mobile-brand,
.sa-mobile-account-btn,
.sa-mobile-icon-btn {
  -webkit-tap-highlight-color: transparent;
}

.sa-mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  min-width: 0;
}

.sa-mobile-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sa-blue), var(--sa-navy));
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.sa-mobile-brand-text {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
}

.sa-mobile-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sa-mobile-icon-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: #ffffff;
  width: auto;
  height: auto;
  padding: 0;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.sa-mobile-account-btn {
  min-width: 44px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.sa-mobile-account-btn::before {
  content: "✦";
  font-size: 11px;
  opacity: 0.9;
  transform: translateY(-0.5px);
}

/* =========================
   MOBILE BOTTOM BAR
========================= */

#sa-mobile-bottom-bar {
  display: none;
}

.sa-mobile-bottom-item {
  appearance: none;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 5px;
  padding: 0 2px;
  cursor: pointer;
  min-height: 58px;
}

.sa-mobile-bottom-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(123, 164, 208, 0.45);
  box-shadow: 0 0 0 6px rgba(123, 164, 208, 0.08);
  flex-shrink: 0;
}

.sa-mobile-bottom-item--center {
  position: relative;
}

.sa-mobile-bottom-orb {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #7BA4D0 0%, #2E5E99 45%, #0D2440 100%);
  box-shadow:
    0 0 0 8px rgba(46, 94, 153, 0.12),
    0 10px 25px rgba(0, 0, 0, 0.28);
  margin-bottom: 2px;
  flex-shrink: 0;
}

.sa-mobile-bottom-label {
  color: #ffffff;
  line-height: 1;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.sa-mobile-bottom-item.is-active .sa-mobile-bottom-label {
  color: #ffffff;
}

/* =========================
   LARGE DESKTOP
========================= */

@media (min-width: 1281px) {
  main {
    margin-left: var(--sa-sidebar-w);
  }
}

/* =========================
   LAPTOP / SMALL DESKTOP
========================= */

@media (max-width: 1280px) and (min-width: 981px) {
  #sa-desktop-sidebar {
    width: var(--sa-sidebar-w-laptop);
  }

  .sa-sidebar-toggle {
    left: calc(var(--sa-sidebar-w-laptop) - 21px);
  }

  .sa-brand-text {
    font-size: 17px;
  }

  .sa-brand-subtext {
    font-size: 10px;
  }

  .sa-nav-label {
    font-size: 14px;
  }

  .sa-nav-item {
    padding: 8px 9px;
    min-height: 36px;
  }

  .sa-sidebar-section-label {
    font-size: 10px;
  }

  main {
    margin-left: var(--sa-sidebar-w-laptop);
  }

  body.sa-sidebar-collapsed #sa-desktop-sidebar {
    width: var(--sa-sidebar-collapsed-w);
  }

  body.sa-sidebar-collapsed .sa-sidebar-toggle {
    left: calc(var(--sa-sidebar-collapsed-w) - 21px);
  }

  body.sa-sidebar-collapsed main {
    margin-left: var(--sa-sidebar-collapsed-w);
  }
}

/* =========================
   TABLET + MOBILE SHELL
========================= */

@media (max-width: 980px) {
  #sa-desktop-sidebar {
    display: none;
  }

  #sa-mobile-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--sa-mobile-topbar-h);
    background: var(--sa-shell-gradient);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 10000;
    box-shadow: var(--sa-shell-shadow);
  }

  #sa-mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--sa-mobile-bottombar-h);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    padding: 0 6px 10px;
    background: linear-gradient(180deg, rgba(13, 36, 64, 0.98) 0%, rgba(7, 19, 33, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 10001;
  }

  main {
    margin-left: 0 !important;
    padding-top: var(--sa-mobile-topbar-h);
    padding-bottom: var(--sa-mobile-bottombar-h);
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 980px) and (min-width: 768px) {
  #sa-mobile-topbar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sa-mobile-brand-text {
    font-size: 19px;
  }

  .sa-mobile-account-btn {
    height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  main > div {
    padding: 48px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
  #sa-mobile-topbar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sa-mobile-brand-text {
    font-size: 16px;
  }

  .sa-mobile-topbar-actions {
    gap: 8px;
  }

  .sa-mobile-account-btn {
    height: 36px;
    padding: 0 10px;
    font-size: 12px;
    gap: 6px;
  }

  .sa-mobile-account-btn::before {
    font-size: 10px;
  }

  .sa-mobile-bottom-orb {
    width: 46px;
    height: 46px;
  }

  .sa-mobile-bottom-label {
    font-size: 10px;
  }

  main > div {
    padding: 28px 22px;
  }
}

/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 380px) {
  .sa-mobile-brand-text {
    font-size: 15px;
  }

  .sa-mobile-account-btn {
    min-width: 0;
    padding: 0 9px;
    font-size: 11px;
  }

  .sa-mobile-icon-btn {
    font-size: 22px;
  }

  .sa-mobile-bottom-label {
    font-size: 9px;
  }

  .sa-mobile-bottom-item {
    gap: 4px;
    padding: 0 1px;
  }

  .sa-mobile-bottom-orb {
    width: 42px;
    height: 42px;
  }
}

/* =========================
   MOBILE EXPLORE DRAWER
========================= */

.sa-mobile-drawer {
  display: none;
}

@media (max-width: 980px) {
  .sa-mobile-drawer {
    display: block;
  }

  .sa-mobile-drawer[aria-hidden="true"] {
    pointer-events: none;
  }

  .sa-mobile-drawer[aria-hidden="true"] .sa-mobile-drawer-backdrop {
    opacity: 0;
  }

  .sa-mobile-drawer[aria-hidden="true"] .sa-mobile-drawer-panel {
    transform: translateY(100%);
  }

  .sa-mobile-drawer[aria-hidden="false"] {
    pointer-events: auto;
  }

  .sa-mobile-drawer[aria-hidden="false"] .sa-mobile-drawer-backdrop {
    opacity: 1;
  }

  .sa-mobile-drawer[aria-hidden="false"] .sa-mobile-drawer-panel {
    transform: translateY(0);
  }

  .sa-mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 19, 33, 0.46);
    opacity: 0;
    transition: opacity 0.26s ease;
    z-index: 10020;
  }

  .sa-mobile-drawer-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  background: linear-gradient(180deg, rgba(13, 36, 64, 0.98) 0%, rgba(7, 19, 33, 1) 100%);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -20px 50px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 10021;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(var(--sa-mobile-bottombar-h) + 8px);
  }

  .sa-mobile-drawer-handle-wrap {
    display: flex;
    justify-content: center;
    padding: 10px 0 6px;
  }

  .sa-mobile-drawer-handle {
    width: 54px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(231,240,250,0.45);
  }

  .sa-mobile-drawer-body {
  overflow: visible;
  padding: 8px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  }

  .sa-mobile-drawer-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .sa-mobile-drawer-label {
    color: var(--sa-ice);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
  }

 .sa-mobile-drawer-link {
  color: #ffffff;
  text-decoration: none;
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 2px;
  font-size: 14px;
  line-height: 1.2;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .sa-mobile-drawer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding-top: 2px;
}

.sa-mobile-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.sa-mobile-social-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.sa-mobile-social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

  .sa-mobile-drawer-legal {
  padding-top: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
  }

  .sa-mobile-drawer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
  }

  .sa-mobile-drawer-legal a {
    color: rgba(255,255,255,0.58);
    text-decoration: none;
  }

  .sa-mobile-drawer-legal a + a::before {
    content: "|";
    display: inline-block;
    margin: 0 6px;
    color: rgba(255,255,255,0.34);
  }

  .sa-mobile-drawer-rights {
    display: block;
    color: rgba(255,255,255,0.58);
  }
}

/* =========================
   SEARCH OVERLAY
========================= */

.sa-search-overlay {
  display: none;
}

@media (max-width: 980px) {
  .sa-search-overlay {
    display: block;
  }

  .sa-search-overlay[aria-hidden="true"] {
    pointer-events: none;
  }

  .sa-search-overlay[aria-hidden="true"] .sa-search-overlay-backdrop {
    opacity: 0;
  }

  .sa-search-overlay[aria-hidden="true"] .sa-search-overlay-panel {
    transform: translateY(-24px);
    opacity: 0;
  }

  .sa-search-overlay[aria-hidden="false"] {
    pointer-events: auto;
  }

  .sa-search-overlay[aria-hidden="false"] .sa-search-overlay-backdrop {
    opacity: 1;
  }

  .sa-search-overlay[aria-hidden="false"] .sa-search-overlay-panel {
    transform: translateY(0);
    opacity: 1;
  }

  .sa-search-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 19, 33, 0.88);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.24s ease;
    z-index: 10030;
  }

  .sa-search-overlay-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10031;
    padding: 18px 16px 0;
    transform: translateY(-24px);
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .sa-search-overlay-top {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
  }

  .sa-search-overlay-handle-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .sa-search-overlay-handle {
    width: 54px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(231, 240, 250, 0.55);
  }

  .sa-search-overlay-body {
    width: 100%;
  }

  .sa-search-form {
    margin: 0;
  }

  .sa-search-field-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  }

  .sa-search-field-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    line-height: 1;
  }

  .sa-search-field-icon-img {
    display: block;
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
  }

  .sa-search-field {
    flex: 1 1 auto;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
  }

  .sa-search-field::placeholder {
    color: rgba(255, 255, 255, 0.48);
  }

  .sa-search-submit-btn {
    appearance: none;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
  }

  .sa-mobile-topbar-icon {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
  }
}


/* =========================
   PROJECTS PAGE SHELL
========================= */

.sa-projects-page {
  margin-left: var(--sa-sidebar-w);
  min-height: 100vh;
  background: #0D2440;
  overflow-x: hidden;
}

.sa-projects-page-debug {
  padding: 60px 40px 140px;
  color: #ffffff;
}

.sa-projects-page-debug h1 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.05;
}

.sa-projects-page-debug p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

.sa-projects-live-shell {
  width: 100%;
  min-height: 100vh;
  background: #0D2440;
  padding: 10px 0 140px;
}

.sa-project-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  background: transparent;
}

/* =========================
   PROJECTS LIVE CARD SYSTEM
========================= */

.sa-project-card-dark {
  display: block;
  padding: 0;
  margin-bottom: 80px;
  border-radius: 30px;
  background: linear-gradient(180deg, #0D2440 0%, rgba(20, 45, 80, 0.95) 30%, rgba(7, 19, 33, 0.95) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid #0D2440;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  perspective: 1800px;
}

.sa-project-card-dark::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(46, 94, 153, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.sa-project-flip-inner {
  position: relative;
  min-height: 620px;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), min-height 0.35s ease;
  z-index: 2;
}

.sa-project-flip-card.is-flipped .sa-project-flip-inner {
  transform: rotateY(180deg);
}

.sa-project-flip-card {
  transition: height 0.35s ease, min-height 0.35s ease;
}

.sa-project-face {
  width: 100%;
  min-height: 620px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: transparent;
}

.sa-project-face--front,
.sa-project-face--back {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px;
}

.sa-project-face--front {
  position: relative;
  z-index: 2;
}

.sa-project-face--back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  z-index: 1;
  align-items: flex-start;
  padding-bottom: 68px;
}

/* FRONT SHARED */

.sa-content-side {
  flex: 1;
  z-index: 2;
  position: relative;
  padding-top: 30px;
}

.sa-visual-side {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  z-index: 2;
}

.sa-project-eyebrow {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.sa-project-eyebrow--alfakhoora {
  color: #d3b15f;
}

.sa-project-title-dark {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.05;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.sa-body-dark {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 24px;
}

.sa-pill-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.sa-pill-static {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px 6px 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.sa-pill-static:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.3);
}

.sa-pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pill-color);
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.2);
}

.sa-pill-icon img {
  width: 16px;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.sa-pill-text {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.sa-project-btn-row {
  display: flex;
  justify-content: flex-start;
}

.sa-project-link,
.sa-project-flip-toggle {
  color: #2fb4ff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.2;
  transition: opacity 0.22s ease, transform 0.22s ease;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.sa-project-link:hover,
.sa-project-flip-toggle:hover {
  opacity: 0.85;
  transform: translateX(3px);
}

.sa-main-mockup {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: transform 0.5s ease;
}

.sa-project-card-dark:hover .sa-main-mockup {
  transform: scale(1.02);
}

/* BACK SIDE */

.sa-project-back-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 34px;
  align-items: stretch;
}

.sa-project-back-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  padding-bottom: 14px;
}

.sa-project-back-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #7BA4D0;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sa-project-back-title {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.sa-project-back-sections {
  display: grid;
  gap: 14px;
}

.sa-project-back-block {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.sa-project-back-block-label {
  margin-bottom: 8px;
  color: #FFD200;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sa-project-back-block p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.7;
}

.sa-project-back-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 12px;
  margin-top: auto;
}

.sa-project-back-live,
.sa-project-back-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.sa-project-back-live {
  background: linear-gradient(135deg, #FFD200 0%, #f2b705 100%);
  color: #071321;
  box-shadow: 0 10px 24px rgba(255, 210, 0, 0.22);
}

.sa-project-back-live:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

.sa-project-back-return {
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
}

.sa-project-back-return:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
}

.sa-project-back-media {
  display: grid;
  gap: 14px;
  align-content: start;
}

.sa-project-back-media-main,
.sa-project-back-media-video,
.sa-project-back-thumb {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 16px 36px rgba(0,0,0,0.24);
}

.sa-project-back-media-main img,
.sa-project-back-thumb img,
.sa-project-back-media-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sa-project-back-media-main {
  min-height: 220px;
}

.sa-project-back-media-video {
  min-height: 180px;
}

.sa-project-back-media-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sa-project-back-thumb {
  min-height: 120px;
}

/* BADGES */

.sa-video-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  background: #000;
  z-index: 5;
  transform: rotate(-5deg);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.sa-project-card-dark:hover .sa-video-badge {
  transform: rotate(0deg) scale(1.08);
  border-color: rgba(255,255,255,0.9);
}

.sa-bee-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.sa-video-label {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  z-index: 2;
}

/* =========================
   PROJECTS PAGE STAGE LOCK
========================= */

.post-type-archive-projects,
.post-type-archive-projects body,
.post-type-archive-projects main,
.post-type-archive-projects .site-main,
.sa-projects-page,
.sa-projects-live-shell,
.sa-project-wrapper {
  background: #0D2440;
}

/* =========================
   RESPONSIVE PROJECT SHELL
========================= */

@media (max-width: 1280px) and (min-width: 981px) {
  .sa-projects-page {
    margin-left: var(--sa-sidebar-w-laptop);
  }

  body.sa-sidebar-collapsed .sa-projects-page {
    margin-left: var(--sa-sidebar-collapsed-w);
  }
}

@media (max-width: 980px) {
  .sa-projects-page {
    margin-left: 0 !important;
  }

  .sa-projects-page-debug {
    padding: 28px 20px 130px;
  }

  .sa-projects-page-debug h1 {
    font-size: 32px;
  }

  .sa-projects-page-debug p {
    font-size: 16px;
  }

  .sa-projects-live-shell {
    padding-top: 0;
  }

  .sa-project-wrapper {
    padding: 0 16px;
  }

  .sa-hub-container {
    padding: 0;
    border-radius: 0;
    background: transparent;
    margin-bottom: 28px;
  }

  .sa-project-card-dark {
    margin-bottom: 28px;
  }

  .sa-project-flip-inner {
    min-height: auto;
    transform: none !important;
  }

  .sa-project-face {
    min-height: auto;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }

  .sa-project-face--front,
  .sa-project-face--back {
    position: relative;
    inset: auto;
    transform: none;
    flex-direction: column-reverse;
    padding: 0 20px 50px;
    text-align: center;
    gap: 30px;
  }

  .sa-project-face--back {
    display: none;
  }

  .sa-project-flip-card.is-flipped .sa-project-face--front {
    display: none;
  }

  .sa-project-flip-card.is-flipped .sa-project-face--back {
    display: flex;
    flex-direction: column;
  }

  .sa-content-side {
    width: 100%;
    padding-top: 10px;
  }

  .sa-visual-side {
    width: 100%;
    margin-bottom: 10px;
  }

  .sa-project-title-dark {
    font-size: 28px;
  }

  .sa-body-dark {
    font-size: 1rem;
    line-height: 1.75;
  }

  .sa-pill-stack {
    justify-content: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .sa-pill-static {
    width: 100%;
    justify-content: center;
    padding: 8px 4px;
  }

  .sa-pill-text {
    font-size: 0.8rem;
  }

  .sa-project-btn-row {
    justify-content: center;
  }

  .sa-project-back-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sa-project-back-title {
    font-size: 28px;
  }

  .sa-project-back-block {
    text-align: left;
  }

  .sa-project-back-actions {
    justify-content: center;
  }

  .sa-project-back-live,
  .sa-project-back-return {
    width: 100%;
  }

  .sa-video-badge {
    width: 100px;
    height: 100px;
    bottom: -15px;
    left: 0;
  }

  .sa-spirit-badge {
    width: 100px;
    height: 100px;
    bottom: -15px;
    left: 0;
  }

  .sa-spirit-icon {
    width: 40px;
  }

  .sa-magic-lens {
    width: 110px;
    height: 110px;
    bottom: -15px;
    left: 0;
    transform: rotate(-3deg);
  }

  .sa-control-badge {
    width: 110px;
    height: 110px;
    bottom: -15px;
    left: 0;
    transform: rotate(0deg);
  }

  .sa-control-text strong {
    font-size: 0.75rem;
  }

  .sa-nader-logo {
    margin: 0 auto 20px;
    width: 120px;
  }

  .sa-swipe-deck {
    width: 100px;
    bottom: -15px;
    left: auto;
    right: 0;
    transform: rotate(-5deg);
  }

  #sas-final-dock {
    padding: 36px 16px 130px;
  }

  .sa-social-icon {
    width: 50px;
    height: 50px;
  }

  .sa-inquiry-dock {
    padding: 20px 0;
    font-size: 1rem;
  }
}


/* =========================
   PROJECT CARD MODIFIERS
========================= */

.sa-hub-container {
  background-color: #0D2440;
  padding: 20px;
  border-radius: 30px;
  margin-bottom: 80px;
}

.sa-project-eyebrow--lux {
  color: #35D0FF;
}

.sa-project-eyebrow--hala {
  color: #FFD200;
}

.sa-project-eyebrow--swiss {
  color: #cbd5e0;
}

.sa-project-card-dark.lux-edition {
  background: linear-gradient(145deg, rgba(13, 36, 64, 0.95) 0%, rgba(20, 10, 30, 0.95) 100%);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  margin-bottom: 0;
}

.sa-spirit-badge {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  background: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  overflow: hidden;
}

.sa-spirit-badge::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: conic-gradient(from 0deg, #8A2BE2, #00FF80, #35D0FF, #8A2BE2);
  animation: luxSpiritSpin 4s linear infinite;
  z-index: 1;
}

.sa-spirit-badge::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: #071321;
  border-radius: 50%;
  z-index: 2;
}

.sa-spirit-icon {
  position: relative;
  z-index: 3;
  width: 55px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
  animation: luxPulseIcon 3s ease-in-out infinite;
}

@keyframes luxSpiritSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes luxPulseIcon {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(138,43,226,0.3));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0,255,128,0.5));
  }
}

.sa-project-card-dark.hala-edition {
  background: linear-gradient(180deg, #0D2440 0%, rgba(43, 50, 178, 0.15) 40%, #0D2440 100%);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255, 210, 0, 0.2);
  margin-bottom: 80px;
}

.sa-magic-lens {
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 160px;
  height: 160px;
  border-radius: 24px;
  background: #000;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 3px solid #FFD200;
  z-index: 5;
  transform: rotate(-5deg);
  transition: transform 0.4s ease, border-color 0.4s ease;
  cursor: default;
}

.sa-magic-lens:hover {
  transform: rotate(0deg) scale(1.05);
  border-color: #fff;
  z-index: 10;
}

.sa-lens-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  animation: saLensLoop 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.sa-lens-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

@keyframes saLensLoop {
  0%   { opacity: 1; }
  25%  { opacity: 1; }
  30%  { opacity: 0; }
  90%  { opacity: 0; }
  100% { opacity: 1; }
}

.sa-project-card-dark.swiss-edition {
  background: linear-gradient(180deg, #0D2440 0%, rgba(60, 70, 85, 0.9) 40%, #0D2440 100%);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  border-top: 1px solid rgba(200, 210, 220, 0.2);
  margin-bottom: 80px;
}

.sa-control-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #1a202c;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    inset 0 0 20px rgba(0,0,0,0.8);
  border: 2px solid #a0aec0;
  z-index: 5;
  transform: rotate(-10deg);
}

.sa-control-badge::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.3);
  animation: saGearSpin 10s linear infinite;
}

.sa-control-badge::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #48bb78;
  border-radius: 50%;
  position: absolute;
  top: 25px;
  box-shadow: 0 0 10px #48bb78;
}

.sa-control-text {
  text-align: center;
  color: #fff;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
}

.sa-control-text span {
  display: block;
  font-size: 0.65rem;
  color: #a0aec0;
  letter-spacing: 1px;
}

.sa-control-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

@keyframes saGearSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.sa-project-eyebrow--nader {
  color: #d4af37;
}

.sa-project-card-dark.nader-edition {
  background: linear-gradient(180deg, #0D2440 0%, rgba(20, 25, 40, 0.95) 40%, #0D2440 100%);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid #0D2440;
  margin-bottom: 80px;
}

.sa-nader-logo {
  display: block;
  width: 140px;
  height: auto;
  margin-bottom: 25px;
  filter: invert(1) brightness(1.5) contrast(1.2);
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.sa-nader-logo:hover {
  opacity: 1;
}

.sa-swipe-deck {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 160px;
  aspect-ratio: 9 / 14;
  border-radius: 20px;
  background: #071321;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  border: 2px solid #d4af37;
  z-index: 5;
  transform: rotate(5deg);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.sa-swipe-deck:hover {
  transform: rotate(0deg) scale(1.1);
  z-index: 10;
  border-color: #fff;
}

.sa-deck-slider {
  width: 100%;
  height: 100%;
  background-image: url('https://sastructures.com/wp-content/uploads/2026/01/articles-solution.png');
  background-size: cover;
  background-position: top center;
  opacity: 0.6;
  animation: saSwipeHint 5s ease-in-out infinite alternate;
}

.sa-deck-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.8));
}

@keyframes saSwipeHint {
  0% {
    background-position: 0% center;
    opacity: 0.6;
  }
  100% {
    background-position: 100% center;
    opacity: 0.9;
  }
}

/* =========================
   FINAL PROJECT CTA DOCK
========================= */

#sas-final-dock {
  --bg-deep: #0D2440;
  --card-bg: #1A202C;
  --brand-blue: #2E5E99;
  --text-white: #FFFFFF;
  --text-muted: #A0AEC0;

  font-family: 'Lato', sans-serif;
  background-color: var(--bg-deep);
  width: 100%;
  padding: 40px 20px 150px;
  display: flex;
  justify-content: center;
}

.sa-connect-card {
  background: linear-gradient(145deg, rgba(26, 32, 44, 0.95) 0%, rgba(13, 20, 35, 0.95) 100%);
  width: 100%;
  max-width: 530px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.sa-social-zone {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.sa-connect-heading {
  font-family: 'Kirang Haerang', cursive;
  font-size: 2.2rem;
  color: var(--text-white);
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  text-align: center;
}

.sa-social-row {
  display: flex;
  gap: 25px;
  justify-content: center;
  width: 100%;
}

.sa-social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.sa-social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sa-social-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.sa-social-btn:hover .sa-social-icon {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(46, 94, 153, 0.3);
}

.sa-social-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  transition: color 0.3s;
}

.sa-social-btn:hover .sa-social-label {
  color: var(--text-white);
}

.sa-inquiry-dock {
  width: 100%;
  padding: 22px 0;
  background: var(--brand-blue);
  color: var(--text-white);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.3s ease;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sa-inquiry-dock:hover {
  background: #3a75b8;
}

.sa-arrow {
  transition: transform 0.3s ease;
}

.sa-inquiry-dock:hover .sa-arrow {
  transform: translateX(5px);
}

/* =========================
   MOBILE / TABLET PROJECTS
========================= */

@media (max-width: 980px) {
  .sa-projects-live-shell {
    padding-top: 0;
  }

  .sa-project-wrapper {
    padding: 0 16px;
  }

  .sa-hub-container {
    padding: 0;
    border-radius: 0;
    background: transparent;
    margin-bottom: 28px;
  }

  .sa-project-card-dark {
    margin-bottom: 28px;
  }

  .sa-project-flip-inner {
    min-height: auto;
    transform: none !important;
  }

  .sa-project-face {
    min-height: auto;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }

  .sa-project-face--front,
  .sa-project-face--back {
    position: relative;
    inset: auto;
    transform: none;
    flex-direction: column-reverse;
    padding: 0 20px 50px;
    text-align: center;
    gap: 30px;
  }

  .sa-project-face--back {
    display: none;
  }

  .sa-project-flip-card.is-flipped .sa-project-face--front {
    display: none;
  }

  .sa-project-flip-card.is-flipped .sa-project-face--back {
    display: flex;
    flex-direction: column;
  }

  .sa-content-side {
    width: 100%;
    padding-top: 10px;
  }

  .sa-visual-side {
    width: 100%;
    margin-bottom: 10px;
  }

  .sa-project-title-dark {
    font-size: 28px;
  }

  .sa-body-dark {
    font-size: 1rem;
    line-height: 1.75;
  }

  .sa-pill-stack {
    justify-content: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .sa-pill-static {
    width: 100%;
    justify-content: center;
    padding: 8px 4px;
  }

  .sa-pill-text {
    font-size: 0.8rem;
  }

  .sa-project-btn-row {
    justify-content: center;
  }

  .sa-project-back-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sa-project-back-title {
    font-size: 28px;
  }

  .sa-project-back-block {
    text-align: left;
  }

  .sa-project-back-actions {
    justify-content: center;
  }

  .sa-project-back-live,
  .sa-project-back-return {
    width: 100%;
  }

  .sa-video-badge {
    width: 100px;
    height: 100px;
    bottom: -15px;
    left: 0;
  }

  .sa-spirit-badge {
    width: 100px;
    height: 100px;
    bottom: -15px;
    left: 0;
  }

  .sa-spirit-icon {
    width: 40px;
  }

  .sa-magic-lens {
    width: 110px;
    height: 110px;
    bottom: -15px;
    left: 0;
    transform: rotate(-3deg);
  }

  .sa-control-badge {
    width: 110px;
    height: 110px;
    bottom: -15px;
    left: 0;
    transform: rotate(0deg);
  }

  .sa-control-text strong {
    font-size: 0.75rem;
  }

  .sa-nader-logo {
    margin: 0 auto 20px;
    width: 120px;
  }

  .sa-swipe-deck {
    width: 100px;
    bottom: -15px;
    left: auto;
    right: 0;
    transform: rotate(-5deg);
  }

  #sas-final-dock {
    padding: 36px 16px 130px;
  }

  .sa-social-icon {
    width: 50px;
    height: 50px;
  }

  .sa-inquiry-dock {
    padding: 20px 0;
    font-size: 1rem;
  }
}

/* =========================================================
   ABOUT PAGE — STEP 1
   Hero + Process
========================================================= */

.sa-page-about {
  background: #F2F4F8;
}

/* =========================
   ABOUT HERO
========================= */

.sa-about-hero {
  background: #F2F4F8;
  padding: clamp(60px, 8vw, 120px) 15px clamp(140px, 15vw, 220px);
  overflow: hidden;
}

.sa-about-hero__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  position: relative;
}

.sa-about-hero__media {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
}

.sa-about-hero__circle {
  width: clamp(400px, 48vw, 650px);
  height: clamp(400px, 48vw, 650px);
  border-radius: 50%;
  overflow: hidden;
  background: #E8ECF3;
  box-shadow: 20px 20px 60px rgba(13, 36, 64, 0.1);
}

.sa-about-hero__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.sa-about-hero__content {
  position: relative;
  z-index: 1;
}

.sa-about-hero__panel {
  background: #FFFFFF;
  padding: clamp(60px, 6vw, 80px) clamp(40px, 5vw, 60px) clamp(60px, 6vw, 80px) 180px;
  margin-left: -160px;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(13, 36, 64, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sa-about-hero__title {
  margin: 0 0 24px;
  font-family: "Kirang Haerang", cursive;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  color: #0D2440;
  transform: rotate(-2deg);
}

.sa-about-hero__text {
  margin: 0 0 32px;
  max-width: 500px;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.7;
  color: #4A5568;
}

.sa-about-hero__text strong {
  color: #2E5E99;
  font-weight: 900;
}

.sa-about-hero__cta {
  align-self: flex-start;
}

.sa-about-hero__signature {
  margin-top: 20px;
  font-size: 14px;
  color: #A0AEC0;
  font-style: italic;
}

/* =========================
   ABOUT PROCESS
========================= */

.sa-about-process {
  background: #F2F4F8;
  padding-bottom: 100px;
  position: relative;
  z-index: 20;
}

.sa-about-process__inner {
  width: min(1150px, 92%);
  margin: -90px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  box-shadow: 0 40px 80px rgba(13, 36, 64, 0.1);
}

.sa-process-card {
  padding: clamp(30px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease;
}

.sa-process-card:hover {
  transform: translateY(-10px);
  z-index: 2;
}

.sa-process-card--muted {
  background: #7BA4D0;
  color: #FFFFFF;
}

.sa-process-card--light {
  background: #E1E8F0;
  color: #0D2440;
}

.sa-process-card--navy {
  background: #0D2440;
  color: #FFFFFF;
}

.sa-process-card__num {
  display: block;
  margin-bottom: 24px;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.sa-process-card--light .sa-process-card__num {
  color: #2E5E99;
}

.sa-process-card__title {
  margin: 0 0 16px;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sa-process-card__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* =========================
   ABOUT MOBILE
========================= */

@media (max-width: 980px) {
  .sa-about-hero {
    padding-bottom: 60px;
  }

  .sa-about-hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sa-about-hero__media {
    justify-content: center;
    margin-bottom: -70px;
    z-index: 10;
  }

  .sa-about-hero__circle {
    width: min(380px, 85vw);
    height: min(380px, 85vw);
  }

  .sa-about-hero__panel {
    margin-left: 0;
    padding: 90px 15px 50px;
    text-align: center;
    align-items: center;
  }

  .sa-about-hero__cta {
    align-self: center;
  }

  .sa-about-process__inner {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .sa-process-card--muted {
    border-radius: 12px 12px 0 0;
  }

  .sa-process-card--navy {
    border-radius: 0 0 12px 12px;
  }
}


/* =========================================================
   ABOUT PAGE — STEP 2
   Identity + Deliverables + Founder + Final Connect
========================================================= */

.sa-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.sa-about-btn:hover {
  transform: translateY(-3px);
}

.sa-about-btn--primary {
  color: #ffffff;
  background: linear-gradient(90deg, #2E5E99 0%, #0D2440 100%);
  box-shadow: 0 10px 25px rgba(46, 94, 153, 0.3);
}

.sa-about-btn--primary:hover {
  box-shadow: 0 15px 35px rgba(46, 94, 153, 0.4);
}

.sa-about-btn--secondary {
  background: transparent;
  border: 2px solid #2E5E99;
  color: #2E5E99;
}

.sa-about-btn--secondary:hover {
  background: #2E5E99;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(46, 94, 153, 0.2);
}

/* =========================
   ABOUT IDENTITY
========================= */

.sa-about-identity {
  background: #0D2440;
  padding: clamp(60px, 8vw, 120px) 0;
}

.sa-about-identity__inner {
  width: min(1150px, 100%);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.sa-about-identity__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sa-about-identity__label {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7BA4D0;
}

.sa-about-identity__title {
  margin: 0;
  padding-right: 10px;
  font-family: "Kirang Haerang", cursive;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.1;
  color: #ffffff;
}

.sa-about-identity__pitch {
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid #2E5E99;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 300;
}

.sa-about-identity__bio {
  margin: 0;
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}

.sa-about-identity__cards-wrap {
  position: relative;
  width: 100%;
}

.sa-about-identity__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.sa-role-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.sa-role-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: #7BA4D0;
  transform: translateX(10px);
}

.sa-role-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-role-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sa-role-card__text h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
}

.sa-role-card__text span {
  font-size: 0.9rem;
  color: #7BA4D0;
}

/* =========================
   ABOUT DELIVERABLES
========================= */

.sa-about-deliverables {
  background: #F2F4F8;
  padding: clamp(80px, 8vw, 120px) 20px;
  overflow: hidden;
}

.sa-about-deliverables__inner {
  width: min(1150px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.sa-about-deliverables__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sa-about-deliverables__eyebrow {
  margin-bottom: -10px;
  font-family: "Kirang Haerang", cursive;
  font-size: 2rem;
  color: #2E5E99;
  transform: rotate(-1deg);
}

.sa-about-deliverables__title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  font-weight: 900;
  color: #0D2440;
}

.sa-about-deliverables__intro {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4A5568;
}

.sa-about-deliverables__list {
  display: grid;
  gap: 20px;
  margin-top: 10px;
}

.sa-about-check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sa-about-check-icon {
  width: 24px;
  height: 24px;
  margin-top: 3px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2E5E99;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.sa-about-check-text strong {
  display: block;
  margin-bottom: 4px;
  color: #0D2440;
  font-weight: 800;
  font-size: 1.05rem;
}

.sa-about-check-text span {
  display: block;
  color: #4A5568;
  font-size: 0.95rem;
  line-height: 1.5;
}

.sa-about-deliverables__visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-about-deliverables__mockup {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(13, 36, 64, 0.15));
  z-index: 1;
}

.sa-about-deliverables__logo-card {
  position: absolute;
  left: -20px;
  bottom: 40px;
  width: 140px;
  padding: 20px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(13, 36, 64, 0.2);
  text-align: center;
  z-index: 2;
  animation: saAboutFloatLogo 6s infinite ease-in-out;
}

.sa-about-deliverables__logo-card img {
  width: 100%;
  display: block;
}

.sa-about-deliverables__logo-card span {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4A5568;
  font-weight: 700;
}

@keyframes saAboutFloatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =========================
   ABOUT FOUNDER
========================= */

.sa-about-founder {
  background: #071321;
  padding: clamp(80px, 8vw, 120px) 20px;
  overflow: hidden;
}

.sa-about-founder__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  position: relative;
}

.sa-about-founder__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sa-about-founder__label {
  margin-bottom: -10px;
  font-family: "Kirang Haerang", cursive;
  font-size: 2rem;
  color: #2E5E99;
  transform: rotate(-1deg);
}

.sa-about-founder__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  font-weight: 900;
}

.sa-about-founder__body {
  margin: 0;
  max-width: 550px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.sa-about-founder__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 20px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid #2E5E99;
}

.sa-about-founder__guarantee-icon {
  width: 42px;
  height: auto;
  flex-shrink: 0;
}

.sa-about-founder__guarantee-text h4 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sa-about-founder__guarantee-text p {
  margin: 0;
  color: #A0AEC0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.sa-about-founder__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sa-about-founder__glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(46, 94, 153, 0.25) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.sa-about-founder__image-frame {
  position: relative;
  z-index: 1;
  width: clamp(280px, 35vw, 420px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.sa-about-founder__image-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   ABOUT FINAL CONNECT
========================= */

.sa-about-connect {
  background: #F2F4F8;
  padding: clamp(80px, 8vw, 120px) 20px;
  text-align: center;
}

.sa-about-connect__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.sa-about-connect__socials {
  width: 100%;
  max-width: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.sa-about-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(46, 94, 153, 0.1);
  box-shadow: 0 10px 30px rgba(13, 36, 64, 0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sa-about-social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(13, 36, 64, 0.1);
  border-color: #2E5E99;
}

.sa-about-social-card__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.sa-about-social-card__label {
  font-size: 1.1rem;
  font-weight: 900;
  color: #0D2440;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sa-about-social-card__handle {
  font-size: 0.9rem;
  color: #4A5568;
}

.sa-about-connect__cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

.sa-about-connect__heading {
  margin: 0;
  font-family: "Kirang Haerang", cursive;
  font-size: 2.5rem;
  color: #2E5E99;
  transform: rotate(-2deg);
}

.sa-about-connect__desc {
  margin: 0;
  max-width: 450px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4A5568;
}

/* =========================
   ABOUT STEP 2 MOBILE
========================= */

@media (max-width: 900px) {
  .sa-about-identity {
    padding: 50px 0 80px;
  }

  .sa-about-identity__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }

  .sa-about-identity__content {
    width: 100%;
    padding: 0 30px;
  }

  .sa-about-identity__cards {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 15px;
    padding: 10px 20px 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .sa-about-identity__cards::-webkit-scrollbar {
    display: none;
  }

  .sa-role-card {
    width: 85vw;
    min-width: 85vw;
    flex-shrink: 0;
    scroll-snap-align: center;
    background: rgba(255,255,255,0.08);
  }

  .sa-role-card:hover {
    transform: none;
  }

  .sa-about-identity__cards-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 40px;
    width: 50px;
    background: linear-gradient(to right, transparent, #0D2440);
    z-index: 5;
    pointer-events: none;
  }

  .sa-about-deliverables__inner,
  .sa-about-founder__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sa-about-deliverables__visual {
    order: 2;
    height: auto;
    margin-top: -20px;
  }

  .sa-about-deliverables__logo-card {
    width: 100px;
    left: 0;
    bottom: -20px;
  }

  .sa-about-founder__inner {
    text-align: center;
  }

  .sa-about-founder__visual {
    order: -1;
  }

  .sa-about-founder__guarantee {
    text-align: left;
  }

  .sa-about-connect__socials {
    grid-template-columns: 1fr;
  }

  .sa-about-connect__heading {
    font-size: 2rem;
  }
}


/* =========================================================
   SERVICES PAGE
========================================================= */

.sa-page-services {
  background: #0D2440;
}

/* =========================
   SERVICES BUTTONS
========================= */

.sa-services-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  text-transform: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.sa-services-btn:hover {
  transform: translateY(-3px);
}

.sa-services-btn--primary {
  background: linear-gradient(90deg, #2E5E99 0%, #0D2440 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(46, 94, 153, 0.25);
}

.sa-services-btn--ghost {
  background: transparent;
  color: #2E5E99;
  border: 2px solid #2E5E99;
}

.sa-services-btn--ghost:hover {
  background: #2E5E99;
  color: #ffffff;
}

/* =========================
   SERVICES HERO
========================= */

.sa-services-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0D2440;
  padding: 20px;
  isolation: isolate;
}

.sa-services-hero__bg,
.sa-services-hero__overlay {
  position: absolute;
  inset: 0;
}

.sa-services-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.sa-services-hero__overlay {
  background: linear-gradient(180deg, rgba(13,36,64,0.85) 0%, rgba(13,36,64,0.5) 50%, rgba(13,36,64,0.9) 100%);
  z-index: 1;
}

.sa-services-hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1120px;
}

.sa-services-hero__card {
  max-width: 820px;
  padding: clamp(24px, 4vw, 50px);
  border-radius: 20px;
  background: rgba(13, 36, 64, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.sa-services-hero__title {
  margin: 0 0 16px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 60px);
  line-height: 1.1;
  color: #ffffff;
}

.sa-services-hero__title span {
  display: block;
  font-family: "Kirang Haerang", cursive;
  color: #7BA4D0;
  transform: rotate(-2deg);
}

.sa-services-hero__text {
  max-width: 600px;
  margin: 0 0 28px;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}

.sa-services-hero__trust {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.sa-services-hero__trust div {
  position: relative;
  padding-left: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sa-services-hero__trust div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7BA4D0;
}

/* =========================
   SERVICES MAIN
========================= */

.sa-services-main {
  position: relative;
  background: #0D2440;
  padding: clamp(60px, 8vw, 100px) 20px;
  overflow: hidden;
}

.sa-services-main::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 94, 153, 0.4) 0%, transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}

.sa-services-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sa-services-head {
  max-width: 820px;
  margin-bottom: 50px;
}

.sa-services-eyebrow,
.sa-services-founder__eyebrow,
.sa-services-ai__eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2E5E99;
  margin-bottom: 16px;
  background: rgba(46, 94, 153, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(46,94,153,0.2);
}

.sa-services-head__title {
  margin: 0 0 16px;
  font-family: "Lato", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: #ffffff;
  font-weight: 900;
}

.sa-services-head__title span {
  margin-left: 10px;
  font-family: "Kirang Haerang", cursive;
  color: #7BA4D0;
  font-size: 1.25em;
}

.sa-services-head__text {
  max-width: 65ch;
  color: rgba(255,255,255,0.75);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  margin: 0;
}

.sa-services-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.sa-services-featured {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px 10px 40px 10px;
  padding: clamp(30px, 4vw, 50px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.sa-services-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #2E5E99;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(46,94,153,0.35);
}

.sa-services-featured h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 900;
}

.sa-services-featured p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.6;
}

.sa-services-checks {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 16px;
}

.sa-services-checks li {
  position: relative;
  padding-left: 38px;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.5;
}

.sa-services-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #2E5E99;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-services-best {
  padding-top: 20px;
  border-top: 1px dashed rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.sa-services-best strong {
  color: #ffffff;
}

.sa-services-sidecards {
  display: grid;
  gap: 16px;
}

.sa-services-sidecard {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px;
}

.sa-services-sidecard__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.sa-services-sidecard__top h3 {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
  font-weight: 900;
}

.sa-services-sidecard__top span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.sa-services-sidecard p {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.5;
}

.sa-services-sidecard ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.sa-services-sidecard li {
  position: relative;
  padding-left: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.sa-services-sidecard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: #2E5E99;
  border-radius: 50%;
}

/* =========================
   SERVICES PROCESS
========================= */

.sa-services-process {
  background-color: #0D2440;
  background-image: radial-gradient(circle at 50% 0%, rgba(46,94,153,0.15), transparent 60%);
  padding: clamp(80px, 8vw, 120px) 20px;
  position: relative;
}

.sa-services-process__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.sa-services-process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7BA4D0;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.sa-services-process__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2E5E99;
  box-shadow: 0 0 0 4px rgba(46,94,153,0.2);
}

.sa-services-process__head h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
}

.sa-services-process__head p {
  margin: 0 auto;
  max-width: 60ch;
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
}

.sa-services-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

.sa-services-step {
  position: relative;
  width: 320px;
  flex-shrink: 0;
  padding: 40px 30px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.sa-services-step__num {
  margin-bottom: 10px;
  font-family: "Kirang Haerang", cursive;
  font-size: 3rem;
  color: #7BA4D0;
  transform: rotate(-2deg);
}

.sa-services-step h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
}

.sa-services-step h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 8px;
  background: #2E5E99;
  border-radius: 2px;
}

.sa-services-step p {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  line-height: 1.6;
}

.sa-services-step ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.sa-services-step li {
  position: relative;
  padding-left: 14px;
  color: rgba(255,255,255,0.64);
  font-size: 14px;
}

.sa-services-step li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2E5E99;
  font-weight: bold;
}

.sa-services-step--one::after {
  content: "";
  position: absolute;
  top: 30%;
  right: -60px;
  width: 70px;
  height: 40px;
  border-top: 2px dashed rgba(255,255,255,0.3);
  border-radius: 50% 50% 0 0;
  transform: rotate(10deg);
}

.sa-services-step--two::after {
  content: "";
  position: absolute;
  bottom: 30%;
  right: -60px;
  width: 70px;
  height: 40px;
  border-bottom: 2px dashed rgba(255,255,255,0.3);
  border-radius: 0 0 50% 50%;
  transform: rotate(-10deg);
}

.sa-services-swipehint {
  display: none;
}

/* =========================
   SERVICES FOUNDER
========================= */

.sa-services-founder {
  position: relative;
  background: #F5F7FA;
  padding: clamp(80px, 8vw, 120px) 20px;
  overflow: hidden;
}

.sa-services-founder::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(13,36,64,0.05), transparent);
}

.sa-services-founder__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.sa-services-founder__left {
  padding-right: 20px;
}

.sa-services-founder__left h2 {
  margin: 0 0 24px;
  color: #0D2440;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  font-weight: 900;
}

.sa-services-founder__lead {
  max-width: 65ch;
  margin: 0 0 40px;
  color: #4A5568;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
}

.sa-services-founder__points {
  display: grid;
  gap: 24px;
}

.sa-services-founder__point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.sa-services-founder__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(13,36,64,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sa-services-founder__icon img {
  width: 28px;
  height: auto;
  object-fit: contain;
}

.sa-services-founder__point h3 {
  margin: 0 0 6px;
  color: #0D2440;
  font-size: 18px;
  font-weight: 900;
}

.sa-services-founder__point p {
  margin: 0;
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
}

.sa-services-founder__support {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(13,36,64,0.08);
  border-radius: 20px 20px 80px 20px;
  padding: 40px 32px;
  box-shadow: 0 25px 50px -12px rgba(13,36,64,0.15);
  overflow: hidden;
}

.sa-services-founder__support::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,94,153,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,94,153,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.sa-services-founder__support > * {
  position: relative;
  z-index: 1;
}

.sa-services-founder__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 4px;
  background: #0D2440;
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.sa-services-founder__support h3 {
  margin: 0 0 16px;
  color: #0D2440;
  font-size: 24px;
  font-weight: 900;
}

.sa-services-founder__support p {
  margin: 0 0 24px;
  color: #4A5568;
  font-size: 16px;
  line-height: 1.6;
}

.sa-services-founder__checklist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.sa-services-founder__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0D2440;
  font-size: 14px;
  font-weight: 700;
}

.sa-services-founder__checklist li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46,94,153,0.1);
  color: #2E5E99;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-services-founder__note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dashed rgba(13,36,64,0.08);
  font-family: "Kirang Haerang", cursive;
  font-size: 1.4rem;
  color: #7BA4D0;
  transform: rotate(-1deg);
  line-height: 1.2;
}

/* =========================
   SERVICES AI
========================= */

.sa-services-ai {
  position: relative;
  background: #0D2440;
  padding: clamp(90px, 9vw, 140px) 20px;
  overflow: hidden;
}

.sa-services-ai::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(46, 94, 153, 0.6) 0%, transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}

.sa-services-ai__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.sa-services-ai__content {
  position: relative;
  z-index: 2;
}

.sa-services-ai__eyebrow {
  color: #7BA4D0;
  border-color: rgba(46,94,153,0.3);
  background: rgba(46,94,153,0.15);
  margin-bottom: 24px;
}

.sa-services-ai h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 900;
}

.sa-services-ai__lead {
  max-width: 90%;
  margin: 0 0 40px;
  color: rgba(255,255,255,0.85);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
}

.sa-services-ai__cards {
  display: grid;
  gap: 20px;
}

.sa-services-ai__card {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.sa-services-ai__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #2E5E99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sa-services-ai__card:hover::before {
  opacity: 1;
}

.sa-services-ai__iconbox {
  width: 56px;
  height: 56px;
  background: rgba(13,36,64,0.6);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sa-services-ai__iconbox img {
  width: 32px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(46,94,153,0.5));
}

.sa-services-ai__card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
}

.sa-services-ai__card p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.5;
}

.sa-services-ai__note {
  margin-top: 30px;
  display: inline-block;
  font-family: "Kirang Haerang", cursive;
  font-size: 1.6rem;
  color: #7BA4D0;
  transform: rotate(-1.5deg);
}

.sa-services-ai__showcase {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.sa-services-ai__codebg {
  position: absolute;
  top: 50px;
  right: 20px;
  white-space: pre;
  color: rgba(46,94,153,0.1);
  font-family: monospace;
  font-size: 14px;
  line-height: 1.4;
  user-select: none;
}

.sa-services-ai__device {
  position: absolute;
  background: #121212;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}

.sa-services-ai__screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.sa-services-ai__screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sa-services-ai__laptop {
  width: 85%;
  aspect-ratio: 16 / 10;
  top: 10%;
  left: 0;
  padding-bottom: 22px;
  transform: rotateY(5deg) rotateX(2deg);
}

.sa-services-ai__phone {
  width: 32%;
  aspect-ratio: 9 / 18;
  bottom: 0;
  right: 5%;
  z-index: 5;
  border-radius: 24px;
  padding: 8px;
  transform: rotateY(-5deg);
  box-shadow: -20px 20px 50px rgba(0,0,0,0.5);
}

.sa-services-ai__rec {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ff4444;
  font-family: monospace;
  font-size: 11px;
  font-weight: bold;
}

.sa-services-ai__rec span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  animation: saServicesBlink 2s infinite;
}

@keyframes saServicesBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* =========================
   SERVICES CTA
========================= */

.sa-services-cta {
  position: relative;
  background: #ffffff;
  padding: clamp(80px, 8vw, 120px) 20px;
  text-align: center;
  overflow: hidden;
}

.sa-services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #0D2440;
  border-radius: 2px;
  opacity: 0.1;
}

.sa-services-cta__wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.sa-services-cta h2 {
  margin: 0;
  color: #0D2440;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 900;
}

.sa-services-cta p {
  margin: 0;
  max-width: 600px;
  color: #4A5568;
  font-size: 18px;
  line-height: 1.6;
}

.sa-services-cta__buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.sa-services-cta__icons {
  width: 100%;
  max-width: 600px;
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(13,36,64,0.08);
  display: flex;
  justify-content: center;
  gap: 60px;
}

.sa-services-cta__iconlink {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.sa-services-cta__iconlink:hover {
  transform: translateY(-5px);
}

.sa-services-cta__iconlink img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.sa-services-cta__iconlink span {
  color: #0D2440;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

/* =========================
   SERVICES MOBILE
========================= */

@media (max-width: 1024px) {
  .sa-services-process {
    padding: 60px 0;
  }

  .sa-services-steps {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 20px 60px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .sa-services-steps::-webkit-scrollbar {
    display: none;
  }

  .sa-services-step {
    width: 85vw;
    max-width: 350px;
    scroll-snap-align: center;
  }

  .sa-services-step--one::after,
  .sa-services-step--two::after {
    top: 50%;
    right: -25px;
    width: 30px;
    height: 2px;
    border: none;
    border-top: 2px dashed rgba(255,255,255,0.3);
    border-radius: 0;
    transform: translateY(-50%);
  }

  .sa-services-swipehint {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: block;
    color: #ffffff;
    font-size: 24px;
    opacity: 0.6;
    pointer-events: none;
  }
}

@media (max-width: 980px) {
  .sa-services-hero {
    min-height: auto;
    align-items: flex-start;
    padding: 80px 16px 60px;
  }

  .sa-services-hero__card {
    text-align: center;
    padding: 24px;
    background: rgba(13,36,64,0.6);
    border-radius: 16px;
  }

  .sa-services-hero__text {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    margin-bottom: 24px;
  }

  .sa-services-hero__trust {
    justify-content: center;
    margin-top: 24px;
    padding-top: 16px;
    gap: 12px 20px;
  }

  .sa-services-btn--primary,
  .sa-services-btn--ghost {
    width: 100%;
  }

  .sa-services-grid,
  .sa-services-founder__grid,
  .sa-services-ai__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sa-services-featured {
    border-radius: 20px;
  }

  .sa-services-founder__left {
    padding-right: 0;
  }

  .sa-services-founder__support {
    border-radius: 20px;
  }

  .sa-services-ai__content {
    order: 2;
  }

  .sa-services-ai__showcase {
    order: 1;
    height: 400px;
  }

  .sa-services-ai__laptop {
    width: 90%;
    left: 5%;
    transform: none;
  }

  .sa-services-ai__phone {
    width: 35%;
    right: 10%;
    transform: none;
  }
}

@media (max-width: 600px) {
  .sa-services-main,
  .sa-services-founder,
  .sa-services-ai,
  .sa-services-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sa-services-sidecard__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .sa-services-ai__card {
    padding: 16px;
    gap: 16px;
  }

  .sa-services-ai__iconbox {
    width: 48px;
    height: 48px;
  }

  .sa-services-ai__iconbox img {
    width: 24px;
  }

  .sa-services-cta__buttons {
    flex-direction: column;
  }

  .sa-services-cta__icons {
    gap: 40px;
    padding-top: 30px;
  }

  .sa-services-cta__iconlink img {
    width: 50px;
    height: 50px;
  }
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.sa-page-contact {
  background: #071321;
}

.sa-contact-wrap {
  width: min(1200px, 100%);
  margin: 0 auto;
}

/* =========================
   CONTACT HERO
========================= */

.sa-contact-hero {
  position: relative;
  min-height: clamp(500px, 70vh, 800px);
  padding: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('https://sastructures.com/wp-content/uploads/2026/01/contact-hero-mysite-scaled.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.sa-contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,19,33,0.95) 0%, rgba(7,19,33,0.75) 45%, rgba(7,19,33,0.1) 100%);
  z-index: 1;
}

.sa-contact-hero__wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.sa-contact-hero__card {
  background: rgba(13, 36, 64, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid #2E5E99;
  border-radius: 20px;
  padding: clamp(30px, 5vw, 60px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.sa-contact-hero__eyebrow {
  display: block;
  margin-bottom: 10px;
  font-family: "Kirang Haerang", cursive;
  font-size: 1.8rem;
  color: #7BA4D0;
  transform: rotate(-2deg);
  transform-origin: left;
}

.sa-contact-hero__title {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.sa-contact-hero__text {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
}

/* =========================
   CONTACT FORM SHELL
========================= */

.sa-contact-form-section {
  background: #071321;
  padding: 110px 20px 80px;
}

.sa-contact-form-shell {
  position: relative;
  background: #0D2440;
  border: 1px solid rgba(123,164,208,0.22);
  border-radius: 20px;
  padding: 58px 42px 48px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.sa-contact-form-shell__label {
  position: absolute;
  top: -16px;
  left: 42px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 18px;
  border-radius: 999px;
  background: #14335b;
  border: 1px solid rgba(123,164,208,0.35);
  color: #7BA4D0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sa-contact-form {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.sa-contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.sa-contact-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sa-contact-field label,
.sa-contact-field__title {
  color: #7BA4D0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sa-contact-field input[type="text"],
.sa-contact-field input[type="email"],
.sa-contact-field textarea {
  width: 100%;
  border: 1px solid rgba(123,164,208,0.14);
  border-radius: 10px;
  background: #04101d;
  color: #ffffff;
  padding: 16px 20px;
  font-size: 16px;
  line-height: 1.5;
  outline: none;
}

.sa-contact-field input::placeholder,
.sa-contact-field textarea::placeholder {
  color: rgba(123,164,208,0.45);
}

.sa-contact-field textarea {
  min-height: 150px;
  resize: vertical;
}

.sa-contact-checklist {
  border-top: 1px solid rgba(123,164,208,0.12);
}

.sa-contact-check {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(123,164,208,0.12);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
}

.sa-contact-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #2E5E99;
  flex-shrink: 0;
}

.sa-contact-check--consent {
  align-items: flex-start;
  border-top: 1px solid rgba(123,164,208,0.12);
  border-bottom: 0;
  padding-bottom: 0;
}

.sa-contact-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
}

.sa-contact-quiz {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.sa-contact-quiz input {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(46,94,153,0.85);
  border-radius: 10px;
  background: #04101d;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  outline: none;
}

.sa-contact-submit {
  min-width: 152px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid rgba(123,164,208,0.2);
  border-radius: 999px;
  background: linear-gradient(90deg, #2E5E99 0%, #14335b 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}

/* =========================
   WHATSAPP SIGNAL
========================= */

.sa-contact-whatsapp {
  position: relative;
  padding: clamp(80px, 8vw, 120px) 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #071321;
  overflow: hidden;
}

.sa-contact-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,94,153,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,94,153,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.sa-contact-whatsapp__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(46,94,153,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: saContactSonar 4s linear infinite;
}

.sa-contact-whatsapp__ring--delay {
  animation-delay: 2s;
}

@keyframes saContactSonar {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; border-width: 2px; }
  20% { opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(4); opacity: 0; border-width: 0; }
}

.sa-contact-whatsapp__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 800px;
}

.sa-contact-whatsapp__kicker {
  display: block;
  margin-bottom: 12px;
  font-family: "Kirang Haerang", cursive;
  font-size: 1.6rem;
  color: #25D366;
  transform: rotate(-2deg);
  text-shadow: 0 0 10px rgba(37,211,102,0.4);
}

.sa-contact-whatsapp h2 {
  margin: 0 0 36px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 900;
}

.sa-contact-whatsapp__btn {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 20px 40px;
  border-radius: 60px;
  text-decoration: none;
  background: rgba(13,36,64,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37,211,102,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.sa-contact-whatsapp__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.sa-contact-whatsapp__icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(37,211,102,0.3));
}

.sa-contact-whatsapp__text {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.sa-contact-whatsapp__label {
  margin-bottom: 6px;
  color: #7BA4D0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.sa-contact-whatsapp__action {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.sa-contact-whatsapp__action span {
  color: #25D366;
  margin-left: 5px;
}

/* =========================
   CONTACT GRID
========================= */

.sa-contact-grid {
  position: relative;
  z-index: 10;
  margin-bottom: -2px;
  padding: 0 20px 100px;
  background: #071321;
}

.sa-contact-grid__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
}

.sa-contact-grid__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  background: rgba(13,36,64,0.4);
  border: 1px solid rgba(123,164,208,0.1);
}

.sa-contact-grid__icon {
  width: 60px;
  height: 60px;
  background: transparent;
}

.sa-contact-grid__icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(46,94,153,0.2));
}

.sa-contact-grid__label {
  margin-bottom: 4px;
  color: #7BA4D0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
}

.sa-contact-grid__value {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}

/* =========================
   CONTACT MOBILE
========================= */

@media (max-width: 900px) {
  .sa-contact-hero__wrap {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .sa-contact-hero__overlay {
    background: linear-gradient(180deg, rgba(7,19,33,0.85) 0%, rgba(7,19,33,0.7) 60%, rgba(7,19,33,0.9) 100%);
  }

  .sa-contact-hero__card {
    text-align: center;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-top: 4px solid #2E5E99;
    padding: 40px 24px;
  }

  .sa-contact-hero__eyebrow,
  .sa-contact-hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .sa-contact-form-shell {
    padding: 46px 20px 32px;
  }

  .sa-contact-form-shell__label {
    left: 20px;
  }

  .sa-contact-form__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sa-contact-form__bottom {
    flex-direction: column;
    align-items: center;
  }

  .sa-contact-submit {
    width: 100%;
  }

  .sa-contact-whatsapp__btn {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding: 30px 20px;
    border-radius: 20px;
  }

  .sa-contact-whatsapp__text {
    text-align: center;
  }

  .sa-contact-grid__wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sa-contact-grid__card {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 20px;
  }

  .sa-contact-grid__icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
  }
}

/* =========================================================
   CONTACT FORM 7 MAPPING + STATUS
========================================================= */

.sa-contact-cf7-wrap .wpcf7 {
  width: 100%;
}

.sa-contact-cf7-wrap .wpcf7 form {
  margin: 0;
}

.sa-contact-cf7-wrap .wpcf7-form {
  display: grid;
  gap: 32px;
}

.sa-contact-cf7-wrap .sa-cf7-row {
  display: grid;
  gap: 28px;
}

.sa-contact-cf7-wrap .sa-cf7-row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sa-contact-cf7-wrap .sa-cf7-group {
  display: grid;
  gap: 14px;
}

.sa-contact-cf7-wrap .sa-cf7-group > label,
.sa-contact-cf7-wrap .sa-cf7-consent > label {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 900;
  color: #7BA4D0;
}

.sa-contact-cf7-wrap .sa-cf7-field,
.sa-contact-cf7-wrap .sa-cf7-select,
.sa-contact-cf7-wrap .sa-cf7-textarea,
.sa-contact-cf7-wrap .sa-cf7-quiz {
  width: 100%;
  border: 1px solid rgba(123,164,208,0.18);
  border-radius: 16px;
  background: rgba(1, 10, 22, 0.82);
  color: #E7F0FA;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  outline: none;
  box-shadow: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.sa-contact-cf7-wrap .sa-cf7-field,
.sa-contact-cf7-wrap .sa-cf7-select,
.sa-contact-cf7-wrap .sa-cf7-quiz {
  min-height: 58px;
  padding: 0 22px;
}

.sa-contact-cf7-wrap .sa-cf7-textarea {
  min-height: 168px;
  padding: 20px 22px;
  resize: vertical;
}

.sa-contact-cf7-wrap .sa-cf7-field::placeholder,
.sa-contact-cf7-wrap .sa-cf7-textarea::placeholder {
  color: rgba(123, 164, 208, 0.62);
}

.sa-contact-cf7-wrap .sa-cf7-field:focus,
.sa-contact-cf7-wrap .sa-cf7-select:focus,
.sa-contact-cf7-wrap .sa-cf7-textarea:focus,
.sa-contact-cf7-wrap .sa-cf7-quiz:focus {
  border-color: rgba(123, 164, 208, 0.42);
  box-shadow: 0 0 0 3px rgba(46, 94, 153, 0.18);
}

.sa-contact-cf7-wrap .sa-cf7-select {
  appearance: none;
  cursor: pointer;
}

.sa-contact-cf7-wrap .sa-cf7-checklist .wpcf7-form-control-wrap {
  display: block;
}

.sa-contact-cf7-wrap .sa-cf7-checklist .wpcf7-checkbox {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(123, 164, 208, 0.12);
}

.sa-contact-cf7-wrap .sa-cf7-checklist .wpcf7-list-item {
  display: block;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(123, 164, 208, 0.12);
}

.sa-contact-cf7-wrap .sa-cf7-checklist .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #E7F0FA;
  font-size: 16px;
  line-height: 1.45;
  cursor: pointer;
}

.sa-contact-cf7-wrap .sa-cf7-checklist input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: #7BA4D0;
  flex: 0 0 auto;
}

.sa-contact-cf7-wrap .sa-cf7-consent .wpcf7-acceptance {
  display: block;
}

.sa-contact-cf7-wrap .sa-cf7-consent .wpcf7-list-item {
  display: block;
  margin: 0;
}

.sa-contact-cf7-wrap .sa-cf7-consent .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #E7F0FA;
  font-size: 15px;
  line-height: 1.7;
}

.sa-contact-cf7-wrap .sa-cf7-consent input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 4px 0 0;
  accent-color: #7BA4D0;
  flex: 0 0 auto;
}

.sa-contact-cf7-wrap .sa-cf7-consent a {
  color: #E7F0FA;
  text-decoration: underline;
}

.sa-contact-cf7-wrap .sa-cf7-quiz-submit {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding-top: 6px;
}

.sa-contact-cf7-wrap .sa-cf7-quiz-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sa-contact-cf7-wrap .sa-cf7-quiz-divider {
  color: rgba(123, 164, 208, 0.72);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.sa-contact-cf7-wrap .sa-cf7-quiz-wrap .wpcf7-form-control-wrap {
  display: flex;
  align-items: center;
}

.sa-contact-cf7-wrap .sa-cf7-quiz-wrap .wpcf7-quiz-label {
  display: none;
}
.sa-contact-cf7-wrap .sa-cf7-quiz-text {
  color: #E7F0FA;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.sa-contact-cf7-wrap .sa-cf7-quiz {
  width: 64px;
  min-width: 64px;
  height: 64px;
  text-align: center;
  padding: 0;
  margin: 0;
}

.sa-contact-cf7-wrap .sa-cf7-submit-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sa-contact-cf7-wrap .sa-cf7-submit {
  min-width: 210px;
  min-height: 62px;
  padding: 0 34px;
  border: 1px solid rgba(123, 164, 208, 0.22);
  border-radius: 999px;
  background: linear-gradient(90deg, #3E73B8 0%, #183A67 100%);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(10, 25, 45, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sa-contact-cf7-wrap .sa-cf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(10, 25, 45, 0.34);
  filter: brightness(1.04);
}

.sa-contact-cf7-wrap .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #ffd4d4;
  font-size: 13px;
  line-height: 1.5;
}

.sa-contact-cf7-wrap .wpcf7-response-output {
  margin: 0 !important;
  border-radius: 14px;
  padding: 14px 18px !important;
  color: #E7F0FA;
  border: 1px solid rgba(123,164,208,0.24) !important;
  background: rgba(1, 10, 22, 0.72);
}

.sa-contact-cf7-wrap .wpcf7-spinner {
  display: none;
}

.sa-contact-form-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(123,164,208,0.2);
  background: rgba(4, 16, 29, 0.9);
  color: #ffffff;
  line-height: 1.6;
}

.sa-contact-form-status[hidden] {
  display: none !important;
}

.sa-contact-form-status::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 2px;
  border-radius: 50%;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.sa-contact-form-status.is-success {
  border-color: rgba(37,211,102,0.35);
  background: rgba(8, 39, 24, 0.55);
}

.sa-contact-form-status.is-success::before {
  background-color: #25D366;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.5 11.2L3.3 8l1.1-1.1l2.1 2.1l5-5L12.6 5z'/%3E%3C/svg%3E");
}

.sa-contact-form-status.is-error {
  border-color: rgba(255,255,255,0.14);
  background: rgba(64, 20, 20, 0.42);
}

.sa-contact-form-status.is-error::before {
  background-color: #d86a6a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M4.2 4.2l7.6 7.6m0-7.6l-7.6 7.6' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.sa-contact-form-status a {
  color: #E7F0FA;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 900px) {
  .sa-contact-cf7-wrap .sa-cf7-row--2,
  .sa-contact-cf7-wrap .sa-cf7-quiz-submit {
    grid-template-columns: 1fr;
  }

  .sa-contact-cf7-wrap .sa-cf7-submit-wrap {
    justify-content: stretch;
  }

  .sa-contact-cf7-wrap .sa-cf7-submit {
    width: 100%;
    min-width: 0;
  }

  .sa-contact-cf7-wrap .sa-cf7-quiz-wrap {
    justify-content: center;
  }

  .sa-contact-cf7-wrap .sa-cf7-consent .wpcf7-list-item label {
    align-items: flex-start;
  }

  .sa-contact-form-status {
    margin-bottom: 18px;
  }
}
/* =========================
   THOUGHTS COMING SOON
========================= */

.sa-thoughts-coming-page {
  margin-left: var(--sa-sidebar-w);
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(123, 164, 208, 0.16), transparent 0 32%),
    radial-gradient(circle at 82% 22%, rgba(46, 94, 153, 0.18), transparent 0 30%),
    linear-gradient(180deg, #071321 0%, #0D2440 60%, #071321 100%);
  color: #E7F0FA;
}

.sa-thoughts-coming-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 56px 24px 96px;
  position: relative;
  overflow: hidden;
}

.sa-thoughts-coming-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.12;
  pointer-events: none;
}

.sa-thoughts-coming-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sa-thoughts-coming-shell {
  max-width: 760px;
  padding: 48px 42px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 70px rgba(0,0,0,0.28);
  backdrop-filter: blur(12px);
}

.sa-thoughts-coming-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #7BA4D0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sa-thoughts-coming-title {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.sa-thoughts-coming-accent {
  display: inline-block;
  margin-left: 8px;
  font-family: 'Kirang Haerang', cursive;
  font-weight: 400;
  color: #7BA4D0;
  transform: rotate(-3deg);
  white-space: nowrap;
}

.sa-thoughts-coming-copy {
  margin: 0;
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(231, 240, 250, 0.80);
}

.sa-thoughts-coming-status {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.sa-thoughts-coming-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 700;
}

.sa-thoughts-coming-pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7BA4D0;
  box-shadow: 0 0 0 6px rgba(123, 164, 208, 0.12);
  flex: none;
}

.sa-thoughts-coming-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.sa-thoughts-coming-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.sa-thoughts-coming-btn:hover {
  transform: translateY(-2px);
}

.sa-thoughts-coming-btn--primary {
  color: #FFFFFF;
  background: linear-gradient(135deg, #2E5E99 0%, #0D2440 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 30px rgba(0,0,0,0.22);
}

.sa-thoughts-coming-btn--secondary {
  color: #E7F0FA;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}

.sa-thoughts-coming-btn--secondary:hover {
  background: rgba(255,255,255,0.08);
}

@media (max-width: 1280px) and (min-width: 981px) {
  .sa-thoughts-coming-page {
    margin-left: var(--sa-sidebar-w-laptop);
  }

  body.sa-sidebar-collapsed .sa-thoughts-coming-page {
    margin-left: var(--sa-sidebar-collapsed-w);
  }
}

@media (max-width: 980px) {
  .sa-thoughts-coming-page {
    margin-left: 0 !important;
    padding-bottom: 110px;
  }

  .sa-thoughts-coming-hero {
    min-height: calc(100vh - 20px);
    padding: 28px 18px 42px;
  }

  .sa-thoughts-coming-shell {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .sa-thoughts-coming-title {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .sa-thoughts-coming-accent {
    display: block;
    margin-top: 8px;
    margin-left: 0;
    white-space: normal;
  }

  .sa-thoughts-coming-copy {
    font-size: 1rem;
    line-height: 1.8;
  }

  .sa-thoughts-coming-status {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sa-thoughts-coming-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sa-thoughts-coming-btn {
    width: 100%;
  }
}

/* =========================================================
   HOME PAGE ONLY — dark stage lock
========================================================= */
body.home,
body.home #page-container,
body.home #et-main-area,
body.home #main-content {
  background-color: #0F1115 !important;
}

body.home #page-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.home .et_pb_section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.home #main-footer,
body.home #footer-bottom {
  display: none !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* =========================================================
   HOME PAGE WRAPPER
========================================================= */
.sa-home-shell {
  width: 100%;
  background: #0D2440;
  color: #E7F0FA;
}

/* =========================================
   HERO — FINAL THEME-LOCKED VERSION
   ========================================= */
:root {
  --blue-muted: #7BA4D0;
  --blue-primary: #2E5E99;
  --blue-deep: #0D2440;
  --white: #FFFFFF;
  --body: #E7F0FA;
  --btn-dark-grad: linear-gradient(90deg, #0D2440, #2E5E99, #0D2440);
  --left-width: 42vw;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  background: linear-gradient(90deg, #0D2440 0%, #1A3A5E 50%, #2E5E99 100%);
  font-family: 'Lato', sans-serif;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, #0D2440 100%);
  z-index: 5;
  pointer-events: none;
}

/* LEFT */
.hero-left {
  position: relative;
  width: var(--left-width);
  height: 100vh;
  flex-shrink: 0;
  z-index: 1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image: linear-gradient(to right, black 62%, transparent 100%);
          mask-image: linear-gradient(to right, black 62%, transparent 100%);
  filter: saturate(0.8) contrast(1.1) brightness(0.9);
}

.hero-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,36,64,0.8) 0%, rgba(13,36,64,0.4) 50%, rgba(13,36,64,0.8) 100%);
  mix-blend-mode: multiply;
}

/* RIGHT */
.hero-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0 clamp(28px, 4vw, 72px) 0 26px;
  z-index: 10;
}

.content-box {
  max-width: 620px;
}

.hi {
  margin: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 5.2vw, 6rem);
  line-height: 0.96;
  color: var(--white);
  white-space: nowrap;
  text-shadow: 0 10px 30px rgba(13, 36, 64, 0.5);
}

.role {
  font-family: 'Kirang Haerang', cursive;
  font-size: clamp(3.8rem, 6.6vw, 7rem);
  line-height: 0.82;
  color: var(--blue-muted);
  transform: rotate(-3deg);
  transform-origin: left center;
  margin-top: 6px;
  margin-bottom: 26px;
  margin-left: -10%;
  position: relative;
  z-index: 20;
  text-shadow: 4px 4px 0 rgba(13, 36, 64, 0.5);
}

.subtitle {
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.6;
  color: var(--body);
  margin: 0 0 38px;
  font-weight: 300;
  max-width: 520px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 330px;
  min-height: 60px;
  padding: 0 50px;
  border-radius: 50px;
  background: var(--btn-dark-grad);
  background-size: 200% auto;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  box-shadow: 0 20px 40px rgba(13, 36, 64, 0.4);
  border: 1px solid rgba(255,255,255,0.15);
  animation: shimmer 5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(13, 36, 64, 0.6);
  border-color: rgba(255,255,255,0.4);
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-trust {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 20;
}

.avatars {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -18px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.avatars img:first-child {
  margin-left: 0;
}

.trust-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 400;
  white-space: nowrap;
}

/* LARGE TABLETS / SMALL DESKTOP */
@media (max-width: 1280px) {
  :root {
    --left-width: 41vw;
  }

  .hero-right {
    padding-right: 34px;
  }

  .hi {
    font-size: clamp(2.8rem, 4.7vw, 5.3rem);
    white-space: normal;
  }

  .role {
    margin-left: -4%;
    font-size: clamp(3.4rem, 5.8vw, 6rem);
  }

  .subtitle {
    max-width: 500px;
  }
}

@media (max-width: 1024px) {
  :root {
    --left-width: 44vw;
  }

  .hero-right {
    padding-right: 28px;
    padding-left: 20px;
  }

  .hi {
    font-size: clamp(2.6rem, 4.3vw, 4.6rem);
  }

  .role {
    margin-left: 0;
    font-size: clamp(3rem, 5vw, 5rem);
    transform: rotate(-2deg);
  }

  .hero-trust {
    right: 24px;
    bottom: 30px;
  }

  .trust-text {
    white-space: normal;
    max-width: 270px;
    line-height: 1.35;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
  }

  .hero-left {
    width: 100%;
    height: 56vh;
    position: absolute;
    top: 0;
    left: 0;
  }

  .hero-photo {
    display: block;
    object-position: center top;
    -webkit-mask-image: linear-gradient(to bottom, black 58%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 58%, transparent 100%);
  }

  .hero-left::after {
    background: linear-gradient(180deg, rgba(13,36,64,0.58) 0%, rgba(13,36,64,0.92) 100%);
  }

  .hero-right {
    width: 100%;
    flex: none;
    margin-top: 38vh;
    padding: 0 22px 74px;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
  }

  .content-box {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hi {
    font-size: clamp(2.6rem, 10vw, 3.8rem);
    line-height: 1;
    white-space: normal;
  }

  .role {
    margin-left: 0;
    margin-top: -6px;
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 12vw, 4.2rem);
    white-space: nowrap;
    transform: rotate(-2deg);
  }

  .subtitle {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 0.98rem;
  }

  .cta {
    width: 100%;
    max-width: 340px;
  }

  .hero-trust {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 12px;
  }

  .trust-text {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    max-width: 92%;
  }
}

/* SMALLER MOBILE */
@media (max-width: 480px) {
  .hero-left {
    height: 52vh;
  }

  .hero-right {
    margin-top: 34vh;
    padding-bottom: 86px;
  }

  .hi {
    font-size: 2.4rem;
  }

  .role {
    font-size: 3.5rem;
  }
}
/* =========================================================
   LOGO STRAP
========================================================= */
.sa-logos-strap,
.sa-logos-strap * {
  box-sizing: border-box;
}

.sa-logos-strap {
  --bg:#0D2440;
  --text: rgba(255,255,255,.92);
  --line: rgba(255,255,255,.06);
  background: var(--bg);
  padding: 46px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sa-logos-strap::before,
.sa-logos-strap::after {
  content:"";
  position:absolute;
  top:0;
  height:100%;
  width:90px;
  z-index:3;
  pointer-events:none;
}

.sa-logos-strap::before {
  left:0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.sa-logos-strap::after {
  right:0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.sa-logos-static {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 26px 28px;
  align-items: center;
  justify-items: center;
}

.sa-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: .70;
  transform: translateY(0);
  transition: opacity .25s ease, transform .25s ease, filter .25s ease;
  text-decoration: none;
  cursor: default;
  max-width: 240px;
  width: 100%;
  justify-content: center;
}

.sa-brand img {
  height: 28px;
  width: auto;
  display: block;
  filter: grayscale(100%) brightness(1.18) contrast(1.05);
  transition: filter .25s ease, transform .25s ease;
}

.sa-brand span {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: .03em;
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  white-space: nowrap;
}

.sa-brand:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.sa-brand:hover img {
  filter: none;
  transform: scale(1.03);
}

.sa-logos-marquee {
  display:none;
  position:relative;
  z-index:2;
  width:100%;
  overflow:hidden;
}

.sa-track {
  display:flex;
  align-items:center;
  gap:52px;
  width:max-content;
  padding:2px 16px;
  animation: saScroll 22s linear infinite;
}

.sa-track .sa-brand {
  width:auto;
  max-width:none;
  justify-content:flex-start;
}

.sa-track .sa-brand img {
  height:24px;
}

.sa-track .sa-brand span {
  font-size:.95rem;
}

@keyframes saScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   SHOWREEL
========================================================= */
.video-section {
  position: relative;
  background-color: #0D2440;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
}

.video-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(46, 94, 153, 0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.video-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  background: #000;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6), 0 0 40px rgba(46, 94, 153, 0.2);
  border-color: rgba(255, 255, 255, 0.25);
}

.main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 5;
  transition: all 0.5s ease;
  cursor: pointer;
  background-image: url('https://sastructures.com/wp-content/uploads/2026/01/Hi-Im-Sama-1.png');
}

.video-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 36, 64, 0.35);
  transition: background 0.3s ease;
}

.video-wrapper:hover .video-overlay::after {
  background: rgba(13, 36, 64, 0.15);
}

.video-wrapper:hover .video-overlay {
  transform: scale(1.02);
}

.floating-trigger {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: transparent;
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
  transition: all 0.3s ease;
  animation: floatSimple 3s ease-in-out infinite;
  cursor: pointer;
}

.trigger-text {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 20px rgba(0,0,0,1);
}

.trigger-icon svg {
  width: 45px;
  height: 45px;
  fill: #FFFFFF;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.8));
  transition: transform 0.3s ease;
}

.video-wrapper:hover .trigger-icon svg {
  transform: rotate(-10deg) scale(1.1);
}

.video-wrapper:hover .trigger-text {
  text-shadow: 0 4px 25px rgba(0,0,0,1);
}

@keyframes floatSimple {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.1);
}

/* =========================================================
   CAPABILITIES
========================================================= */
.services-section {
  position: relative;
  background-color: #0D2440; 
  padding: 100px 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 85vh; 
}

.services-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 94, 153, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.orbit-center {
  text-align: center;
  z-index: 5;
  position: relative;
  max-width: 650px; 
  margin: 0 auto;
}

.hello-title {
  font-family: 'Kirang Haerang', cursive;
  font-size: 4.5rem; 
  color: #7BA4D0; 
  margin: 0 0 5px 0; 
  display: block;
  line-height: 1; 
  transform: rotate(-3deg);
}

.core-paragraph {
  font-family: 'Lato', sans-serif;
  font-weight: 700; 
  color: #FFFFFF;
  font-size: 1.4rem; 
  line-height: 1.5; 
  margin-top: 10px; 
}

.engraved-text {
  font-weight: 400; 
  color: #4A6D91; 
  display: inline;
}

.pills-orbit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; 
}

.pill-item {
  position: absolute;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 8px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px var(--shadow-color);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  cursor: default;
  animation: floatOrbit 6s ease-in-out infinite;
}

.pill-icon-box {
  width: 45px;
  height: 45px;
  background-color: var(--pill-color); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.2); 
}

.pill-icon-img {
  width: 24px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.pill-text {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.pill-item:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px var(--shadow-color-hover);
  z-index: 10;
}

.pill-1 { top: 15%; left: 18%; --pill-color: #2E5E99; --shadow-color: rgba(46, 94, 153, 0.15); --shadow-color-hover: rgba(46, 94, 153, 0.4); animation-delay: 0s; }
.pill-2 { top: 18%; right: 15%; --pill-color: #2C2C2C; --shadow-color: rgba(44, 44, 44, 0.2); --shadow-color-hover: rgba(44, 44, 44, 0.5); animation-delay: 1s; }
.pill-3 { top: 48%; left: 8%; --pill-color: #FF6B6B; --shadow-color: rgba(255, 107, 107, 0.15); --shadow-color-hover: rgba(255, 107, 107, 0.4); animation-delay: 2s; }
.pill-4 { top: 50%; right: 5%; --pill-color: #FFD60A; --shadow-color: rgba(255, 214, 10, 0.15); --shadow-color-hover: rgba(255, 214, 10, 0.4); animation-delay: 0.5s; }
.pill-5 { bottom: 15%; left: 20%; --pill-color: #0A1C33; --shadow-color: rgba(10, 28, 51, 0.3); --shadow-color-hover: rgba(10, 28, 51, 0.6); animation-delay: 1.5s; }
.pill-6 { bottom: 12%; right: 22%; --pill-color: #8D99AE; --shadow-color: rgba(141, 153, 174, 0.15); --shadow-color-hover: rgba(141, 153, 174, 0.4); animation-delay: 2.5s; }

@keyframes floatOrbit {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* =========================================================
   PROCESS
========================================================= */
.process-section,
.process-section * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.process-section {
  position: relative;
  background-image: url('https://sastructures.com/wp-content/uploads/2026/01/my-site-pattern-bg-4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  font-family: 'Lato', sans-serif;
}

.section-header {
  text-align: center;
  max-width: 800px;
  z-index: 2;
}

.section-subtitle {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 12px;
}

.section-title {
  margin: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.section-title .accent {
  font-family: 'Kirang Haerang', cursive;
  font-weight: 400;
  font-size: 1.15em;
  margin-left: 10px;
  color: #7BA4D0;
  white-space: nowrap;
}

.cards-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  position: relative;
  padding: 30px 20px;
}

.flight-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 40px 30px;
  width: 320px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 35px rgba(26, 77, 143, 0.4);
}

.flight-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  box-shadow: 0 25px 50px rgba(26, 77, 143, 0.5);
}

.flight-card h3 {
  margin-bottom: 14px;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #ffffff;
}

.flight-card h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  margin-top: 6px;
}

.flight-card p {
  margin: 0;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.flight-card.step-1::after {
  content: '';
  position: absolute;
  top: 40%;
  right: -70px;
  width: 80px;
  height: 40px;
  border-top: 3px dashed rgba(255,255,255,0.7);
  border-radius: 50% 50% 0 0;
  transform: rotate(15deg);
  pointer-events: none;
}

.flight-card.step-2::after {
  content: '';
  position: absolute;
  bottom: 40%;
  right: -70px;
  width: 80px;
  height: 40px;
  border-bottom: 3px dashed rgba(255,255,255,0.7);
  border-radius: 0 0 50% 50%;
  transform: rotate(-10deg);
  pointer-events: none;
}

.swipe-hint {
  display: none;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials-section,
.testimonials-section * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.testimonials-section {
  position: relative;
  background: linear-gradient(to bottom, #7ba4d0 0%, #2e5e99 100%);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Lato', sans-serif;
}

.testimonials-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  max-width: 1000px;
  width: 100%;
  flex-wrap: wrap;
}

.testi-card {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 60px 40px 40px 40px;
  position: relative;
  transition: transform 0.3s ease;
  box-shadow: 0 15px 35px rgba(30, 58, 95, 0.15);
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-5px);
  border-color: #ffffff;
}

.peek-icon-top,
.peek-icon-bottom {
  width: 60px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border: 2px solid #ffffff;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.peek-icon-top {
  top: -30px;
  background-color: #7ba4d0;
}

.peek-icon-bottom {
  bottom: -30px;
  background-color: #2e5e99;
}

.client-quote {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.85;
  color: #162638;
  font-style: italic;
  text-align: center;
  margin-bottom: 30px;
}

.client-profile-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-top: 1px solid rgba(255,255,255,0.5);
  padding-top: 20px;
}

.client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

.client-details h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #162638;
  margin: 0;
  line-height: 1.1;
}

.client-details span {
  font-family: 'Kirang Haerang', cursive;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  display: block;
  transform: rotate(-1deg);
  margin-top: 2px;
}

/* =========================================================
   DESIGN PLAYGROUND
========================================================= */
.sa-design-playground {
  position: relative;
  width: 100%;
  height: 90vh;
  background-color: #0D2440;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: none;
  isolation: isolate;
  touch-action: pan-y;
}

.sa-design-playground .mag-layer {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:1;
  opacity:.7;
}

.sa-design-playground .mag-word {
  position:absolute;
  font-family:'Montserrat', sans-serif;
  font-weight:900;
  text-transform:uppercase;
  color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.08);
  white-space:nowrap;
  mix-blend-mode:overlay;
  animation: magFloat 12s infinite ease-in-out alternate;
}

.sa-design-playground .w1 { top: -5%; left: -2%; font-size: 14rem; opacity: 0.08; transform: rotate(-5deg); }
.sa-design-playground .w2 { bottom: 15%; right: -5%; font-family: 'Kirang Haerang'; font-size: 7rem; color: rgba(138, 43, 226, 0.1); -webkit-text-stroke: 0; transform: rotate(10deg); }
.sa-design-playground .w3 { top: 20%; right: 10%; font-size: 4rem; opacity: 0.15; letter-spacing: 5px; }
.sa-design-playground .w4 { bottom: 5%; left: 5%; font-size: 3rem; opacity: 0.2; color: rgba(255, 105, 180, 0.1); -webkit-text-stroke: 0; }
.sa-design-playground .w5 { top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1.8); font-size: 10rem; opacity: 0.02; letter-spacing: 30px; }
.sa-design-playground .w6 { top: 12%; left: 20%; font-size: 1.5rem; opacity: 0.3; font-family: 'Lato'; letter-spacing: 3px; }
.sa-design-playground .w7 { bottom: 40%; left: -2%; font-size: 5rem; opacity: 0.05; transform: rotate(90deg); }
.sa-design-playground .w8 { top: 40%; right: 5%; font-size: 2.5rem; color: #2E5E99; opacity: 0.2; -webkit-text-stroke: 0; }
.sa-design-playground .w9 { top: 5%; right: 25%; font-size: 1.8rem; opacity: 0.1; transform: rotate(-15deg); }
.sa-design-playground .w10 { bottom: 50%; right: 15%; font-size: 1.2rem; opacity: 0.3; font-family: 'Lato'; letter-spacing: 5px; }
.sa-design-playground .w11 { top: 65%; left: 10%; font-size: 3.5rem; opacity: 0.05; font-family: 'Kirang Haerang'; }
.sa-design-playground .w12 { bottom: 10%; right: 30%; font-size: 4rem; opacity: 0.04; transform: rotate(-5deg); }
.sa-design-playground .w13 { top: 30%; left: 5%; font-size: 1.5rem; opacity: 0.2; font-family: 'Lato'; }
.sa-design-playground .w14 { bottom: 25%; left: 20%; font-size: 2rem; opacity: 0.1; letter-spacing: 8px; }
.sa-design-playground .w15 { top: 15%; left: 60%; font-size: 1rem; opacity: 0.4; color: #FF69B4; -webkit-text-stroke: 0; }

@keyframes magFloat {
  0% { transform: translateY(0) rotate(var(--r, 0deg)); }
  100% { transform: translateY(-15px) rotate(var(--r, 0deg)); }
}

#cursor-assembly {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.control-dot {
  width: 12px;
  height: 12px;
  background-color: #FF69B4;
  border-radius: 50%;
  box-shadow: 0 0 10px #FF69B4, 0 0 20px #8A2BE2;
  position: absolute;
  z-index: 2;
}

.brush-img {
  width: 60px;
  height: 60px;
  background-image: url('https://sastructures.com/wp-content/uploads/2026/01/My-brand-icons-33.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(1) drop-shadow(5px 5px 10px rgba(0,0,0,0.5));
  position: absolute;
  top: 5px;
  left: 15px;
}

.glass-toggle {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.glass-toggle:hover,
.glass-toggle.active {
  background: rgba(46, 94, 153, 0.4);
  border-color: #FF69B4;
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
}

.toggle-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.toggle-icon {
  font-size: 1.2rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.9;
  margin-bottom: 20px;
}

.line-design {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 8rem);
  color: #FFFFFF;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(13, 36, 64, 0.5);
}

.line-inspo {
  font-family: 'Kirang Haerang', display;
  font-weight: 400;
  font-size: clamp(4rem, 9vw, 9rem);
  background: linear-gradient(90deg, #7BA4D0, #E7F0FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: rotate(-4deg) translateY(-10px);
  text-shadow: 0 0 20px rgba(123, 164, 208, 0.4);
  z-index: 2;
}

.hero-sub {
  font-family: 'Lato', sans-serif;
  color: #7BA4D0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(13, 36, 64, 0.6);
  padding: 5px 15px;
  border-radius: 20px;
}

#liquid-canvas {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:5;
}

.hero-glow {
  position:absolute;
  width:100%;
  height:100%;
  background: radial-gradient(circle at center, rgba(46, 94, 153, 0.3) 0%, rgba(13, 36, 64, 1) 80%);
  z-index:0;
  pointer-events:none;
}

/* =========================================================
   PALETTE LAB
========================================================= */
#sa-lab-liquid {
  --deep: #061427;
  --navy: rgba(8, 26, 55, 0.92);
  --glass: rgba(255,255,255,0.07);
  --glass2: rgba(255,255,255,0.10);
  --stroke: rgba(255,255,255,0.14);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(231,240,250,0.70);
  --lab-primary: rgba(123,164,208,0.70);
  --lab-glow: rgba(46,94,153,0.55);

  position: relative;
  padding: 64px 18px 80px;
  overflow: hidden;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(46,94,153,0.22), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(123,164,208,0.14), transparent 60%),
    linear-gradient(180deg, rgba(13,36,64,0.92), rgba(7,19,33,0.96));
  border-top: 1px solid rgba(255,255,255,0.06);
}

#sa-lab-liquid::before {
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 500px at var(--mx, 50%) var(--my, 30%), rgba(255,255,255,0.06), transparent 55%),
    radial-gradient(700px 420px at calc(var(--mx, 50%) + 12%) calc(var(--my, 30%) + 10%), rgba(46,94,153,0.10), transparent 60%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events:none;
  z-index:0;
  transition: opacity .25s ease;
}

#sa-lab-liquid .sa-lab-wrap {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 16px;
  align-items: start;
}

#sa-lab-liquid .sa-lab-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  margin-bottom: 6px;
}

#sa-lab-liquid .sa-lab-title {
  margin: 0;
  line-height: 0.95;
  display: grid;
  gap: 6px;
}

#sa-lab-liquid .sa-lab-title .t1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  letter-spacing: -1px;
  text-transform: uppercase;
  opacity: 0.22;
}

#sa-lab-liquid .sa-lab-title .t2 {
  font-family: "Kirang Haerang", cursive;
  font-weight: 400;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  color: rgba(231,240,250,0.90);
  transform: rotate(-3deg);
  width: fit-content;
  text-shadow: 0 0 18px rgba(123,164,208,0.20);
}

#sa-lab-liquid .sa-lab-sub {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

#sa-lab-liquid .sa-lab-controls {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 4px;
}

#sa-lab-liquid .sa-control {
  display:flex;
  align-items:center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 12px 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  min-height: 52px;
}

#sa-lab-liquid .sa-search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

#sa-lab-liquid .sa-search input::placeholder {
  color: rgba(231,240,250,0.55);
  font-weight: 700;
}

#sa-lab-liquid .sa-industry select {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  appearance: none;
  cursor: pointer;
  display:block;
  min-height: 40px;
}

#sa-lab-liquid .sa-industry select option {
  color:#0D2440;
}

#sa-lab-liquid .sa-industry .caret {
  margin-left: auto;
  opacity: 0.7;
  font-weight: 900;
}

#sa-lab-liquid .sa-mode {
  display:flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.20);
}

#sa-lab-liquid .sa-mode button {
  border: 0;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  background: transparent;
  color: rgba(231,240,250,0.78);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

#sa-lab-liquid .sa-mode button[aria-pressed="true"] {
  background: linear-gradient(120deg, rgba(123,164,208,0.35), rgba(46,94,153,0.35));
  color: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10) inset, 0 12px 30px rgba(0,0,0,0.18);
  transform: translateY(-1px);
}

#sa-lab-liquid .sa-left {
  display:grid;
  gap: 14px;
}

#sa-lab-liquid .sa-deckShell {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: 0 26px 70px rgba(0,0,0,0.26);
  overflow: hidden;
  padding: 10px 0;
}

#sa-lab-liquid .sa-arrow {
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.70);
  cursor:pointer;
  z-index: 5;
  transition: transform .16s ease, opacity .16s ease, color .16s ease;
}

#sa-lab-liquid .sa-arrow:hover {
  color: rgba(255,255,255,0.95);
  transform: translateY(-50%) scale(1.06);
}

#sa-lab-liquid .sa-arrow:disabled {
  opacity: 0.20;
  cursor: default;
}

#sa-lab-liquid .sa-arrow.left { left: 10px; }
#sa-lab-liquid .sa-arrow.right { right: 10px; }

#sa-lab-liquid .sa-deck {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 14px;
  padding: 10px 52px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

#sa-lab-liquid .sa-deck::-webkit-scrollbar {
  display:none;
}

#sa-lab-liquid .sa-card {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.16);
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  text-align: left;
  padding: 0;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  transform: translateZ(0);
  color: var(--cardText, rgba(255,255,255,0.92));
}

#sa-lab-liquid .sa-cardMeta {
  padding: 12px 14px 14px;
  display:grid;
  gap: 6px;
}

#sa-lab-liquid .sa-cardName {
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.2px;
  color: var(--cardText, rgba(255,255,255,0.92));
}

#sa-lab-liquid .sa-cardMode {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--cardSub, rgba(231,240,250,0.68));
}

#sa-lab-liquid .sa-cardHex {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  color: var(--cardSub, rgba(231,240,250,0.78));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#sa-lab-liquid .sa-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.30);
}

#sa-lab-liquid .sa-card.active {
  border-color: rgba(255,255,255,0.26);
  box-shadow: 0 26px 70px rgba(0,0,0,0.38);
}

#sa-lab-liquid .sa-swatch {
  height: 96px;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
}

#sa-lab-liquid .sa-swatch div {
  height: 100%;
}

#sa-lab-liquid .sa-canvas {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: 0 26px 70px rgba(0,0,0,0.26);
  overflow: hidden;
  position: relative;
}

#sa-lab-liquid .sa-canvasTop {
  padding: 14px 16px;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

#sa-lab-liquid .sa-canvasTitle {
  display:grid;
  gap: 4px;
  min-width: 0;
}

#sa-lab-liquid #saCanvasName {
  margin:0;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}

#sa-lab-liquid #saCanvasMeta {
  margin:0;
  color: rgba(231,240,250,0.70);
  font-weight: 800;
  font-size: 0.86rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#sa-lab-liquid .sa-canvasBody {
  padding: 14px 16px 18px;
  display:grid;
  gap: 14px;
}

#sa-lab-liquid .sa-bigPalette {
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  height: 140px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
}

#sa-lab-liquid .sa-bigPalette .tile {
  position: relative;
}

#sa-lab-liquid .sa-bigPalette .tile span {
  position:absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 900;
  font-size: 0.78rem;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.92);
  opacity: 0.95;
}

#sa-lab-liquid .sa-gradBoard {
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

#sa-lab-liquid .sa-gradSwatch {
  height: 74px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
  position: relative;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

#sa-lab-liquid .sa-gradSwatch .label {
  position:absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 0.72rem;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.92);
}

#sa-lab-liquid .sa-preview {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: 0 26px 70px rgba(0,0,0,0.26);
  overflow: hidden;
  position: relative;
}

#sa-lab-liquid .sa-previewTop {
  padding: 14px 16px;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

#sa-lab-liquid .sa-previewTitle {
  display:grid;
  gap: 4px;
  min-width: 0;
}

#sa-lab-liquid #saPrevName {
  margin: 0;
  font-weight: 900;
  font-size: 1.15rem;
}

#sa-lab-liquid #saPrevMeta {
  margin: 0;
  color: rgba(231,240,250,0.70);
  font-weight: 800;
  font-size: 0.86rem;
}

#sa-lab-liquid .sa-previewBody {
  padding: 14px 16px 18px;
  display: grid;
  gap: 14px;
}

#sa-lab-liquid .sa-blockTitle {
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(231,240,250,0.72);
}

#sa-lab-liquid #saHexList,
#sa-lab-liquid #saGradList {
  display:grid;
  gap: 10px;
}

#sa-lab-liquid .toolRow {
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.16);
}

#sa-lab-liquid .toolLeft {
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

#sa-lab-liquid .chip {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 18px rgba(0,0,0,0.18);
  flex: 0 0 auto;
}

#sa-lab-liquid .code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 900;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}

#sa-lab-liquid .sa-palette-role {
  color: rgba(231,240,250,0.60);
  font-weight: 800;
  font-size: 0.82rem;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#sa-lab-liquid .miniCopy {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform .16s ease, background .16s ease;
  flex: 0 0 auto;
}

#sa-lab-liquid .miniCopy:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
}

#sa-lab-liquid .miniCopy,
#sa-lab-liquid button,
#sa-lab-liquid .toolRow * {
  pointer-events: auto;
}

/* =========================================================
   TYPOGRAPHY LAB
========================================================= */
#sa-typo-lab,
#sa-typo-lab * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

#sa-typo-lab {
  --soft:#E7F0FA;
  --ice:#7BA4D0;
  --blue:#2E5E99;
  --navy:#0D2440;
  --deep:#071321;
  --card: rgba(231,240,250,0.04);
  --card2: rgba(231,240,250,0.06);
  --stroke: rgba(231,240,250,0.14);
  --stroke2: rgba(231,240,250,0.20);
  --text: rgba(231,240,250,0.92);
  --muted: rgba(231,240,250,0.72);

  position: relative;
  background: radial-gradient(1200px 700px at 15% 20%, rgba(123,164,208,0.08), transparent 55%),
              radial-gradient(900px 600px at 90% 15%, rgba(46,94,153,0.10), transparent 52%),
              linear-gradient(180deg, var(--deep), var(--navy));
  padding: clamp(70px, 8vw, 110px) 18px;
  overflow: hidden;
  isolation: isolate;
  font-family: "Lato", sans-serif;
  color: var(--text);
}

#sa-typo-lab::before {
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(to right, rgba(231,240,250,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(231,240,250,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.08;
  pointer-events:none;
  z-index: 0;
}

#sa-typo-lab::after {
  content:"";
  position:absolute;
  inset:-40px;
  background: radial-gradient(circle at 20% 30%, rgba(231,240,250,0.05), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(123,164,208,0.06), transparent 50%);
  opacity: .8;
  pointer-events:none;
  z-index: 0;
}

#sa-typo-lab .sa-typo-wrap {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

#sa-typo-lab .sa-typo-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

#sa-typo-lab .sa-typo-eyebrow {
  font-family: "Kirang Haerang", cursive;
  color: var(--ice);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1;
  transform: rotate(-2deg);
  display: inline-block;
  justify-self: center;
  letter-spacing: .02em;
}

#sa-typo-lab .sa-typo-title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

#sa-typo-lab .sa-typo-title .accent {
  font-family: "Kirang Haerang", cursive;
  font-weight: 400;
  color: var(--ice);
  display: inline-block;
  transform: rotate(-2deg);
  margin-left: 8px;
  white-space: nowrap;
}

#sa-typo-lab .sa-typo-sub {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
}

#sa-typo-lab .sa-typo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#sa-typo-lab .sa-typo-card {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--card), rgba(231,240,250,0.02));
  border: 1px solid var(--stroke);
  padding: 18px 18px 16px;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  min-height: 190px;
}

#sa-typo-lab .sa-typo-card::before {
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 220px at 10% 10%, rgba(123,164,208,0.10), transparent 55%);
  opacity: .55;
  pointer-events:none;
}

#sa-typo-lab .sa-typo-card:hover {
  transform: translateY(-6px);
  border-color: var(--stroke2);
  background: linear-gradient(180deg, var(--card2), rgba(231,240,250,0.03));
}

#sa-typo-lab .sa-demo {
  position: relative;
  z-index: 2;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(7,19,33,0.35);
  border: 1px solid rgba(231,240,250,0.10);
  margin-bottom: 12px;
}

#sa-typo-lab .sa-meta {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
}

#sa-typo-lab .sa-when {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(231,240,250,0.78);
}

#sa-typo-lab .sa-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--ice);
  box-shadow: 0 0 0 4px rgba(123,164,208,0.10);
  flex: none;
}

#sa-typo-lab .sa-why {
  margin: 0;
  color: rgba(231,240,250,0.72);
  font-size: 14px;
  line-height: 1.5;
}

#sa-typo-lab .t1 .ey { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; opacity:.85; }
#sa-typo-lab .t1 .h  { font-weight: 900; font-size: 26px; margin: 6px 0 4px; }
#sa-typo-lab .t1 .ac { font-family:"Kirang Haerang", cursive; color: var(--ice); font-size: 30px; line-height: .9; transform: rotate(-2deg); display:inline-block; }
#sa-typo-lab .t1 .p  { margin: 6px 0 0; color: rgba(231,240,250,0.74); font-size: 14px; line-height: 1.55; }

#sa-typo-lab .t2 .h { font-weight: 900; font-size: 22px; margin: 0; line-height: 1.25; }
#sa-typo-lab .t2 .hl { color: var(--ice); }
#sa-typo-lab .t2 .p { margin: 8px 0 0; color: rgba(231,240,250,0.74); font-size: 14px; }

#sa-typo-lab .t3 { padding-top: 18px; }
#sa-typo-lab .t3 .bgw {
  position:absolute;
  inset: 12px 12px auto 12px;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 48px;
  color: rgba(231,240,250,0.08);
  text-transform: uppercase;
  pointer-events:none;
}
#sa-typo-lab .t3 .h { position: relative; margin: 22px 0 0; font-weight: 900; font-size: 24px; }
#sa-typo-lab .t3 .p { margin: 6px 0 0; color: rgba(231,240,250,0.72); font-size: 14px; }

#sa-typo-lab .t4 .ey { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; opacity:.86; }
#sa-typo-lab .t4 .h { margin: 8px 0 0; font-weight: 900; font-size: 30px; line-height: 1.05; }
#sa-typo-lab .t4 .p { margin: 8px 0 0; color: rgba(231,240,250,0.72); font-size: 13.5px; }

#sa-typo-lab .t5 .h { margin:0; font-weight: 900; font-size: 22px; line-height: 1.25; }
#sa-typo-lab .t5 .u {
  display:inline;
  padding: 0 4px;
  background: linear-gradient(180deg, transparent 60%, rgba(123,164,208,0.20) 60%);
  border-bottom: 1px solid rgba(123,164,208,0.55);
}
#sa-typo-lab .t5 .p { margin: 8px 0 0; color: rgba(231,240,250,0.72); font-size: 14px; }

#sa-typo-lab .t6 .stroke {
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(231,240,250,0.55);
  text-stroke: 1px rgba(231,240,250,0.55);
  margin: 0;
}
#sa-typo-lab .t6 .p {
  margin: 8px 0 0;
  color: rgba(231,240,250,0.76);
  font-size: 14px;
}

#sa-typo-lab .t7 { position: relative; }
#sa-typo-lab .t7 .echo {
  position:absolute;
  left: 14px;
  top: 10px;
  font-weight: 900;
  font-size: 34px;
  color: rgba(123,164,208,0.16);
  transform: translate(6px, 6px);
  pointer-events:none;
  white-space: nowrap;
}
#sa-typo-lab .t7 .h {
  position: relative;
  margin: 0;
  font-weight: 900;
  font-size: 34px;
  white-space: nowrap;
}
#sa-typo-lab .t7 .p { margin: 10px 0 0; color: rgba(231,240,250,0.72); font-size: 14px; }

#sa-typo-lab .t8 .h { margin:0; font-weight: 900; font-size: 24px; line-height: 1.2; }
#sa-typo-lab .t8 .ac {
  font-family:"Kirang Haerang", cursive;
  color: var(--ice);
  font-size: 28px;
  display:inline-block;
  transform: rotate(-3deg);
  margin-left: 6px;
  line-height: 1;
}
#sa-typo-lab .t8 .p { margin: 8px 0 0; color: rgba(231,240,250,0.72); font-size: 14px; }

#sa-typo-lab .t9 .frame {
  border: 1px solid rgba(231,240,250,0.22);
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(231,240,250,0.02);
}
#sa-typo-lab .t9 .h { margin:0; font-weight: 900; font-size: 22px; }
#sa-typo-lab .t9 .p { margin: 8px 0 0; color: rgba(231,240,250,0.72); font-size: 14px; }

#sa-typo-lab .t10 .block {
  background: rgba(231,240,250,0.92);
  color: #081a37;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(231,240,250,0.65);
}
#sa-typo-lab .t10 .h {
  margin:0;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.25;
}
#sa-typo-lab .t10 .h .hl { color: var(--blue); }
#sa-typo-lab .t10 .p { margin: 8px 0 0; color: rgba(8,26,55,0.72); font-size: 13.5px; }

/* =========================================================
   FINAL CTA
========================================================= */
.sa-home-final-cta {
  background: linear-gradient(180deg, #0D2440 0%, #071321 100%);
  padding: 90px 20px 120px;
}

.sa-home-final-cta__inner {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.sa-home-final-cta__copy h2 {
  margin: 10px 0 14px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.sa-home-final-cta__copy p {
  margin: 0;
  max-width: 700px;
  color: rgba(231,240,250,0.78);
  line-height: 1.7;
  font-size: 1rem;
}

.sa-home-final-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #7BA4D0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sa-home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sa-home-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sa-home-final-btn--primary {
  background: linear-gradient(90deg, #2E5E99, #0D2440);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.sa-home-final-btn--ghost {
  background: rgba(255,255,255,0.05);
  color: #E7F0FA;
  border: 1px solid rgba(255,255,255,0.12);
}

.sa-home-final-btn:hover {
  transform: translateY(-3px);
}

/* =========================================================
   HOME RESPONSIVE
========================================================= */
@media (min-width: 1025px) {
  #sa-lab-liquid .sa-preview {
    position: sticky;
    top: 16px;
  }
}

@media (max-width: 1024px) {
  #sa-lab-liquid .sa-lab-wrap {
    grid-template-columns: 1fr;
  }

  .services-section { 
    flex-direction: column; 
    padding: 60px 10px;
    height: auto; 
    min-height: auto;
  }

  .orbit-center {
    margin-bottom: 30px;
    width: 100%;
    padding: 0 10px;
  }

  .hello-title {
    font-size: 3rem;
  }

  .core-paragraph {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .pills-orbit {
    position: relative; 
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .pill-item {
    position: relative; 
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    animation: none; 
    margin: 0;
    flex: 1 1 45%;
    max-width: 48%;
    padding: 4px 10px 4px 4px; 
    gap: 8px;
  }

  .pill-text { 
    font-size: 0.75rem;
    white-space: normal;
    line-height: 1.2;
    text-align: left;
  }
  
  .pill-icon-box { 
    width: 32px;
    height: 32px;
  }

  .pill-icon-img {
    width: 16px;
  }
}

@media (max-width: 980px) {
  .hero {
    display: block;
    min-height: auto;
    overflow: hidden;
  }

  .hero-left {
    position: absolute;
    inset: 0 0 auto 0;
    width: 100%;
    height: 58vh;
  }

  .hero-photo {
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,1) 42%,
      rgba(0,0,0,.9) 58%,
      rgba(0,0,0,.55) 78%,
      rgba(0,0,0,.18) 92%,
      rgba(0,0,0,0) 100%
    );
    mask-image: linear-gradient(
      to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,1) 42%,
      rgba(0,0,0,.9) 58%,
      rgba(0,0,0,.55) 78%,
      rgba(0,0,0,.18) 92%,
      rgba(0,0,0,0) 100%
    );
    object-position: center top;
  }

  .hero-left::after {
    background: linear-gradient(
      180deg,
      rgba(13,36,64,.48) 0%,
      rgba(13,36,64,.62) 42%,
      rgba(13,36,64,.88) 74%,
      rgba(13,36,64,.98) 100%
    );
  }

  .hero-right {
    width: 100%;
    margin-top: 40vh;
    padding: 0 20px 72px;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    background: transparent;
  }

  .content-box {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hi {
    font-size: clamp(2.6rem, 10vw, 4rem);
    white-space: normal;
    text-wrap: balance;
    max-width: 100%;
  }

  .role {
    margin-left: 0;
    margin-top: -6px;
    margin-bottom: 18px;
    font-size: clamp(2.7rem, 12vw, 4.5rem);
    line-height: .9;
    white-space: normal;
    text-wrap: balance;
    transform: rotate(-2deg);
    max-width: 100%;
  }

  .subtitle {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .cta {
    width: 100%;
    max-width: 360px;
  }

  .hero-trust {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 30px;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 12px;
  }

  .trust-text {
    white-space: normal;
    text-align: center;
    line-height: 1.45;
    max-width: 92%;
  }

  .sa-logos-static {
    display: none;
  }

  .sa-logos-marquee {
    display: block;
  }

  .sa-logos-strap {
    padding: 20px 0 24px;
  }

  .sa-track {
    gap: 36px;
    animation-duration: 26s;
  }

  .sa-track .sa-brand span {
    font-size: 0.92rem;
  }

  .video-section {
    padding: 60px 16px 70px;
  }

  .video-wrapper {
    border-radius: 18px;
    aspect-ratio: 4 / 3;
  }

  .floating-trigger {
    left: 18px;
    bottom: 18px;
    gap: 10px;
  }

  .trigger-text {
    font-size: 1.1rem;
  }

  .trigger-icon svg {
    width: 34px;
    height: 34px;
  }

  .process-section {
    padding: 60px 0 74px;
  }

  .section-header {
    padding: 0 18px;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.04;
  }

  .section-title .accent {
    display: block;
    margin-left: 0;
    margin-top: 6px;
  }

  .cards-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 28px 18px 20px;
    scrollbar-width: none;
  }

  .cards-wrapper::-webkit-scrollbar {
    display: none;
  }

  .flight-card {
    width: 84vw;
    max-width: 340px;
    min-width: 84vw;
    scroll-snap-align: start;
    padding: 28px 22px;
  }

  .flight-card.step-1::after,
  .flight-card.step-2::after {
    top: 50%;
    right: -22px;
    width: 26px;
    height: 0;
    border-top: 3px dashed rgba(255,255,255,0.58);
    border-bottom: 0;
    border-radius: 0;
    transform: translateY(-50%);
  }

  .swipe-hint {
    display: block;
    color: rgba(255,255,255,0.82);
    font-size: 1.8rem;
    position: absolute;
    right: 22px;
    bottom: 20px;
    pointer-events: none;
  }

  .testimonials-section {
    padding: 64px 16px 72px;
  }

  .testimonials-wrapper {
    flex-direction: column;
    gap: 54px;
  }

  .testi-card {
    min-width: 0;
    width: 100%;
    padding: 44px 20px 28px;
  }

  .client-quote {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .client-profile-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .sa-design-playground {
    height: 76vh;
    min-height: 520px;
    cursor: default;
  }

  .line-design {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
  }

  .line-inspo {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-sub {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .glass-toggle {
    bottom: 18px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    min-width: 190px;
    justify-content: center;
  }

  #sa-typo-lab .sa-typo-grid {
    grid-template-columns: 1fr;
  }

  #sa-typo-lab .t7 .h,
  #sa-typo-lab .t7 .echo {
    white-space: normal;
  }

  .sa-home-final-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 780px) {
  #sa-lab-liquid .sa-lab-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sa-design-playground {
    height: 78vh;
    cursor: default;
  }

  .glass-toggle {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }

  .sa-home-final-cta {
    padding: 70px 16px 100px;
  }

  .sa-home-final-cta__inner {
    padding: 26px 20px;
  }

  .sa-home-final-cta__actions {
    width: 100%;
    flex-direction: column;
  }

  .sa-home-final-btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  #sa-lab-liquid .sa-bigPalette {
    grid-template-columns: 1fr;
    height: auto;
  }

  #sa-lab-liquid .sa-bigPalette .tile {
    min-height: 88px;
  }

  .services-section {
    padding: 64px 18px 78px;
  }

  .orbit-center {
    margin-bottom: 24px;
  }

  .hello-title {
    font-size: clamp(3.1rem, 12vw, 4.6rem);
    margin-bottom: 10px;
  }

  .core-paragraph {
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: 100%;
  }

  .pills-orbit {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .pill-item {
    min-height: 60px;
    padding: 8px 14px 8px 8px;
  }

  .pill-icon-box {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .pill-icon-img {
    width: 17px;
  }

  .pill-text {
    font-size: 0.92rem;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .hero-left {
    height: 54vh;
  }

  .hero-right {
    margin-top: 37vh;
    padding-bottom: 60px;
  }

  .pills-orbit {
    grid-template-columns: 1fr;
  }

  .flight-card {
    width: 86vw;
    min-width: 86vw;
  }

  .sa-design-playground {
    height: 72vh;
    min-height: 480px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 58px 16px 74px;
  }

  .hello-title {
    font-size: 4rem;
  }

  .core-paragraph {
    font-size: 0.96rem;
  }

  .pill-item {
    min-height: 58px;
    padding: 8px 12px 8px 8px;
  }

  .pill-icon-box {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .pill-text {
    font-size: 0.9rem;
  }
}

/* =========================================
   DESIGN PLAYGROUND — SMALL DEVICE TOGGLE FIX
   ========================================= */
@media (max-width: 768px) {
  .sa-design-playground {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .glass-toggle {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 22px;
    min-width: 210px;
    max-width: calc(100% - 32px);
    width: max-content;
    justify-content: center;
  }

  .toggle-text {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .glass-toggle {
    min-width: 0;
    width: calc(100% - 24px);
    padding: 10px 14px;
    gap: 8px;
  }

  .toggle-text {
    font-size: 0.74rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .toggle-icon {
    flex: 0 0 auto;
  }
}


/* =========================================================
   STACK PAGE
========================================================= */

#sa-stack-hero,
#sa-stack-grid,
#sa-resources,
#sa-stack-cta {
  font-family: 'Lato', sans-serif;
}

#sa-stack-hero {
  background: #F2F4F8;
  padding: clamp(80px, 8vw, 120px) 20px 40px 20px;
  text-align: center;
}

#sa-stack-hero .sa-inner {
  max-width: 760px;
  margin: 0 auto;
}

#sa-stack-hero h1 {
  font-weight: 900;
  color: #0D2440;
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 16px 0;
  line-height: 1;
}

#sa-stack-hero p {
  font-size: 18px;
  color: #4A5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

#sa-stack-grid {
  --navy: #0D2440;
  --blue: #2E5E99;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-hover: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.1);

  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

#sa-stack-grid .stack-container {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

#sa-stack-grid .stack-card {
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

#sa-stack-grid .stack-card:hover {
  transform: translateY(-5px);
  background: var(--glass-hover);
  border-color: rgba(46, 94, 153, 0.5);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

#sa-stack-grid .stack-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

#sa-stack-grid .stack-card:hover::before {
  opacity: 1;
}

#sa-stack-grid .stack-icon {
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--navy);
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#sa-stack-grid .stack-card h3 {
  color: #FFFFFF;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
}

#sa-stack-grid .stack-card p {
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

#sa-resources {
  background-color: #F2F4F8;
  padding: 100px 20px;
  position: relative;
}

#sa-resources .res-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

#sa-resources .res-header h2 {
  color: #0D2440;
  font-weight: 900;
  font-size: 32px;
  margin: 0 0 10px 0;
}

#sa-resources .res-header p {
  color: #4A5568;
  margin: 0;
}

#sa-resources .res-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

#sa-resources .res-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 4px solid #2E5E99;
  border-top: 1px solid rgba(13, 36, 64, 0.05);
  border-right: 1px solid rgba(13, 36, 64, 0.05);
  border-bottom: 1px solid rgba(13, 36, 64, 0.05);
  box-shadow: 0 4px 15px rgba(13, 36, 64, 0.03);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#sa-resources .res-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13, 36, 64, 0.1);
}

#sa-resources .res-img {
  width: 50px;
  height: 50px;
  background: #F2F4F8;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #2E5E99;
  font-size: 14px;
}

#sa-resources .res-content h3 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  color: #0D2440;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 6px;
}

#sa-resources .res-arrow {
  font-size: 0.8em;
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s, color 0.2s;
}

#sa-resources .res-card:hover .res-arrow {
  transform: translate(3px, -3px);
  opacity: 1;
  color: #2E5E99;
}

#sa-resources .res-content p {
  margin: 0 0 10px 0;
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.5;
}

#sa-resources .res-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  background: #7BA4D0;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

#sa-stack-cta,
#sa-stack-cta * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

#sa-stack-cta {
  --bg-deep: #071321;
  --bg-panel: #0D2440;
  --accent: #2E5E99;
  --accent-light: #7BA4D0;
  --white: #FFFFFF;
  --soft-white: #E7F0FA;

  background-color: var(--bg-deep);
  padding: clamp(60px, 6vw, 120px) 20px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#sa-stack-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 94, 153, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 94, 153, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

#sa-stack-cta .sa-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: var(--bg-panel);
  border: 1px solid rgba(123, 164, 208, 0.15);
  border-radius: 20px;
  padding: clamp(30px, 5vw, 60px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background-image: radial-gradient(circle at 50% 0%, rgba(46, 94, 153, 0.15), transparent 60%);
}

#sa-stack-cta .sa-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}

#sa-stack-cta h2 {
  font-weight: 900;
  color: var(--white);
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

#sa-stack-cta p {
  color: var(--accent-light);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

#sa-stack-cta .sa-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#sa-stack-cta .btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  padding: 16px 40px;
  font-size: 16px;
}

#sa-stack-cta .btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
  box-shadow: 0 10px 20px rgba(7, 19, 33, 0.3);
}

#sa-stack-cta .btn-primary:hover {
  background: #396EB0;
  border-color: #396EB0;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(7, 19, 33, 0.4);
}

#sa-stack-cta .btn-secondary {
  background: var(--soft-white);
  color: var(--bg-deep);
  border: 1px solid var(--soft-white);
}

#sa-stack-cta .btn-secondary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(231, 240, 250, 0.15);
}

@media (max-width: 768px) {
  #sa-stack-grid .stack-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px;
    gap: 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  #sa-stack-grid .stack-container::-webkit-scrollbar {
    display: none;
  }

  #sa-stack-grid .stack-card {
    min-width: 85vw;
    scroll-snap-align: center;
  }

  #sa-stack-grid::after {
    content: "→";
    position: absolute;
    right: 20px;
    bottom: 30px;
    font-size: 24px;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
    animation: bounceRight 2s infinite;
  }

  #sa-resources .res-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 30px;
    padding-left: 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  #sa-resources .res-grid::-webkit-scrollbar {
    display: none;
  }

  #sa-resources .res-card {
    min-width: 85vw;
    flex-direction: column;
    gap: 12px;
    scroll-snap-align: center;
    border-left: 1px solid rgba(13, 36, 64, 0.05);
    border-top: 4px solid #2E5E99;
  }

  #sa-resources .res-img {
    width: 40px;
    height: 40px;
    margin-bottom: 4px;
  }

  #sa-resources::after {
    content: "→";
    position: absolute;
    right: 20px;
    bottom: 40px;
    font-size: 24px;
    color: #0D2440;
    opacity: 0.3;
    pointer-events: none;
    animation: bounceRight 2s infinite;
  }
}

@media (max-width: 600px) {
  #sa-stack-cta .sa-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  #sa-stack-cta .btn-base {
    width: 100%;
    font-size: 13px;
    padding: 14px 20px;
  }

  #sa-stack-cta h2 {
    margin-bottom: 16px;
  }

  #sa-stack-cta p {
    margin-bottom: 30px;
  }
}

@keyframes bounceRight {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(10px);
    opacity: 1;
  }
}



/* =========================================================
   SAStructures — Legal Pages
========================================================= */

.sa-page-legal {
	background: transparent;
}

.sa-legal-wrap {
	padding: clamp(28px, 4vw, 52px) 0 clamp(64px, 7vw, 96px);
}

.sa-legal-container {
	width: min(980px, calc(100% - 32px));
	margin: 0 auto;
	display: grid;
	gap: 18px;
}

.sa-legal-utility {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.sa-legal-utility a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 999px;
	text-decoration: none;
	font-family: "Lato", sans-serif;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1;
	color: #0D2440;
	background: rgba(231, 240, 250, 0.92);
	border: 1px solid rgba(13, 36, 64, 0.08);
	box-shadow: 0 10px 30px rgba(13, 36, 64, 0.06);
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.sa-legal-utility a:hover {
	transform: translateY(-2px);
	background: #0D2440;
	color: #E7F0FA;
}

.sa-legal-intro {
	padding: clamp(22px, 4vw, 34px);
	border-radius: 24px;
	background: linear-gradient(135deg, #E7F0FA 0%, #F2F4F8 100%);
	border: 1px solid rgba(13, 36, 64, 0.08);
	box-shadow: 0 18px 40px rgba(13, 36, 64, 0.06);
}

.sa-legal-intro--dark {
	background: linear-gradient(135deg, #0D2440 0%, #071321 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.sa-legal-kicker {
	display: inline-block;
	margin-bottom: 10px;
	font-family: "Kirang Haerang", cursive;
	font-size: clamp(1.45rem, 2vw, 1.95rem);
	line-height: 1;
	transform: rotate(-2deg);
	color: #2E5E99;
}

.sa-legal-intro--dark .sa-legal-kicker {
	color: #7BA4D0;
}

.sa-legal-intro h1 {
	margin: 0 0 14px;
	font-family: "Lato", sans-serif;
	font-size: clamp(2rem, 4.5vw, 3.8rem);
	line-height: 1.02;
	font-weight: 900;
	color: #0D2440;
}

.sa-legal-intro--dark h1 {
	color: #FFFFFF;
}

.sa-legal-intro p {
	margin: 0;
	max-width: 760px;
	font-family: "Lato", sans-serif;
	font-size: clamp(1rem, 1.1vw, 1.06rem);
	line-height: 1.8;
	color: #4A5568;
}

.sa-legal-intro--dark p {
	color: rgba(255, 255, 255, 0.82);
}

.sa-legal-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	margin-top: 18px;
}

.sa-legal-meta span {
	display: inline-flex;
	align-items: center;
	padding: 9px 14px;
	border-radius: 999px;
	background: rgba(46, 94, 153, 0.08);
	border: 1px solid rgba(46, 94, 153, 0.12);
	font-size: 0.85rem;
	font-weight: 700;
	color: #0D2440;
}

.sa-legal-intro--dark .sa-legal-meta span {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.1);
	color: #E7F0FA;
}

.sa-legal-doc {
	padding: clamp(22px, 4vw, 40px);
	border-radius: 24px;
	background: #FFFFFF;
	border: 1px solid rgba(13, 36, 64, 0.08);
	box-shadow: 0 18px 45px rgba(13, 36, 64, 0.06);
}

.sa-legal-doc h2 {
	margin: 0 0 14px;
	padding-top: 14px;
	font-family: "Lato", sans-serif;
	font-size: clamp(1.3rem, 1.8vw, 1.7rem);
	line-height: 1.2;
	font-weight: 900;
	color: #0D2440;
}

.sa-legal-doc h3 {
	margin: 22px 0 10px;
	font-family: "Lato", sans-serif;
	font-size: 1rem;
	line-height: 1.3;
	font-weight: 800;
	color: #2E5E99;
}

.sa-legal-doc p,
.sa-legal-doc li {
	font-family: "Lato", sans-serif;
	font-size: 1rem;
	line-height: 1.85;
	color: #4A5568;
}

.sa-legal-doc ul {
	margin: 0 0 16px 20px;
	padding: 0;
}

.sa-legal-doc a {
	color: #2E5E99;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 767px) {
	.sa-legal-container {
		width: min(100% - 24px, 980px);
		gap: 16px;
	}

	.sa-legal-intro,
	.sa-legal-doc {
		border-radius: 20px;
		padding: 18px 16px;
	}

	.sa-legal-meta {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* =========================================================
   SAStructures — Cookie Banner
========================================================= */

.sa-cookie-banner[hidden],
.sa-cookie-modal[hidden] {
	display: none !important;
}
html.sa-cookie-pref-saved .sa-cookie-banner,
html.sa-cookie-pref-saved .sa-cookie-modal {
	display: none !important;
}

.sa-cookie-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 999999;
}

.sa-cookie-banner__inner {
	width: min(1180px, 100%);
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 18px;
	border-radius: 24px;
	background: rgba(7, 19, 33, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.sa-cookie-banner__icon img {
	width: 64px;
	height: 64px;
	object-fit: contain;
	display: block;
}

.sa-cookie-banner__content h2 {
	margin: 0 0 8px;
	font-size: clamp(1.05rem, 1.5vw, 1.3rem);
	line-height: 1.2;
	font-weight: 900;
	color: #FFFFFF;
}

.sa-cookie-banner__content p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.78);
}

.sa-cookie-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.sa-cookie-btn {
	border: none;
	cursor: pointer;
	border-radius: 999px;
	padding: 14px 18px;
	font-family: "Lato", sans-serif;
	font-weight: 800;
	font-size: 0.9rem;
	line-height: 1;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sa-cookie-btn:hover {
	transform: translateY(-2px);
}

.sa-cookie-btn--primary {
	background: linear-gradient(90deg, #2E5E99 0%, #0D2440 100%);
	color: #FFFFFF;
	box-shadow: 0 12px 30px rgba(46, 94, 153, 0.35);
}

.sa-cookie-btn--ghost {
	background: transparent;
	color: #E7F0FA;
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.sa-cookie-btn--text {
	background: rgba(255, 255, 255, 0.06);
	color: #7BA4D0;
}

.sa-cookie-modal {
	position: fixed;
	inset: 0;
	z-index: 1000000;
}

.sa-cookie-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(7, 19, 33, 0.74);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.sa-cookie-modal__panel {
	position: relative;
	width: min(760px, calc(100% - 24px));
	margin: min(6vh, 40px) auto;
	border-radius: 28px;
	background: linear-gradient(180deg, #0D2440 0%, #071321 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
	padding: 24px;
	color: #FFFFFF;
	max-height: calc(100vh - 80px);
	overflow: auto;
}

.sa-cookie-modal__header {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.sa-cookie-modal__title-wrap {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.sa-cookie-modal__title-wrap img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.sa-cookie-modal__title-wrap h3 {
	margin: 0 0 8px;
	font-size: 1.4rem;
	font-weight: 900;
}

.sa-cookie-modal__title-wrap p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.7;
}

.sa-cookie-modal__close {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: #FFFFFF;
	font-size: 1.5rem;
	cursor: pointer;
	flex: 0 0 auto;
}

.sa-cookie-modal__body {
	display: grid;
	gap: 14px;
}

.sa-cookie-pref {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: center;
	padding: 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.sa-cookie-pref__copy h4 {
	margin: 0 0 6px;
	font-size: 1rem;
	font-weight: 900;
	color: #FFFFFF;
}

.sa-cookie-pref__copy p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.74);
}

.sa-cookie-switch {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.sa-cookie-switch input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.sa-cookie-switch span {
	width: 52px;
	height: 30px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	position: relative;
	transition: background 0.2s ease;
	display: inline-block;
}

.sa-cookie-switch span::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #FFFFFF;
	transition: transform 0.2s ease;
}

.sa-cookie-switch input:checked + span {
	background: #2E5E99;
}

.sa-cookie-switch input:checked + span::after {
	transform: translateX(22px);
}

.sa-cookie-modal__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 22px;
}

@media (max-width: 900px) {
	.sa-cookie-banner__inner {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.sa-cookie-banner__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.sa-cookie-banner {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}

	.sa-cookie-banner__inner {
		padding: 16px;
		border-radius: 20px;
	}

	.sa-cookie-banner__icon img {
		width: 54px;
		height: 54px;
	}

	.sa-cookie-modal__panel {
		padding: 18px;
		border-radius: 22px;
		margin: 12px auto;
		max-height: calc(100vh - 24px);
	}

	.sa-cookie-modal__header,
	.sa-cookie-modal__title-wrap,
	.sa-cookie-pref {
		flex-direction: column;
		align-items: flex-start;
	}

	.sa-cookie-modal__footer {
		justify-content: stretch;
	}

	.sa-cookie-modal__footer .sa-cookie-btn,
	.sa-cookie-banner__actions .sa-cookie-btn {
		width: 100%;
	}
}

body.sa-cookie-modal-open {
	overflow: hidden;
}

/* =========================================================
   SAStructures — Mobile shell asset icons
========================================================= */

.sa-mobile-brand--logo-only {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.sa-mobile-brand-logo {
	display: block;
	width: 34px;
	height: 34px;
	object-fit: contain;
	flex: 0 0 auto;
}

.sa-mobile-topbar-icon {
	display: block;
	width: 19px;
	height: 19px;
	object-fit: contain;
}

.sa-mobile-bottom-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin: 0 auto 6px;
}

.sa-mobile-bottom-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sa-mobile-bottom-icon--thoughts {
	width: 34px;
	height: 34px;
	margin-bottom: 6px;
}

#sa-mobile-bottom-bar .sa-mobile-bottom-label {
	display: block;
	text-align: center;
}




/* =========================
   SEARCH RESULTS PAGE
========================= */

.sa-search-page {
  background: #eef2f6;
  min-height: 100vh;
}

.sa-search-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 44px 24px 110px;
}

.sa-search-head {
  margin-bottom: 28px;
}

.sa-search-head__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(46, 94, 153, 0.08);
  border: 1px solid rgba(46, 94, 153, 0.12);
  color: #2E5E99;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sa-search-head__title {
  margin: 0 0 12px;
  color: #0D2440;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  font-weight: 900;
}

.sa-search-head__text {
  margin: 0;
  max-width: 70ch;
  color: #4A5568;
  font-size: 1rem;
  line-height: 1.7;
}

.sa-search-inline-form-wrap {
  margin-bottom: 34px;
}

.sa-search-inline-form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 760px;
  padding: 12px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(13, 36, 64, 0.08);
  box-shadow: 0 14px 34px rgba(13, 36, 64, 0.08);
}

.sa-search-inline-input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(13, 36, 64, 0.10);
  background: #F2F4F8;
  color: #071321;
  font-size: 16px;
  outline: none;
}

.sa-search-inline-input::placeholder {
  color: rgba(7, 19, 33, 0.48);
}

.sa-search-inline-input:focus {
  border-color: rgba(46, 94, 153, 0.35);
  box-shadow: 0 0 0 3px rgba(46, 94, 153, 0.12);
}

.sa-search-inline-submit {
  min-width: 132px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2E5E99 0%, #0D2440 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(46, 94, 153, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.sa-search-inline-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(46, 94, 153, 0.28);
  filter: brightness(1.03);
}

.sa-search-group {
  margin-top: 32px;
}

.sa-search-group__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(13, 36, 64, 0.06);
  color: #0D2440;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.sa-search-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sa-search-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(13, 36, 64, 0.08);
  box-shadow: 0 14px 34px rgba(13, 36, 64, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sa-search-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 94, 153, 0.18);
  box-shadow: 0 22px 44px rgba(13, 36, 64, 0.10);
}

.sa-search-card__meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(123, 164, 208, 0.12);
  color: #2E5E99;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sa-search-card__title {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.08;
}

.sa-search-card__title a {
  color: #0D2440;
  text-decoration: none;
}

.sa-search-card__title a:hover {
  color: #2E5E99;
}

.sa-search-card__excerpt {
  margin: 0;
  color: #4A5568;
  font-size: 15px;
  line-height: 1.7;
}

.sa-search-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #2E5E99;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.sa-search-card__link:hover {
  opacity: 0.85;
  transform: translateX(3px);
}

.sa-search-empty {
  max-width: 760px;
  padding: 34px 30px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(13, 36, 64, 0.08);
  box-shadow: 0 18px 38px rgba(13, 36, 64, 0.08);
}

.sa-search-empty__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(13, 36, 64, 0.06);
  color: #0D2440;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.sa-search-empty__title {
  margin: 0 0 12px;
  color: #0D2440;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.sa-search-empty__text {
  margin: 0;
  color: #4A5568;
  font-size: 1rem;
  line-height: 1.7;
}

.sa-search-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.sa-search-empty__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.sa-search-empty__btn:hover {
  transform: translateY(-2px);
}

.sa-search-empty__btn--primary {
  background: linear-gradient(90deg, #2E5E99 0%, #0D2440 100%);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(46, 94, 153, 0.20);
}

.sa-search-empty__btn--secondary {
  background: rgba(13, 36, 64, 0.06);
  color: #0D2440;
  border: 1px solid rgba(13, 36, 64, 0.10);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1280px) and (min-width: 981px) {
  .sa-search-shell {
    padding: 38px 24px 96px;
  }
}

@media (max-width: 900px) {
  .sa-search-results-grid {
    grid-template-columns: 1fr;
  }

  .sa-search-inline-form {
    flex-direction: column;
    align-items: stretch;
  }

  .sa-search-inline-submit {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .sa-search-shell {
    padding: 28px 18px 130px;
  }

  .sa-search-head__title {
    line-height: 1.08;
  }

  .sa-search-card {
    padding: 20px 18px 18px;
  }

  .sa-search-card__title {
    font-size: 1.35rem;
  }

  .sa-search-empty {
    padding: 28px 20px;
  }

  .sa-search-empty__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sa-search-empty__btn {
    width: 100%;
  }
}