:root {
  --primary: #e07828;
  --primary-hover: #c96a22;
  --primary-rgb: 224, 120, 40;
  --primary-deep: #0f2438;
  --accent: #e07828;
  --accent-blue: #1e4a6e;
  --soft: #f4f6f9;
  --border: #dbe3eb;
  --text: #1a2833;
  --muted: #5c6d7a;
  --white: #ffffff;
  --site-max: 1140px;
  --site-gutter: clamp(16px, 4vw, 28px);
  --shadow: 0 14px 40px rgba(10, 37, 64, 0.1);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-10: 80px;
  --section-pad-y: clamp(40px, 11vw, 80px);
  --font-display: "Poppins", sans-serif;
  --gradient-accent: linear-gradient(135deg, #0f2438 0%, #1a4a6e 55%, #1e3d52 100%);
  --gradient-hero-mesh: radial-gradient(ellipse 90% 60% at 15% 35%, rgba(var(--primary-rgb), 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 65%, rgba(15, 36, 56, 0.12), transparent 50%);
  --shadow-card: 0 12px 40px rgba(10, 37, 64, 0.08);
  --shadow-lift: 0 20px 50px rgba(10, 37, 64, 0.14);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.35);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.3s var(--ease-out);
  --inner-hero-overlay: linear-gradient(
    115deg,
    rgba(8, 42, 48, 0.92) 0%,
    rgba(10, 58, 62, 0.88) 45%,
    rgba(6, 36, 46, 0.93) 100%
  );
  /* Swap to e.g. url("../image/inner-hero-bg.jpg") for a local banner */
  --inner-hero-photo: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=2000&q=80");
}

[data-theme="dark"] {
  color-scheme: dark;
  --white: #0c1117;
  --text: #e8eef3;
  --muted: #94a3b8;
  --soft: #121a22;
  --border: #243040;
  --primary: #f0a060;
  --primary-hover: #ffb87a;
  --primary-rgb: 240, 160, 96;
  --accent: #f0a060;
  --accent-blue: #7eb8e8;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.28);
  --shadow-lift: 0 20px 50px rgba(0, 0, 0, 0.35);
  --glass-bg: rgba(22, 30, 40, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 0.25vw + 14px, 16px);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  transition: background-color 0.35s ease, color 0.35s ease;
}
a {
  text-decoration: none;
  color: var(--text);
  font-weight: 400;
}
a:hover {
  color: var(--primary);
}
/* Same horizontal width on every page (index, about, services, etc.): fixed max + symmetric gutters */
.container {
  width: min(var(--site-max), calc(100% - 2 * var(--site-gutter)));
  max-width: var(--site-max);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.section { padding: var(--section-pad-y) 0; }
.eyebrow { color: var(--accent); letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; font-weight: 700; margin-bottom: 8px; }
h1, h2, h3 {
  margin-top: 0;
  line-height: 1.2;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); font-weight: 700; }
p { color: var(--muted); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transition: background 0.35s ease, border-color 0.35s ease;
}
[data-theme="dark"] .header {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; }
.logo { display: inline-flex; align-items: center; gap: clamp(8px, 2vw, 14px); font-weight: 700; }
.logo-img {
  height: 52px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: cover;
  object-position: center center;
  /* clip-path: inset(8% 0 8% 0);
  -webkit-clip-path: inset(8% 0 8% 0); */
  display: block;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  text-align: left;
  line-height: 1.12;
  font-family: "Poppins", sans-serif;
}
.logo-text__title {
  font-size: clamp(0.75rem, 1.65vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--primary-deep);
  max-width: min(280px, 52vw);
  line-height: 1.2;
}
.logo-text__subtitle {
  font-size: clamp(0.55rem, 1.35vw, 0.68rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav { display: flex; align-items: center; gap: 20px;  }
.nav a:hover, .nav a.active { color: var(--primary); }
.nav .nav-dropdown__trigger {
  /* color: inherit;
  font-weight: 500; */
  text-decoration: none;
}
.nav .nav-dropdown__trigger:hover,
.nav .nav-dropdown__trigger.active { color: var(--primary); }
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1120;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--primary);
  border-radius: 1px;
  transition: transform 0.28s var(--ease-out), opacity 0.2s ease;
}
/* Single clean X: both bars centered on the button (no offset “double bar” glitch) */
.nav-toggle.is-active span:nth-child(1) {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}
.nav-toggle.is-active span:nth-child(3) {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Services simple dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.nav-dropdown__bar {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
}
.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  padding: 4px 4px 4px 2px;
  margin: 0;
  cursor: pointer;
  color: var(--muted);
  border-radius: 6px;
  line-height: 0;
}
.nav-dropdown__toggle:hover {
  color: var(--primary);
  background: rgba(15, 49, 69, 0.06);
}
.nav-dropdown__chev::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.nav-dropdown--open .nav-dropdown__chev::before {
  transform: rotate(-135deg);
  margin-top: 4px;
}
@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown__chev::before,
  .nav-dropdown:focus-within .nav-dropdown__chev::before {
    transform: rotate(-135deg);
    margin-top: 4px;
  }
}
.nav-dropdown__menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  margin: 0;
  padding: 8px 0;
  min-width: min(320px, 86vw);
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(14, 52, 72, 0.14);
  z-index: 200;
}
.nav-dropdown__menu a {
  display: block;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid #d3d2d2;
}
.nav-dropdown__menu a:hover {
  background: var(--soft);
  color: var(--primary);
}
.nav-dropdown__menu li:last-child a {
  border-radius: 0 0 8px 8px;
}
.nav-dropdown__menu li:first-child a {
  border-radius: 8px 8px 0 0;
}
.nav-dropdown__menu li[aria-current="page"] a {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
}

@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    display: block;
  }
  .nav-backdrop {
    display: none !important;
    pointer-events: none !important;
  }
  .nav .nav-drawer__header {
    display: none !important;
  }
}

/* Service detail page */
.service-page {
  max-width: 68ch;
}
.service-page p {
  margin: 0 0 16px;
}
.service-page__back {
  margin-top: 24px;
  margin-bottom: 0 !important;
  font-size: 0.95rem;
}
.service-page__back a {
  color: var(--accent);
  font-weight: 600;
}
.service-page__back a:hover {
  text-decoration: underline;
}
.service-page--with-media {
  max-width: min(900px, 100%);
}
.service-page__figure {
  margin: 0 0 22px;
}
.service-page__img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 12px;
  display: block;
  border: 1px solid var(--border);
}
.service-page__h2 {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 24px 0 12px;
}
.service-page__list {
  margin: 0 0 20px;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.55;
}
.service-page__list li {
  margin-bottom: 8px;
}
.service-page__source {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 20px !important;
}
.service-page__source a {
  color: var(--accent);
  font-weight: 600;
}

/* —— Accounting service page (creative layout) —— */
.page-service-creative .svc-creative {
  overflow-x: hidden;
}

.svc-acc-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(40px, 8vw, 72px) 0 clamp(48px, 9vw, 88px);
  background: linear-gradient(145deg, #06202c 0%, #0b2f3d 38%, #0d3a42 100%);
  color: #e8f4f8;
}
.svc-acc-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(94, 196, 184, 0.28), transparent 55%),
    radial-gradient(ellipse 45% 40% at 0% 100%, rgba(var(--primary-rgb), 0.45), transparent 50%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.03) 40px,
      rgba(255, 255, 255, 0.03) 41px
    );
  pointer-events: none;
}
.svc-acc-hero__inner {
  position: relative;
  z-index: 1;
}
.svc-acc-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(232, 244, 248, 0.85);
}
.svc-acc-hero__crumb a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.svc-acc-hero__crumb a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.45);
}
.svc-acc-hero__crumb-sep {
  color: rgba(255, 255, 255, 0.4);
  user-select: none;
}
.svc-acc-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dccc0;
}
.svc-acc-hero__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.svc-acc-hero__title em {
  font-style: italic;
  font-weight: 600;
  color: #9ee8dc;
}
.svc-acc-hero__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(220, 236, 242, 0.92);
  max-width: 48ch;
}

.svc-acc-intro {
  background: var(--white);
  padding-top: clamp(56px, 9vw, 88px);
  padding-bottom: clamp(56px, 9vw, 88px);
}
.svc-acc-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}
.svc-acc-split__visual {
  position: relative;
}
.svc-acc-frame {
  position: relative;
  border-radius: 20px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.35), rgba(15, 49, 69, 0.15));
  box-shadow: 0 24px 48px rgba(14, 52, 72, 0.12);
}
.svc-acc-frame__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: #fff;
}
.svc-acc-frame__badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  padding: 6px 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(6, 32, 44, 0.88);
  border-radius: 6px;
  backdrop-filter: blur(6px);
}
.svc-acc-float-card {
  position: absolute;
  right: -8px;
  bottom: -12px;
  max-width: 220px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(14, 52, 72, 0.12);
}
.svc-acc-float-card__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.svc-acc-float-card__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
  font-weight: 600;
}
.svc-acc-split__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--primary);
  margin: 0 0 16px;
}
.svc-acc-split__copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}
.svc-acc-split__copy p:last-child {
  margin-bottom: 0;
}

.svc-acc-pillars-wrap {
  padding: clamp(56px, 8vw, 80px) 0;
  background: linear-gradient(180deg, var(--soft) 0%, #e8f0f4 100%);
}
.svc-acc-pillars-head {
  text-align: center;
  margin-bottom: 36px;
}
.svc-acc-pillars-head__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 14px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 999px;
}
.svc-acc-pillars-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--primary);
}
.svc-acc-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.svc-acc-pillar {
  position: relative;
  padding: 26px 22px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(14, 52, 72, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc-acc-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(14, 52, 72, 0.1);
}
.svc-acc-pillar__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
  opacity: 0.9;
}
.svc-acc-pillar__h {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--primary);
}
.svc-acc-pillar__p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}
.svc-acc-pillar__sub {
  margin: 14px 0 0;
  padding-left: 1.15rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--muted);
}
.svc-acc-pillar__sub li {
  margin-bottom: 8px;
}
.svc-acc-pillar__sub strong {
  color: var(--primary);
  font-weight: 700;
}

