﻿:root {
  --bg: #fafafa;
  --text: #262b26;
  --accent: #8bc444;
  --muted: #737773;
  --line: #e5e7e5;
  --white: #ffffff;
  --footer: #262b26;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 400ms var(--ease), backdrop-filter 400ms var(--ease),
    box-shadow 400ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(250, 250, 250, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

.logo {
  position: relative;
  z-index: 110;
}

.logo img {
  width: 168px;
  height: auto;
}

.logo-light {
  display: none;
}

.header-actions {
  position: relative;
  z-index: 110;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-spka {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 4px;
  animation: heroSpkaFloat 3.6s ease-in-out infinite;
  transition: transform 300ms var(--ease);
}

.header-spka:hover {
  animation-play-state: paused;
  transform: translateY(-1px) scale(1.03);
}

.header-spka-logo {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}

.header-spka-logo svg {
  display: block;
  width: 64px;
  height: 19px;
}

.header-spka-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(139, 196, 68, 0.2) 28%,
    rgba(255, 255, 255, 0.75) 46%,
    rgba(194, 59, 46, 0.7) 58%,
    rgba(139, 196, 68, 0.25) 72%,
    transparent 100%
  );
  transform: translateX(-180%);
  animation: spkaShine 2.6s linear infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

@keyframes spkaShine {
  0% {
    transform: translateX(-160%);
  }
  100% {
    transform: translateX(280%);
  }
}

.burger {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
  transition: transform 400ms var(--ease), opacity 400ms var(--ease),
    background 400ms var(--ease);
}

.burger[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* Full-screen menu */
.site-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background:
    radial-gradient(ellipse 80% 50% at 70% -10%, rgba(139, 196, 68, 0.08), transparent 55%),
    #1c211c;
  padding: calc(var(--header-h) + 28px) 0 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease), visibility 400ms;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-menu-inner {
  max-width: 720px;
}

.site-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 12px;
}

.menu-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.38);
}

.menu-section a {
  display: block;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.12;
  color: #fafafa;
  padding: 4px 0;
  transition: color 400ms var(--ease), transform 400ms var(--ease);
  width: fit-content;
}

.menu-section a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

body.menu-open .logo-dark {
  display: none;
}

body.menu-open .logo-light {
  display: block;
}

body.menu-open .burger span {
  background: var(--accent);
}

body.menu-open .header-spka-logo {
  filter: brightness(1.45);
}

/* Hero */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 48px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  text-align: center;
  padding-top: 24px;
}

.hero-visual {
  position: absolute;
  inset: -20% -15% -10%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
  background:
    radial-gradient(
      ellipse 58% 48% at 50% 42%,
      rgba(139, 196, 68, 0.14) 0%,
      rgba(139, 196, 68, 0.07) 28%,
      rgba(139, 196, 68, 0.03) 48%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 42% 36% at 50% 48%,
      rgba(85, 128, 61, 0.06) 0%,
      transparent 65%
    );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 45%,
    #000 20%,
    rgba(0, 0, 0, 0.55) 50%,
    transparent 78%
  );
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 45%,
    #000 20%,
    rgba(0, 0, 0, 0.55) 50%,
    transparent 78%
  );
}

.hero-orb {
  position: absolute;
  width: min(780px, 56vw);
  max-width: none;
  height: auto;
  aspect-ratio: 1;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -52%);
  opacity: 0.38;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 900ms var(--ease) 120ms forwards;
}

.hero-focus {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 14px 18px;
  margin: 0 0 28px;
}

.hero-focus-sep {
  display: inline-block;
  width: 1px;
  height: 0.85em;
  background: var(--line);
  align-self: center;
}

.hero-focus-item {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.2;
}

.hero-title {
  margin: 0 0 24px;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.hero-lead {
  margin: 0 auto 40px;
  max-width: 640px;
  color: var(--muted);
}

.body-large {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
}

@keyframes heroSpkaFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px 14px 22px;
  background: var(--footer);
  color: var(--white);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 400ms var(--ease);
}

.cta:hover {
  background: #323832;
}

.cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text);
  font-size: 0;
  line-height: 0;
  flex-shrink: 0;
  transition: transform 400ms var(--ease);
}

.cta-arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8h9.2M8.2 3.8 12.5 8 8.2 12.2' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8h9.2M8.2 3.8 12.5 8 8.2 12.2' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.cta:hover .cta-arrow {
  transform: translateX(5px);
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Clients */
.clients {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-label {
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.clients .section-label {
  text-align: center;
  margin-bottom: 40px;
}

.client-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 52px;
}

.client-row li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 80px;
}

.client-row li img {
  display: block;
  width: auto;
  height: 56px;
  max-width: 200px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) brightness(0) invert(0.58);
  opacity: 0.85;
  transition: opacity 400ms var(--ease), filter 400ms var(--ease),
    transform 400ms var(--ease);
}

.client-row li:hover img {
  opacity: 1;
  filter: grayscale(1) brightness(0) invert(0.35);
  transform: translateY(-1px);
}

.client-row li img.client-logo--crest {
  height: 72px;
  max-width: 72px;
}

.client-row li img.client-logo--caam {
  height: 64px;
  max-width: 150px;
}

