:root {
  --bg: #f8f9ff;
  --surface: #ffffff;
  --surface-soft: #eff4ff;
  --surface-blue: #dce9ff;
  --ink: #0b1c30;
  --muted: #424751;
  --muted-soft: #687180;
  --line: #c2c6d3;
  --primary: #00346f;
  --primary-2: #004a99;
  --secondary: #006877;
  --cyan: #43d8f2;
  --teal: #00564f;
  --gold: #d89a2b;
  --dark: #213145;
  --dark-2: #17283a;
  --light-text: #eaf1ff;
  --shadow: 0 20px 50px rgba(0, 52, 111, 0.06);
  --shadow-soft: 0 8px 24px rgba(0, 52, 111, 0.04);
  --radius: 16px;
  --radius-sm: 8px;
  --container: 2160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@media (min-width: 1024px) {
  html {
    font-size: 110%;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

[data-copy-protection] {
  -webkit-user-select: none;
  user-select: none;
}

[data-copy-protection] input,
[data-copy-protection] textarea,
[data-copy-protection] select,
[data-copy-protection] [contenteditable="true"],
[data-copy-protection] [data-copy-allowed] {
  -webkit-user-select: text;
  user-select: text;
}

[data-copy-protection] img {
  -webkit-user-drag: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.material-symbols-outlined {
  width: 1em;
  overflow: hidden;
  direction: ltr;
  display: inline-block;
  font-family: "Material Symbols Outlined", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: "liga";
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  vertical-align: middle;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(20px, 4vw, 48px);
  background: rgba(248, 249, 255, 0.94);
  border-bottom: 1px solid rgba(194, 198, 211, 0.55);
  box-shadow: 0 6px 22px rgba(11, 28, 48, 0.05);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 140px;
}

.brand img {
  width: 128px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
}

.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.nav-dropdown-toggle .material-symbols-outlined {
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-toggle .material-symbols-outlined,
.nav-dropdown:focus-within .nav-dropdown-toggle .material-symbols-outlined {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 45;
  display: grid;
  width: min(420px, calc(100vw - 32px));
  gap: 6px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(194, 198, 211, 0.76);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 52, 111, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  inset: -18px 0 auto;
  height: 18px;
}

.nav-dropdown-menu a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border-radius: 14px;
  white-space: normal;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--primary);
  background: var(--surface-soft);
  outline: none;
}

.nav-dropdown-menu .material-symbols-outlined {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
}

.nav-dropdown-menu strong,
.nav-dropdown-menu small {
  display: block;
}

.nav-dropdown-menu strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.25;
}

.nav-dropdown-menu small {
  margin-top: 3px;
  color: var(--muted-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.nav-dropdown-overview {
  border: 1px solid rgba(0, 104, 119, 0.16);
  background: linear-gradient(135deg, rgba(67, 216, 242, 0.12), rgba(239, 244, 255, 0.72));
}

.nav-dropdown-menu .nav-dropdown-all {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 4px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 1px solid rgba(67, 216, 242, 0.35);
}

.nav-dropdown-menu .nav-dropdown-all:hover,
.nav-dropdown-menu .nav-dropdown-all:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.nav-dropdown-menu .nav-dropdown-all > span:first-child {
  min-width: 0;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-dropdown-menu .nav-dropdown-all .material-symbols-outlined {
  width: 34px;
  height: 34px;
  color: var(--primary);
  background: #ffffff;
  border-radius: 999px;
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.nav-dropdown-menu .nav-dropdown-all:hover .material-symbols-outlined,
.nav-dropdown-menu .nav-dropdown-all:focus-visible .material-symbols-outlined {
  transform: translateX(3px);
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  margin-left: auto;
}

.language-switch {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid rgba(0, 52, 111, 0.24);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 800;
}

.language-switch:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  color: #ffffff;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid rgba(0, 52, 111, 0.24);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(0, 104, 119, 0.3);
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(234, 241, 255, 0.72);
}

.button-light {
  color: var(--primary);
  background: #ffffff;
}

.header-cta {
  flex: 0 0 auto;
}

main {
  padding-top: var(--header-height);
}

.section {
  padding: 112px 0;
}

.section-muted {
  position: relative;
  background:
    linear-gradient(135deg, rgba(67, 216, 242, 0.08), transparent 38%),
    var(--surface-soft);
  border-block: 1px solid rgba(194, 198, 211, 0.55);
}

.section-muted::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 52, 111, 0.1) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 5px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: var(--primary);
  line-height: 1.12;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  color: #ffffff;
  background: var(--dark);
}

.hero.compact {
  min-height: 420px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-image {
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  animation: heroZoom 20s infinite alternate ease-in-out;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.95), rgba(20, 20, 20, 0.65) 50%, rgba(0, 0, 0, 0.25)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.5), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 100px 0 160px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero h1 {
  width: 100%;
  max-width: 1400px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  background: linear-gradient(135deg, #ffffff 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.hero.compact h1 {
  font-size: 3.8rem;
}

.hero p:not(.eyebrow) {
  width: 100%;
  max-width: 1200px;
  margin: 24px 0 0;
  color: rgba(234, 241, 255, 0.95);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
  justify-content: flex-start;
}

.hero-actions .button {
  min-height: 60px;
  padding: 16px 34px;
  font-size: 1.2rem;
  gap: 12px;
  border-radius: 12px;
}

.page-hero {
  padding: 78px 0;
  background:
    linear-gradient(135deg, rgba(0, 52, 111, 0.08), transparent 52%),
    var(--surface);
  border-bottom: 1px solid rgba(194, 198, 211, 0.55);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: 42px;
  align-items: center;
}

.page-hero h1 {
  margin: 0;
  font-size: 3.8rem;
  font-weight: 800;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-hero-media {
  overflow: hidden;
  border: 1px solid rgba(194, 198, 211, 0.65);
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-soft);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 56px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  gap: 44px;
  align-items: end;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.proof-band {
  position: relative;
  z-index: 10;
  margin-top: -64px;
  padding: 0 0 40px 0;
  color: var(--light-text);
  background: transparent;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.proof-grid div {
  min-height: 128px;
  padding: 28px;
  background: rgba(0, 52, 111, 0.5);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.proof-grid div:hover {
  background: rgba(0, 52, 111, 0.7);
  transform: translateY(-4px);
}

.proof-grid strong {
  display: block;
  color: #ffffff;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.proof-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(234, 241, 255, 0.85);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 24px;
}

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

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

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

.card,
.media-card,
.article-card,
.detail-card,
.contact-form {
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 24px;
}

.card > .material-symbols-outlined,
.icon-box {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
}

.card h3,
.media-card h3,
.article-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.6rem;
}

.card p,
.media-card p,
.article-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.media-card {
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.media-card:hover,
.article-card:hover,
.card.hover:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 52, 111, 0.25);
  border-color: var(--cyan);
}

.media-card img,
.article-card img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-card:hover img,
.article-card:hover img {
  transform: scale(1.08);
}

.media-card-body,
.article-card-body {
  padding: 22px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 700;
  transition: color 0.3s ease;
}

.inline-link .inline-link-icon.material-symbols-outlined {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: var(--primary);
  background: rgba(67, 216, 242, 0.16);
  border: 0;
  border-radius: 999px;
  font-size: 17px;
  line-height: 1;
  text-transform: none;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    color 180ms ease,
    background 180ms ease;
}

.inline-link:hover {
  color: var(--cyan);
}

.inline-link:hover .inline-link-icon.material-symbols-outlined {
  color: #ffffff;
  background: var(--primary);
  transform: translateX(6px);
}

.inline-link {
  font-size: 0.9rem;
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.client-logo {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid rgba(194, 198, 211, 0.4);
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  cursor: default;
}

.client-logo:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: var(--cyan);
  background: #ffffff;
}

.client-logo img {
  width: min(150px, 76%);
  height: 52px;
  object-fit: contain;
  filter: grayscale(100%) opacity(50%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.05);
}

.service-list .card {
  min-height: 246px;
  display: flex;
  flex-direction: column;
}

.service-list .inline-link {
  margin-top: auto;
}

.services-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 28, 48, 0.96), rgba(11, 28, 48, 0.7) 54%, rgba(0, 104, 119, 0.28)),
    linear-gradient(0deg, rgba(0, 52, 111, 0.48), transparent 58%);
}

.service-index-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 5vw, 76px) 0 clamp(70px, 6vw, 92px);
  background:
    linear-gradient(180deg, var(--surface), var(--surface-soft));
}

.service-index-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 52, 111, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 52, 111, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.service-index-heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(24px, 3.2vw, 38px);
}

.service-index-heading h2 {
  max-width: 760px;
  font-size: clamp(2.15rem, 3.2vw, 3.35rem);
  line-height: 1.1;
}

.service-index-tools {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.service-search {
  display: flex;
  width: min(100%, 520px);
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(194, 198, 211, 0.78);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.service-search .material-symbols-outlined {
  color: var(--secondary);
}

.service-search input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-weight: 600;
}

.service-search input::placeholder {
  color: var(--muted-soft);
}

.service-search:focus-within {
  border-color: rgba(67, 216, 242, 0.86);
  box-shadow: 0 0 0 4px rgba(67, 216, 242, 0.14);
}

.service-count {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(194, 198, 211, 0.62);
  border-radius: 14px;
  white-space: nowrap;
}

.service-count strong {
  color: var(--primary);
  font-size: 1.35rem;
}

.service-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 100%;
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.2), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(67, 216, 242, 0.82);
  box-shadow: 0 28px 62px rgba(0, 52, 111, 0.14);
  outline: none;
}

.service-card-link {
  display: grid;
  grid-template-columns: minmax(118px, 0.28fr) minmax(0, 1fr);
  height: 100%;
  color: inherit;
}

.service-card-media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: var(--dark);
}

.service-card-media img,
.service-card-fallback {
  width: 100%;
  height: 100%;
  min-height: 150px;
}

.service-card-media img {
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-fallback {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(0, 52, 111, 0.96), rgba(0, 104, 119, 0.82));
}

.service-card-fallback .material-symbols-outlined {
  font-size: 4.2rem;
}