.page-service-audit .svc-acc-hero {
  background: linear-gradient(145deg, #0a2432 0%, #0f3848 40%, #144550 100%);
}
.page-service-audit .svc-acc-hero__eyebrow {
  color: #9bc9e0;
}
.page-service-audit .svc-acc-hero__title em {
  color: #b8e4f0;
}

.page-service-income-tax .svc-acc-hero {
  background: linear-gradient(145deg, #1a2340 0%, #243056 42%, #2a3860 100%);
}
.page-service-income-tax .svc-acc-hero__eyebrow {
  color: #c9b88a;
}
.page-service-income-tax .svc-acc-hero__title em {
  color: #e8d9a8;
}

.page-service-gst .svc-acc-hero {
  background: linear-gradient(145deg, #0d2e28 0%, #124a40 38%, #165a4c 100%);
}
.page-service-gst .svc-acc-hero__eyebrow {
  color: #8fd4c4;
}
.page-service-gst .svc-acc-hero__title em {
  color: #b5f0e0;
}

.page-service-company-law .svc-acc-hero {
  background: linear-gradient(145deg, #1a1f2e 0%, #252b40 40%, #2e3550 100%);
}
.page-service-company-law .svc-acc-hero__eyebrow {
  color: #a8b8e8;
}
.page-service-company-law .svc-acc-hero__title em {
  color: #c8d4f5;
}

.page-service-ngo .svc-acc-hero {
  background: linear-gradient(145deg, #2a2340 0%, #3d3358 42%, #4a3d66 100%);
}
.page-service-ngo .svc-acc-hero__eyebrow {
  color: #d4b8e8;
}
.page-service-ngo .svc-acc-hero__title em {
  color: #e8d0f5;
}

.page-service-foreign .svc-acc-hero {
  background: linear-gradient(145deg, #132238 0%, #1c3550 40%, #244a62 100%);
}
.page-service-foreign .svc-acc-hero__eyebrow {
  color: #8ec8e0;
}
.page-service-foreign .svc-acc-hero__title em {
  color: #b0dff0;
}

.page-service-import-export .svc-acc-hero {
  background: linear-gradient(145deg, #1a3040 0%, #1f4a5c 38%, #256878 100%);
}
.page-service-import-export .svc-acc-hero__eyebrow {
  color: #a8e0d4;
}
.page-service-import-export .svc-acc-hero__title em {
  color: #c5f0e6;
}

.page-service-finance .svc-acc-hero {
  background: linear-gradient(145deg, #1e2a45 0%, #283a5c 40%, #324a70 100%);
}
.page-service-finance .svc-acc-hero__eyebrow {
  color: #d4b87a;
}
.page-service-finance .svc-acc-hero__title em {
  color: #e8cc8c;
}

.page-service-payroll .svc-acc-hero {
  background: linear-gradient(145deg, #243038 0%, #2d4548 40%, #365a5c 100%);
}
.page-service-payroll .svc-acc-hero__eyebrow {
  color: #9ed4d0;
}
.page-service-payroll .svc-acc-hero__title em {
  color: #b8ece6;
}

.page-service-other .svc-acc-hero {
  background: linear-gradient(145deg, #2a2838 0%, #38344a 40%, #454060 100%);
}
.page-service-other .svc-acc-hero__eyebrow {
  color: #c4b8f0;
}
.page-service-other .svc-acc-hero__title em {
  color: #ddd4ff;
}

.svc-acc-quote {
  padding: clamp(40px, 6vw, 56px) 0;
  background: var(--primary);
  color: #d6e8f0;
}
.svc-acc-quote__inner {
  max-width: 52ch;
  margin: 0 auto;
  text-align: center;
}
.svc-acc-quote__bq {
  margin: 0;
}
.svc-acc-quote__bq p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  line-height: 1.55;
  color: #fff;
}

.svc-acc-outro {
  padding-bottom: 72px;
}
.svc-acc-outro__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.svc-acc-cta-card {
  padding: clamp(28px, 4vw, 36px) 24px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: linear-gradient(160deg, #f0f6fa 0%, #fff 50%, #eef6f4 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.svc-acc-cta-card__line {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
}
.svc-acc-source {
  margin-bottom: 12px !important;
}

@media (max-width: 900px) {
  .svc-acc-split {
    grid-template-columns: 1fr;
  }
  .svc-acc-float-card {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 16px;
  }
  .svc-acc-pillars {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-acc-pillar {
    transition: none;
  }
  .svc-acc-pillar:hover {
    transform: none;
  }
}

.team-showcase {
  --team-teal: var(--primary);
  background: #fbfdfe;
  position: relative;
  overflow: hidden;
}
.team-showcase::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 68%);
  pointer-events: none;
}
.team-showcase::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d5e4ea 20%, #d5e4ea 80%, transparent);
  pointer-events: none;
}
.team-showcase .container {
  position: relative;
  z-index: 1;
}
.team-showcase__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: end;
  margin-bottom: clamp(40px, 7vw, 64px);
  padding-bottom: clamp(28px, 5vw, 40px);
  border-bottom: 2px solid var(--primary);
}
.team-showcase__eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--team-teal);
}
.team-showcase__title {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.18;
  max-width: 18ch;
}
.team-showcase__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
  padding-bottom: 4px;
}
.team-showcase__strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}
.team-spot {
  display: grid;
  grid-template-columns: minmax(44px, 64px) minmax(88px, 118px) minmax(0, 1fr);
  gap: clamp(12px, 2.5vw, 20px);
  align-items: center;
  min-width: 0;
  padding: clamp(18px, 3vw, 26px) clamp(14px, 2.5vw, 22px);
  margin: 0;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef2;
  box-shadow: 0 8px 28px rgba(14, 52, 72, 0.07);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.28s ease, border-color 0.28s ease;
}
.team-spot:hover {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.07) 0%, #fff 55%);
  border-color: #c5dce5;
  box-shadow: 0 14px 40px rgba(14, 52, 72, 0.11);
  transform: translateY(-4px);
}
.team-spot--flip {
  grid-template-columns: minmax(0, 1fr) minmax(88px, 118px) minmax(44px, 64px);
}
.team-spot--flip .team-spot__num {
  order: 3;
  text-align: right;
}
.team-spot--flip .team-spot__avatar {
  order: 2;
}
.team-spot--flip .team-spot__body {
  order: 1;
  text-align: right;
  border-left: none;
  border-right: 3px solid rgba(var(--primary-rgb), 0.35);
  padding-left: 0;
  padding-right: clamp(8px, 2vw, 14px);
}
.team-spot--flip:hover {
  background: linear-gradient(225deg, rgba(var(--primary-rgb), 0.07) 0%, #fff 55%);
}
.team-spot__num {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #c5d5de;
  letter-spacing: -0.04em;
  user-select: none;
}
@supports not (-webkit-text-stroke: 1px red) {
  .team-spot__num {
    color: rgba(15, 49, 69, 0.12);
    -webkit-text-stroke: 0;
  }
}
.team-spot__avatar {
  position: relative;
  width: min(118px, 22vw);
  height: min(118px, 22vw);
  max-width: 118px;
  max-height: 118px;
  margin: 0 auto;
  /* display: grid;
  place-items: center; */
}
.team-spot__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* object-fit: cover; */
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(14, 52, 72, 0.16);
}
.team-spot__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--team-teal), var(--primary), var(--accent-blue), var(--team-teal));
  opacity: 0.95;
}
.team-spot__ring::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0f3d52 0%, var(--primary) 55%, #08202c 100%);
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.25);
}
.team-spot__initials {
  position: relative;
  z-index: 1;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}