.client-row li img.client-logo--ministry {
  height: 58px;
  max-width: 240px;
}

/* Projects */
.projects,
.services,
.standards {
  padding: 120px 0;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 64px;
}

.section-title {
  margin: 0 0 20px;
  font-size: clamp(36px, 4vw, 68px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.project-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
  background:
    radial-gradient(circle at 30% 30%, rgba(139, 196, 68, 0.18), transparent 45%),
    linear-gradient(145deg, #e8ebe6 0%, #d5dad4 45%, #c4cbc2 100%);
}

.project-placeholder--spka {
  background:
    radial-gradient(circle at 70% 20%, rgba(139, 196, 68, 0.2), transparent 40%),
    linear-gradient(160deg, #dfe4dc 0%, #c9d0c6 50%, #aeb7ab 100%);
}

.project-placeholder--caam {
  background:
    radial-gradient(circle at 20% 70%, rgba(85, 128, 61, 0.16), transparent 45%),
    linear-gradient(200deg, #e4e8e2 0%, #ccd3c9 55%, #b5beb2 100%);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.project-card--photo .project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(250, 250, 250, 0.97) 0%,
      rgba(250, 250, 250, 0.78) 28%,
      rgba(232, 236, 230, 0.28) 55%,
      rgba(38, 43, 38, 0.12) 100%
    ),
    linear-gradient(
      125deg,
      rgba(139, 196, 68, 0.12) 0%,
      transparent 45%,
      rgba(85, 128, 61, 0.08) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.project-card--spka .project-image {
  object-position: 45% 35%;
  filter: grayscale(0.28) saturate(0.62) contrast(0.97) brightness(1.04);
}

.project-card--caam .project-image {
  object-position: 35% 40%;
  filter: grayscale(0.35) saturate(0.55) contrast(0.96) brightness(1.05);
}

.project-card:hover .project-placeholder,
.project-card:hover .project-image {
  transform: scale(1.02);
}

.project-card--spka:hover .project-image {
  filter: grayscale(0.15) saturate(0.75) contrast(0.99) brightness(1.03);
}

.project-card--caam:hover .project-image {
  filter: grayscale(0.2) saturate(0.7) contrast(0.98) brightness(1.04);
}

.project-body {
  position: relative;
  z-index: 2;
  padding: 36px;
  background: linear-gradient(to top, rgba(250, 250, 250, 0.96) 55%, rgba(250, 250, 250, 0));
}

.project-card--photo .project-body {
  background: transparent;
}

.project-body h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.project-body p {
  margin: 0 0 20px;
  max-width: 420px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: color 400ms var(--ease);
}

.text-link span {
  transition: transform 400ms var(--ease);
}

.text-link:hover {
  color: var(--muted);
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-item {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.service-number {
  display: block;
  margin-bottom: 28px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
}

.service-item h3 {
  margin: 0 0 16px;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 360px;
}

/* Standards */
.standards {
  padding-top: 80px;
  border-top: 1px solid var(--line);
}

.standards-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 36px 52px;
  margin-bottom: 36px;
}

.standards-row li {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 72px;
}

.standards-logo {
  display: block;
  width: auto;
  height: 60px;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(0.58);
  opacity: 0.88;
  transition: opacity 400ms var(--ease), filter 400ms var(--ease),
    transform 400ms var(--ease);
}

.standards-row .standards-logo--jata {
  height: 58px;
  max-width: 240px;
}

.standards-logo--niosh {
  height: 72px;
  max-width: 220px;
}

.standards-logo--tnb {
  height: 58px;
  max-width: 160px;
}

.standards-logo--cidb {
  height: 52px;
  max-width: 200px;
}

.standards-row li:hover .standards-logo {
  opacity: 1;
  filter: grayscale(1) brightness(0) invert(0.35);
  transform: translateY(-1px);
}

.standards-copy {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
}

.management-anchor {
  height: 0;
  overflow: hidden;
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: var(--bg);
  padding: 72px 0 28px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  max-width: 560px;
}

.footer-logo img {
  width: 156px;
  height: auto;
}

.footer-statement {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: rgba(250, 250, 250, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.12);
  margin-bottom: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.42);
}

.footer-col a {
  font-size: 15px;
  color: rgba(250, 250, 250, 0.78);
  transition: color 400ms var(--ease);
  width: fit-content;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-company {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(250, 250, 250, 0.92);
}

.footer-address {
  margin: 0;
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250, 250, 250, 0.55);
  max-width: 240px;
}

.footer-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-phones a {
  white-space: nowrap;
}

.wa-link,
a.contact-link.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
  vertical-align: middle;
}

.wa-icon {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  overflow: visible;
  color: #25d366;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 250, 0.72);
  transition: color 400ms var(--ease), transform 400ms var(--ease);
}

.footer-social a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(250, 250, 250, 0.42);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(250, 250, 250, 0.42);
  transition: color 400ms var(--ease);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 48px);
  }

  .project-grid,
  .service-grid {
    gap: 24px;
  }

  .project-card {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .hero-orb {
    width: min(312px, 70vw);
    top: 42%;
    opacity: 0.32;
  }

  .clients,
  .standards,
  .hero {
    overflow-x: hidden;
  }

  .container {
    width: calc(100% - 32px);
    max-width: 100%;
  }

  .logo img {
    width: 148px;
  }

  .header-spka-logo svg {
    width: 56px;
    height: 17px;
  }

  .header-actions {
    gap: 10px;
  }

  .site-menu-nav {
    gap: 32px;
  }

  .menu-section a {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero {
    min-height: auto;
    padding: 40px 0 72px;
  }

  .hero-title {
    font-size: clamp(36px, 9vw, 52px);
  }

  .hero-focus {
    margin-bottom: 20px;
    gap: 10px 14px;
  }

  .hero-lead {
    margin-bottom: 32px;
  }

  .cta {
    max-width: 100%;
  }

  .projects,
  .services,
  .standards,
  .site-footer {
    padding: 56px 0 24px;
  }

  .section-intro {
    margin-bottom: 40px;
  }

  .client-marquee {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent,
      #000 16px,
      #000 calc(100% - 16px),
      transparent
    );
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 16px,
      #000 calc(100% - 16px),
      transparent
    );
  }

  .client-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 32px;
    width: max-content;
    max-width: none;
    min-width: 100%;
    padding: 4px 0 8px;
    will-change: transform;
  }

  .client-row.is-marquee {
    animation: clientMarqueeLtr 36s linear infinite;
  }

  .client-row li {
    min-height: 56px;
    flex: 0 0 auto;
    max-width: none;
  }

  .client-row li img {
    height: 44px;
    max-width: none;
  }

  .client-row li img.client-logo--crest {
    height: 52px;
    max-width: 52px;
  }

  .client-row li img.client-logo--caam {
    height: 48px;
    max-width: 120px;
  }

  .client-row li img.client-logo--ministry {
    height: 46px;
    max-width: 200px;
  }

  .standards-marquee {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent,
      #000 16px,
      #000 calc(100% - 16px),
      transparent
    );
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 16px,
      #000 calc(100% - 16px),
      transparent
    );
  }

  .standards-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 32px;
    width: max-content;
    max-width: none;
    min-width: 100%;
    margin-bottom: 28px;
    will-change: transform;
  }

  .standards-row.is-marquee {
    animation: clientMarqueeLtr 32s linear infinite;
  }

  .standards-row li {
    min-height: 56px;
    min-width: 0;
    flex: 0 0 auto;
  }

  .standards-logo {
    height: 44px;
    max-width: none;
  }

  .standards-row .standards-logo--jata {
    height: 46px;
    max-width: 200px;
  }

  .standards-logo--niosh {
    height: 52px;
    max-width: 150px;
  }

  .standards-logo--tnb {
    height: 42px;
    max-width: 120px;
  }

  .standards-logo--cidb {
    height: 40px;
    max-width: 160px;
  }

  .project-grid,
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    padding-bottom: 28px;
  }

  .project-body {
    padding: 28px 24px;
  }

  .project-body h3 {
    font-size: clamp(26px, 7vw, 32px);
  }

  .project-body p {
    font-size: 15px;
  }

  .project-card--photo .project-media::after {
    background: linear-gradient(
      to top,
      rgba(250, 250, 250, 0.98) 0%,
      rgba(250, 250, 250, 0.94) 38%,
      rgba(250, 250, 250, 0.72) 58%,
      rgba(250, 250, 250, 0.22) 78%,
      rgba(38, 43, 38, 0.08) 100%
    );
  }

  .project-card--photo .project-body {
    background: linear-gradient(
      to top,
      rgba(250, 250, 250, 0.96) 0%,
      rgba(250, 250, 250, 0.88) 55%,
      rgba(250, 250, 250, 0) 100%
    );
  }

  .project-card--photo .project-body h3 {
    color: var(--text);
  }

  .project-card--photo .project-body p {
    color: #4a504a;
  }

  .project-card--photo .project-body .text-link {
    color: var(--text);
  }

  .service-item h3 {
    font-size: clamp(22px, 5.5vw, 28px);
  }

  .service-item p {
    max-width: none;
  }

  .footer-col--contact {
    grid-column: 1 / -1;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
  }

  .footer-address {
    max-width: none;
  }

  .footer-phones a {
    white-space: normal;
  }

  .footer-top {
    margin-bottom: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .project-card {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .logo img {
    width: 136px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .header-actions {
    gap: 12px;
  }

  .standards-logo--niosh {
    height: 48px;
    max-width: 140px;
  }

  .standards-logo--cidb {
    height: 34px;
    max-width: 140px;
  }

  .spka-partner-strip {
    flex-wrap: wrap;
    gap: 12px 14px;
  }

  .spka-partner-logo--jbpm {
    height: 44px;
  }

  .spka-partner-logo--spka {
    height: 24px;
  }

  .spka-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .spka-doc-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .spka-doc-sep {
    display: none;
  }

  .spka-register-phones {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 280px;
  }

  .page-hero {
    padding: calc(var(--header-h) + 36px) 0 48px;
  }
}

/* About page */
.about-section {
  padding: 112px 0;
}

.about-section--muted {
  background: #f3f5f2;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px 64px;
  align-items: start;
}

.about-prose p {
  margin: 0 0 20px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--muted);
}

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

.about-prose strong {
  color: var(--text);
  font-weight: 600;
}

.about-gallery {
  padding: 0 0 40px;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}

.about-gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e4e8e0;
  position: relative;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease);
}