.service-card-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 52, 111, 0.18);
}

.service-card-body {
  display: grid;
  min-height: 230px;
  align-content: start;
  padding: 22px;
}

.service-card-number {
  margin-bottom: 10px;
  color: rgba(0, 52, 111, 0.34);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1;
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.32rem, 1.7vw, 1.7rem);
  line-height: 1.18;
}

.service-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: end;
  margin-top: auto;
  color: var(--primary);
  font-weight: 800;
}

.service-card-cta .material-symbols-outlined {
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.service-card:hover .service-card-cta .material-symbols-outlined {
  transform: translateX(5px);
}

.service-card[hidden] {
  display: none;
}

.service-empty-state {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 42px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(0, 104, 119, 0.34);
  border-radius: 18px;
}

.service-empty-state[hidden] {
  display: none;
}

.service-empty-state .material-symbols-outlined {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 16px;
}

.service-empty-state h3 {
  margin: 0;
  color: var(--ink);
}

.service-empty-state p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.service-detail-page {
  background: var(--bg);
}

.service-detail-hero {
  position: relative;
  overflow: hidden;
  min-height: min(600px, calc(100svh - var(--header-height)));
  padding: clamp(92px, 8vw, 124px) 0 clamp(54px, 6vw, 76px);
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 22%, rgba(67, 216, 242, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(11, 28, 48, 0.98), rgba(0, 52, 111, 0.9) 52%, rgba(0, 104, 119, 0.86));
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  pointer-events: none;
}

.service-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.64fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.service-detail-hero-copy h1 {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  font-weight: 800;
  line-height: 1.02;
  text-wrap: balance;
}

.service-detail-hero-copy p:not(.eyebrow) {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(234, 241, 255, 0.88);
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.72;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.service-detail-actions .button {
  min-height: 56px;
  padding-inline: 24px;
  border-radius: 10px;
}

.service-detail-hero-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.28), transparent 30%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.22);
}

.service-detail-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 700ms ease;
}

.service-detail-hero-card:hover img {
  transform: scale(1.05);
}

.service-detail-hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 210px;
  padding: 14px;
  color: #ffffff;
  background: rgba(11, 28, 48, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}

.service-detail-hero-badge .material-symbols-outlined {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.service-detail-hero-badge strong,
.service-detail-hero-badge small {
  display: block;
}

.service-detail-hero-badge strong {
  font-size: 2rem;
  line-height: 1;
}

.service-detail-hero-badge small {
  margin-top: 4px;
  color: rgba(234, 241, 255, 0.82);
  font-weight: 700;
}

.service-benefit-section {
  padding: clamp(42px, 5vw, 68px) 0 0;
}

.service-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-benefit-card,
.service-panel,
.service-consult-card,
.service-other-card {
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.service-benefit-card {
  --spot-x: 50%;
  --spot-y: 50%;
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.14), transparent 34%),
    #ffffff;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-benefit-card:hover,
.service-benefit-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(67, 216, 242, 0.78);
  box-shadow: 0 24px 52px rgba(0, 52, 111, 0.12);
  outline: none;
}

.service-benefit-card .material-symbols-outlined {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 14px;
}

.service-benefit-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.25;
}

.service-benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.service-detail-section {
  padding-top: clamp(42px, 5vw, 76px);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  gap: 28px;
  align-items: start;
}

.service-detail-main {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.service-panel {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
}

.service-detail-content {
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.1), transparent 34%),
    #ffffff;
}

.service-detail-content .article-rich-text {
  margin-top: 14px;
  font-size: 1.05rem;
}

.service-process .section-heading {
  margin-bottom: 26px;
}

.service-process-list {
  display: grid;
  gap: 14px;
}

.service-process-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(194, 198, 211, 0.66);
  border-radius: 16px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.12), transparent 36%),
    var(--surface-soft);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-process-card:hover,
.service-process-card:focus-visible {
  transform: translateX(8px);
  border-color: rgba(67, 216, 242, 0.82);
  box-shadow: 0 18px 38px rgba(0, 52, 111, 0.1);
  outline: none;
}

.service-process-card > span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid rgba(0, 52, 111, 0.16);
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 800;
}

.service-process-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
}

.service-process-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

.service-requirements {
  display: grid;
  gap: 28px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(0, 52, 111, 0.05), rgba(67, 216, 242, 0.1)),
    #ffffff;
}

.service-requirements-heading {
  max-width: 860px;
}

.service-requirements h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.12;
}

.service-requirements p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-requirement-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-requirement-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(194, 198, 211, 0.66);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.service-requirement-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.service-requirement-card > .material-symbols-outlined {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 14px;
}

.service-requirement-card h3 {
  margin: 16px 0 14px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.25;
}

.service-requirement-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-requirement-card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.service-requirement-card li .material-symbols-outlined {
  color: var(--secondary);
  font-size: 1.25rem;
}

.service-detail-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 18px;
}

.service-consult-card {
  --spot-x: 50%;
  --spot-y: 50%;
  padding: 26px;
  color: #ffffff;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.18), transparent 32%),
    linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 56px rgba(0, 52, 111, 0.18);
}

.service-consult-card > .material-symbols-outlined {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  border-radius: 16px;
}

.service-consult-card h2 {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1.18;
}

.service-consult-card p {
  margin: 12px 0 22px;
  color: rgba(234, 241, 255, 0.84);
  line-height: 1.66;
}

.service-consult-card .button {
  width: 100%;
  min-height: 52px;
}

.service-other-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.service-other-card h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.15rem;
}

.service-other-card a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  color: var(--muted);
  border-radius: 12px;
  font-weight: 700;
}

.service-other-card a:hover {
  color: var(--primary);
  background: var(--surface-soft);
}

.service-other-card .material-symbols-outlined {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 10px;
}

.service-cta-band {
  overflow: hidden;
}

.cta-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 104, 119, 0.42), transparent 44%),
    var(--dark);
}

.cta-band .section-heading h2,
.cta-band .section-heading p,
.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.cta-row {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}

.about-layout,
.contact-layout,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
}

.about-image {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rich-text h2,
.rich-text h3 {
  margin: 34px 0 12px;
}

.rich-text h2:first-child,
.rich-text h3:first-child {
  margin-top: 0;
}

.rich-text p,
.rich-text li {
  color: var(--muted);
}

.rich-text ul,
.rich-text ol {
  padding-left: 20px;
}

.vision-card {
  max-width: 900px;
  margin: 0 auto 34px;
  padding: 34px;
  text-align: center;
  border-top: 4px solid var(--secondary);
}

.value-grid .card,
.mission-grid .card {
  min-height: 188px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-pill,
.pagination button {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: 999px;
  font-weight: 800;
}

.filter-pill.active,
.pagination button.active {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

.article-card span,
.project-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  color: var(--teal);
  background: rgba(67, 216, 242, 0.16);
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
}

.article-layout {
  width: min(100% - 40px, 860px);
  max-width: 860px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted-soft);
  font-size: 0.92rem;
}

.article-meta span:first-child {
  padding: 4px 8px;
  color: var(--teal);
  background: rgba(67, 216, 242, 0.14);
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.article-title {
  margin: 14px 0 12px;
  font-size: 3.8rem;
  font-weight: 800;
}

.article-cover {
  overflow: hidden;
  margin: 30px 0;
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: var(--radius);
  aspect-ratio: 16 / 8;
  background: var(--surface-soft);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Article page refinement */
.article-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(67, 216, 242, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(0, 104, 119, 0.24), transparent 42%),
    linear-gradient(180deg, var(--dark-2), var(--dark));
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(234, 241, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(234, 241, 255, 0.055) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.article-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
}

.article-hero-copy,
.article-detail-copy,
.article-index-card,
.article-index-card .article-card-body,
.article-reading-card {
  min-width: 0;
}

.article-hero-copy h1 {
  max-width: 960px;
  color: #ffffff;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.04;
  text-wrap: balance;
}

.article-hero-copy p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(234, 241, 255, 0.86);
  font-size: 1.18rem;
  line-height: 1.72;
}

.article-hero-media {
  position: relative;
  min-height: 320px;
}

.article-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 52, 111, 0.38));
  pointer-events: none;
}

.article-hero-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  min-width: 178px;
  gap: 4px;
  padding: 18px;
  color: #ffffff;
  background: rgba(0, 52, 111, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(14px);
}

.article-hero-panel .material-symbols-outlined {
  color: var(--cyan);
}

.article-hero-panel strong {
  font-size: 2.4rem;
  line-height: 1;
}

.article-hero-panel small {
  color: rgba(234, 241, 255, 0.82);
  font-weight: 700;
}

.article-index-section {
  background:
    linear-gradient(180deg, var(--surface), var(--bg));
}

.article-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.article-toolbar .eyebrow {
  margin-bottom: 10px;
}

.article-toolbar h2 {
  max-width: 820px;
  margin: 0;
  color: var(--primary);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.08;
}