.team-spot__body {
  min-width: 0;
  padding-left: clamp(8px, 2vw, 16px);
  border-left: 3px solid rgba(var(--primary-rgb), 0.35);
}
.team-spot__name {
  margin: 0 0 8px;
  font-size: clamp(1.12rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.team-spot__role {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #5f7380;
}
.team-showcase__footnote {
  margin: clamp(28px, 5vw, 40px) 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}
@media (max-width: 720px) {
  .team-showcase__intro {
    grid-template-columns: 1fr;
    align-items: start;
    border-bottom-width: 1px;
  }
  .team-showcase__title {
    max-width: none;
  }
  .team-showcase__strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .team-spot,
  .team-spot--flip {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 20px;
    border-radius: 14px;
  }
  .team-spot__num {
    justify-self: center;
    margin-bottom: 4px;
  }
  .team-spot__avatar {
    width: min(120px, 40vw);
    height: min(120px, 40vw);
    max-width: 120px;
    max-height: 120px;
  }
  .team-spot__body,
  .team-spot--flip .team-spot__body {
    text-align: center;
    border-left: none;
    border-right: none;
    padding: 12px 0 0;
    border-top: 2px solid rgba(var(--primary-rgb), 0.25);
    margin-top: 8px;
  }
  .team-spot--flip .team-spot__num,
  .team-spot--flip .team-spot__avatar,
  .team-spot--flip .team-spot__body {
    order: 0;
  }
  .team-spot:hover,
  .team-spot--flip:hover {
    transform: translateY(-2px);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-careers {
  background: linear-gradient(180deg, #e8edf1 0%, #f2f5f7 28%, #fafbfc 100%);
}
.careers-main {
  position: relative;
}
.careers-main::before {
  content: "";
  position: absolute;
  inset: 0;
  min-height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='0.5'/%3E%3C/svg%3E");
}
.careers-main > * {
  position: relative;
  z-index: 1;
}
@keyframes careersHeroIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes careersAuroraDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(5%, -4%) scale(1.06);
  }
  70% {
    transform: translate(-4%, 5%) scale(1.03);
  }
}
@keyframes careersStackIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes careersCardGlowPulse {
  0%,
  100% {
    box-shadow: 0 16px 48px rgba(18, 42, 58, 0.08), 0 0 0 0 rgba(var(--primary-rgb), 0);
  }
  50% {
    box-shadow: 0 22px 56px rgba(18, 42, 58, 0.11), 0 0 40px rgba(var(--primary-rgb), 0.14);
  }
}
.page-careers .fade-in {
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-careers .careers-hero-choreo > *:not(.careers-hero-premium__stats) {
  opacity: 0;
  animation: careersHeroIn 0.88s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.page-careers .careers-hero-choreo > *:nth-child(1) {
  animation-delay: 0.05s;
}
.page-careers .careers-hero-choreo > *:nth-child(2) {
  animation-delay: 0.12s;
}
.page-careers .careers-hero-choreo > *:nth-child(3) {
  animation-delay: 0.2s;
}
.page-careers .careers-hero-choreo > *:nth-child(4) {
  animation-delay: 0.28s;
}
.page-careers .careers-hero-choreo > *:nth-child(5) {
  animation-delay: 0.36s;
}
.page-careers .careers-hero-choreo .careers-hero-premium__stats li {
  opacity: 0;
  animation: careersHeroIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.page-careers .careers-hero-choreo .careers-hero-premium__stats li:nth-child(1) {
  animation-delay: 0.46s;
}
.page-careers .careers-hero-choreo .careers-hero-premium__stats li:nth-child(2) {
  animation-delay: 0.54s;
}
.page-careers .careers-hero-choreo .careers-hero-premium__stats li:nth-child(3) {
  animation-delay: 0.62s;
}
.page-careers .careers-hero-premium__stats li {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.page-careers .careers-hero-premium__stats li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  border-color: rgba(95, 212, 207, 0.45);
  background: rgba(255, 255, 255, 0.12);
}
.page-careers .careers-openings__list .careers-job {
  opacity: 0;
  transform: translateY(22px);
}
.page-careers .careers-openings__list.careers-jobs-revealed .careers-job {
  animation: careersStackIn 0.68s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.page-careers .careers-openings__list.careers-jobs-revealed .careers-job:nth-child(1) {
  animation-delay: 0.04s;
}
.page-careers .careers-openings__list.careers-jobs-revealed .careers-job:nth-child(2) {
  animation-delay: 0.12s;
}
.page-careers .careers-openings__list.careers-jobs-revealed .careers-job:nth-child(3) {
  animation-delay: 0.2s;
}
.page-careers .careers-why__grid--stagger .careers-card {
  opacity: 0;
  transform: translateY(24px);
}
.page-careers .careers-why__grid--stagger.fade-in.visible .careers-card {
  animation: careersStackIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.page-careers .careers-why__grid--stagger.fade-in.visible .careers-card:nth-child(1) {
  animation-delay: 0.06s;
}
.page-careers .careers-why__grid--stagger.fade-in.visible .careers-card:nth-child(2) {
  animation-delay: 0.14s;
}
.page-careers .careers-why__grid--stagger.fade-in.visible .careers-card:nth-child(3) {
  animation-delay: 0.22s;
}
.page-careers .careers-bento__grid--stagger .careers-bento__cell {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
}
.page-careers .careers-bento__grid--stagger.careers-bento-revealed .careers-bento__cell {
  animation: careersStackIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.page-careers .careers-bento__grid--stagger.careers-bento-revealed .careers-bento__cell:nth-child(1) {
  animation-delay: 0.05s;
}
.page-careers .careers-bento__grid--stagger.careers-bento-revealed .careers-bento__cell:nth-child(2) {
  animation-delay: 0.12s;
}
.page-careers .careers-bento__grid--stagger.careers-bento-revealed .careers-bento__cell:nth-child(3) {
  animation-delay: 0.19s;
}
.page-careers .careers-bento__grid--stagger.careers-bento-revealed .careers-bento__cell:nth-child(4) {
  animation-delay: 0.26s;
}
.page-careers .careers-bento__cell {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.page-careers .careers-bento__cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(14, 52, 72, 0.12);
}
.page-careers .careers-split__form-col.fade-in.visible .careers-apply-card {
  animation: careersCardGlowPulse 6s ease-in-out 0.6s infinite;
}
.page-careers .careers-cta {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.page-careers .careers-cta-wrap .fade-in.visible .careers-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(14, 52, 72, 0.12);
}
.page-careers .careers-section-title {
  position: relative;
}
.page-careers .careers-why .careers-section-title::after,
.page-careers .careers-split__head .careers-section-title::after {
  content: "";
  display: block;
  width: min(72px, 18vw);
  height: 3px;
  margin: 14px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), #c9a227, var(--primary));
  background-size: 200% 100%;
  animation: careersAccentBar 4s ease-in-out infinite;
}
@keyframes careersAccentBar {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-careers .fade-in {
    transform: none;
    transition: opacity 0.35s ease;
  }
  .page-careers .careers-hero-choreo > *:not(.careers-hero-premium__stats),
  .page-careers .careers-hero-choreo .careers-hero-premium__stats li {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .page-careers .careers-openings__list .careers-job,
  .page-careers .careers-why__grid--stagger .careers-card,
  .page-careers .careers-bento__grid--stagger .careers-bento__cell {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .page-careers .careers-hero-premium__aurora {
    animation: none !important;
  }
  .careers-viz__ring,
  .careers-viz__ring--slow {
    animation: none !important;
  }
  .careers-hero-premium__btn-glow::before {
    animation: none !important;
    opacity: 0.35;
  }
  .careers-apply-card__shine {
    animation: none !important;
  }
  .careers-cta__glow {
    animation: none !important;
  }
  .page-careers .careers-split__form-col.fade-in.visible .careers-apply-card {
    animation: none !important;
  }
  .page-careers .careers-hero-premium__stats li:hover {
    transform: none;
  }
  .page-careers .careers-why .careers-section-title::after,
  .page-careers .careers-split__head .careers-section-title::after {
    animation: none;
  }
}
.careers-hero-premium {
  position: relative;
  margin-top: -1px;
  min-height: min(78vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: clamp(72px, 12vw, 120px) 0 clamp(48px, 8vw, 88px);
  background: #061a24;
  color: #e8f2f5;
  overflow: hidden;
}
.careers-hero-premium__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 10% 20%, rgba(20, 120, 115, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 30%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #061a24 0%, #0c2a38 38%, #0a222e 100%);
  pointer-events: none;
}
.careers-hero-premium__aurora {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 45% 40% at 25% 35%, rgba(var(--primary-rgb), 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 40% 38% at 75% 55%, rgba(232, 199, 107, 0.14) 0%, transparent 50%);
  filter: blur(48px);
  animation: careersAuroraDrift 18s ease-in-out infinite;
  will-change: transform;
}
.careers-hero-premium__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='%23ffffff' fill-opacity='0.03' d='M30 0l30 30-30 30L0 30z'/%3E%3C/svg%3E");
  opacity: 1;
}
.careers-hero-premium__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(140px, 0.4fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: end;
}
.careers-hero-premium__inner {
  position: relative;
  z-index: 1;
  max-width: none;
}
.careers-hero-premium__viz {
  position: relative;
  min-height: min(300px, 42vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
.careers-viz {
  position: relative;
  width: min(100%, 260px);
  aspect-ratio: 1;
}
.careers-viz__ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: careersVizSpin 22s linear infinite;
}
.careers-viz__ring--slow {
  inset: 0;
  border-style: dashed;
  border-color: rgba(232, 199, 107, 0.28);
  animation: careersVizSpin 36s linear infinite reverse;
}
.careers-viz__core {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(184, 255, 249, 0.35), rgba(var(--primary-rgb), 0.12));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 48px rgba(var(--primary-rgb), 0.22),
    inset 0 0 24px rgba(255, 255, 255, 0.08);
}
.careers-viz__tag {
  position: absolute;
  left: 50%;
  bottom: -4%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}
@keyframes careersVizSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes careersBtnGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes careersApplyShine {
  to {
    transform: rotate(360deg);
  }
}
@keyframes careersCtaBlob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(-24px, 18px) scale(1.12);
    opacity: 1;
  }
}
.careers-hero-premium__crumb {
  margin: 0 0 clamp(20px, 4vw, 32px);
  font-size: 0.82rem;
  font-weight: 600;
}
.careers-hero-premium__crumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.careers-hero-premium__crumb a:hover {
  color: #7ee8e3;
}
.careers-hero-premium__crumb-sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.35);
}
.careers-hero-premium__crumb-current {
  color: rgba(255, 255, 255, 0.88);
}
.careers-hero-premium__eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(184, 255, 249, 0.9);
}
.careers-hero-premium__eyebrow-pill {
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.2);
  border: 1px solid rgba(95, 212, 207, 0.38);
  color: #d8fffa;
  letter-spacing: 0.14em;
}
.careers-hero-premium__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8c76b;
  box-shadow: 0 0 14px rgba(232, 199, 107, 0.75);
  flex-shrink: 0;
}
.careers-hero-premium__title {
  margin: 0 0 clamp(18px, 3vw, 26px);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}
.careers-hero-premium__title em {
  font-style: italic;
  font-weight: 600;
  color: #e8c76b;
}
.careers-hero-premium__lead {
  margin: 0 0 clamp(28px, 5vw, 36px);
  max-width: 52ch;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.65;
  color: rgba(232, 242, 245, 0.82);
}
.careers-hero-premium__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(36px, 6vw, 48px);
}
.careers-hero-premium__actions .btn-primary {
  box-shadow: 0 12px 32px rgba(var(--primary-rgb), 0.35);
}
.careers-hero-premium__btn-glow {
  position: relative;
  isolation: isolate;
}
.careers-hero-premium__btn-glow::before {
  /* content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  z-index: -1;
  background: linear-gradient(125deg, var(--primary), #f4b87a, #e8c76b, var(--primary));
  background-size: 220% 220%;
  opacity: 0.55;
  filter: blur(12px);
  animation: careersBtnGlow 5s linear infinite; */
}
.careers-hero-premium__btn-outline {
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #fff !important;
  background: transparent !important;
}
.careers-hero-premium__btn-outline:hover {
  border-color: rgba(255, 200, 150, 0.95) !important;
  color: #ffe8cc !important;
  background: rgba(255, 255, 255, 0.06) !important;
}
.careers-hero-premium__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2.5vw, 18px);
}
.careers-hero-premium__stats li {
  flex: 1 1 min(200px, 100%);
  max-width: min(240px, 100%);
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.careers-hero-premium__stat-num {
  display: block;
  font-size: 1.28rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.careers-hero-premium__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}
.careers-split-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, var(--soft) 100%);
}
.careers-split__head {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 40px);
}
.careers-split__head .careers-section-title {
  margin-bottom: 10px;
}
.careers-split__head .careers-section-lead {
  margin-bottom: 0;
}
.careers-split-section--creative {
  position: relative;
}
.careers-split-section--creative::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(140px, 22vw);
  background: linear-gradient(118deg, rgba(var(--primary-rgb), 0.07) 0%, transparent 58%);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 100%);
  pointer-events: none;
}
.careers-split__kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.careers-why--creative .careers-why__intro {
  text-align: center;
  margin-bottom: clamp(22px, 4vw, 36px);
}
.careers-why__spark {
  display: block;
  width: 56px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), #c9a227, transparent);
}
.careers-section-title--creative {
  font-family: var(--font-display);
  font-weight: 700;
}
.careers-section-lead--tight {
  margin-bottom: 0 !important;
}
.page-careers .careers-card--creative {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}
.page-careers .careers-card__index {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(var(--primary-rgb), 0.11);
  pointer-events: none;
  letter-spacing: -0.03em;
}
.page-careers .careers-openings__list {
  counter-reset: careers-job;
}
.page-careers .careers-job::after {
  content: counter(careers-job, decimal-leading-zero);
  counter-increment: careers-job;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 6px;
  z-index: 0;
  color: rgba(var(--primary-rgb), 0.07);
  pointer-events: none;
  letter-spacing: -0.04em;
}
.page-careers .careers-job .careers-job__main,
.page-careers .careers-job .careers-job__apply {
  position: relative;
  z-index: 1;
}
.page-careers .careers-job__apply.btn-teal-contact {
  color: #fff;
  background: #22af62;
}
.page-careers .careers-openings__list .careers-job:nth-child(3) {
  grid-column: 1 / -1;
  max-width: min(480px, 100%);
  /* justify-self: center; */
}
.careers-apply-card--creative {
  position: relative;
  overflow: hidden;
  border-color: rgba(var(--primary-rgb), 0.28);
}
.careers-apply-card__shine {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 160%;
  margin: -80% 0 0 -80%;
  background: conic-gradient(from 200deg, transparent 0deg, rgba(var(--primary-rgb), 0.06) 40deg, transparent 80deg, rgba(201, 162, 39, 0.05) 120deg, transparent 160deg);
  animation: careersApplyShine 12s linear infinite;
  pointer-events: none;
}
.careers-apply-card--creative .careers-form-creative {
  position: relative;
  z-index: 1;
}
.careers-bento__head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto clamp(28px, 5vw, 48px);
}
.careers-bento__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px;
}
.careers-bento__display {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.8vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.careers-bento__sub {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--muted);
}
.careers-bento--creative .careers-bento__cell--wide {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.careers-cta--creative {
  position: relative;
  overflow: hidden;
  border-color: rgba(var(--primary-rgb), 0.22);
  background: linear-gradient(165deg, #f0faf9 0%, #fff 55%);
}
.careers-cta__glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.18) 0%, transparent 68%);
  top: -90px;
  right: -70px;
  pointer-events: none;
  animation: careersCtaBlob 9s ease-in-out infinite;
}
.careers-cta--creative .careers-cta__title,
.careers-cta--creative .careers-cta__text,
.careers-cta--creative .careers-cta__actions {
  position: relative;
  z-index: 1;
}
.careers-split {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.careers-split__jobs .careers-openings__list {
  max-width: min(1040px, 100%);
  margin: 0 auto;
}
.careers-split__jobs .careers-open-foot {
  margin-left: auto;
  margin-right: auto;
}
.careers-split__form-col {
  margin-top: clamp(36px, 6vw, 56px);
  padding-top: clamp(28px, 5vw, 40px);
  border-top: 1px solid rgba(14, 52, 72, 0.1);
  max-width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.careers-apply-card {
  border-radius: 18px;
  padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 40px);
  /* background: #e4e7ec; */
  border: 1px solid #d5d9e0;
  box-shadow: 0 16px 48px rgba(18, 42, 58, 0.08);
}
.careers-form-creative.contact-form label {
  display: block;
  margin: 0;
  font-weight: 500;
}
.careers-form-creative__title {
  margin: 0 0 10px;
  text-align: center;
  font-size: clamp(1.28rem, 2.8vw, 1.72rem);
  font-weight: 800;
  color: #1e323d;
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.careers-form-creative__hint {
  margin: 0 0 26px;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #5c6e78;
}
.careers-form-creative__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  align-items: stretch;
}
.careers-form-creative__grid input[type="text"],
.careers-form-creative__grid input[type="email"],
.careers-form-creative__grid input[type="tel"],
.careers-form-creative__grid input[type="url"],
.careers-form-creative__grid input[type="date"],
.careers-form-creative__grid select,
.careers-form-creative__grid textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 0;
  padding: 12px 14px;
  border-radius: 7px;
  border: 1px solid #c5cdd4;
  background: #fff;
  font: inherit;
  font-size: 0.94rem;
  color: #1e323d;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.careers-form-creative__grid textarea {
  min-height: 100px;
  resize: vertical;
}
.careers-form-creative__grid input::placeholder,
.careers-form-creative__grid textarea::placeholder {
  color: #8b969e;
}
.careers-form-creative__grid input:hover,
.careers-form-creative__grid select:hover,
.careers-form-creative__grid textarea:hover {
  border-color: #aeb8c2;
}
.careers-form-creative__grid input:focus,
.careers-form-creative__grid select:focus,
.careers-form-creative__grid textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.18);
}
.careers-form-creative__grid select {
  cursor: pointer;
  color: #3d4f59;
  appearance: auto;
}
.careers-form-creative__grid select:invalid {
  color: #8b969e;
}
.careers-form-creative__span-2 {
  grid-column: 1 / -1;
}
.careers-form-creative__file-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a5c66;
  margin-bottom: 6px;
}
label.careers-form-creative__file--labeled {
  cursor: pointer;
}
label.careers-form-creative__file--labeled:focus-within .careers-form-creative__file-inner {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.18);
}
.careers-form-creative__file .careers-form-creative__file-inner {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0px 12px;
  border-radius: 7px;
  border: 1px solid #c5cdd4;
  background: #fff;
  box-sizing: border-box;
}
.careers-form-creative__file input[type="file"] {
  width: 100%;
  margin: 0;
  padding: 3px 0;
  min-height: auto;
  border: none;
  background: transparent;
  font-size: 0.85rem;
  color: #5c6e78;
}
.careers-form-creative__file input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 0px 14px;
  border-radius: 6px;
  border: 1px solid #c5cdd4;
  background: #f0f3f6;
  color: #1e323d;
  font: inherit;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
}
.careers-form-creative__file input[type="file"]::file-selector-button:hover {
  background: #e4e8ee;
  border-color: var(--primary);
}
.careers-form-creative__file-inner--resume {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.careers-form-creative__file-inner--resume input[type="file"] {
  width: auto;
  max-width: 120px;
  flex: 0 0 auto;
  color: transparent;
}
.careers-form-creative__file-inner--resume input[type="file"]:valid {
  color: #1e323d;
  flex: 1 1 auto;
  min-width: 0;
}
.careers-form-creative__file-inner--resume input[type="file"]::file-selector-button {
  color: #1e323d;
}
.careers-form-creative__file-placeholder {
  flex: 1;
  min-width: 0;
  font-size: 0.94rem;
  line-height: 1.35;
  color: #8b969e;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.careers-form-creative__file-placeholder.careers-file-placeholder--hidden {
  display: none;
}
.careers-form-creative__file-inner--resume input[type="file"].careers-file-input--has-file {
  color: #1e323d;
  flex: 1 1 auto;
  min-width: 0;
}
.careers-form-creative__file-inner--resume:has(input[type="file"]:valid) .careers-form-creative__file-placeholder {
  display: none;
}
.careers-form-creative__submit-wrap {
  grid-column: 1 / -1;
  margin-top: 10px;
  display: flex;
  /* justify-content: center; */
}
.careers-form-creative__submit {
  width: auto;
  min-width: min(220px, 100%);
  max-width: 100%;
  padding: 10px 32px;
  min-height: 44px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--primary-hover) 0%, var(--primary) 100%);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(var(--primary-rgb), 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.careers-form-creative__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(var(--primary-rgb), 0.42);
}
.careers-form-creative .form-note {
  text-align: center;
  margin-top: 16px;
}
.careers-open-foot {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.55;
}
.careers-open-foot a {
  color: var(--primary);
  font-weight: 600;
}
.careers-open-foot a:hover {
  color: var(--primary);
}
.careers-bento__btn-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: #7ee8e3;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.careers-bento__btn-link:hover {
  color: #fff;
}
.contact-form-panel.contact-form input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid #d5dee5;
  background: #eef6f6;
  color: var(--primary);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.contact-form-panel.contact-form input[type="file"]::file-selector-button:hover {
  background: #dff0ef;
  border-color: var(--primary);
}
.contact-form.careers-form-creative .careers-form-creative__file input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #c5cdd4;
  background: #f0f3f6;
  color: #1e323d;
  font: inherit;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
}
.contact-form.careers-form-creative .careers-form-creative__file input[type="file"]::file-selector-button:hover {
  background: #e4e8ee;
  border-color: var(--primary);
}
.page-careers .careers-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 52, 72, 0.08);
  box-shadow: 0 16px 40px rgba(14, 52, 72, 0.08);
  backdrop-filter: blur(8px);
}
.page-careers .careers-card__icon {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.page-careers .careers-card:hover .careers-card__icon {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.2);
}
.page-careers .careers-job {
  position: relative;
  border-left-width: 3px;
  border-left-color: #c9a227;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, #fff 24%);
  padding-right: clamp(76px, 16vw, 112px);
  transition:
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-left-color 0.35s ease;
}
.page-careers .careers-job:hover {
  border-left-color: var(--primary);
}
.page-careers .careers-job__apply {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-careers .careers-job:hover .careers-job__apply {
  transform: scale(1.03);
}
button.careers-job__apply {
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.careers-section-title {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.careers-section-lead {
  margin: 0 auto 36px;
  max-width: 54ch;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--muted);
}
.careers-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 24px);
}
.careers-card {
  padding: 26px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e5eef2;
  box-shadow: 0 12px 32px rgba(14, 52, 72, 0.07);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.careers-card:hover {
  transform: translateY(-5px);
  border-color: #b8dce0;
  box-shadow: 0 20px 44px rgba(14, 52, 72, 0.11);
}
.careers-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.15), rgba(15, 49, 69, 0.08));
  color: #0a6b67;
}
.careers-card__title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--primary);
}
.careers-card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}
.careers-openings__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  max-width: min(1040px, 100%);
  margin: 0 auto;
}
.careers-job {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 6px 22px rgba(14, 52, 72, 0.06);
  border-left: 4px solid var(--primary);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.careers-job:hover {
  box-shadow: 0 14px 36px rgba(14, 52, 72, 0.1);
  transform: translateX(4px);
}
.careers-job__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a8f8a;
  background: rgba(var(--primary-rgb), 0.12);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.careers-job__title {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}
.careers-job__meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.careers-job__apply {
  width: auto;
  min-height: 44px;
  padding: 0 22px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.careers-bento__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: clamp(14px, 2.5vw, 20px);
}
.careers-bento__cell {
  padding: clamp(22px, 4vw, 30px);
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e3ebf0;
  box-shadow: 0 10px 28px rgba(14, 52, 72, 0.06);
}
.careers-bento__cell--wide {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, #f4fbfc 0%, #fff 55%);
  border-color: #d5ebef;
}
.careers-bento__cell--accent {
  background: linear-gradient(160deg, #e8faf9 0%, #fff 70%);
  border-color: #bfe8e5;
}
.careers-bento__cell--dark {
  background: linear-gradient(145deg, #0f3145 0%, #0a2430 100%);
  color: #d1e7ed;
  border-color: rgba(255, 255, 255, 0.08);
}
.careers-bento__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.careers-bento__cell--dark .careers-bento__label {
  color: #f4c49a;
}
.careers-bento__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}
.careers-bento__cell--dark .careers-bento__text {
  color: rgba(255, 255, 255, 0.88);
}
.careers-bento__list {
  margin: 0;
  padding-left: 1.1em;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.careers-bento__link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: #7ee8e3;
}
.careers-bento__link:hover {
  color: #fff;
}
.careers-cta-wrap {
  padding-bottom: 90px;
}
.careers-cta {
  text-align: center;
  padding: clamp(36px, 6vw, 48px) clamp(24px, 5vw, 40px);
  border-radius: 20px;
  background: linear-gradient(180deg, #eef6f8 0%, #fff 100%);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(14, 52, 72, 0.08);
}
.careers-cta__title {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  color: var(--primary);
}
.careers-cta__text {
  margin: 0 auto 22px;
  max-width: 46ch;
  color: var(--muted);
}
.careers-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 900px) {
  .careers-why__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .careers-bento__grid {
    grid-template-columns: 1fr;
  }
  .careers-bento__cell--wide {
    grid-column: 1;
  }
  .careers-hero-premium {
    min-height: 0;
    padding-top: 56px;
  }
  .careers-hero-premium__shell {
    grid-template-columns: 1fr;
  }
  .careers-hero-premium__viz {
    order: -1;
    min-height: 200px;
    margin-bottom: 4px;
  }
  .careers-viz {
    width: 200px;
  }
  .careers-bento--creative .careers-bento__cell--wide {
    clip-path: none;
  }
  .page-careers .careers-card--creative {
    clip-path: none;
  }
  .careers-openings__list {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .page-careers .careers-openings__list .careers-job:nth-child(3) {
    grid-column: 1;
    max-width: none;
    justify-self: stretch;
  }
}
@media (max-width: 600px) {
  .careers-hero-premium__stats li {
    max-width: none;
  }
  .careers-job {
    flex-direction: column;
    align-items: flex-start;
  }
  .careers-job__apply {
    width: 100%;
  }
  .careers-form-creative__grid {
    grid-template-columns: 1fr;
  }
  .careers-form-creative__span-2 {
    grid-column: 1;
  }
}

.carousel {
  position: relative;
  overflow: hidden;
  background: #0d2d40;
}
.carousel-track {
  position: relative;
  min-height: clamp(420px, 85vh, 440px) !important;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  align-items: center;
}
.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(9, 35, 50, 0.84) 15%, rgba(9, 35, 50, 0.45) 55%, rgba(9, 35, 50, 0.72) 100%);
}
.carousel-slide:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=80");
}
.carousel-slide:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=80");
}
.carousel-slide:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1800&q=80");
}
.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}
.slide-content {
  position: relative;
  z-index: 1;
  color: #e9f5fd;
  padding: 56px 0 72px;
}
.slide-content h2 {
  color: #fff;
  max-width: 18ch;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 8px 0 10px;
}
.slide-content p {
  color: #d5e8f3;
  max-width: 62ch;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.45rem;
  cursor: pointer;
  z-index: 2;
}
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.dot.active {
  background: #fff;
}