.about-gallery-item--wide img {
  min-height: 360px;
}

.about-gallery-item:hover img {
  transform: scale(1.03);
}

.about-gallery-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}

.about-vm {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about-vm h3 {
  margin: 0 0 18px;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.about-vm p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
}

.about-vm p:last-of-type {
  margin-bottom: 0;
}

.about-vm-media {
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-vm-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.about-corp {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 40px 64px;
  align-items: start;
}

.about-corp-lead {
  margin: 0;
  color: var(--muted);
}

.about-facts {
  margin: 0;
  display: grid;
  gap: 0;
}

.about-facts > div {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) 1fr;
  gap: 16px 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.about-facts > div:last-child {
  border-bottom: 1px solid var(--line);
}

.about-facts dt {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-facts dd {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.45;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}

.about-facts a {
  transition: color 400ms var(--ease);
}

.about-facts a:hover {
  color: var(--muted);
}

.about-sep {
  margin: 0 8px;
  color: var(--line);
}

.about-reg-alt {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9em;
}

.about-band {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.about-band-media {
  position: absolute;
  inset: 0;
}

.about-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) saturate(0.8) brightness(0.55);
}

.about-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 43, 38, 0.88) 0%, rgba(38, 43, 38, 0.55) 55%, rgba(38, 43, 38, 0.35) 100%);
}