.article-total {
  display: inline-grid;
  min-width: 152px;
  padding: 18px;
  color: var(--primary);
  background: var(--surface);
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.article-total .material-symbols-outlined {
  color: var(--secondary);
}

.article-total strong {
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1;
}

.article-total span:last-child {
  color: var(--muted);
  font-weight: 700;
}

.article-filters {
  align-items: center;
  margin-bottom: 30px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(194, 198, 211, 0.58);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.article-filters .filter-pill {
  white-space: nowrap;
}

.filter-pill {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.filter-pill:hover {
  transform: translateY(-2px);
  color: var(--primary);
  border-color: var(--cyan);
  box-shadow: var(--shadow-soft);
}

.filter-pill.active:hover {
  color: #ffffff;
}

.article-grid {
  align-items: stretch;
}

.article-index-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.article-index-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.article-index-card:hover::before {
  transform: scaleX(1);
}

.article-card-link {
  display: grid;
  height: 100%;
  color: inherit;
}

.article-card-media {
  position: relative;
  overflow: hidden;
}

.article-index-card .article-card-media img {
  height: 230px;
}

.article-index-card .article-reading-time {
  position: absolute;
  right: 14px;
  bottom: 14px;
  margin: 0;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(0, 52, 111, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: none;
  backdrop-filter: blur(10px);
}

.article-index-card .article-card-body {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 24px;
}

.article-index-card .article-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.article-index-card .article-category,
.article-info-card .article-category {
  margin: 0;
  padding: 5px 9px;
  color: var(--teal);
  background: rgba(67, 216, 242, 0.16);
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-index-card time {
  flex: 0 0 auto;
  color: var(--muted-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.article-index-card h3 {
  font-size: clamp(1.35rem, 1.6vw, 1.72rem);
  line-height: 1.18;
  transition: color 180ms ease;
}

.article-index-card:hover h3 {
  color: var(--primary);
}

.article-index-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.64;
}

.article-index-card .article-card-cta {
  margin-top: auto;
  margin-bottom: 0;
  padding: 0;
  color: var(--primary);
  background: transparent;
  border-radius: 0;
  font-size: 0.92rem;
  text-transform: none;
}

.article-index-card .article-card-cta .material-symbols-outlined {
  margin: 0;
  padding: 0;
  color: currentColor;
  background: transparent;
  font-size: 19px;
  transition: transform 180ms ease;
}

.article-index-card:hover .article-card-cta .material-symbols-outlined {
  transform: translateX(5px);
}

.article-empty-state {
  grid-column: 1 / -1;
  background: var(--surface);
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: var(--radius);
}

.article-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 38px;
}

.article-pagination a,
.article-pagination span {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.article-pagination a:hover,
.article-pagination a.active {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

.article-pagination .disabled {
  opacity: 0.48;
}

.article-detail-page {
  background: var(--bg);
}

.article-detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(67, 216, 242, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(0, 104, 119, 0.24), transparent 42%),
    linear-gradient(180deg, var(--dark-2), var(--dark));
  border-bottom: 0;
}

.article-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(234, 241, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(234, 241, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.article-detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--cyan);
  font-weight: 800;
}

.article-back-link .material-symbols-outlined {
  transition: transform 180ms ease;
}

.article-back-link:hover .material-symbols-outlined {
  transform: translateX(-4px);
}

.article-detail-meta {
  margin-bottom: 18px;
  color: rgba(234, 241, 255, 0.74);
}

.article-detail-meta span:first-child {
  color: var(--cyan);
  background: rgba(67, 216, 242, 0.14);
}

.article-detail-title {
  max-width: 960px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.04;
  text-wrap: balance;
}

.article-detail-excerpt {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.72;
}

.article-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.article-detail-actions .button {
  min-height: 50px;
}

.article-detail-cover {
  margin: 0;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 56px rgba(0, 52, 111, 0.14);
}

.article-detail-section {
  padding-top: clamp(50px, 5vw, 72px);
  background: var(--bg);
}

.article-reading-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.86fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
}

.article-reading-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.article-info-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.article-info-card strong {
  color: var(--primary);
  font-size: 1.12rem;
}

.article-info-card time {
  color: var(--muted);
  font-weight: 700;
}

.article-reading-card {
  padding: clamp(28px, 4vw, 52px);
  background: var(--surface);
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.article-rich-text {
  font-size: 1.08rem;
}

.article-rich-text p,
.article-rich-text li {
  color: #344254;
  line-height: 1.82;
}

.article-rich-text h2,
.article-rich-text h3 {
  color: var(--primary);
}

.article-rich-text img {
  width: 100%;
  max-height: 430px;
  margin: 18px 0 8px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.article-rich-text blockquote {
  margin: 24px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--teal);
  font-style: italic;
  line-height: 1.75;
}

.article-rich-text table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: var(--radius);
  background: #ffffff;
}

.article-rich-text th,
.article-rich-text td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(194, 198, 211, 0.58);
  text-align: left;
  vertical-align: top;
}

.article-rich-text th {
  color: var(--primary);
  background: rgba(4, 73, 134, 0.07);
  font-weight: 700;
}

.article-rich-text tr:last-child td {
  border-bottom: 0;
}

.article-detail-footer {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(194, 198, 211, 0.72);
}

.callout,
.quote-box,
.inspection-table {
  margin: 24px 0;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.callout {
  border-left: 4px solid var(--primary);
}

.quote-box {
  border-left: 4px solid var(--cyan);
  color: var(--teal);
  font-style: italic;
}

.inspection-table {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(194, 198, 211, 0.72);
  background: #ffffff;
}

.inspection-table strong {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.inspection-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.inspection-items div {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(194, 198, 211, 0.46);
}

.detail-steps {
  display: grid;
  gap: 14px;
}

.detail-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px 18px;
  padding: 22px;
}

.detail-card span {
  grid-row: span 2;
  color: var(--secondary);
  font-weight: 800;
}

.detail-card strong {
  color: var(--ink);
}

.detail-card p {
  margin: 0;
  color: var(--muted);
}

.gallery-page {
  background:
    linear-gradient(180deg, #ffffff 0, var(--bg) 300px),
    var(--bg);
}

.gallery-toolbar {
  position: sticky;
  z-index: 8;
  top: calc(var(--header-height) + 14px);
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(194, 198, 211, 0.7);
  border-radius: 18px;
  box-shadow: 0 16px 46px rgba(0, 52, 111, 0.08);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

.gallery-toolbar::-webkit-scrollbar {
  display: none;
}

.gallery-toolbar button {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gallery-toolbar button:hover,
.gallery-toolbar button.is-active {
  color: var(--primary);
  background: rgba(0, 52, 111, 0.08);
  border-color: rgba(0, 52, 111, 0.14);
}

.gallery-toolbar button:hover {
  transform: translateY(-1px);
}

.gallery-toolbar span {
  font-weight: 800;
}

.gallery-toolbar small {
  display: inline-flex;
  min-width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--secondary);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.gallery-showcases {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.gallery-showcase {
  min-width: 0;
  padding: clamp(18px, 2vw, 28px);
  background:
    linear-gradient(135deg, rgba(67, 216, 242, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(194, 198, 211, 0.68);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.gallery-showcase-heading {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.gallery-showcase-heading h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
}

.gallery-showcase-heading > div > span {
  display: inline-block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.gallery-control-group {
  display: grid;
  min-width: 160px;
  gap: 10px;
  justify-items: end;
}

.gallery-controls {
  display: flex;
  gap: 8px;
}

.gallery-controls button {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid rgba(0, 52, 111, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: color 180ms ease, background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.gallery-controls button:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: var(--primary);
}

.gallery-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.gallery-progress {
  width: 120px;
  height: 4px;
  overflow: hidden;
  background: rgba(0, 52, 111, 0.12);
  border-radius: 999px;
}

.gallery-progress span {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: inherit;
  transition: width 180ms ease;
}

.gallery-rail {
  display: grid;
  grid-auto-columns: minmax(300px, 31%);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 20px;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.gallery-rail::-webkit-scrollbar {
  display: none;
}

.gallery-frame {
  min-width: 0;
  scroll-snap-align: start;
}

.gallery-frame button {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  aspect-ratio: 4 / 3;
  background: var(--surface-soft);
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: var(--radius);
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 240ms ease,
    filter 240ms ease;
}

.gallery-frame-overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 5px;
  padding: 18px;
  color: #ffffff;
  text-align: left;
  background: linear-gradient(0deg, rgba(11, 28, 48, 0.9), rgba(11, 28, 48, 0.08));
  transform: translateY(8px);
  transition: transform 220ms ease;
}

.gallery-frame-overlay strong {
  font-size: 1.08rem;
  line-height: 1.24;
}

.gallery-frame-overlay small {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(234, 241, 255, 0.84);
  font-size: 0.86rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gallery-frame button:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.gallery-frame button:hover .gallery-frame-overlay,
.gallery-frame button:focus-visible .gallery-frame-overlay {
  transform: translateY(0);
}

.gallery-frame-action {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(11, 28, 48, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
  backdrop-filter: blur(10px);
}

.gallery-frame button:hover .gallery-frame-action,
.gallery-frame button:focus-visible .gallery-frame-action {
  opacity: 1;
  transform: translateY(0);
}

.gallery-frame button:focus-visible {
  outline: 3px solid rgba(67, 216, 242, 0.65);
  outline-offset: 4px;
}

.gallery-lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(9, 27, 49, 0.88);
  backdrop-filter: blur(10px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox figure {
  position: relative;
  width: min(100%, 1020px);
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: var(--dark);
}

.gallery-lightbox figcaption {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
}

.gallery-lightbox figcaption strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.gallery-lightbox figcaption span {
  color: var(--muted);
}

.gallery-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
}

.gallery-lightbox-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
  backdrop-filter: blur(12px);
}

.gallery-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox-prev {
  left: 22px;
}

.gallery-lightbox-next {
  right: 22px;
}

.portfolio-card,
.empty-state {
  overflow: hidden;
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.portfolio-card h3,
.empty-state h2 {
  margin: 0;
  color: var(--ink);
}

.portfolio-card p,
.empty-state p {
  margin: 10px 0 0;
  color: var(--muted);
}

.portfolio-page {
  background:
    linear-gradient(180deg, #ffffff 0, var(--bg) 320px),
    var(--bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.portfolio-card {
  --spot-x: 50%;
  --spot-y: 50%;
  display: grid;
  position: relative;
  grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1fr);
  cursor: pointer;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.12), transparent 36%),
    var(--surface);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(0, 104, 119, 0.36);
  box-shadow: 0 22px 54px rgba(0, 52, 111, 0.12);
}

.portfolio-card:focus-visible {
  outline: 3px solid rgba(67, 216, 242, 0.65);
  outline-offset: 5px;
}

.portfolio-media {
  position: relative;
  min-height: 100%;
  background: var(--surface-soft);
  overflow: hidden;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.portfolio-card:hover .portfolio-media img,
.portfolio-card:focus-within .portfolio-media img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.05);
}

.portfolio-media > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  color: #ffffff;
  background: rgba(0, 52, 111, 0.9);
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 800;
}

.portfolio-open-button {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(11, 28, 48, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
  backdrop-filter: blur(10px);
}

.portfolio-card:hover .portfolio-open-button,
.portfolio-card:focus-within .portfolio-open-button {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-open-button:hover {
  background: var(--primary);
}

.portfolio-card-body {
  display: grid;
  align-content: center;
  padding: 26px;
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
}

.portfolio-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.portfolio-stats div {
  padding: 12px;
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
}

.portfolio-stats strong,
.portfolio-stats span {
  display: block;
}

.portfolio-stats strong {
  color: var(--primary);
  font-size: 1.2rem;
}

.portfolio-stats span {
  margin-top: 2px;
  color: var(--muted-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.portfolio-detail-button {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 14px;
  color: var(--primary);
  background: rgba(0, 52, 111, 0.08);
  border: 1px solid rgba(0, 52, 111, 0.12);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.portfolio-detail-button:hover {
  color: #ffffff;
  background: var(--primary);
  transform: translateY(-2px);
}

.portfolio-detail-button span {
  font-size: 19px;
}

.portfolio-lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(9, 27, 49, 0.88);
  backdrop-filter: blur(10px);
}

.portfolio-lightbox[hidden] {
  display: none;
}

.portfolio-lightbox-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  width: min(100%, 1100px);
  max-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.portfolio-lightbox-media {
  min-height: 100%;
  background: var(--dark);
}

.portfolio-lightbox-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.portfolio-lightbox-body {
  overflow-y: auto;
  padding: clamp(24px, 3vw, 42px);
}

.portfolio-lightbox-body > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: #ffffff;
  background: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 800;
}

.portfolio-lightbox-body h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.9rem, 2.5vw, 3rem);
  line-height: 1.08;
}

.portfolio-lightbox-body p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.portfolio-lightbox-body .portfolio-stats {
  margin-top: 28px;
}

.portfolio-lightbox-close,
.portfolio-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.portfolio-lightbox-close {
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}

.portfolio-lightbox-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.portfolio-lightbox-nav:hover,
.portfolio-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.portfolio-lightbox-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.portfolio-lightbox-prev {
  left: 22px;
}

.portfolio-lightbox-next {
  right: 22px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  text-align: center;
}

.contact-layout {
  align-items: start;
}

.contact-page-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(67, 216, 242, 0.1), transparent 34%),
    linear-gradient(180deg, var(--surface), var(--surface-soft));
}

.contact-page-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 52, 111, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 52, 111, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 74%);
  pointer-events: none;
}

.contact-page-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1fr);
  gap: clamp(32px, 5vw, 76px);
}

.contact-panel {
  min-width: 0;
}

.contact-heading {
  max-width: 760px;
  margin: 0 0 26px;
  text-align: left;
}

.contact-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.contact-info {
  display: grid;
  gap: 15px;
  margin: 28px 0;
}

.contact-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.contact-info > a,
.contact-info > span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

.contact-card {
  min-height: 144px;
  padding: 20px;
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  background: var(--surface);
  box-shadow: 0 22px 44px rgba(0, 52, 111, 0.11);
}

.contact-card-address {
  grid-column: 1 / -1;
  min-height: 132px;
}

.contact-card > .material-symbols-outlined {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
}

.contact-card strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.contact-card strong + span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
}

.contact-card-highlight {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: rgba(255, 255, 255, 0.32);
}

.contact-card-highlight:hover,
.contact-card-highlight:active,
.contact-card-highlight:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: var(--cyan);
  box-shadow: 0 22px 44px rgba(0, 104, 119, 0.24);
}

.contact-card-highlight:focus-visible {
  outline: 3px solid rgba(67, 216, 242, 0.34);
  outline-offset: 3px;
}

.contact-card-highlight > .material-symbols-outlined {
  color: var(--primary);
  background: #ffffff;
}

.contact-card-highlight strong,
.contact-card-highlight strong + span {
  color: #ffffff;
}

.contact-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 18px;
}

.contact-flow article {
  padding: 20px;
  border: 1px solid rgba(0, 52, 111, 0.12);
  border-radius: var(--radius);
  background: rgba(234, 241, 255, 0.68);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.contact-flow article:hover {
  transform: translateY(-4px);
  background: var(--surface);
  border-color: rgba(67, 216, 242, 0.58);
}

.contact-flow article > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.contact-flow h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
}

.contact-flow p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.contact-form-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(67, 216, 242, 0.09), transparent 42%),
    var(--surface);
  box-shadow: 0 24px 56px rgba(0, 52, 111, 0.1);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--cyan));
}

.contact-form h2 {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-company-field {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid rgba(194, 198, 211, 0.9);
  border-radius: var(--radius-sm);
  outline: 0;
  padding: 12px 13px;
  resize: vertical;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.contact-form select {
  min-height: 49px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary) 50%),
    linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(0, 104, 119, 0.55);
  background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 52, 111, 0.14);
}

.contact-form .button {
  min-height: 56px;
  margin-top: 4px;
  font-size: 1rem;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  padding: 58px 0 26px;
  color: var(--light-text);
  background: var(--dark-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.footer-grid > div {
  min-width: 0;
}

.footer-grid img {
  width: 150px;
  height: 76px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(234, 241, 255, 0.76);
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  width: auto;
  max-width: 100%;
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.footer-grid a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(234, 241, 255, 0.12);
  font-size: 0.86rem;
}

.whatsapp-launcher {
  position: fixed;
  z-index: 38;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.32);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.whatsapp-logo {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-launcher:hover {
  transform: translateY(-2px);
  background: #1fbd5a;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.42);
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .service-list,
  .service-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-hero-grid,
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .service-detail-sidebar {
    position: static;
    grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.7fr);
    align-items: start;
  }

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

  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .portfolio-media img {
    min-height: 240px;
  }
}

@media (max-width: 960px) {
  .site-header {
    justify-content: space-between;
  }

  .brand {
    flex-basis: auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #ffffff;
    border: 1px solid rgba(194, 198, 211, 0.85);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 12px;
    border-radius: var(--radius-sm);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a.active {
    background: var(--surface-soft);
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .nav-dropdown-toggle .material-symbols-outlined {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 46vh;
    margin-top: 2px;
    overflow: auto;
    padding: 8px;
    background: var(--surface-soft);
    border-color: rgba(194, 198, 211, 0.58);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    padding: 10px;
    background: #ffffff;
  }

  .nav-dropdown-menu .nav-dropdown-all {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
  }

  .menu-button {
    display: inline-flex;
  }

  .page-hero-grid,
  .section-heading.split,
  .about-layout,
  .contact-layout,
  .detail-layout,
  .service-requirements {
    grid-template-columns: 1fr;
  }

  .contact-page-layout {
    gap: 34px;
  }

  .contact-form-panel {
    position: static;
  }

  .article-hero-grid,
  .article-detail-grid,
  .article-reading-layout {
    grid-template-columns: 1fr;
  }

  .article-reading-aside {
    position: static;
  }

  .article-detail-cover {
    aspect-ratio: 16 / 9;
  }

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

  .proof-grid,
  .client-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-lightbox-card {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 72px);
  }

  .portfolio-lightbox-media img {
    min-height: 260px;
    max-height: 38vh;
  }

  .gallery-rail {
    grid-auto-columns: minmax(280px, 74%);
  }

  .cta-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .article-layout {
    width: min(100% - 28px, 860px);
  }

  .site-header {
    width: 100vw;
    padding: 10px 14px;
    gap: 8px;
    overflow: hidden;
  }

  .header-actions {
    position: absolute;
    top: 50%;
    right: 14px;
    gap: 8px;
    margin-left: 0;
    transform: translateY(-50%);
  }

  .brand img {
    width: 108px;
    height: 42px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: 620px;
  }

  .hero.compact {
    min-height: 360px;
  }

  .hero-content {
    padding: 48px 0 58px;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1.08;
    text-wrap: wrap;
  }

  .hero.compact h1,
  .page-hero h1,
  .article-title {
    font-size: 2.35rem;
    text-wrap: wrap;
  }

  .hero.compact h1,
  .page-hero h1 {
    max-width: min(100%, 12ch);
  }

  .gallery-toolbar {
    top: calc(var(--header-height) + 8px);
    width: min(100% - 28px, var(--container));
    padding: 8px;
    border-radius: 14px;
  }

  .gallery-toolbar button {
    padding: 9px 12px;
  }

  .gallery-showcases {
    gap: 22px;
    margin-top: 24px;
  }

  .gallery-showcase {
    padding: 16px;
    border-radius: 18px;
  }

  .gallery-showcase-heading {
    align-items: flex-start;
    gap: 16px;
  }

  .gallery-showcase-heading h2 {
    font-size: 1.5rem;
  }

  .gallery-control-group {
    min-width: 0;
  }

  .gallery-progress {
    width: 94px;
  }

  .gallery-controls button {
    width: 38px;
    height: 38px;
  }

  .gallery-frame-action {
    width: 38px;
    height: 38px;
    opacity: 1;
    transform: none;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: 22px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .gallery-lightbox-nav:hover {
    transform: scale(1.04);
  }

  .gallery-lightbox-prev {
    left: 22px;
  }

  .gallery-lightbox-next {
    right: 22px;
  }

  .portfolio-open-button {
    opacity: 1;
    transform: none;
  }

  .portfolio-detail-button {
    width: 100%;
    justify-content: center;
  }

  .portfolio-lightbox {
    padding: 16px;
  }

  .portfolio-lightbox-body {
    padding: 22px;
  }

  .portfolio-lightbox-nav {
    top: auto;
    bottom: 22px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .portfolio-lightbox-nav:hover {
    transform: scale(1.04);
  }

  .portfolio-lightbox-prev {
    left: 22px;
  }

  .portfolio-lightbox-next {
    right: 22px;
  }

  .hero p:not(.eyebrow),
  .page-hero p {
    max-width: min(100%, 28ch);
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .proof-grid,
  .client-strip,
  .portfolio-stats,
  .footer-grid,
  .inspection-items {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 56px 0;
  }

  .service-list,
  .service-benefit-grid,
  .service-requirement-groups,
  .service-detail-sidebar {
    grid-template-columns: 1fr;
  }

  .service-index-section {
    padding: 52px 0 68px;
  }

  .service-index-heading h2 {
    font-size: clamp(2rem, 8.4vw, 2.5rem);
  }

  .service-index-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .service-search,
  .service-count {
    width: 100%;
  }

  .service-count {
    justify-content: space-between;
  }

  .service-card-link {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .service-card-media img,
  .service-card-fallback {
    min-height: 100%;
  }

  .service-card-body {
    min-height: 0;
    padding: 18px;
  }

  .service-card-number {
    font-size: 1.1rem;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }

  .service-card p {
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.52;
    -webkit-line-clamp: 3;
  }

  .service-card-icon {
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    border-width: 2px;
    border-radius: 11px;
    font-size: 1.15rem;
  }

  .service-detail-hero {
    min-height: 0;
    padding: calc(var(--header-height) + 44px) 0 52px;
  }

  .service-detail-hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.15rem);
    line-height: 1.08;
  }

  .service-detail-hero-card,
  .service-detail-hero-card img {
    min-height: 260px;
  }

  .service-detail-actions .button {
    width: 100%;
  }

  .service-benefit-card,
  .service-panel,
  .service-consult-card {
    padding: 22px;
  }

  .service-process-card {
    grid-template-columns: 1fr;
  }

  .service-process-card:hover,
  .service-process-card:focus-visible {
    transform: translateY(-4px);
  }

  .service-detail-hero-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }

  .article-hero-copy h1,
  .article-detail-title {
    font-size: 2.38rem;
    line-height: 1.08;
    text-wrap: wrap;
  }

  .article-hero-copy p:not(.eyebrow),
  .article-detail-excerpt {
    font-size: 1rem;
    line-height: 1.66;
  }

  .article-hero-media {
    min-height: 220px;
  }

  .article-hero-panel {
    right: 12px;
    bottom: 12px;
    min-width: 142px;
    padding: 14px;
  }

  .article-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .article-total {
    min-width: 0;
  }

  .article-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .article-filters::-webkit-scrollbar {
    display: none;
  }

  .article-filters .filter-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .article-index-card .article-card-media img {
    height: 196px;
  }

  .article-index-card .article-card-body {
    min-height: 0;
    padding: 22px;
  }

  .article-index-card .article-card-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-detail-actions {
    flex-direction: column;
  }

  .article-reading-card,
  .article-info-card {
    padding: 22px;
  }

  .media-card img,
  .article-card img {
    height: 188px;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .detail-card span {
    grid-row: auto;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-info-grid,
  .contact-flow,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-card-address {
    min-height: 0;
    padding: 18px;
  }

  .contact-heading h2 {
    max-width: 100%;
    font-size: 2rem;
    text-wrap: pretty;
  }

  .language-switch {
    min-width: 38px;
    height: 40px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .whatsapp-launcher {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

/* Scroll Reveal Animation */
.reveal-hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-hidden,
  .reveal-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Why Section Enhancements */
.section-dark {
  background: var(--ink);
  color: var(--light-text);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(67, 216, 242, 0.05), transparent 60%);
  animation: rotateGlow 30s linear infinite;
  pointer-events: none;
}

@keyframes rotateGlow {
  100% { transform: rotate(360deg); }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.why-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.why-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(67, 216, 242, 0.4);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 0 40px -10px rgba(67, 216, 242, 0.15);
}

.why-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  font-size: 32px;
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--cyan);
  color: var(--ink);
  box-shadow: 0 0 24px rgba(67, 216, 242, 0.5);
  border-color: var(--cyan);
}

.why-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.why-card p {
  margin: 16px 0 0;
  color: rgba(234, 241, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Homepage refinement */
.home-hero {
  min-height: calc(100svh - var(--header-height));
  background: var(--dark);
}

.home-hero .hero-image {
  filter: saturate(0.92) contrast(1.03);
  animation-duration: 28s;
}

.home-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.95), rgba(20, 20, 20, 0.65) 50%, rgba(0, 0, 0, 0.25)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.5), transparent 45%);
}

.home-hero::after {
  display: none;
}

.home-hero-content {
  padding: clamp(62px, 7vw, 100px) 0 clamp(66px, 7vw, 94px);
}

.home-hero-copy {
  width: min(100%, 1060px);
  padding-left: clamp(14px, 3vw, 56px);
}

.home-hero .home-eyebrow,
.home-section .eyebrow {
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
}

.home-hero .home-eyebrow {
  margin-bottom: 18px;
  font-size: clamp(1.04rem, 1.32vw, 1.2rem);
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.home-hero h1 {
  max-width: 1080px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 40%, var(--cyan) 100%);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
  font-size: clamp(3rem, 5.3vw, 5rem);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero p:not(.eyebrow) {
  max-width: 830px;
  margin-top: 24px;
  color: rgba(248, 250, 252, 0.88);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.7;
}

.home-hero .hero-actions {
  gap: 14px;
  margin-top: 34px;
}

.home-hero .hero-actions .button {
  min-height: 58px;
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 1.02rem;
}

.home-hero .button-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 34px rgba(0, 104, 119, 0.3);
}

.home-hero .button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.42);
}

.home-proof {
  margin: 0;
  padding: clamp(34px, 4vw, 54px) 0 clamp(46px, 5vw, 68px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(239, 244, 255, 0.82) 0%, rgba(255, 255, 255, 0.96) 100%);
  border-block: 0;
}

.home-proof .proof-grid {
  gap: 16px;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-proof .proof-grid div {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  min-height: 154px;
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(194, 198, 211, 0.74);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 52, 111, 0.06);
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.home-proof .proof-grid div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--secondary));
}

.home-proof .proof-grid div:last-child {
  border-right: 1px solid rgba(194, 198, 211, 0.74);
}

.home-proof .proof-grid div:hover {
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.22), transparent 36%),
    #ffffff;
  border-color: rgba(67, 216, 242, 0.82);
  box-shadow: 0 24px 54px rgba(0, 52, 111, 0.11);
  transform: translateY(-5px);
}