.advantage {
  background: #f4f7fb;
  padding-top: 72px;
  padding-bottom: 80px;
  overflow: visible;
}
.advantage__inner {
  position: relative;
}
.advantage__head {
  text-align: center;
  position: relative;
  margin-bottom: 52px;
  padding: 20px 0 8px;
}
.advantage__watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -58%);
  font-size: clamp(6.5rem, 18vw, 11rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(15, 49, 69, 0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.advantage__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.advantage__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: #0f1f28;
  letter-spacing: -0.02em;
}
.advantage__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  padding-top: 36px;
  overflow: visible;
}
.advantage-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 44px 24px 28px;
  box-shadow: 0 10px 40px rgba(15, 49, 69, 0.08);
  border: 1px solid #e8eef2;
  overflow: visible;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.advantage-card:hover {
  box-shadow: 0 16px 48px rgba(15, 49, 69, 0.12);
  transform: translateY(-4px);
  border-color: #d0dde5;
}
.advantage-card__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background: rgba(var(--primary-rgb), 0.12);
  border-radius: 0 0 0 100%;
  pointer-events: none;
}
.advantage-card__icon-wrap {
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateY(-50%);
  z-index: 2;
}
.advantage-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.35);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}
.advantage-card__icon svg {
  display: block;
}
.advantage-card:hover .advantage-card__icon,
.advantage-card__icon-wrap:focus-within .advantage-card__icon {
  background: #fff;
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.15);
  transform: scale(1.05);
}
.advantage-card__title {
  margin: 8px 0 12px;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.3;
}
.advantage-card__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text);
}