.about-band-content {
  position: relative;
  z-index: 1;
  padding: 96px 0;
  max-width: 720px;
}

.about-band .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.about-band .section-title {
  color: var(--white);
}

.about-band .body-large {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.78);
}

.about-band-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}

.about-band .text-link {
  color: rgba(255, 255, 255, 0.88);
}

.about-band .text-link:hover {
  color: var(--white);
}

.about-cta {
  padding: 120px 0;
  text-align: center;
}

.about-cta .section-title {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.about-cta .body-large {
  margin: 0 auto 36px;
  max-width: 540px;
  color: var(--muted);
}

.about-cta .body-large a {
  color: var(--text);
  font-weight: 500;
  transition: color 400ms var(--ease);
}

.about-cta .body-large a:hover {
  color: var(--muted);
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 28px;
}

@media (max-width: 1100px) {
  .about-split,
  .about-vm-grid,
  .about-corp,
  .about-gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery-item img,
  .about-gallery-item--wide img {
    min-height: 240px;
  }

  .about-facts > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 720px) {
  .about-section,
  .about-cta {
    padding: 80px 0;
  }

  .about-band-content {
    padding: 72px 0;
  }
}

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

/* Services page */
.page-services .page-hero {
  padding: calc(var(--header-h) + 40px) 0 40px;
}

.page-services .section-title {
  font-size: clamp(28px, 3.2vw, 44px);
  margin-bottom: 12px;
}

.page-services .section-copy {
  font-size: 16px;
  line-height: 1.5;
}

.svc-block {
  padding: 64px 0;
}

.svc-block--muted {
  background: #f3f5f2;
}

.svc-block-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px 40px;
  align-items: center;
  margin-bottom: 32px;
}

.svc-block-head--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.svc-block-head--reverse .svc-block-copy {
  order: 2;
}

.svc-block-head--reverse .svc-block-media {
  order: 1;
}

.svc-block-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e4e8e0;
  min-height: 200px;
}

.svc-block-media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.svc-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
}

.svc-offer-grid--media {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 16px;
}