.home-proof .proof-grid strong {
  color: var(--primary);
  font-size: clamp(2.15rem, 3.25vw, 3.35rem);
  line-height: 0.96;
  text-shadow: none;
  font-variant-numeric: tabular-nums;
}

.home-proof .proof-grid span {
  max-width: 260px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.home-section {
  padding: clamp(50px, 5vw, 72px) 0;
}

.home-section .section-heading {
  max-width: 980px;
  margin: 0 0 30px;
  text-align: left;
}

.home-section .section-heading.split {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.home-section .section-heading h2 {
  max-width: 920px;
  color: var(--primary);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.08;
}

.home-section .section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.home-section-lead {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.home-why-section {
  background: var(--surface);
}

.home-why-section .why-grid {
  gap: 16px;
}

.home-why-section .why-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  color: var(--ink);
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.13), transparent 36%),
    var(--surface);
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-top: 4px solid var(--cyan);
  border-radius: 10px;
  box-shadow: none;
  backdrop-filter: none;
}

.home-why-section .why-card:hover {
  transform: translateY(-4px);
  background: var(--surface);
  border-color: rgba(67, 216, 242, 0.5);
  box-shadow: var(--shadow-soft);
}

.home-why-section .why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--primary);
  background: rgba(0, 52, 111, 0.08);
  border: 1px solid rgba(0, 52, 111, 0.12);
  border-radius: 8px;
  font-size: 26px;
  box-shadow: none;
}