.hero-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f6fa 0%, #fafcfd 55%, #ffffff 100%);
  padding: 88px 0 96px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.55;
}
.hero-blob--1 {
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, #7ec8e0, #0f605e);
  top: -160px;
  right: -80px;
}
.hero-blob--2 {
  width: 340px;
  height: 340px;
  background: #d4e6f0;
  bottom: -140px;
  left: -120px;
  opacity: 0.55;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 49, 69, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, #000 25%, transparent 92%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(22px, 3.5vw, 36px);
  align-items: stretch;
}
.hero-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 4px 6px rgba(15, 49, 69, 0.02), 0 24px 48px rgba(12, 48, 68, 0.07);
  backdrop-filter: blur(14px);
}
.hero-panel--premium {
  position: relative;
  border-radius: 22px;
}
.hero-panel--premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.55), rgba(196, 154, 98, 0.45), transparent);
  pointer-events: none;
}
.hero-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px 32px;
  align-items: start;
}
.hero-logo-ring {
  padding: 3px;
  border-radius: 16px;
  background: linear-gradient(145deg, #0f605e, #0f5679, #c49a62);
  box-shadow: 0 12px 32px rgba(15, 60, 80, 0.18);
}
.hero-logo-wrap {
  background: #0a1620;
  border-radius: 13px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  display: block;
  max-width: min(248px, 100%);
  width: 100%;
  height: auto;
}
.hero-intro-text .eyebrow {
  margin-top: 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 999px;
  border: 1px solid rgba(var(--primary-rgb), 0.18);
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.2);
  animation: hero-pulse 2.2s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.15);
  }
}
.hero-home h1 {
  font-size: clamp(2rem, 3.8vw, 3.05rem);
  margin: 14px 0 12px;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.18;
}
.hero-highlight {
  background: linear-gradient(120deg, #0f3145 0%, #0f605e 45%, #0f5679 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.04rem;
  line-height: 1.7;
  color: #4d616d;
  max-width: 52ch;
  margin: 0;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.btn-glass {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(15, 49, 69, 0.12);
  backdrop-filter: blur(6px);
}
.hero-trust {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-trust li {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2a4552;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e0ebf1;
  box-shadow: 0 1px 3px rgba(15, 49, 69, 0.04);
}
.stat-card--premium {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 26px;
  box-shadow: 0 8px 16px rgba(8, 28, 42, 0.2), 0 28px 56px rgba(8, 28, 42, 0.12);
}
.stat-card--premium .stat-row span {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9bb8ca;
  font-weight: 600;
}
.stat-card--premium .stat-row strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.stat-card--creative {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, #0c2d42 0%, #0e3146 40%, #0a2538 100%);
}
.stat-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9a56, #fff, #0f605e);
  opacity: 0.95;
}
.stat-card--creative h3 {
  color: #fff;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
}
.stat-card-icon {
  color: #5ec4b8;
  font-size: 0.75rem;
}
.stat-card-sub {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: #9bb8ca;
}
.stat-card--creative .stat-row {
  padding: 12px 0;
}

.btn {
  min-height: 46px; padding: 0 20px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; font-weight: 600; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(145deg, var(--primary), var(--accent)); color: #fff; box-shadow: var(--shadow); }
.btn-outline { border-color: var(--border); color: var(--primary); background: #fff; }

.stat-card {
  background: #0e3146; color: #e4f2fb; border-radius: 16px; padding: 24px; box-shadow: var(--shadow);
}
.stat-card.stat-card--creative {
  background: linear-gradient(160deg, #0c2d42 0%, #0e3146 40%, #0a2538 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-row { display: flex; justify-content: space-between; border-bottom: 1px dashed rgba(255,255,255,.25); padding: 10px 0; }
.stat-row:last-child { border-bottom: none; }
.stat-row strong { color: #fff; }

.inner-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(180px, 38vw, 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  color: #fff;
  background-color: #08252c;
  background-image: var(--inner-hero-overlay), var(--inner-hero-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: none;
}
.inner-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.inner-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
  max-width: 20ch;
}
.inner-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 4px;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}
.inner-hero__crumb a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.inner-hero__crumb a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.65);
}
.inner-hero__crumb-sep {
  margin: 0 2px;
  color: rgba(255, 255, 255, 0.55);
  user-select: none;
}
.inner-hero__crumb-current {
  font-weight: 700;
  color: #fff;
}
.lead-intro {
  margin: 0 auto 28px;
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}
.section-head-center {
  text-align: center;
}
.section-head-center h2 {
  margin-top: 4px;
}
@media (min-width: 769px) {
  .lead-intro {
    margin-bottom: 36px;
  }
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; box-shadow: var(--shadow);
}
.card ul { margin: 0; padding-left: 18px; }

.showcase-about {
  background: #fff;
  --showcase-teal: var(--accent-blue);
}
.showcase-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 52px);
  align-items: center;
}
.showcase-about__content {
  position: relative;
  text-align: left;
}
.showcase-about__intro {
  position: relative;
  margin-bottom: 26px;
  padding-top: 8px;
  min-height: clamp(120px, 22vw, 140px);
}
.showcase-about__watermark {
  position: absolute;
  z-index: 0;
  top: -0.2em;
  left: -0.12em;
  font-size: clamp(4.5rem, 13vw, 9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px #e4e9ec;
  pointer-events: none;
  user-select: none;
}
@supports not (-webkit-text-stroke: 1px red) {
  .showcase-about__watermark {
    color: rgba(15, 49, 69, 0.06);
    -webkit-text-stroke: 0;
  }
}
.showcase-about__intro-inner {
  position: relative;
  z-index: 1;
}
.showcase-about__eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--showcase-teal);
}
.showcase-about__headline {
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.showcase-about__headline-dark {
  color: #111827;
}
.showcase-about__headline-accent {
  color: var(--showcase-teal);
}
.showcase-about__media {
  margin: 0;
}
.showcase-about__frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  padding: 3px;
  background: linear-gradient(145deg, #0f5679, #0f605e 55%, rgba(196, 154, 98, 0.75));
  box-shadow: 0 20px 50px rgba(15, 49, 69, 0.12), 0 0 0 1px rgba(15, 49, 69, 0.06);
}
.showcase-about__frame::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 1;
}
.showcase-about__frame img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.showcase-about__media:hover .showcase-about__frame img {
  transform: scale(1.02);
}
.showcase-about__caption {
  margin: 12px 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b8494;
}
.showcase-about__prose {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.showcase-about__prose p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.showcase-about__prose p:last-child {
  margin-bottom: 0;
}
.showcase-about__prose a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.showcase-about__prose a:hover {
  color: var(--primary-hover);
  border-bottom-color: var(--primary-hover);
}
.showcase-about__cta {
  margin-top: 4px;
}
.showcase-updates {
  background: var(--soft);
  padding-top: 56px;
  padding-bottom: 56px;
}
.showcase-updates__card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: var(--shadow);
}
.showcase-updates__card h2 {
  margin: 8px 0 14px;
  font-size: 1.35rem;
}
.showcase-updates__card ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: #4a5f6b;
}
.showcase-updates__card li {
  margin-bottom: 8px;
}
.link-inline {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
}
.link-inline:hover {
  color: var(--accent);
}