.svc-offer {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.svc-offer h3 {
  margin: 0 0 8px;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.svc-offer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.svc-offer .text-link {
  margin-top: 10px;
  font-size: 14px;
}

.svc-offer--photo {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

.svc-offer--photo img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
  filter: grayscale(0.25) saturate(0.75) contrast(1.05);
}

.svc-offer--photo h3 {
  margin-bottom: 4px;
  font-size: 15px;
}

.svc-offer--photo p {
  font-size: 13px;
  line-height: 1.4;
}

.svc-cta {
  padding: 64px 0 88px;
  text-align: center;
}

.svc-cta .section-title {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

.svc-cta .body-large {
  margin: 0 auto 28px;
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.service-item .text-link {
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .svc-block-head,
  .svc-block-head--reverse,
  .svc-offer-grid--media {
    grid-template-columns: 1fr 1fr;
  }

  .svc-block-head--reverse .svc-block-copy,
  .svc-block-head--reverse .svc-block-media {
    order: unset;
  }
}

@media (max-width: 720px) {
  .svc-block {
    padding: 48px 0;
  }

  .svc-block-head,
  .svc-block-head--reverse,
  .svc-offer-grid,
  .svc-offer-grid--media {
    grid-template-columns: 1fr;
  }

  .svc-block-media,
  .svc-block-media img {
    min-height: 180px;
  }

  .svc-cta {
    padding: 48px 0 72px;
  }
}

/* Legal pages */
.page-hero--legal {
  padding: calc(var(--header-h) + 48px) 0 40px;
}

.page-legal .hero-title {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 12px;
}

.legal-updated {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.legal-section {
  padding: 0 0 96px;
}

.legal-content {
  max-width: 720px;
}

.legal-content article {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content article:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.legal-content p:last-child,
.legal-content ul:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 0 0 12px;
  padding-left: 1.2em;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 300ms var(--ease);
}

.legal-content a:hover {
  color: var(--muted);
}

.legal-cross {
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
}

/* Shared inner pages */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 72px;
  background:
    radial-gradient(ellipse 70% 55% at 10% 0%, rgba(139, 196, 68, 0.12), transparent 55%),
    var(--bg);
}

.page-hero-inner {
  max-width: 820px;
}

.page-hero-lead {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
}

/* Contact page */
.contact-section {
  padding: 0 0 120px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.2fr;
  gap: 48px 56px;
  align-items: stretch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-block .section-label {
  margin-bottom: 14px;
}

.contact-company {
  margin: 0 0 12px;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-address {
  margin: 0 0 16px;
  font-style: normal;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
}

.contact-link {
  display: block;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 400ms var(--ease);
}

.contact-link:hover {
  color: var(--muted);
}

.contact-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-map {
  min-height: 480px;
  border: 1px solid rgba(38, 43, 38, 0.12);
  border-radius: 20px;
  overflow: hidden;
  background: #1a1c1a;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.95) contrast(0.92);
}

/* Leadership page */

.mgmt-intro {
  padding: 0 0 40px;
}

.mgmt-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px 48px;
  align-items: center;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

.mgmt-intro-copy .section-label {
  margin-bottom: 20px;
}

.mgmt-intro-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
}

.mgmt-intro-copy p:last-child {
  margin-bottom: 0;
}

.mgmt-intro-media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e4e8e0;
  min-height: 280px;
}

.mgmt-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15) saturate(0.85);
}

.mgmt-team {
  padding: 96px 0;
}

.mgmt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 28px;
}

.mgmt-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mgmt-photo {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: #e4e8e0;
  border: 1px solid var(--line);
}

.mgmt-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(0.2) saturate(0.8) contrast(1.02);
  transition: transform 700ms var(--ease), filter 400ms var(--ease);
}

.mgmt-card:hover .mgmt-photo img {
  transform: scale(1.03);
  filter: grayscale(0.08) saturate(0.9) contrast(1.02);
}

.mgmt-role {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.mgmt-body h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.mgmt-credentials {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.mgmt-body p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.mgmt-cta {
  padding: 0 0 120px;
  text-align: center;
}

.mgmt-cta .section-title {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

.mgmt-cta .body-large {
  margin: 0 auto 32px;
  max-width: 520px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .contact-layout,
  .mgmt-intro-inner {
    grid-template-columns: 1fr;
  }

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

  .mgmt-intro-media,
  .mgmt-intro-media img {
    min-height: 220px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding: calc(var(--header-h) + 48px) 0 56px;
  }

  .mgmt-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mgmt-team {
    padding: 72px 0;
  }

  .mgmt-cta {
    padding-bottom: 80px;
  }

  .contact-section {
    padding-bottom: 80px;
  }
}

/* SPKA page */
.page-spka .spka-hero {
  position: relative;
  padding: var(--header-h) 0 64px;
  overflow: hidden;
  background: var(--bg);
}

.page-spka .spka-hero .hero-focus {
  margin-bottom: 18px;
}

.spka-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px 48px;
  align-items: center;
}

.spka-hero-inner {
  max-width: 640px;
}

.spka-hero-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.spka-hero-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 360px;
  background: #e4e8e0;
}

.spka-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.12) saturate(0.9) contrast(1.02);
}

.spka-hero-inner .hero-focus,
.page-hero .hero-focus {
  justify-content: flex-start;
}

.spka-partner-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 2px 0;
}

.spka-partner-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.spka-partner-logo--jbpm {
  height: 52px;
}

.spka-partner-logo--spka {
  height: 28px;
}

.spka-partner-sep {
  width: 1px;
  height: 28px;
  background: var(--line);
  flex-shrink: 0;
}

.spka-hero .hero-title {
  max-width: 14ch;
}

.page-spka .spka-hero-title {
  color: transparent;
  background-image:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 40%,
      rgba(226, 74, 61, 0.2) 46%,
      rgba(226, 74, 61, 0.95) 50%,
      rgba(194, 59, 46, 0.55) 54%,
      transparent 62%,
      transparent 100%
    ),
    linear-gradient(var(--text), var(--text));
  background-size: 240% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: 130% 0, 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: spkaHeroTitleShine 6.5s ease-in-out infinite;
}

@keyframes spkaHeroTitleShine {
  0%,
  18% {
    background-position: 130% 0, 0 0;
  }
  58%,
  100% {
    background-position: -50% 0, 0 0;
  }
}

.spka-hero-tagline {
  margin: 0 0 40px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--muted);
}

.spka-hero .hero-lead {
  margin: 0 0 40px;
  max-width: 680px;
}

.spka-with-media {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px 48px;
  align-items: center;
}

.spka-with-media--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.spka-intro-tight {
  margin-bottom: 0;
}

.spka-figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e4e8e0;
}

.spka-figure img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease);
}

.spka-figure--tall img {
  min-height: 380px;
}