.home-why-section .why-card:hover .why-icon {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
  transform: none;
}

.home-why-section .why-card h3 {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.28;
}

.home-why-section .why-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.home-services-section {
  background: var(--surface-soft);
  border-block: 1px solid rgba(194, 198, 211, 0.62);
}

.home-services-section .section-heading {
  margin-bottom: 26px;
}

.home-service-grid {
  gap: 20px;
}

.home-service-grid .media-card,
.home-articles-section .article-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.12), transparent 32%),
    var(--surface);
  border-radius: 10px;
  box-shadow: none;
}

.home-service-grid .media-card:hover,
.home-articles-section .article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(0, 104, 119, 0.3);
}

.home-service-grid .media-card img {
  height: 186px;
}

.home-service-grid .media-card-body,
.home-articles-section .article-card-body {
  padding: 24px;
}

.home-service-grid .icon-box {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  background: var(--primary);
  border-radius: 8px;
}

.home-service-grid h3,
.home-articles-section h3 {
  font-size: 1.28rem;
  line-height: 1.28;
}

.home-service-grid p {
  font-size: 0.98rem;
  line-height: 1.62;
}

.home-workflow-section {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.home-workflow-section::before {
  display: none;
}

.home-workflow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: workflow;
}

.home-workflow-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  min-height: 276px;
  padding: 24px;
  border: 1px solid rgba(194, 198, 211, 0.76);
  border-radius: 12px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.17), transparent 34%),
    linear-gradient(180deg, #ffffff, rgba(239, 244, 255, 0.82));
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-workflow-card::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: rgba(0, 52, 111, 0.22);
}

.home-workflow-card:last-child::after {
  display: none;
}

.home-workflow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(67, 216, 242, 0.82);
  box-shadow: 0 24px 54px rgba(0, 52, 111, 0.12);
}

.home-workflow-index {
  display: inline-flex;
  min-width: 42px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #ffffff;
  background: var(--primary);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
}

.home-workflow-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(0, 52, 111, 0.18);
  font-size: 38px;
}

.home-workflow-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.28;
}

.home-workflow-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.64;
}

.home-certification-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 244, 255, 0.68) 100%);
  border-block: 0;
}

.home-certification-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4vw, 76px);
  align-items: center;
}

.home-certification-visual {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(194, 198, 211, 0.68);
  border-radius: 24px;
  background: var(--dark);
  box-shadow: 0 28px 78px rgba(0, 52, 111, 0.16);
  isolation: isolate;
}

.home-certification-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(216, 154, 43, 0.32), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.home-certification-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 28, 48, 0.02), rgba(11, 28, 48, 0.68)),
    linear-gradient(135deg, rgba(67, 216, 242, 0.18), transparent 42%);
  pointer-events: none;
}