.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.service { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; box-shadow: var(--shadow); }
.service .num { color: var(--accent); font-weight: 800; font-size: .86rem; }
.service a { font-weight: 700; color: var(--primary); }
.services-block {
  position: relative;
  --services-teal: var(--primary);
}
.services-block__head {
  position: relative;
  text-align: center;
  margin-bottom: 32px;
  padding-top: 24px;
  min-height: clamp(100px, 16vw, 150px);
}
.services-block__watermark {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  font-size: clamp(4.25rem, 12vw, 8.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px #d5dde3;
  pointer-events: none;
  user-select: none;
}
@supports not (-webkit-text-stroke: 1px red) {
  .services-block__watermark {
    color: rgba(15, 49, 69, 0.06);
    -webkit-text-stroke: 0;
  }
}
.services-block__head-inner {
  position: relative;
  z-index: 1;
}
.services-intro {
  max-width: 72ch;
  margin: 8px auto 24px;
  text-align: center;
  color: #fff;
}
.services-head {
  text-align: center;
  font-size: .86rem;
  letter-spacing: .1em;
  color: var(--services-teal, var(--accent));
}
.services-title {
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}
.service-creative {
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-creative::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.service-creative:hover {
  transform: translateY(-5px);
  border-color: #bfd0da;
  box-shadow: 0 20px 32px rgba(14, 52, 72, 0.16);
}
.service-icon {
  width: 42px;
  height: 42px;
  margin: 6px 0 8px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #edf5f8;
  font-size: 1.2rem;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 8px;
}
.service-tags span {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .74rem;
  color: #214454;
  background: #eef4f7;
  border: 1px solid #d7e4ea;
}

.service-classic {
  text-align: center;
  border: 4px solid #0f5679;
  border-radius: 2px;
  padding: 28px 22px 24px;
  box-shadow: none;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-classic:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(8, 48, 72, 0.16);
  border-color: #0a4a67;
}
.service-classic .service-icon {
  width: 54px;
  height: 54px;
  margin: 0 0 10px;
  background: #eef6fb;
  border: 1px solid #cfe2ed;
  font-size: 1.45rem;
}
.service-classic h3 {
  margin: 2px 0 8px;
  font-size: 1.18rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.service-classic p {
  margin: 0;
  color: #415863;
}
.service-classic a {
  margin-top: auto;
  padding-top: 12px;
}
.service-classic .num,
.service-classic .service-tags {
  display: none;
}

.work-process {
  position: relative;
  background-color: #fff;
  /* background-image: url("../image/h2-work-bg.jpg"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  --work-teal: var(--accent-blue);
  overflow: hidden;
}
.work-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.221);
  pointer-events: none;
  z-index: 0;
}
.work-process > .container {
  position: relative;
  z-index: 1;
}
.work-process__head {
  position: relative;
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 56px);
  padding-top: 24px;
  min-height: clamp(100px, 16vw, 150px);
}
.work-process__watermark {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  font-size: clamp(4.25rem, 12vw, 8.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px #d5dde3;
  pointer-events: none;
  user-select: none;
}
@supports not (-webkit-text-stroke: 1px red) {
  .work-process__watermark {
    color: rgba(15, 49, 69, 0.06);
    -webkit-text-stroke: 0;
  }
}
.work-process__head-inner {
  position: relative;
  z-index: 1;
}
.work-process__eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5ba8d0;
}
.work-process__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.work-process__title-part {
  display: inline;
  margin-right: 0.35em;
}
.work-process__title-accent {
  color: var(--work-teal);
}
.work-process__steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(8px, 2vw, 20px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.work-step {
  text-align: center;
  padding: 8px 6px;
}
.work-step__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.work-step:hover .work-step__icon {
  background: var(--work-teal);
  transform: translateY(-3px);
  /* box-shadow: 0 14px 28px rgba(var(--primary-rgb), 0.28); */
}
.work-step__title {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.01em;
}
.work-step__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 32ch;
  margin-inline: auto;
}
.work-process__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}
.work-process__arrow svg {
  display: block;
}
@media (max-width: 900px) {
  .work-process__steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .work-process__arrow {
    display: none;
  }
  .work-step__text {
    max-width: 42ch;
  }
}

.blog-teaser {
  position: relative;
  background: #f4f7fb;
  --blog-teal: #1e4a6e;
}
.blog-teaser__head {
  position: relative;
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 52px);
  padding-top: 24px;
  min-height: clamp(100px, 16vw, 150px);
}
.blog-teaser__watermark {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  font-size: clamp(4.25rem, 12vw, 8.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px #d5dde3;
  pointer-events: none;
  user-select: none;
}
@supports not (-webkit-text-stroke: 1px red) {
  .blog-teaser__watermark {
    color: rgba(15, 49, 69, 0.06);
    -webkit-text-stroke: 0;
  }
}
.blog-teaser__head-inner {
  position: relative;
  z-index: 1;
}
.blog-teaser__eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blog-teal);
}
.blog-teaser__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.blog-teaser__title-part {
  display: inline;
  margin-right: 0.35em;
}
.blog-teaser__title-accent {
  color: var(--blog-teal);
}
.blog-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 26px);
  max-width: 1080px;
  margin: 0 auto;
}
.blog-preview-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #e3ebf0;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 26px rgba(14, 52, 72, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.blog-preview-card:hover {
  transform: translateY(-5px);
  border-color: #c5dce5;
  box-shadow: 0 20px 40px rgba(14, 52, 72, 0.14);
}
.blog-preview-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef2;
}
.blog-preview-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-preview-card:hover .blog-preview-card__media img {
  transform: scale(1.04);
}
.blog-preview-card__body {
  flex: 1;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-preview-card__date {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: #6a7a85;
}
.blog-preview-card__clock {
  flex-shrink: 0;
  color: var(--blog-teal);
}
.blog-preview-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  transition: color 0.2s ease;
}
.blog-preview-card:hover .blog-preview-card__title {
  color: var(--accent);
}
.blog-preview-card__title--accent {
  color: var(--accent);
}
.blog-preview-card__accent {
  display: block;
  height: 3px;
  margin-top: auto;
  background: var(--blog-teal);
  flex-shrink: 0;
}

.blog-detail-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(260px, 34vw, 380px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 8vw, 76px) 0;
  text-align: center;
  color: #fff;
  background-color: #08252c;
  background-image: var(--inner-hero-overlay), var(--inner-hero-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: none;
}
.blog-detail-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(900px, 100%);
  margin: 0 auto;
}
.blog-detail-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
}
.blog-detail-hero .inner-hero__crumb {
  margin-bottom: 18px;
}
.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  font-size: 0.9rem;
  color: var(--muted);
}
.blog-detail-hero .blog-detail-meta {
  margin-top: 0;
  justify-content: center;
  color: rgba(255, 255, 255, 0.88);
}
.blog-detail-meta__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(var(--primary-rgb), 0.12);
  color: #0a8f8a;
}
.blog-detail-hero .blog-detail-meta__tag {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 36px;
  align-items: start;
}
.blog-detail-featured {
  margin: 0 0 28px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: #e8eef2;
}
.blog-detail-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-detail-content h2 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--primary);
}
.blog-detail-content p {
  margin: 0 0 16px;
}
.blog-detail-content ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
  color: var(--muted);
}
.blog-detail-aside {
  position: sticky;
  top: 92px;
}
.blog-detail-aside h2 {
  font-size: 1rem;
  margin: 0 0 14px;
  color: var(--primary);
}
.blog-detail-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-detail-aside li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.blog-detail-aside li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.blog-detail-aside a {
  font-weight: 700;
  color: var(--primary);
}
.blog-detail-aside a:hover {
  color: var(--accent);
}
.blog-detail-aside time {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .blog-teaser__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
  .blog-detail-aside {
    position: static;
  }
}
@media (max-width: 640px) {
  .blog-teaser__grid {
    grid-template-columns: 1fr;
  }
}