.spka-figure:hover img {
  transform: scale(1.02);
}

.spka-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}

.page-spka .spka-actions {
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px 16px;
  width: max-content;
  max-width: 100%;
}

.page-spka .spka-doc-links {
  flex-wrap: nowrap;
  gap: 8px 8px;
}

.page-spka .spka-actions .cta {
  white-space: nowrap;
  flex-shrink: 0;
}

.page-spka .spka-hero .hero-title,
.page-spka .spka-hero-title {
  max-width: 14ch;
}

.spka-doc-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px 10px;
  font-size: 14px;
  font-weight: 500;
}

.spka-doc-links a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 7px;
  white-space: nowrap;
  color: var(--text);
  transition: color 200ms var(--ease);
}

.spka-doc-links a:hover {
  color: var(--accent);
}

.spka-doc-icon {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.spka-doc-sep {
  color: var(--line);
  font-weight: 400;
  user-select: none;
}

.cta--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.cta--ghost .cta-arrow {
  background: rgba(38, 43, 38, 0.08);
}

.cta--ghost:hover {
  background: rgba(38, 43, 38, 0.05);
  border-color: transparent;
}

.spka-section {
  padding: 112px 0;
}

.spka-section--muted {
  background: #f3f5f2;
}

.spka-prose {
  max-width: 680px;
}

.spka-prose p {
  margin: 0 0 20px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--muted);
}

.spka-prose p:last-child {
  margin-bottom: 0;
}

.spka-prose strong {
  color: var(--text);
  font-weight: 600;
}

.spka-faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.spka-faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 0 20px;
}

.spka-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.spka-faq-item summary::-webkit-details-marker {
  display: none;
}

.spka-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 400;
}

.spka-faq-item[open] summary::after {
  content: "–";
}

.spka-faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 68ch;
}

.spka-faq-item strong {
  color: var(--text);
  font-weight: 600;
}

.spka-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}

.spka-feature {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.spka-feature h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.spka-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.spka-feature:nth-child(4),
.spka-feature:nth-child(5) {
  grid-column: span 1;
}

.spka-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px 64px;
  align-items: start;
}

.spka-meta {
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spka-meta-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.spka-meta-value {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.spka-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  counter-reset: none;
}

.spka-steps--five {
  grid-template-columns: repeat(5, 1fr);
}

.spka-steps li {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.spka-step-num {
  display: block;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.spka-steps h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.spka-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.spka-section.spka-section--panic {
  background: var(--bg);
  color: var(--text);
  padding: 64px 0;
}

.spka-section--panic .section-label {
  margin-bottom: 12px;
}

.spka-panic-copy {
  max-width: 560px;
}

.spka-panic-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.spka-highlight {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px 48px;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spka-section--panic .spka-highlight {
  padding: 0;
  border: 0;
  gap: 28px 36px;
  align-items: center;
  grid-template-columns: 1.1fr 1fr;
}

.spka-title--panic {
  color: #e24a3d;
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  white-space: nowrap;
}

.spka-title-touch {
  display: inline-block;
  transform-origin: center bottom;
  color: transparent;
  background-image: linear-gradient(
    105deg,
    #8bc444 0%,
    #8bc444 42%,
    #e24a3d 58%,
    #e24a3d 100%
  );
  background-size: 240% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: spkaTouchColor 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.spka-figure--panic {
  overflow: hidden;
  margin: 0;
}

.spka-panic-media {
  position: relative;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  overflow: hidden;
  line-height: 0;
}

.spka-figure.spka-figure--panic:hover img,
.spka-figure--panic:hover img {
  transform: none;
}

.spka-figure--panic img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: 16.3% 52.2%;
  display: block;
  transition: none;
}

.spka-panic-marker {
  position: absolute;
  left: 16.3%;
  top: 52.2%;
  width: 0;
  height: 0;
  z-index: 2;
  pointer-events: none;
}

.spka-panic-marker-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 2px solid #e24a3d;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(226, 74, 61, 0.45);
  animation: spkaPanicPulse 1.8s ease-out infinite;
}

.spka-panic-marker-label {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(226, 74, 61, 0.95);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.spka-panic-marker-label::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 6px solid rgba(226, 74, 61, 0.95);
}

@keyframes spkaPanicPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(226, 74, 61, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(226, 74, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(226, 74, 61, 0);
  }
}

@keyframes spkaTouchColor {
  0%,
  12% {
    background-position: 100% 0;
    filter: drop-shadow(0 0 0 rgba(226, 74, 61, 0));
    transform: scale(1);
  }
  38%,
  62% {
    background-position: 0% 0;
    filter: drop-shadow(0 0 14px rgba(226, 74, 61, 0.45));
    transform: scale(1.03);
  }
  88%,
  100% {
    background-position: 100% 0;
    filter: drop-shadow(0 0 0 rgba(226, 74, 61, 0));
    transform: scale(1);
  }
}

.spka-highlight-lead {
  margin: 0 0 14px;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.3;
  max-width: 34ch;
  color: var(--text);
}

.spka-section--panic .spka-prose {
  margin-top: 0;
  max-width: 52ch;
}

.spka-section--panic .spka-prose p {
  margin-bottom: 12px;
  font-size: clamp(15px, 1.2vw, 17px);
}

.spka-mini-flow {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 8px 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}

.spka-mini-flow > li:not(.spka-mini-flow-arrow) {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  padding: 0;
  border: 0;
}

.spka-mini-flow-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.spka-mini-flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  background: #e24a3d;
  color: #fff;
}

.spka-mini-flow-icon svg {
  display: block;
}

.spka-mini-flow-num {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #e24a3d;
  line-height: 1;
}

.spka-mini-flow h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.spka-mini-flow p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.spka-mini-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  align-self: flex-start;
  color: var(--muted);
  height: 34px;
  margin-top: 0;
  opacity: 0.7;
}

.spka-mini-flow-arrow svg {
  display: block;
}

.spka-premises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 24px;
  margin: 48px 0;
  padding: 0;
  list-style: none;
}