.home-certification-visual:hover::before {
  opacity: 1;
}

.home-certification-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transform: scale(1.04);
  transition: transform 420ms ease, opacity 420ms ease;
}

.home-certification-visual:hover img {
  opacity: 0.95;
  transform: scale(1.08);
}

.home-certification-badge {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  color: #ffffff;
  background: rgba(11, 28, 48, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(11, 28, 48, 0.24);
  backdrop-filter: blur(12px);
}

.home-certification-badge span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: linear-gradient(135deg, #ffffff, var(--gold));
  border-radius: 12px;
  font-size: 27px;
}

.home-certification-badge strong {
  font-size: 1.04rem;
  line-height: 1.28;
}

.home-certification-mark {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: -8px;
  color: rgba(255, 255, 255, 0.1);
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.home-certification-content {
  min-width: 0;
}

.home-certification-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

.home-certification-heading h2 {
  color: var(--primary);
  font-size: clamp(2.25rem, 3.25vw, 4rem);
  line-height: 1.04;
}

.home-certification-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-certification-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  display: flex;
  min-height: 176px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px 20px;
  color: #ffffff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.22), transparent 36%),
    linear-gradient(145deg, var(--primary) 0%, var(--dark-2) 100%);
  box-shadow: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-certification-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.72;
}

.home-certification-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 154, 43, 0.62);
  box-shadow: 0 24px 56px rgba(0, 52, 111, 0.22);
}

.home-certification-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  color: var(--dark);
  background: linear-gradient(135deg, #ffffff, var(--gold));
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(216, 154, 43, 0.24);
  font-size: 29px;
}

.home-certification-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.04rem, 1.1vw, 1.24rem);
  line-height: 1.28;
}

.home-certification-card p {
  margin: 8px 0 0;
  color: rgba(234, 241, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.48;
}

.home-articles-section {
  background: var(--surface);
}

.home-articles-section .section-heading .button {
  min-width: 180px;
  min-height: 48px;
}

.home-articles-section .article-card img {
  height: 190px;
}

.home-clients-section {
  padding: clamp(46px, 5vw, 64px) 0;
  background: var(--surface-soft);
  border-block: 1px solid rgba(194, 198, 211, 0.62);
}

.home-clients-section .section-heading {
  margin-bottom: 28px;
}

.home-clients-section .client-strip {
  gap: 12px;
}

.home-clients-section .client-logo {
  min-height: 86px;
  border-radius: 10px;
  box-shadow: none;
}

.home-contact-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(67, 216, 242, 0.16), transparent 42%),
    linear-gradient(135deg, var(--primary), var(--dark-2));
}

.home-contact-section .section-heading h2,
.home-contact-section .section-heading p {
  color: #ffffff;
}

.home-contact-section .section-heading p:not(.eyebrow) {
  color: rgba(234, 241, 255, 0.82);
}

.home-contact-layout {
  gap: clamp(32px, 5vw, 72px);
}

.home-contact-section .contact-form {
  box-shadow:
    0 26px 58px rgba(0, 52, 111, 0.24),
    0 0 0 1px rgba(67, 216, 242, 0.12);
}

/* Homepage section variety */
.home-section {
  padding: clamp(64px, 6vw, 96px) 0;
}

.home-why-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(239, 244, 255, 0.72) 100%);
}

.home-why-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 3.5vw, 56px);
  align-items: stretch;
}

.home-why-section .section-heading {
  position: relative;
  top: auto;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0 0 0 clamp(18px, 2vw, 28px);
  border-left: 6px solid var(--cyan);
  background: transparent;
  box-shadow: none;
}

.home-why-section .section-heading .eyebrow {
  color: var(--secondary);
  font-size: clamp(1.02rem, 1.15vw, 1.24rem);
  letter-spacing: 0.16em;
}

.home-why-section .section-heading h2 {
  max-width: 720px;
  color: var(--primary);
  font-size: clamp(2.55rem, 3.6vw, 4.15rem);
  line-height: 1.06;
}

.home-why-section .why-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.home-why-section .why-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0 18px;
  align-items: start;
  min-height: 0;
  padding: 24px 26px;
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 52, 111, 0.07);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.home-why-section .why-icon {
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  margin: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  border-radius: 14px;
  font-size: 28px;
}

.home-why-section .why-card h3 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.22rem, 1.35vw, 1.48rem);
  line-height: 1.25;
}

.home-why-section .why-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1vw, 1.05rem);
  line-height: 1.62;
}

.home-why-section .why-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(67, 216, 242, 0.68);
  box-shadow: 0 24px 54px rgba(0, 52, 111, 0.1);
}

.home-why-section .why-card:hover .why-icon {
  color: var(--dark);
  background: var(--cyan);
  border-color: transparent;
}

.home-services-section {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 244, 255, 0.78) 100%);
  border-block: 0;
}

.home-services-section::before {
  display: none;
}

.home-services-heading {
  align-items: end;
  gap: clamp(20px, 3vw, 44px);
  justify-content: space-between;
  max-width: 100%;
}

.home-section .home-services-heading {
  max-width: 100%;
}

.home-services-heading > div:first-child {
  min-width: 0;
}

.home-services-heading .eyebrow,
.home-workflow-heading .eyebrow,
.home-certification-heading .eyebrow,
.home-clients-section .section-heading .eyebrow,
.home-articles-section .section-heading .eyebrow {
  margin-bottom: 14px;
  font-size: clamp(1.06rem, 1.18vw, 1.24rem);
  letter-spacing: 0.14em;
  line-height: 1.28;
}

.home-why-section .section-heading h2,
.home-services-title,
.home-workflow-heading h2,
.home-certification-heading h2,
.home-articles-section .section-heading h2 {
  color: var(--primary);
}

.home-services-title span {
  display: block;
}

@media (min-width: 961px) {
  .home-services-title {
    width: max-content;
    max-width: calc(100vw - 380px);
  }

  .home-services-title span {
    white-space: nowrap;
  }
}

@media (min-width: 961px) and (max-width: 1240px) {
  .home-services-title {
    max-width: calc(100vw - 190px);
  }

  .home-service-actions > .button {
    display: none;
  }

  .home-service-mobile-cta {
    display: block;
    margin-top: 22px;
  }
}

.home-service-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-service-actions .button {
  min-height: 48px;
  white-space: nowrap;
}

.home-service-actions .button-secondary,
.home-service-mobile-cta .button-secondary {
  color: var(--primary);
  background: #ffffff;
  border-color: rgba(0, 52, 111, 0.18);
  box-shadow: 0 12px 26px rgba(0, 52, 111, 0.06);
}

.home-service-actions .button-secondary:hover,
.home-service-mobile-cta .button-secondary:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 16px 32px rgba(0, 52, 111, 0.14);
}

.home-service-controls {
  display: inline-flex;
  gap: 8px;
}

.home-service-control {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid rgba(194, 198, 211, 0.82);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 52, 111, 0.08);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.home-service-control:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.home-service-control:disabled {
  opacity: 0.36;
  cursor: default;
  transform: none;
}

.home-service-carousel {
  position: relative;
  margin-inline: 0;
  padding-inline: 0;
}

.home-service-track {
  display: grid;
  grid-auto-columns: calc((100% - 40px) / 3);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 6px 0 24px;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.home-service-track::-webkit-scrollbar {
  display: none;
}

.home-service-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(194, 198, 211, 0.74);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.12), transparent 34%),
    #ffffff;
  box-shadow: 0 18px 44px rgba(0, 52, 111, 0.08);
  scroll-snap-align: start;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.home-service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(67, 216, 242, 0.82);
  box-shadow: 0 28px 62px rgba(0, 52, 111, 0.14);
}

.home-service-card a {
  display: grid;
  grid-template-rows: 186px 1fr;
  min-height: 100%;
  color: inherit;
}

.home-service-media {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.home-service-media img,
.home-service-fallback {
  width: 100%;
  height: 100%;
}

.home-service-media img {
  object-fit: cover;
  transition: transform 420ms ease;
}

.home-service-card:hover .home-service-media img {
  transform: scale(1.06);
}

.home-service-fallback {
  display: grid;
  place-items: center;
  color: rgba(234, 241, 255, 0.82);
  background: linear-gradient(135deg, var(--primary), var(--dark-2));
}

.home-service-fallback .material-symbols-outlined {
  font-size: 52px;
}

.home-service-number {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  min-width: 44px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 52, 111, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.home-service-body {
  display: flex;
  min-height: 252px;
  flex-direction: column;
  padding: 24px;
}

.home-service-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
}

.home-service-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 1.45vw, 1.55rem);
  line-height: 1.24;
}

.home-service-body p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.home-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--primary);
  font-weight: 800;
}

.home-service-link .material-symbols-outlined {
  transition: transform 180ms ease;
}

.home-service-card:hover .home-service-link .material-symbols-outlined {
  transform: translateX(5px);
}

.home-service-progress {
  height: 4px;
  overflow: hidden;
  margin-top: 2px;
  background: rgba(194, 198, 211, 0.5);
  border-radius: 999px;
}

.home-service-progress span {
  display: block;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: inherit;
  transition: width 160ms ease;
}

.home-service-mobile-cta {
  display: none;
}

@media (min-width: 961px) and (max-width: 1240px) {
  .home-service-mobile-cta {
    display: block;
    margin-top: 22px;
  }
}

.home-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-auto-rows: minmax(230px, auto);
  gap: 18px;
  align-items: stretch;
}

.home-service-grid .media-card {
  background: #ffffff;
  border: 1px solid rgba(194, 198, 211, 0.74);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 52, 111, 0.07);
}

.home-service-grid .media-card:first-child {
  grid-row: span 2;
}

.home-service-grid .media-card:first-child img {
  height: 320px;
}

.home-service-grid .media-card:not(:first-child) {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(0, 1fr);
}

.home-service-grid .media-card:not(:first-child) img {
  height: 100%;
  min-height: 230px;
}