.pillars { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.pillar { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }

.blog-grid, .updates-grid, .testimonial-grid { display: grid; gap: 16px; }
.blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.updates-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 12px; color: #22343e; }
.contact-form input, .contact-form textarea {
  width: 100%; min-height: 44px; padding: 10px 12px; margin-top: 6px; border-radius: 10px; border: 1px solid var(--border); font: inherit;
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.form-note { min-height: 20px; margin-top: 10px; color: var(--accent); font-weight: 600; }

.contact-form.careers-form-creative .careers-form-creative__grid input,
.contact-form.careers-form-creative .careers-form-creative__grid textarea {
  margin-top: 0;
}

.contact-page {
  background: var(--soft);
  --contact-teal: var(--primary);
}
.contact-head-office {
  margin: 0 auto 10px;
  text-align: center;
  color: var(--primary-deep);
  font-size: 1rem;
}
.contact-head-office strong {
  display: block;
  color: var(--primary);
}
.contact-head-office span {
  display: block;
}
.contact-head-office strong.contact-head-office__city {
  color: #000;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 26px);
  margin-bottom: clamp(40px, 6vw, 56px);
}
.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 22px 28px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(14, 52, 72, 0.1);
  border: 1px solid #e8eef2;
}
.contact-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--contact-teal);
  color: #fff;
}
.contact-card__title {
  margin: 0 0 12px;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--primary);
}
.contact-card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}
.contact-card__text a {
  color: var(--primary);
  font-weight: 600;
}
.contact-card__text a:hover {
  color: var(--primary-hover);
}
.office-locations {
  margin-bottom: clamp(36px, 5vw, 50px);
  padding: clamp(20px, 3vw, 28px);
  border-radius: 16px;
  border: 1px solid #e8eef2;
  background: #fff;
  box-shadow: 0 12px 36px rgba(14, 52, 72, 0.1);
}
.office-locations__head {
  margin-bottom: clamp(16px, 2.4vw, 24px);
  text-align: center;
}
.office-locations__eyebrow {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.office-locations__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  color: var(--primary-deep);
}
.office-locations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.office-card {
  border-radius: 12px;
  border: 1px solid #e1e8ef;
  background: #f9fbfd;
  padding: 16px;
}
.office-card--head {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.11), rgba(30, 74, 110, 0.08));
  border-color: rgba(var(--primary-rgb), 0.32);
}
.office-card__title {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}
.office-card__city {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
}
.office-card__address {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 4vw, 32px);
  align-items: stretch;
}
.contact-form-panel {
  background: #fff;
  border-radius: 14px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 12px 36px rgba(14, 52, 72, 0.1);
  border: 1px solid #e8eef2;
}
.contact-form-panel.contact-form label {
  margin-bottom: 0;
  font-weight: 500;
}
.contact-form__eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--contact-teal);
}
.contact-form__title {
  margin: 0 0 22px;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-bottom: 14px;
}
.contact-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-bottom: 4px;
}
.contact-form__span-2 {
  grid-column: 1 / -1;
}
.contact-form-panel.contact-form select {
  margin-top: 0;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d5dee5;
  background: #fafcfd;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}
.contact-form-panel.contact-form select:focus {
  outline: 2px solid rgba(var(--primary-rgb), 0.35);
  outline-offset: 1px;
}
.contact-form__submit {
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}
.contact-form-panel.contact-form input,
.contact-form-panel.contact-form textarea {
  margin-top: 0;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d5dee5;
  background: #fafcfd;
  color: var(--text);
}
.contact-form-panel.contact-form input::placeholder,
.contact-form-panel.contact-form textarea::placeholder {
  color: #8a9aa3;
}
.contact-form-panel.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form__message {
  display: block;
  margin-bottom: 18px;
}
.btn-teal-contact {
  background: var(--contact-teal);
  color: #fff;
  border: none;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(var(--primary-rgb), 0.28);
}
.btn-teal-contact:hover {
  background: var(--primary-hover);
  color: #fff;
}
.contact-map {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(14, 52, 72, 0.1);
  border: 1px solid #e8eef2;
  background: #e8eef2;
  min-height: 100%;
}
.contact-map__frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}
@media (max-width: 540px) {
  .contact-form__grid,
  .contact-form__fields {
    grid-template-columns: 1fr;
  }
  .contact-form__span-2 {
    grid-column: 1;
  }
}
@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .office-locations__grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  color: #fff;
  padding: 56px 0 32px;
  font-size: 0.9375rem;
  line-height: 1.55;
  background-color: #0f2438;
  background-image: url("../image/footer-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 32px);
  padding-bottom: 40px;
}
.footer-title {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.footer-title--minor {
  font-size: 0.9rem;
  margin-top: 18px;
  margin-bottom: 10px;
}
.footer-title--spaced {
  margin-top: 22px;
}
.footer-lead,
.footer-text {
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.65;
}
.footer-loc-name {
  margin: 0 0 8px;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
}
.footer-links a:hover,
.footer-text a:hover,
.footer-copy a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-text a {
  color: #fff;
  text-decoration: none;
}
.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
}
.footer-social__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.footer-social__link span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer-social__link:hover {
  color: var(--primary);
}
.footer-social__link:hover .footer-social__icon {
  color: var(--primary);
}
.footer-social__icon {
  color: #fff;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  text-align: center;
}
.footer-copy {
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.55;
}
.footer-copy:last-child {
  margin-bottom: 0;
}
.footer-copy--legal {
  margin-top: 4px;
}
.footer-copy a {
  color: var(--primary);
  text-decoration: none;
}
.footer-copy__sep {
  opacity: 0.9;
  color: var(--primary);
}

.legal-doc {
  max-width: 720px;
}
.legal-doc p {
  margin-bottom: 1rem;
  color: var(--text);
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-social {
    justify-content: center;
  }
}

.float-btn {
  position: fixed;
  right: 16px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow);
  z-index: 60;
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-btn__icon {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
}
.call .float-btn__icon {
  stroke: currentColor;
}
.float-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.wa { bottom: 82px; background: #22af62; }
.call { bottom: 26px; background: var(--gradient-accent); }

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: calc(82px + 48px + 12px);
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--primary);
  box-shadow: var(--shadow-card);
  z-index: 60;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s,
    box-shadow var(--transition), border-color var(--transition), color var(--transition);
}
.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  color: #fff;
  background: var(--gradient-accent);
  border-color: transparent;
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.back-to-top--visible:hover {
  transform: translateY(-2px);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.back-to-top svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);

}

@media (max-width: 1024px) {
  .showcase-about__grid {
    grid-template-columns: 1fr;
  }
  .showcase-about__content {
    text-align: left;
  }
  .showcase-about__intro {
    min-height: auto;
    padding-top: 36px;
  }
  .showcase-about__caption {
    text-align: center;
  }
  .hero-grid,
  .split,
  .contact-grid,
  .contact-split,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-intro {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .hero-intro-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-lead {
    max-width: none;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-logo-ring {
    max-width: 280px;
    width: 100%;
  }
  .advantage__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .services-grid, .blog-grid, .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .header .logo-img {
    height: 44px;
    max-width: min(150px, 40vw);
    /* clip-path: inset(6% 0 6% 0);
    -webkit-clip-path: inset(6% 0 6% 0); */
  }
  .header .logo-text__title {
    font-size: 0.62rem;
    letter-spacing: 0.03em;
    max-width: min(200px, 46vw);
  }
  .header .logo-text__subtitle {
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }
  .section { padding: 62px 0; }
  .nav-toggle { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; }
  /* App-style drawer: full-height panel from the LEFT (mobile app pattern)
     Header backdrop-filter removed so position:fixed uses the viewport. */
  .header {
    z-index: 1100;
    /* backdrop-filter: none;
    -webkit-backdrop-filter: none; */
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1105;
    background: rgba(10, 37, 64, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s var(--ease-out), visibility 0.32s;
    pointer-events: none;
  }
  .nav-backdrop.is-active {
    opacity: 1;
    /* visibility: visible; */
    pointer-events: auto;
  }
  .nav-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    padding: calc(14px + env(safe-area-inset-top, 0px)) max(18px, env(safe-area-inset-right)) 14px max(18px, env(safe-area-inset-left));
    border-bottom: 1px solid var(--border);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 3;
  }
  .nav-drawer__title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.03em;
  }
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    width: min(82vw, 300px);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    padding: 0 0 max(20px, env(safe-area-inset-bottom)) 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
    border: none;
    border-right: 1px solid var(--border);
    box-shadow: 12px 0 36px rgba(10, 37, 64, 0.18);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 1110;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.32s var(--ease-out), visibility 0.32s;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    pointer-events: none;
  }
  .nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav > a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 10px max(18px, env(safe-area-inset-right)) 14px max(18px, env(safe-area-inset-left));
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    box-sizing: border-box;
  }
  .nav > a:hover,
  .nav > a.active {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.06);
  }
  body.nav-drawer-open {
    overflow: hidden;
  }
  .carousel-track { min-height: 330px; }
  .slide-content { padding: 50px 0 74px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1.2rem; }
  .services-grid, .blog-grid, .updates-grid, .testimonial-grid, .pillars { grid-template-columns: 1fr; }
  .float-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    right: 10px;
  }
  .float-btn__icon {
    width: 22px;
    height: 22px;
  }
  .back-to-top {
    right: 10px;
    bottom: calc(82px + 44px + 10px);
    width: 44px;
    height: 44px;
  }
  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    align-self: stretch;
  }
  .nav-dropdown__bar {
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-height: 52px;
    padding: 0 max(18px, env(safe-area-inset-right)) 0 max(18px, env(safe-area-inset-left));
    box-sizing: border-box;
    border-bottom: 1px solid var(--border);
  }
  .nav-dropdown__trigger {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
  }
  .nav-dropdown__toggle {
    display: inline-flex;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin: 0;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid transparent;
  }
  .nav-dropdown__toggle:hover {
    border-color: var(--border);
    background: rgba(var(--primary-rgb), 0.06);
  }
  .nav-dropdown__menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 0 0 0 0;
    padding: 4px 0 8px;
    box-shadow: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.6);
  }
  .nav-dropdown__menu a {
    padding: 12px max(18px, env(safe-area-inset-right)) 12px calc(max(18px, env(safe-area-inset-left)) + 12px);
    font-size:14px;
    font-weight: 400;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav-dropdown--open .nav-dropdown__menu {
    display: block;
  }
  .nav-dropdown:hover .nav-dropdown__menu {
    display: none;
  }
  .nav-dropdown--open:hover .nav-dropdown__menu {
    display: block;
  }
}

/* —— About page —— */
.page-about .about-main {
  overflow-x: hidden;
}