.spka-premises li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.spka-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  padding-top: 8px;
}

.spka-note p {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.spka-project {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px 56px;
  align-items: center;
}

.spka-project-media {
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e4e8e0;
}

.spka-project-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 700ms var(--ease);
}

.spka-project:hover .spka-project-media img {
  transform: scale(1.02);
}

.spka-project-body h3 {
  margin: -8px 0 20px;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.spka-project-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  max-width: 520px;
}

.spka-project-body .text-link {
  margin-top: 12px;
}

.spka-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.spka-price {
  padding: 32px 0 8px;
  border-top: 1px solid var(--line);
}

.spka-price h3 {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.spka-price-value {
  margin: 0 0 6px;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.spka-price-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.spka-final {
  padding: 120px 0;
  scroll-margin-top: calc(var(--header-h) + 12px);
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(139, 196, 68, 0.16), transparent 60%),
    var(--bg);
  text-align: center;
}

.spka-final .section-label {
  margin-bottom: 16px;
}

.spka-final .section-title {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.spka-final .body-large {
  margin: 0 auto 28px;
  max-width: 520px;
  color: var(--muted);
}

.spka-register-cta {
  margin-bottom: 36px;
}

.spka-register-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.spka-register-email {
  display: inline-block;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 200ms var(--ease);
}

.spka-register-email:hover {
  color: var(--accent);
}

.spka-register-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
}

.spka-register-phones a {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  transition: color 200ms var(--ease);
}

.spka-register-phones a:hover {
  color: var(--text);
}

@media (max-width: 1100px) {
  .spka-feature-grid,
  .spka-steps,
  .spka-steps--five,
  .spka-premises,
  .spka-pricing {
    grid-template-columns: 1fr 1fr;
  }

  .spka-hero-grid,
  .spka-with-media,
  .spka-with-media--reverse,
  .spka-split,
  .spka-highlight,
  .spka-project {
    grid-template-columns: 1fr;
  }

  .spka-section.spka-section--panic {
    padding: 48px 0;
  }

  .spka-section--panic .spka-highlight {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
  }

  .spka-panic-copy {
    max-width: none;
  }

  .spka-title--panic {
    white-space: normal;
    font-size: clamp(28px, 7vw, 36px);
  }

  .spka-mini-flow {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .spka-mini-flow-arrow {
    display: none;
  }

  .spka-mini-flow > li:not(.spka-mini-flow-arrow) {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .spka-mini-flow h3 {
    font-size: 14px;
  }

  .spka-mini-flow p {
    font-size: 12px;
    line-height: 1.4;
  }

  .spka-panic-media {
    aspect-ratio: 2 / 1;
  }

  .spka-hero-media,
  .spka-hero-media img,
  .spka-project-media,
  .spka-project-media img,
  .spka-figure img,
  .spka-figure--tall img {
    min-height: 260px;
  }

  .spka-figure--panic img {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .page-spka .spka-section--panic .spka-highlight {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .page-spka .spka-panic-copy,
  .page-spka .spka-panic-visual {
    display: contents;
  }

  .page-spka .spka-section--panic .section-label {
    order: 1;
    margin-bottom: 10px;
  }

  .page-spka .spka-title--panic {
    order: 2;
    margin-bottom: 10px;
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.15;
  }

  .page-spka .spka-highlight-lead {
    order: 3;
    margin: 0 0 18px;
    max-width: none;
    font-size: clamp(18px, 4.6vw, 22px);
  }

  .page-spka .spka-mini-flow {
    order: 4;
    margin: 0 0 16px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .page-spka .spka-mini-flow-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .page-spka .spka-figure--panic {
    order: 5;
    margin: 0 0 18px;
  }

  .page-spka .spka-panic-media {
    aspect-ratio: 16 / 9;
  }

  .page-spka .spka-section--panic .spka-prose {
    order: 6;
    max-width: none;
  }

  .page-spka .spka-section--panic .spka-prose p {
    font-size: 15px;
  }

  .page-spka .spka-hero {
    padding: var(--header-h) 0 40px;
  }

  .page-spka .spka-hero-grid {
    gap: 0;
  }

  .page-spka .spka-hero-inner,
  .page-spka .spka-hero-aside {
    display: contents;
  }

  .page-spka .spka-hero .hero-focus {
    order: 1;
    margin-bottom: 12px;
  }

  .page-spka .spka-hero .hero-title {
    order: 2;
    max-width: none;
    margin-bottom: 12px;
    font-size: clamp(36px, 9.5vw, 50px);
    word-spacing: 100vw;
  }

  .page-spka .spka-hero-tagline {
    order: 3;
    margin: 0 0 18px;
    font-size: clamp(17px, 4.4vw, 20px);
    line-height: 1.35;
  }

  .page-spka .spka-partner-strip {
    order: 4;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 0;
    margin: 0 0 10px;
    border: 0;
  }

  .page-spka .spka-partner-sep {
    display: block;
  }

  .page-spka .spka-partner-logo--jbpm {
    height: 40px;
  }

  .page-spka .spka-partner-logo--spka {
    height: 20px;
  }

  .page-spka .spka-hero-media {
    order: 5;
    margin: 0 0 20px;
    border-radius: 14px;
    min-height: 180px;
  }

  .page-spka .spka-hero-media img {
    min-height: 180px;
    max-height: 220px;
    width: 100%;
    object-fit: cover;
  }

  .page-spka .spka-actions {
    order: 6;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }

  .page-spka .spka-actions .cta {
    width: auto;
  }

  .page-spka .spka-doc-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    font-size: 12px;
    gap: 6px 8px;
  }

  .page-spka .spka-doc-links a {
    flex: 0 0 auto;
    gap: 5px;
    white-space: nowrap;
  }

  .page-spka .spka-doc-icon {
    width: 14px;
    height: 14px;
  }

  .page-spka .spka-doc-sep {
    display: inline;
    flex: 0 0 auto;
  }

  .spka-section,
  .spka-final {
    padding: 80px 0;
  }

  .spka-feature-grid,
  .spka-steps,
  .spka-steps--five,
  .spka-premises,
  .spka-pricing {
    grid-template-columns: 1fr;
  }

  .page-myaims .spka-hero .hero-title {
    max-width: none;
  }

  .page-myaims .spka-hero-media,
  .page-myaims .spka-hero-media img {
    min-height: 220px;
  }

  .spka-hero .hero-lead {
    margin-bottom: 28px;
  }

  .page-myaims .myaims-caam-mark {
    max-width: 240px;
    padding: 16px;
  }
}

/* MyAIMS page */
.page-myaims .myaims-hero .hero-title {
  max-width: 12ch;
}

.page-myaims .myaims-caam-mark {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  padding: 24px;
}

.page-myaims .spka-hero-media img {
  object-position: center 30%;
  filter: saturate(0.85) contrast(1.02);
}

/* Experience page */
.exp-list {
  padding: 0 0 40px;
}

.exp-intro {
  margin: 20px 0 0;
  max-width: 720px;
  color: var(--muted);
}

.exp-index {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.exp-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
  gap: 28px 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.exp-row-main h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.exp-row-main p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.exp-row-meta {
  text-align: right;
}

.exp-value {
  margin: 0 0 6px;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.exp-period {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.exp-sectors {
  padding: 96px 0;
}

.exp-sector-grid {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.exp-sector-grid li {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.exp-cta {
  padding: 0 0 120px;
  text-align: center;
}

.exp-cta .section-title {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.exp-cta .body-large {
  margin: 0 auto 32px;
  max-width: 560px;
  color: var(--muted);
}

@media (max-width: 800px) {
  .exp-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .exp-row-meta {
    text-align: left;
  }

  .exp-sector-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .exp-sector-grid {
    grid-template-columns: 1fr;
  }

  .exp-sectors {
    padding: 72px 0;
  }

  .exp-cta {
    padding-bottom: 80px;
  }
}

/* Homepage SPKA notice */
.spka-notice {
  width: min(360px, calc(100% - 40px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 24px 64px rgba(38, 43, 38, 0.14);
}

.spka-notice::backdrop {
  background: rgba(38, 43, 38, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.spka-notice[open] {
  animation: spkaNoticeIn 320ms var(--ease) both;
}

.spka-notice[open]::backdrop {
  animation: spkaNoticeBackdropIn 280ms var(--ease) both;
}

@keyframes spkaNoticeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spkaNoticeBackdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.spka-notice-panel {
  position: relative;
  padding: 28px 28px 24px;
  text-align: left;
}

.spka-notice-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #a3a8a3;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  transition: color 200ms var(--ease);
}

.spka-notice-close:hover,
.spka-notice-close:focus,
.spka-notice-close:focus-visible {
  background: transparent;
  color: #c23b2e;
  outline: none;
  box-shadow: none;
}

.spka-notice-logo {
  display: flex;
  justify-content: flex-start;
  margin: 4px 0 14px;
}

.spka-notice-logo svg {
  display: block;
  width: 100px;
  height: auto;
}

.spka-notice-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.spka-notice-text {
  margin: 0 0 18px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.spka-notice-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #c23b2e;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 200ms var(--ease);
}

.spka-notice-cta:hover {
  background: #a83226;
}

.spka-notice-cta span {
  transition: transform 200ms var(--ease);
}

.spka-notice-cta:hover span {
  transform: translateX(3px);
}

@keyframes clientMarqueeLtr {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hero-content,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .spka-notice[open],
  .spka-notice[open]::backdrop {
    animation: none;
  }
}