.home-service-grid .media-card:hover,
.home-articles-section .article-card:hover {
  transform: translateY(-7px);
  border-color: rgba(67, 216, 242, 0.78);
  box-shadow: 0 26px 58px rgba(0, 52, 111, 0.13);
}

.home-workflow-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(239, 244, 255, 0.78) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.home-workflow-panel {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid rgba(194, 198, 211, 0.74);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 60px rgba(0, 52, 111, 0.08);
}

.home-workflow-heading {
  display: block;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.home-workflow-heading .eyebrow {
  color: var(--secondary);
}

.home-workflow-heading h2 {
  max-width: 920px;
  color: var(--primary);
  font-size: clamp(2rem, 2.55vw, 3rem);
  line-height: 1.08;
}

.home-workflow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 0;
}

.home-workflow-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0 18px;
  align-items: start;
  min-height: 178px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(194, 198, 211, 0.74);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 52, 111, 0.06);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.home-workflow-card::after {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
  opacity: 0.78;
}

.home-workflow-index {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 3;
  margin: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 0;
  border-radius: 16px;
  font-size: clamp(1.42rem, 1.65vw, 1.82rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.home-workflow-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  color: var(--primary);
  background: rgba(0, 52, 111, 0.08);
  border-radius: 12px;
  font-size: 23px;
}

.home-workflow-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.25vw, 1.34rem);
  line-height: 1.28;
}

.home-workflow-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.home-workflow-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: rgba(67, 216, 242, 0.72);
  box-shadow: 0 22px 50px rgba(0, 52, 111, 0.1);
}

.home-clients-section {
  color: #ffffff;
  background:
    linear-gradient(180deg, var(--dark-2), var(--dark));
  border-block: 0;
}

.home-clients-section .section-heading h2 {
  color: #ffffff;
}

.home-clients-section .client-strip {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.home-clients-section .client-logo {
  min-height: 112px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
}

.home-clients-section .client-logo:last-child {
  border-right: 0;
}

.home-clients-section .client-logo:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.home-clients-section .client-logo img {
  filter: grayscale(100%) brightness(1.45) opacity(0.7);
}

.home-clients-section .client-logo:hover img {
  filter: grayscale(0%) brightness(1.1) opacity(1);
}

.home-articles-section {
  background:
    linear-gradient(180deg, #ffffff, var(--surface-soft));
}

.home-article-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-auto-rows: minmax(226px, auto);
  gap: 18px;
}

.home-article-grid .article-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 52, 111, 0.07);
}

.home-article-grid .article-card:first-child {
  grid-row: span 2;
}

.home-article-grid .article-card:first-child img {
  height: 328px;
}

.home-article-grid .article-card:not(:first-child) {
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
}

.home-article-grid .article-card:not(:first-child) img {
  height: 100%;
  min-height: 226px;
}

.home-contact-section {
  background:
    linear-gradient(135deg, rgba(216, 154, 43, 0.18), transparent 34%),
    linear-gradient(135deg, var(--primary), var(--dark-2));
}

.home-contact-layout {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.1fr);
  align-items: start;
}

.home-contact-section .section-heading {
  margin: 0;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 24px 54px rgba(0, 52, 111, 0.22),
    inset 0 1px 0 rgba(67, 216, 242, 0.12);
}

@media (max-width: 960px) {
  .home-hero {
    min-height: calc(100svh - var(--header-height));
  }

  .home-section .section-heading.split {
    grid-template-columns: 1fr;
  }

  .home-why-layout {
    grid-template-columns: 1fr;
  }

  .home-why-section .section-heading {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .home-why-section .why-grid {
    grid-template-columns: 1fr;
  }

  .home-service-grid,
  .home-article-grid {
    grid-template-columns: 1fr;
  }

  .home-service-actions {
    justify-content: space-between;
  }

  .home-service-actions > .button {
    display: none;
  }

  .home-service-mobile-cta {
    display: block;
    margin-top: 20px;
  }

  .home-service-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .home-service-grid .media-card:first-child,
  .home-article-grid .article-card:first-child {
    grid-row: auto;
  }

  .home-service-grid .media-card:not(:first-child),
  .home-article-grid .article-card:not(:first-child) {
    display: grid;
    grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  }

  .home-service-grid .media-card:first-child img,
  .home-article-grid .article-card:first-child img {
    height: 260px;
  }

  .home-proof .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-workflow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-certification-layout {
    grid-template-columns: 1fr;
  }

  .home-certification-visual {
    min-height: 340px;
  }

  .home-certification-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-workflow-card::after {
    display: block;
  }

  .home-workflow-card:nth-child(2n + 1) {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .home-clients-section .client-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-clients-section .client-logo:nth-child(3n) {
    border-right: 0;
  }

  .home-contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .home-hero {
    min-height: calc(100svh - var(--header-height));
  }

  .home-hero-content {
    padding: 58px 0 48px;
  }

  .home-hero-copy {
    padding-left: 4px;
  }

  .home-hero .home-eyebrow {
    max-width: min(100%, 30ch);
    margin-bottom: 14px;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .home-hero h1 {
    max-width: min(100%, 11.8ch);
    font-size: clamp(2rem, 9vw, 2.22rem);
    line-height: 1.09;
    text-wrap: wrap;
  }

  .home-hero p:not(.eyebrow) {
    max-width: min(100%, 30ch);
    margin-top: 18px;
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .home-hero .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .home-hero .hero-actions .button {
    min-height: 54px;
    padding: 14px 18px;
    font-size: 1rem;
  }

  .home-proof {
    padding: 28px 0 48px;
  }

  .home-proof .proof-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-proof .proof-grid div {
    min-height: 0;
    padding: 20px;
    border: 1px solid rgba(194, 198, 211, 0.74);
  }

  .home-proof .proof-grid strong {
    font-size: 2.15rem;
  }

  .home-proof .proof-grid span {
    font-size: 0.86rem;
  }

  .home-section {
    padding: 52px 0;
  }

  .home-section .section-heading {
    margin-bottom: 26px;
  }

  .home-section .section-heading h2 {
    font-size: 2rem;
  }

  .home-section .section-heading p:not(.eyebrow) {
    font-size: 1rem;
  }

  .home-why-section .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-why-layout {
    gap: 24px;
  }

  .home-why-section .why-card {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 0;
    padding: 20px;
  }

  .home-why-section .section-heading {
    padding: 0 0 0 18px;
  }

  .home-why-section .section-heading .eyebrow {
    font-size: 0.98rem;
    letter-spacing: 0.14em;
  }

  .home-why-section .section-heading h2 {
    font-size: 2.36rem;
    line-height: 1.08;
  }

  .home-why-section .why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 25px;
  }

  .home-why-section .why-card h3 {
    padding-right: 46px;
    font-size: 1.16rem;
  }

  .home-why-section .why-card p {
    font-size: 0.96rem;
  }

  .home-section-lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .home-workflow-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .home-workflow-heading {
    margin-bottom: 24px;
  }

  .home-workflow-heading h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .home-workflow-list {
    grid-template-columns: 1fr;
  }

  .home-certification-layout {
    gap: 24px;
  }

  .home-certification-visual {
    min-height: 260px;
    border-radius: 20px;
  }

  .home-certification-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 12px;
    border-radius: 14px;
  }

  .home-certification-badge span {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 24px;
  }

  .home-certification-badge strong {
    font-size: 0.96rem;
  }

  .home-certification-mark {
    top: 14px;
    right: 12px;
    font-size: 3.2rem;
  }

  .home-workflow-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
    border: 1px solid rgba(194, 198, 211, 0.74);
  }

  .home-workflow-card:first-child {
    border-top: 1px solid rgba(194, 198, 211, 0.74);
  }

  .home-workflow-index {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    font-size: 1.32rem;
  }

  .home-workflow-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 10px;
    font-size: 21px;
  }

  .home-workflow-card h3 {
    font-size: 1.08rem;
  }

  .home-workflow-card p {
    font-size: 0.94rem;
  }

  .home-service-grid,
  .home-article-grid {
    gap: 14px;
  }

  .home-service-actions {
    justify-content: flex-start;
  }

  .home-service-actions > .button {
    display: none;
  }

  .home-service-control {
    width: 44px;
    height: 44px;
  }

  .home-service-carousel {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .home-service-track {
    grid-auto-columns: minmax(282px, 84vw);
    gap: 14px;
    padding-bottom: 20px;
    scroll-padding-inline: 16px;
  }

  .home-service-card a {
    grid-template-rows: 172px 1fr;
  }

  .home-service-body {
    min-height: 252px;
    padding: 20px;
  }

  .home-service-mobile-cta {
    display: block;
    margin-top: 20px;
  }

  .home-service-mobile-cta .button {
    width: 100%;
  }

  .home-service-grid .media-card:not(:first-child),
  .home-article-grid .article-card:not(:first-child) {
    display: block;
  }

  .home-service-grid .media-card:first-child img,
  .home-service-grid .media-card:not(:first-child) img,
  .home-article-grid .article-card:first-child img,
  .home-article-grid .article-card:not(:first-child) img {
    height: 176px;
    min-height: 0;
  }

  .home-certification-heading {
    margin-bottom: 22px;
  }

  .home-certification-heading h2 {
    font-size: 2.05rem;
  }

  .home-certification-grid {
    grid-template-columns: 1fr;
  }

  .home-certification-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 0;
    column-gap: 14px;
    align-items: center;
    justify-content: initial;
    justify-items: start;
    padding: 20px;
    text-align: left;
  }

  .home-certification-icon {
    width: 48px;
    height: 48px;
    grid-row: 1 / span 2;
    margin: 0;
    font-size: 26px;
  }

  .home-certification-card p {
    grid-column: 2;
    margin-top: 4px;
  }

  .home-clients-section .client-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-clients-section .client-logo,
  .home-clients-section .client-logo:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-clients-section .client-logo:nth-child(2n) {
    border-right: 0;
  }

  .home-contact-section .section-heading {
    padding: 22px;
  }
}

/* About Page */
.about-page {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(239, 244, 255, 0.78) 36%, #ffffff 64%, rgba(239, 244, 255, 0.84) 100%);
}