.about-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(48px, 10vw, 88px) 0 clamp(56px, 9vw, 96px);
  background: linear-gradient(165deg, #061a24 0%, #0b2a38 42%, #0d3145 100%);
  color: #e8f4f9;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 85% 15%, rgba(94, 196, 184, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 70%, rgba(var(--primary-rgb), 0.35), transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(6, 26, 36, 0.4) 100%);
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
}

.about-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  margin: 0 0 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(232, 244, 249, 0.85);
}

.about-hero__crumb a {
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.about-hero__crumb a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.about-hero__crumb-sep {
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}

.about-hero__crumb-current {
  font-weight: 700;
  color: #fff;
}

.about-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dccc0;
}

.about-hero__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}

.about-hero__title em {
  font-style: italic;
  color: #9ee5d8;
}

.about-hero__lead {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(220, 235, 242, 0.92);
  max-width: 54ch;
}

.about-hero__chips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-hero__chips li {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e0f5f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 16px;
}

.about-lead--center {
  text-align: center;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.about-story {
  background: var(--white);
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

.about-story__copy p:last-child {
  margin-bottom: 0;
}

.about-pullquote {
  margin: 0;
  padding: 28px 26px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--soft) 0%, #e8f2f5 100%);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.about-pullquote p {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--primary);
}

.about-pullquote footer {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

.about-values {
  background: var(--soft);
}

.about-values__head {
  text-align: center;
  margin-bottom: 40px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.about-value-card {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(14, 52, 72, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(14, 52, 72, 0.1);
}

.about-value-card__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 10px;
  opacity: 0.85;
}

.about-value-card__title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  color: var(--primary);
}

.about-value-card__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--muted);
}

.about-strip {
  padding: 0;
  background: linear-gradient(110deg, #0a2836 0%, #0f3145 50%, #0d3d42 100%);
  color: #d6e8f0;
}

.about-strip__inner {
  padding: clamp(48px, 8vw, 72px) 0;
}

.about-strip__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.about-strip__eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7dccc0;
}

.about-strip__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.about-strip__desc {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(210, 228, 238, 0.9);
}

.about-strip__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-strip__list li {
  position: relative;
  padding: 12px 0 12px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(230, 242, 248, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-strip__list li:last-child {
  border-bottom: none;
}

.about-strip__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5ec4b8, #0f605e);
  box-shadow: 0 0 0 3px rgba(94, 196, 184, 0.25);
}

.about-cta-block {
  padding-bottom: 88px;
}

.about-cta {
  text-align: center;
  padding: clamp(40px, 6vw, 56px) clamp(24px, 4vw, 40px);
  border-radius: 20px;
  background: linear-gradient(160deg, #f0f6fa 0%, #fff 45%, #eef6f4 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-cta__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  color: var(--primary);
}

.about-cta__text {
  margin: 0 0 22px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.about-cta__actions .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 992px) {
  .about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-story__grid,
  .about-strip__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-values__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .about-hero__inner {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow-dot {
    animation: none;
  }
  .about-value-card {
    transition: none;
  }
  .about-value-card:hover {
    transform: none;
  }
  .carousel-slide,
  .btn,
  .advantage-card,
  .service-classic,
  .hero-premium__blob,
  .scroll-progress,
  .back-to-top {
    transition: none !important;
    animation: none !important;
  }
  .hero-premium__parallax {
    transform: none !important;
  }
}

/* ========== Premium UI: chrome, hero, stats, testimonials, FAQ ========== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 9999;
  background: var(--gradient-accent);
  pointer-events: none;
  transition: width 0.08s linear;
}

.hero-premium {
  position: relative;
  isolation: isolate;
  background: linear-gradient(160deg, #041a24 0%, #0a2540 50%, #0c4a6e 100%);
}
.hero-premium__mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--gradient-hero-mesh);
  pointer-events: none;
}
.hero-premium__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.6s var(--ease-out);
}
.hero-premium__blob--1 {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  background: rgba(var(--primary-rgb), 0.45);
  top: -8%;
  left: -5%;
}
.hero-premium__blob--2 {
  width: min(38vw, 360px);
  height: min(38vw, 360px);
  background: rgba(59, 130, 246, 0.4);
  bottom: -12%;
  right: -5%;
}
.hero-premium__blob--3 {
  width: min(28vw, 240px);
  height: min(28vw, 240px);
  background: rgba(var(--primary-rgb), 0.35);
  top: 40%;
  right: 20%;
}
.hero-premium .carousel-track {
  position: relative;
  z-index: 2;
  min-height: clamp(420px, 85vh, 640px);
  transform: none !important;
}
.hero-premium .carousel-slide::before {
  background: linear-gradient(
    115deg,
    rgba(6, 24, 40, 0.88) 0%,
    rgba(10, 37, 64, 0.55) 45%,
    rgba(6, 40, 50, 0.82) 100%
  );
}
.hero-premium .slide-content {
  padding: clamp(48px, 8vw, 68px) 0 clamp(64px, 10vw, 80px);
}
.hero-premium .slide-content .eyebrow {
  color: #5eead4;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}
.hero-premium .slide-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  max-width: 18ch;
  margin: 12px 0 16px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}
.hero-premium .slide-content p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  max-width: 52ch;
  color: rgba(232, 245, 250, 0.92);
}
.hero-premium .slide-content .btn-primary {
  margin-top: 8px;
  border-radius: var(--radius-lg);
  padding: 0 28px;
  min-height: 52px;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.35);
}
.hero-premium .carousel-btn {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform var(--transition), background var(--transition);
}
.hero-premium .carousel-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.05);
}
.hero-premium .carousel-btn.prev:hover {
  transform: translateY(-50%) scale(1.05);
}
.hero-premium .carousel-btn.next:hover {
  transform: translateY(-50%) scale(1.05);
}
.hero-premium .dot {
  width: 10px;
  height: 10px;
  transition: transform var(--transition), background var(--transition);
}
.hero-premium .dot.active {
  transform: scale(1.25);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.btn-primary {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-hover) 100%);
  background-size: 200% 200%;
  border: none;
  color: #fff;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  filter: brightness(1.06);
}
.btn-outline {
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.btn-outline:hover {
  border-color: rgba(var(--primary-rgb), 0.45);
  box-shadow: var(--shadow-card);
}
.btn:active {
  transform: translateY(0);
}

.advantage-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(213, 224, 234, 0.9);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
  padding: 48px 28px 32px;
}
.advantage-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px) scale(1.01);
}
[data-theme="dark"] .advantage-card {
  background: rgba(18, 26, 34, 0.9);
  border-color: var(--border);
}

.service-classic {
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-classic:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(var(--primary-rgb), 0.25);
}
.service-classic .service-icon {
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.service-classic:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
}
[data-theme="dark"] .service-classic {
  background: rgba(18, 26, 34, 0.92);
}

.work-step {
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.1);
}
.work-step:hover {
  transform: translateY(-4px);
}

.stats-strip {
  position: relative;
  padding: var(--space-6) 0;
  background:#fff;
  border-block: 1px solid var(--border);
}
[data-theme="dark"] .stats-strip {
  background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}
@media (max-width: 900px) {
  .stats-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .stats-strip__grid {
    grid-template-columns: 1fr;
  }
}
.stat-pill {
  text-align: center;
  padding: var(--space-4) var(--space-3);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.stat-pill__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat-pill__label {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.section-heading-center {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  margin: 0 0 var(--space-2);
  color: var(--primary);
}
.section-heading-center + .section-sub {
  text-align: center;
  max-width: 54ch;
  margin: 0 auto var(--space-6);
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.testimonials-showcase {
  background: var(--soft);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lift);
  border-color: rgba(var(--primary-rgb), 0.25);
}
.testimonial-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.5vw, 18px);
  margin-bottom: var(--space-2);
  flex-shrink: 0;
}
.testimonial-card__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.18), rgba(29, 78, 216, 0.12));
  border: 2px solid rgba(var(--primary-rgb), 0.35);
  color: var(--primary);
}
.testimonial-card__avatar--b {
  background: linear-gradient(145deg, rgba(30, 74, 110, 0.16), rgba(var(--primary-rgb), 0.14));
  border-color: rgba(30, 74, 110, 0.32);
  color: var(--accent-blue);
}
.testimonial-card__avatar--c {
  background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.22), rgba(10, 37, 64, 0.08));
  border-color: rgba(10, 37, 64, 0.2);
  color: var(--primary);
}
.testimonial-card__user-icon {
  display: block;
  opacity: 0.92;
}
.testimonial-card__mark {
 display: none;
}
.testimonial-card p {
  flex: 1 1 auto;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 var(--space-3);
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: var(--space-2);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.testimonial-card__dash {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(var(--primary-rgb), 0.35));
  flex-shrink: 0;
}
@media (max-width: 899px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    align-items: stretch;
  }
  .testimonial-card {
    height: auto;
    min-height: 0;
  }
  .testimonial-card p {
    flex: 0 1 auto;
  }
}

.faq-premium .container--narrow {
  max-width: min(1040px, calc(100% - 2 * var(--site-gutter)));
}
.faq-premium h2 {
  text-align: center;
  margin-bottom: var(--space-6);
}
/* Two independent columns: expanding one FAQ does not stretch the other column’s row */
.faq-accordion {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}
.faq-accordion__col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .faq-accordion {
    flex-direction: column;
    gap: 12px;
  }
  .faq-accordion__col {
    display: contents;
  }
  .faq-accordion__col:first-child .faq-item:nth-child(1) {
    order: 1;
  }
  .faq-accordion__col:last-child .faq-item:nth-child(1) {
    order: 2;
  }
  .faq-accordion__col:first-child .faq-item:nth-child(2) {
    order: 3;
  }
  .faq-accordion__col:last-child .faq-item:nth-child(2) {
    order: 4;
  }
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-lift);
}
.faq-item[open] {
  box-shadow: var(--shadow-lift);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
}
.faq-item summary:hover {
  background: var(--soft);
}
.faq-item__body {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}
.faq-item__body p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

[data-theme="dark"] .nav-dropdown__menu {
  background: #151d26;
  border-color: var(--border);
}
[data-theme="dark"] .nav-dropdown__menu a {
  color: var(--text);
}
[data-theme="dark"] .nav-dropdown__menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .inner-hero,
[data-theme="dark"] .blog-detail-hero {
  filter: brightness(0.92);
}
[data-theme="dark"] .logo-text__title {
  color: #5eead4;
}
[data-theme="dark"] .logo-text__subtitle {
  color: #94a3b8;
}
[data-theme="dark"] .showcase-about__headline-dark {
  color: var(--text);
}