.about-page .hero.compact {
  min-height: min(560px, calc(100svh - var(--header-height)));
}

.about-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 28, 48, 0.96), rgba(11, 28, 48, 0.72) 52%, rgba(0, 52, 111, 0.34)),
    linear-gradient(0deg, rgba(0, 52, 111, 0.64), transparent 58%);
}

.about-profile-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(67, 216, 242, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 244, 255, 0.78) 100%);
}

.about-profile-section::before {
  display: none;
}

.about-profile-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 24%, rgba(0, 52, 111, 0.08), transparent 34%),
    radial-gradient(circle at 16% 96%, rgba(67, 216, 242, 0.12), transparent 34%);
  opacity: 0.82;
  pointer-events: none;
}

.about-profile-box {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.86fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: stretch;
  overflow: hidden;
  padding: clamp(16px, 1.8vw, 24px);
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: 26px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 70px rgba(0, 52, 111, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.about-profile-box:hover {
  transform: translateY(-5px);
  border-color: rgba(67, 216, 242, 0.78);
  box-shadow: 0 34px 84px rgba(0, 52, 111, 0.16);
}

.about-profile-copy {
  align-self: stretch;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: none;
  min-height: 0;
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid rgba(194, 198, 211, 0.54);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.about-profile-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.05rem, 2.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.08;
}

.about-profile-copy .eyebrow {
  margin-bottom: 14px;
  color: var(--secondary);
  font-size: 0.86rem;
  letter-spacing: 0.2em;
}

.about-profile-body {
  display: grid;
  gap: 14px;
}

.about-profile-body p {
  margin: 0;
  max-width: 860px;
  color: #344254;
  font-size: clamp(1rem, 1.02vw, 1.08rem);
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.about-profile-scope {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(22px, 2.6vw, 30px);
}

.about-profile-scope article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0 12px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(194, 198, 211, 0.68);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(239, 244, 255, 0.9), #ffffff);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-profile-scope article:hover {
  transform: translateY(-5px);
  border-color: rgba(67, 216, 242, 0.82);
  box-shadow: 0 18px 36px rgba(0, 52, 111, 0.09);
}

.about-profile-scope .material-symbols-outlined {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  margin-bottom: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
}

.about-profile-scope strong,
.about-profile-scope small {
  display: block;
}

.about-profile-scope strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.about-profile-scope small {
  margin-top: 4px;
  color: var(--muted-soft);
  font-size: 0.8rem;
  line-height: 1.35;
}

.about-profile-media,
.about-vision-panel,
.about-mission-card,
.about-value-card {
  --spot-x: 50%;
  --spot-y: 50%;
}

.about-profile-media {
  position: relative;
  isolation: isolate;
  align-self: stretch;
  min-width: 0;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  display: block;
  overflow: hidden;
  margin-left: auto;
  padding: 0;
  border-radius: 20px;
  background: transparent;
}

.about-profile-media .about-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  border-radius: 16px;
  box-shadow: none;
}

.about-profile-media .about-image img {
  display: block;
  transition: transform 700ms ease;
}

.about-profile-box:hover .about-image img {
  transform: scale(1.05);
}

.about-direction-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 4%, rgba(67, 216, 242, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(239, 244, 255, 0.78) 0%, rgba(247, 250, 255, 0.94) 48%, rgba(255, 255, 255, 0.98) 100%);
  border-block: 0;
}

.about-direction-section::before {
  background-image: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 52, 111, 0.07), transparent 28%),
    radial-gradient(circle at 90% 82%, rgba(67, 216, 242, 0.1), transparent 30%);
  opacity: 0.86;
}

.about-direction-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.about-vision-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  overflow: hidden;
  min-height: 420px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.24), transparent 34%),
    linear-gradient(145deg, var(--primary), var(--dark-2));
  box-shadow: 0 28px 72px rgba(0, 52, 111, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-vision-panel:focus-visible,
.about-vision-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 84px rgba(0, 52, 111, 0.28);
  outline: none;
}

.about-vision-panel .icon-box {
  color: var(--primary);
  background: #ffffff;
}

.about-vision-panel h2 {
  margin: 30px 0 16px;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.1rem);
}

.about-vision-panel p {
  margin: 0;
  color: rgba(234, 241, 255, 0.86);
  font-size: 1.15rem;
  line-height: 1.78;
}

.about-mission-area .section-heading {
  max-width: 860px;
  margin: 0 0 26px;
  text-align: left;
}

.about-mission-list {
  display: grid;
  gap: 16px;
}

.about-mission-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 58px 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.about-mission-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--secondary));
  opacity: 0;
  transition: opacity 220ms ease;
}

.about-mission-card:hover,
.about-mission-card:focus-visible {
  transform: translateX(8px);
  border-color: rgba(67, 216, 242, 0.82);
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.22), transparent 34%),
    #ffffff;
  box-shadow: 0 24px 54px rgba(0, 52, 111, 0.12);
  outline: none;
}

.about-mission-card:hover::after,
.about-mission-card:focus-visible::after {
  opacity: 1;
}

.about-card-index {
  color: rgba(0, 52, 111, 0.28);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.about-mission-card > .material-symbols-outlined,
.about-value-card > .material-symbols-outlined {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 14px;
  transition: transform 220ms ease, background 220ms ease;
}

.about-mission-card:hover > .material-symbols-outlined,
.about-value-card:hover > .material-symbols-outlined {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, var(--secondary), var(--primary-2));
}

.about-mission-card h3,
.about-value-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.18;
}

.about-mission-card p,
.about-value-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.about-values-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(67, 216, 242, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 244, 255, 0.76) 100%);
}

.about-values-section .section-heading.split {
  margin-bottom: 36px;
}

.about-values-section .section-heading h2 {
  max-width: 980px;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-value-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(194, 198, 211, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(67, 216, 242, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff, rgba(239, 244, 255, 0.78));
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.about-value-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--cyan), var(--secondary), var(--primary));
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 240ms ease;
}

.about-value-card:hover,
.about-value-card:focus-visible {
  transform: translateY(-10px);
  border-color: rgba(67, 216, 242, 0.82);
  box-shadow: 0 28px 64px rgba(0, 52, 111, 0.14);
  outline: none;
}

.about-value-card:hover::before,
.about-value-card:focus-visible::before {
  transform: scaleX(1);
}

.about-cta-band {
  overflow: hidden;
  padding: 84px 0;
}

.about-cta-band .cta-row {
  position: relative;
  z-index: 1;
}

.about-cta-band .button {
  min-height: 58px;
  padding-inline: 28px;
}

.reveal-hidden {
  transition-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 1100px) {
  .about-profile-box,
  .about-direction-layout {
    grid-template-columns: 1fr;
  }

  .about-profile-media {
    max-width: 760px;
    height: auto;
    min-height: 0;
    margin-left: 0;
  }

  .about-profile-media .about-image {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .about-profile-copy {
    max-width: 900px;
    min-height: 0;
  }

  .about-direction-layout {
    gap: 34px;
  }

  .about-vision-panel {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .about-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .about-page .hero.compact {
    min-height: 400px;
  }

  .about-profile-section,
  .about-direction-section,
  .about-values-section {
    padding: 58px 0;
  }

  .about-profile-copy h2,
  .about-vision-panel h2,
  .about-section-heading h2 {
    font-size: 1.95rem;
  }

  .about-profile-body p,
  .about-vision-panel p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .about-profile-media {
    padding: 10px;
    border-radius: 18px;
  }

  .about-profile-media .about-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3.35;
    border-radius: 14px;
  }

  .about-profile-copy {
    padding: 22px;
  }

  .about-profile-scope {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-profile-scope article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0 12px;
    align-items: center;
    padding: 14px;
  }

  .about-profile-scope .material-symbols-outlined {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .about-mission-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 22px;
  }

  .about-card-index {
    font-size: 1.8rem;
  }

  .about-mission-card:hover,
  .about-mission-card:focus-visible {
    transform: translateY(-4px);
  }

  .about-value-grid {
    grid-template-columns: 1fr;
  }

  .about-value-card {
    min-height: 0;
    padding: 24px;
  }
}

@keyframes clientMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-33.333%, 0, 0);
  }
}

.home-clients-section .client-marquee {
  --visible-client-count: 4;
  --client-slot-width: calc(min(calc(100vw - 32px), var(--container)) / var(--visible-client-count));
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-block: 12px;
  border: 0;
}

.home-clients-section .client-marquee::before,
.home-clients-section .client-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(48px, 8vw, 140px);
  pointer-events: none;
}

.home-clients-section .client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark-2), transparent);
}

.home-clients-section .client-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--dark), transparent);
}

.home-clients-section .client-strip {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 0;
  border: 0;
  animation: clientMarquee 28s linear infinite;
  will-change: transform;
}

.home-clients-section .client-track-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0;
  padding-right: 0;
  white-space: nowrap;
}

.home-clients-section .client-logo,
.home-clients-section .client-logo:nth-child(2n),
.home-clients-section .client-logo:nth-child(3n),
.home-clients-section .client-logo:last-child {
  flex: 0 0 auto;
  width: var(--client-slot-width);
  min-height: 116px;
  padding: 16px 24px;
  color: rgba(234, 241, 255, 0.78);
  background: transparent;
  border: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.home-clients-section .client-logo:hover {
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.home-clients-section .client-logo img {
  width: 100%;
  max-width: 230px;
  height: 78px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.45) opacity(0.74);
}

.home-clients-section .client-logo:hover img {
  filter: grayscale(0%) brightness(1.08) opacity(1);
  transform: scale(1.04);
}

.home-clients-section .client-logo span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-size: 0.95rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .home-clients-section .client-marquee {
    --visible-client-count: 2;
  }

  .home-clients-section .client-logo,
  .home-clients-section .client-logo:nth-child(2n),
  .home-clients-section .client-logo:nth-child(3n) {
    width: var(--client-slot-width);
    min-height: 92px;
    padding: 12px 16px;
  }

  .home-clients-section .client-logo img {
    max-width: 170px;
    height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-clients-section .client-strip {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .home-clients-section .client-logo {
    scroll-snap-align: center;
  }
}
