:root {
  --color-blue: #061e5c;
  --color-blue-900: #03143f;
  --color-blue-800: #08266d;
  --color-blue-100: #eaf0ff;
  --color-yellow: #ffb41d;
  --color-yellow-dark: #9a6000;
  --color-white: #ffffff;
  --color-ink: #101b36;
  --color-muted: #5c6578;
  --color-line: #dfe5f0;
  --color-surface: #f6f8fc;
  --glass: rgba(255, 255, 255, 0.86);
  --mesh-yellow: rgba(255, 180, 29, 0.12);
  --mesh-navy: rgba(6, 30, 92, 0.07);
  --hairline: rgba(6, 30, 92, 0.08);
  --shadow-sm: 0 12px 30px rgba(6, 30, 92, 0.08);
  --shadow-lg: 0 28px 70px rgba(6, 30, 92, 0.14);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --container: 75rem;
  --header-height: 4.4rem;
  --transition: 220ms ease;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

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

html {
  color-scheme: light;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--safe-top) + 1rem);
}

body {
  position: relative;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 46% at 100% -8%, var(--mesh-yellow), transparent 58%),
    radial-gradient(ellipse 55% 40% at 0% 18%, var(--mesh-navy), transparent 55%),
    radial-gradient(circle, rgba(6, 30, 92, 0.055) 1px, transparent 1.2px);
  background-size: auto, auto, 1.75rem 1.75rem;
  content: "";
}

.site-header,
main,
.site-footer,
.site-footer-legal {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

main {
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 4px;
}

::selection {
  color: var(--color-white);
  background: var(--color-blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-blue);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.032em;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  max-width: 12ch;
}

h1 em {
  color: var(--color-blue);
  font-style: normal;
  text-decoration-color: var(--color-yellow);
  text-decoration-line: underline;
  text-decoration-thickness: 0.07em;
  text-underline-offset: 0.18em;
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.05rem, 4.4vw, 3.35rem);
  max-width: 18ch;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.22rem, 2vw, 1.45rem);
}

p {
  color: var(--color-muted);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
  padding-inline: var(--safe-left) var(--safe-right);
}

.line-break {
  display: inline;
}

.section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8rem);
  scroll-margin-top: var(--header-height);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: 0.5rem;
  color: var(--color-white);
  background: var(--color-blue);
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: var(--color-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 1.9rem;
  height: 0.2rem;
  transform-origin: left center;
  border-radius: 99px;
  background: var(--color-yellow);
}

.eyebrow-light {
  color: var(--color-white);
}

.section-lead {
  max-width: 43rem;
  color: #3f4a62;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered .section-lead {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.7rem;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
}

.button svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform var(--transition);
}

.button:hover {
  transform: translateY(-3px);
}

.button:active {
  transform: translateY(-1px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: var(--color-white);
  background: var(--color-blue);
  box-shadow: 0 12px 25px rgba(6, 30, 92, 0.22);
}

.button-primary:hover {
  background: var(--color-blue-800);
  box-shadow: 0 16px 32px rgba(6, 30, 92, 0.28);
}

.button-secondary {
  border-color: #c8d1e2;
  color: var(--color-blue);
  background: rgba(255, 255, 255, 0.8);
}

.button-secondary:hover {
  border-color: var(--color-blue);
  background: var(--color-white);
}

.button-yellow {
  color: var(--color-blue-900);
  background: var(--color-yellow);
  box-shadow: 0 14px 32px rgba(255, 180, 29, 0.22);
}

.button-yellow:hover {
  background: #ffc34d;
  box-shadow: 0 18px 36px rgba(255, 180, 29, 0.28);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--color-white);
  background: transparent;
}

.button-ghost:hover {
  border-color: var(--color-yellow);
  background: rgba(255, 255, 255, 0.06);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--color-blue);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link svg {
  width: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform var(--transition);
}

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

.text-link:hover svg {
  transform: translateX(3px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding-top: var(--safe-top);
  border-bottom: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.js .site-header {
  animation: header-in 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-0.85rem);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(6, 30, 92, 0.07);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex: 0 1 auto;
  min-width: 0;
  width: min(13.25rem, calc(100% - 4.25rem));
  max-width: 13.25rem;
  min-height: 2.5rem;
  align-items: center;
}

.brand img {
  width: 100%;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand:hover img {
  transform: scale(1.03);
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  color: var(--color-blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.nav-toggle {
  display: inline-flex;
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  width: 2.85rem;
  height: 2.85rem;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 0.7rem;
  color: var(--color-blue);
  background: var(--color-white);
  cursor: pointer;
}

.nav-toggle-lines {
  display: grid;
  width: 1.25rem;
  gap: 0.27rem;
}

.nav-toggle-lines span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(2) {
  opacity: 0;
}

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

.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.2rem, 1.1vw, 1rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  display: flex;
  min-height: 2.6rem;
  align-items: center;
  padding-inline: 0.65rem;
  color: #35405a;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}

.primary-nav a::after {
  position: absolute;
  right: 0.65rem;
  bottom: 0.22rem;
  left: 0.65rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 99px;
  background: var(--color-yellow);
  content: "";
  transition: transform var(--transition);
}

.primary-nav a:hover,
.primary-nav a.is-active,
.primary-nav a[aria-current="page"] {
  color: var(--color-blue);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-nav .nav-contact {
  margin-left: 0.25rem;
  padding-inline: 1rem;
  border-radius: 0.65rem;
  color: var(--color-blue-900);
  background: var(--color-yellow);
}

.primary-nav .nav-contact:hover,
.primary-nav .nav-contact.is-active,
.primary-nav .nav-contact[aria-current="page"] {
  color: var(--color-blue-900);
  background: #ffc34d;
}

.primary-nav .nav-contact::after {
  display: none;
}

.js .primary-nav li {
  animation: rise-in 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js .primary-nav li:nth-child(1) { animation-delay: 140ms; }
.js .primary-nav li:nth-child(2) { animation-delay: 200ms; }
.js .primary-nav li:nth-child(3) { animation-delay: 260ms; }
.js .primary-nav li:nth-child(4) { animation-delay: 320ms; }
.js .primary-nav li:nth-child(5) { animation-delay: 380ms; }

/* Hero */
.hero {
  display: grid;
  align-items: start;
  padding-block: clamp(1.5rem, 3.2vw, 2.4rem) clamp(3.25rem, 7vw, 5.75rem);
  overflow: hidden;
  color: var(--color-white);
  background: #03143f;
}

.hero-network {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero h1 {
  max-width: 11.4em;
  color: var(--color-white);
  font-size: clamp(2.45rem, 5.8vw, 3.55rem);
  font-weight: 600;
  line-height: 1.3;
}

.hero h1 em {
  color: var(--color-yellow);
  text-decoration-color: rgba(255, 180, 29, 0.7);
  text-decoration-thickness: 0.035em;
}

@media (min-width: 64rem) {
  .hero {
    min-height: calc(100svh - var(--header-height));
    align-items: start;
  }
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 180, 29, 0.35), transparent);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 1.85rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.85rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 34rem;
  margin: 0;
}

.hero-stats div {
  padding-right: 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 320ms ease;
}

.hero-stats div:hover {
  transform: translateY(-2px);
}

.hero-stats div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-stats dt {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 600;
}

.hero-stats dd {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 30, 92, 0.1);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: 0 24px 60px rgba(6, 30, 92, 0.16);
}

.visual-frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  content: "";
  pointer-events: none;
}

.hero-frame {
  border-radius: clamp(1rem, 4vw, var(--radius-lg));
  will-change: transform;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual.is-visible .hero-frame img {
  animation: image-settle 1.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.visual-status-group {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.55rem;
  left: 1rem;
  top: 1rem;
  max-width: calc(100% - 2rem);
}

.visual-status {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  transition: transform 320ms ease, box-shadow 320ms ease;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: var(--color-blue);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.visual-status:hover {
  transform: translateX(4px);
}

.visual-status-primary {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

.visual-status-secondary {
  position: absolute;
  left: 1rem;
  top: 1rem;
}

.status-dot {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 0 5px rgba(255, 180, 29, 0.18);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(255, 180, 29, 0.18);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(255, 180, 29, 0.08);
  }
}

/* Services */
.services {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--color-surface);
}

.services .section-heading {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.services-grid {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  scroll-margin-top: calc(var(--header-height) + 1rem);
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 10px 35px rgba(6, 30, 92, 0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.js [data-reveal].is-visible.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(6, 30, 92, 0.18);
  box-shadow: var(--shadow-sm);
}

.service-image {
  position: relative;
  overflow: hidden;
  background: #f5f7fb;
}

.service-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  transition: transform 500ms ease;
}

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

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 1.45rem 1.35rem;
}

.service-body p {
  margin-bottom: 1.1rem;
  font-size: 0.94rem;
}

.service-body ul {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 0.35rem;
  padding: 0;
  list-style: none;
}

.service-body li {
  position: relative;
  padding-left: 1.15rem;
  color: #39445c;
  font-size: 0.82rem;
  font-weight: 600;
}

.service-body li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--color-yellow);
  content: "";
}

.js .service-card.is-visible .service-body li {
  animation: rise-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js .service-card.is-visible .service-body li:nth-child(1) { animation-delay: 140ms; }
.js .service-card.is-visible .service-body li:nth-child(2) { animation-delay: 210ms; }
.js .service-card.is-visible .service-body li:nth-child(3) { animation-delay: 280ms; }

.process {
  display: grid;
  gap: 1.75rem;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  padding: clamp(1.35rem, 3vw, 2rem) 0 0;
  border-top: 1px solid var(--color-line);
}

.process-intro h3 {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.process-steps {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.85rem;
}

.process-steps li:not(:last-child)::after {
  position: absolute;
  top: 2.3rem;
  left: 1.15rem;
  width: 2px;
  height: calc(100% - 2.3rem + 1.25rem);
  background: linear-gradient(180deg, var(--color-yellow), rgba(6, 30, 92, 0.18));
  content: "";
}

.process-steps > li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 50%;
  color: var(--color-blue-900);
  background: var(--color-yellow);
  font-size: 0.67rem;
  font-weight: 800;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.process-steps li:hover > span,
.process-steps li.is-visible > span {
  box-shadow: 0 0 0 6px rgba(255, 180, 29, 0.16);
}

.process-steps li:hover > span {
  transform: scale(1.08);
}

.process-steps strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--color-blue);
}

.process-steps p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

/* About */
.about {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--color-white);
}

.about-grid {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 5.5rem);
}

.about-visual {
  position: relative;
}

.about-visual picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-visual:hover img {
  transform: scale(1.04);
}

.about-copy .eyebrow {
  margin-bottom: 0;
  padding-bottom: 1.15rem;
}

.about-copy-body > p {
  margin-bottom: 1.15rem;
}

.about-copy-body > p:last-child {
  margin-bottom: 0;
}

.about-principles {
  position: relative;
  margin-top: clamp(1.35rem, 3vw, 2.15rem);
  padding-block: 0;
  overflow: hidden;
  color: var(--color-ink);
  background: var(--color-white);
}

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

.about-flip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-flip-card {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  perspective: 64rem;
}

.about-flip-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16.25rem;
  transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-flip-card:hover .about-flip-inner,
.about-flip-card:focus-visible .about-flip-inner,
.about-flip-card.is-flipped .about-flip-inner {
  transform: rotateY(180deg);
}

.about-flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.4rem 1.2rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.about-flip-icon {
  display: grid;
  width: 5rem;
  height: 5rem;
  place-items: center;
  border-radius: 50%;
}

.about-flip-icon svg {
  width: 2.45rem;
  height: 2.45rem;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-flip-icon-process {
  background: #fff3d0;
  box-shadow: 0 0 0 8px rgba(255, 180, 29, 0.16);
}

.about-flip-icon-process svg {
  stroke: #c47b00;
}

.about-flip-icon-quality {
  background: #d9f4ea;
  box-shadow: 0 0 0 8px rgba(16, 163, 116, 0.14);
}

.about-flip-icon-quality svg {
  stroke: #0d8a62;
}

.about-flip-icon-secure {
  background: #dce8ff;
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.12);
}

.about-flip-icon-secure svg {
  stroke: #1d4ed8;
}

.about-flip-icon-partner {
  background: #ffe4dc;
  box-shadow: 0 0 0 8px rgba(234, 88, 12, 0.12);
}

.about-flip-icon-partner svg {
  stroke: #c2410c;
}

.about-flip-front strong {
  max-width: 12.5rem;
  color: var(--color-blue);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.about-flip-back {
  transform: rotateY(180deg);
  background: var(--color-white);
}

.about-flip-back p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  text-align: center;
}

/* Products */
.products {
  overflow: hidden;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-white);
  background: var(--color-blue-900);
}

.products-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: radial-gradient(circle at 65% 50%, black, transparent 72%);
}

.products .container {
  position: relative;
  z-index: 1;
}

.products .section-heading h2 {
  max-width: 22em;
}

.products .section-heading .section-lead {
  max-width: 46rem;
}

.section-heading-light h2,
.section-heading-light .eyebrow {
  color: var(--color-white);
}

.section-heading-light .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

.product {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.26);
}

.product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 180, 29, 0.35);
  border-radius: 999px;
  color: var(--color-yellow);
  background: rgba(255, 180, 29, 0.08);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-badge i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 0 5px rgba(255, 180, 29, 0.12);
}

.product-category {
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-bottom: 0.75rem;
  color: var(--color-white);
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
}

.product-description {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.product-image {
  min-height: 14rem;
  overflow: hidden;
}

.product-image picture,
.product-image img {
  width: 100%;
  height: 100%;
}

.product-image img {
  min-height: 14rem;
  object-fit: cover;
  object-position: center;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-features-label {
  margin: 0 0 1rem;
  color: var(--color-yellow);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.product-feature-grid {
  display: grid;
  gap: clamp(1.25rem, 2.8vw, 1.85rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-feature-grid li {
  padding: 1.75rem 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.product-feature-grid li:hover,
.js .product-feature-grid [data-reveal].is-visible:hover {
  transform: translateY(-6px);
  border-color: var(--color-yellow);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.product-feature-icon {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  margin: 0 auto 1.45rem;
  place-items: center;
  border-radius: 50%;
  transition: transform 320ms ease;
}

.product-feature-grid li:hover .product-feature-icon {
  transform: scale(1.08);
}

.product-feature-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-feature-icon-enrolment {
  background: #ffe4dc;
  box-shadow: 0 0 0 6px rgba(234, 88, 12, 0.16);
}

.product-feature-icon-enrolment svg {
  stroke: #c2410c;
}

.product-feature-icon-training {
  background: #fff3d0;
  box-shadow: 0 0 0 6px rgba(255, 180, 29, 0.18);
}

.product-feature-icon-training svg {
  stroke: #c47b00;
}

.product-feature-icon-billing {
  background: #d9f4ea;
  box-shadow: 0 0 0 6px rgba(16, 163, 116, 0.16);
}

.product-feature-icon-billing svg {
  stroke: #0d8a62;
}

.product-feature-icon-documents {
  background: #dce8ff;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.14);
}

.product-feature-icon-documents svg {
  stroke: #1d4ed8;
}

.product-feature-icon-operations {
  background: #eee4ff;
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.14);
}

.product-feature-icon-operations svg {
  stroke: #6d28d9;
}

.product-feature-icon-access {
  background: #d7f3f6;
  box-shadow: 0 0 0 6px rgba(14, 116, 144, 0.16);
}

.product-feature-icon-access svg {
  stroke: #0e7490;
}

.product-feature-grid strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-feature-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  line-height: 1.55;
}

/* Why */
.why {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--color-surface);
}

.why-grid {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 5.5rem);
}

.why-copy .eyebrow {
  margin-bottom: 0;
  padding-bottom: 1.15rem;
}

.why-pillars {
  display: grid;
  gap: 1.15rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.why-pillars li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 280ms ease;
}

.why-pillars li:hover,
.js .why-pillars [data-reveal].is-visible:hover {
  transform: translateX(6px);
}

.why-pillar-icon {
  display: grid;
  flex: 0 0 1.55rem;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
}

.why-pillar-icon svg {
  width: 100%;
  height: 100%;
}

.why-pillar-icon circle {
  fill: var(--color-yellow);
}

.why-pillar-icon path {
  stroke: var(--color-blue);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-pillars strong {
  display: block;
  color: var(--color-blue);
}

.why-visual {
  position: relative;
}

.why-visual picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.why-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.why-visual:hover img {
  transform: scale(1.04);
}

/* Contact */
.contact {
  overflow: hidden;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--color-white);
}

.contact-intro {
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
}

.contact-intro .eyebrow {
  margin-bottom: 0.85rem;
}

.contact-intro h2 {
  margin-inline: auto;
  max-width: 14em;
}

.contact-intro .section-lead {
  margin-inline: auto;
  max-width: 58rem;
}

.contact-board {
  display: grid;
  gap: 1rem;
}

.contact-visual {
  position: relative;
  display: flex;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.contact-visual picture {
  flex: 1 1 auto;
  min-height: 0;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-visual:hover img {
  transform: scale(1.04);
}

.contact-channels {
  display: grid;
  gap: 1rem;
  margin: 0;
  font-style: normal;
}

.contact-tile {
  display: flex;
  min-height: 6.25rem;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  text-decoration: none;
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.contact-tile:hover,
.js [data-reveal].is-visible.contact-tile:hover {
  transform: translateY(-4px);
  border-color: var(--color-yellow);
  background: #fffdf6;
  box-shadow: var(--shadow-sm);
}

.contact-tile:hover .contact-icon {
  transform: scale(1.08);
}


.contact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  border-radius: 50%;
  transition: transform var(--transition);
}

.contact-icon-email {
  color: #c47b00;
  background: #fff3d0;
  box-shadow: 0 0 0 6px rgba(255, 180, 29, 0.18);
}

.contact-icon-phone {
  color: #0d8a62;
  background: #d9f4ea;
  box-shadow: 0 0 0 6px rgba(16, 163, 116, 0.16);
}

.contact-icon-facebook {
  color: #1d4ed8;
  background: #dce8ff;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.14);
}

.contact-icon-office {
  color: #c2410c;
  background: #ffe4dc;
  box-shadow: 0 0 0 6px rgba(234, 88, 12, 0.12);
}

.contact-icon svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.contact-tile-copy {
  min-width: 0;
}

.contact-tile small,
.contact-tile strong {
  display: block;
}

.contact-tile small {
  margin-bottom: 0.28rem;
  color: var(--color-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-tile strong {
  color: var(--color-blue);
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-next {
  display: grid;
  gap: 1rem;
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  padding: 0;
  list-style: none;
}

.contact-next li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem 1.3rem 1.4rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-next li:hover,
.js .contact-next [data-reveal].is-visible:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 30, 92, 0.16);
  box-shadow: var(--shadow-sm);
}

.contact-next-icon {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  border-radius: 50%;
}

.contact-next-icon svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.contact-next-icon-brief {
  color: #c47b00;
  background: #fff3d0;
  box-shadow: 0 0 0 6px rgba(255, 180, 29, 0.18);
}

.contact-next-icon-review {
  color: #0d8a62;
  background: #d9f4ea;
  box-shadow: 0 0 0 6px rgba(16, 163, 116, 0.16);
}

.contact-next-icon-next {
  color: #1d4ed8;
  background: #dce8ff;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.14);
}

.contact-next small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-next strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-blue);
  font-size: 1.05rem;
}

.contact-next p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  color: var(--color-white);
  background: var(--color-blue-900);
}

.footer-main {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.25rem;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: flex;
  width: 100%;
  max-width: 16.5rem;
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: var(--color-white);
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: none;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: left;
}

.footer-nav > p,
.footer-connect > p {
  margin-bottom: 0.9rem;
  color: var(--color-yellow);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav ul,
.footer-connect ul {
  display: grid;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a,
.footer-connect a,
.footer-connect li {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-connect li {
  align-items: flex-start;
  padding-top: 0.35rem;
  line-height: 1.45;
}

.footer-contact-icon {
  display: inline-flex;
  flex: 0 0 1.35rem;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.15rem;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
}

.footer-contact-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-nav a:hover,
.footer-connect a:hover {
  color: var(--color-yellow);
  transform: translateX(4px);
}

.footer-nav a[aria-current="page"] {
  color: var(--color-yellow);
}

.footer-nav a,
.footer-connect a {
  transition: color var(--transition), transform var(--transition);
}

.site-footer-legal {
  color: var(--color-white);
  background: #020f27;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.75rem;
  padding-block: 1.3rem;
  padding-bottom: max(1.3rem, calc(var(--safe-bottom) + 0.85rem));
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem 0;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.footer-legal-links li:not(:last-child)::after {
  content: "·";
  margin-inline: 0.7rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-legal-links a:hover,
.footer-legal-links a[aria-current="page"] {
  color: var(--color-yellow);
}

.footer-company-id {
  display: grid;
  gap: 0.2rem;
}

.footer-bottom p,
.footer-company-id p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  line-height: 1.45;
}

/* Legal pages */
.legal-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 4.75rem);
  color: var(--color-white);
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(255, 180, 29, 0.14), transparent 58%),
    radial-gradient(ellipse 55% 50% at 0% 100%, rgba(255, 255, 255, 0.05), transparent 55%),
    #03143f;
}

.legal-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 180, 29, 0.35), transparent);
  content: "";
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  text-align: left;
}

.legal-hero .eyebrow {
  margin-bottom: 1.15rem;
}

.legal-hero h1 {
  max-width: none;
  margin-bottom: 0.9rem;
  color: var(--color-white);
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.legal-meta {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.legal-hero-lead {
  max-width: 40rem;
  margin: 0 0 1.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.legal-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.8rem;
}

.legal-switch-link {
  display: inline-flex;
  min-height: 2.45rem;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition);
}

.legal-switch-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 180, 29, 0.45);
  background: rgba(255, 180, 29, 0.12);
  color: var(--color-white);
}

.legal-switch-link[aria-current="page"] {
  border-color: var(--color-yellow);
  background: var(--color-yellow);
  color: var(--color-blue-900);
}

.legal-body {
  padding-block: clamp(3rem, 7vw, 5rem);
  background: var(--color-white);
  max-width: 100%;
  overflow-x: hidden;
}

.legal-identity-wrap {
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.legal-layout {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
  align-items: start;
  max-width: 100%;
  overflow-x: hidden;
}

.legal-sidebar {
  display: grid;
  gap: 1rem;
}

.legal-identity-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.legal-identity-header {
  padding: 1.2rem 1.3rem 1.15rem;
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(135deg, var(--color-blue-100), #fff 72%);
}

.legal-identity-name {
  margin: 0 0 0.35rem;
  color: var(--color-blue);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.legal-identity-subtitle {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.legal-info-grid {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.05rem 1.1rem;
}

.legal-info-tile {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  text-decoration: none;
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.legal-info-tile-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 180, 29, 0.55);
  background: #fffdf6;
  box-shadow: var(--shadow-sm);
}

.legal-info-tile-link:hover .legal-info-icon {
  transform: scale(1.06);
}

.legal-info-icon {
  display: grid;
  flex: 0 0 auto;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  border-radius: 50%;
  transition: transform var(--transition);
}

.legal-info-icon svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.legal-info-icon-brand {
  color: var(--color-blue);
  background: var(--color-blue-100);
  box-shadow: 0 0 0 5px rgba(6, 30, 92, 0.08);
}

.legal-info-icon-ssm {
  color: #1d4ed8;
  background: #dce8ff;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.12);
}

.legal-info-icon-sst {
  color: #c47b00;
  background: #fff3d0;
  box-shadow: 0 0 0 5px rgba(255, 180, 29, 0.16);
}

.legal-info-icon-office {
  color: #c2410c;
  background: #ffe4dc;
  box-shadow: 0 0 0 5px rgba(234, 88, 12, 0.1);
}

.legal-info-icon-email {
  color: #c47b00;
  background: #fff3d0;
  box-shadow: 0 0 0 5px rgba(255, 180, 29, 0.16);
}

.legal-info-icon-phone {
  color: #0d8a62;
  background: #d9f4ea;
  box-shadow: 0 0 0 5px rgba(16, 163, 116, 0.14);
}

.legal-info-icon-web {
  color: #1d4ed8;
  background: #dce8ff;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.12);
}

.legal-info-copy {
  min-width: 0;
}

.legal-info-copy small,
.legal-info-copy strong {
  display: block;
}

.legal-info-copy small {
  margin-bottom: 0.25rem;
  color: var(--color-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-info-copy strong {
  color: var(--color-blue);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: break-word;
  word-break: normal;
}

.legal-toc {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.15rem 1.2rem 1.2rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  overflow: hidden;
}

.legal-toc-heading {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  color: var(--color-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-toc-heading span {
  width: 1.9rem;
  height: 0.2rem;
  border-radius: 99px;
  background: var(--color-yellow);
}

.legal-toc ol {
  display: grid;
  flex: 1;
  gap: 0.3rem;
  min-height: 0;
  max-height: min(70vh, 36rem);
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
}

.legal-toc a {
  display: block;
  padding: 0.42rem 0.55rem;
  border-radius: 0.55rem;
  color: var(--color-ink);
  font-size: 0.88rem;
  line-height: 1.45;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.legal-toc a:hover {
  background: var(--color-blue-100);
  color: var(--color-blue);
  transform: translateX(3px);
}

.legal-content {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

.legal-content h2 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: none;
  margin: 2.35rem 0 0.95rem;
  padding-top: 1.45rem;
  border-top: 1px solid var(--hairline);
  font-size: clamp(1.22rem, 2.2vw, 1.48rem);
  letter-spacing: -0.02em;
  scroll-margin-top: calc(var(--header-height) + var(--safe-top) + 1rem);
}

.legal-content h2::before {
  flex: 0 0 auto;
  width: 1.9rem;
  height: 0.2rem;
  margin-top: 0.62em;
  border-radius: 99px;
  background: var(--color-yellow);
  content: "";
}

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

.legal-content h2:first-child::before {
  margin-top: 0.45em;
}

.legal-content h3 {
  margin: 1.45rem 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  color: var(--color-ink);
  font-size: 0.95rem;
  line-height: 1.72;
}

.legal-content p {
  margin: 0 0 0.95rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1.05rem;
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 0.35rem;
}

.legal-content a {
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(6, 30, 92, 0.28);
  text-underline-offset: 0.16em;
}

.legal-content a:hover {
  color: var(--color-yellow-dark);
  text-decoration-color: currentColor;
}

@media (min-width: 48rem) {
  .legal-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-info-tile--wide {
    grid-column: 1 / -1;
  }
}

/* Legal pages — show content immediately (no scroll-reveal) */
.legal-hero .legal-hero-inner,
.legal-body .legal-identity-card,
.legal-body .legal-toc,
.legal-body .legal-content {
  opacity: 1;
  transform: none;
}

@media (min-width: 64rem) {
  .legal-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-layout {
    grid-template-columns: minmax(15rem, 19rem) minmax(0, 1fr);
    align-items: stretch;
    gap: 2rem;
  }

  .legal-sidebar {
    display: flex;
    min-height: 0;
    position: sticky;
    top: calc(var(--header-height) + var(--safe-top) + 1rem);
    align-self: start;
  }

  /* Legal pages — matched-height panels with internal scroll */
  body:has(.legal-body) {
    --legal-panel-height: calc(
      100dvh - var(--header-height) - var(--safe-top) - var(--safe-bottom) - 2rem
    );
  }

  body:has(.legal-body) .legal-toc,
  body:has(.legal-body) .legal-content {
    height: var(--legal-panel-height);
    max-height: var(--legal-panel-height);
  }

  body:has(.legal-body) .legal-toc {
    flex: 1;
    width: 100%;
  }

  body:has(.legal-body) .legal-toc ol {
    max-height: none;
    overscroll-behavior: contain;
  }

  body:has(.legal-body) .legal-content {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}

@media (min-width: 75rem) {
  .legal-layout {
    grid-template-columns: minmax(16rem, 21rem) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.back-to-top {
  position: fixed;
  right: max(1.15rem, calc(var(--safe-right) + 0.75rem));
  bottom: max(1.15rem, calc(var(--safe-bottom) + 0.75rem));
  z-index: 40;
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  border-radius: 999px;
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transform: translateY(0.65rem);
  pointer-events: none;
  transition: transform var(--transition), background var(--transition), opacity var(--transition), visibility var(--transition);
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-blue-800);
  transform: translateY(-0.18rem);
}

.back-to-top svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Progressive enhancement and reveal motion */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.65rem, 0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal][data-reveal-from="left"] {
  transform: translate3d(-2rem, 0, 0);
}

.js [data-reveal][data-reveal-from="right"] {
  transform: translate3d(2rem, 0, 0);
}

@media (max-width: 63.9375rem) {
  .js [data-reveal][data-reveal-from="left"],
  .js [data-reveal][data-reveal-from="right"] {
    transform: translate3d(0, 1.65rem, 0);
  }
}

.js [data-reveal][data-reveal-from="scale"] {
  transform: scale(0.96);
}

.js [data-reveal][data-reveal-delay="1"] {
  transition-delay: 90ms;
}

.js [data-reveal][data-reveal-delay="2"] {
  transition-delay: 180ms;
}

.js [data-reveal][data-reveal-delay="3"] {
  transition-delay: 270ms;
}

.js [data-reveal][data-reveal-delay="4"] {
  transition-delay: 360ms;
}

.js [data-reveal][data-reveal-delay="5"] {
  transition-delay: 450ms;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js [data-reveal-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 1.15rem, 0);
}

.js [data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: none;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 40ms; }
.js [data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 120ms; }
.js [data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 200ms; }
.js [data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 280ms; }
.js [data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 360ms; }

.js .hero-content.is-visible .hero-stats div {
  opacity: 0;
  animation: rise-in 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js .hero-content.is-visible .hero-stats div:nth-child(1) { animation-delay: 380ms; }
.js .hero-content.is-visible .hero-stats div:nth-child(2) { animation-delay: 470ms; }
.js .hero-content.is-visible .hero-stats div:nth-child(3) { animation-delay: 560ms; }

.js .hero-visual.is-visible .visual-status {
  opacity: 0;
  animation: rise-in 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js .hero-visual.is-visible .visual-status:nth-child(1) { animation-delay: 220ms; }
.js .hero-visual.is-visible .visual-status:nth-child(2) { animation-delay: 320ms; }
.js .hero-visual.is-visible .visual-status:nth-child(3) { animation-delay: 420ms; }

.js [data-reveal].is-visible .eyebrow span {
  animation: rule-grow 640ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translate3d(0, 0.9rem, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rule-grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes image-settle {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@media (min-width: 40rem) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo {
    max-width: 18rem;
  }
}

@media (max-width: 63.9375rem) {
  .nav-toggle {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .js .primary-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    visibility: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-0.75rem);
    transition: max-height 350ms ease, opacity var(--transition), transform var(--transition), visibility var(--transition), border-color var(--transition);
  }

  .js .primary-nav.is-open {
    max-height: min(32rem, calc(100dvh - var(--header-height) - var(--safe-top) - 1.5rem));
    overflow: auto;
    border-color: var(--color-line);
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    -webkit-overflow-scrolling: touch;
  }

  .js .primary-nav ul {
    display: grid;
    justify-content: stretch;
    gap: 0.2rem;
    padding: 0.75rem;
  }

  .js .primary-nav a {
    min-height: 3rem;
    padding-inline: 1rem;
    border-radius: 0.6rem;
  }

  .js .primary-nav a::after {
    display: none;
  }

  .js .primary-nav a:hover,
  .js .primary-nav a.is-active,
  .js .primary-nav a[aria-current="page"] {
    background: var(--color-surface);
  }

  .js .primary-nav .nav-contact {
    margin: 0.25rem 0 0;
    color: var(--color-blue-900);
    background: var(--color-yellow);
  }

  .js .primary-nav .nav-contact:hover,
  .js .primary-nav .nav-contact.is-active,
  .js .primary-nav .nav-contact[aria-current="page"] {
    background: #ffc34d;
  }
}

@media (min-width: 48rem) {
  :root {
    --header-height: 4.75rem;
  }

  .hero-frame img {
    aspect-ratio: 3 / 2;
  }

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

  .process-steps {
    column-gap: 1.5rem;
    row-gap: 1.75rem;
  }

  .process-steps li {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .process-steps li:not(:last-child)::after {
    display: none;
  }

  .process-steps li:nth-child(odd)::after {
    display: block;
    top: 1.15rem;
    left: 2.3rem;
    z-index: 0;
    width: calc(100% - 2.3rem + 1.5rem);
    height: 2px;
    pointer-events: none;
    background: linear-gradient(90deg, var(--color-yellow), rgba(6, 30, 92, 0.18));
  }

  .product-card {
    grid-template-columns: minmax(16rem, 0.95fr) minmax(0, 1.05fr);
  }

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

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

  .contact-tile-primary,
  .contact-tile-office {
    grid-column: 1 / -1;
  }

  .contact-visual img {
    aspect-ratio: 16 / 9;
  }

  .line-break {
    display: block;
  }
}

@media (min-width: 64rem) {
  .nav-toggle {
    display: none;
  }

  .header-phone {
    display: inline-flex;
    margin-left: auto;
    margin-right: 0.15rem;
  }

  .primary-nav {
    margin-left: 0;
  }

  .hero-grid,
  .about-grid,
  .why-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .about-grid {
    align-items: start;
    grid-template-rows: auto 1fr;
    column-gap: clamp(2.5rem, 7vw, 5.5rem);
    row-gap: 0;
  }

  .why-grid {
    align-items: start;
    grid-template-rows: auto 1fr;
    column-gap: clamp(2.5rem, 7vw, 5.5rem);
    row-gap: 0;
  }

  .why-copy {
    display: grid;
    grid-column: 1;
    grid-row: 1 / -1;
    grid-template-rows: subgrid;
  }

  .why-copy .eyebrow {
    grid-row: 1;
  }

  .why-copy-body {
    grid-row: 2;
  }

  .why-visual {
    grid-column: 2;
    grid-row: 2;
  }

  .about-visual {
    grid-column: 1;
    grid-row: 2;
  }

  .about-copy {
    display: grid;
    grid-column: 2;
    grid-row: 1 / -1;
    grid-template-rows: subgrid;
  }

  .about-copy .eyebrow {
    grid-row: 1;
  }

  .about-copy-body {
    grid-row: 2;
  }

  .contact-board {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    align-items: stretch;
    gap: 1.15rem;
  }

  .contact-visual,
  .contact-channels {
    min-height: 100%;
  }

  .contact-visual img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 28rem;
  }

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

  .contact-tile-primary,
  .contact-tile-office {
    grid-column: 1 / -1;
  }

  .contact-next {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

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

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(24rem, 0.88fr);
    gap: clamp(1.25rem, 3vw, 2.25rem);
  }

  .hero-visual {
    justify-self: end;
    width: calc(100% + clamp(3.5rem, 8vw, 8.5rem));
    margin-right: calc(-1 * clamp(2.75rem, 8vw, 8.5rem));
  }

  .hero-content {
    padding-block: 0.5rem 1rem;
  }

  .hero h1 {
    max-width: 11.4em;
    font-size: clamp(3.2rem, 4.5vw, 4.15rem);
  }

  .hero-frame img {
    aspect-ratio: 4 / 3;
  }

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

  .process {
    grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
  }

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

  .process-steps li {
    grid-template-columns: 1fr;
  }

  .process-steps li:nth-child(odd)::after,
  .process-steps li:not(:last-child)::after {
    display: block;
    top: 1.15rem;
    left: 2.3rem;
    width: calc(100% - 2.3rem + 1rem);
    height: 2px;
    background: linear-gradient(90deg, var(--color-yellow), rgba(6, 30, 92, 0.18));
  }

  .process-steps li:last-child::after {
    display: none;
  }

  .product-image,
  .product-image img {
    min-height: 18rem;
  }

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

  .footer-main {
    grid-template-columns: 1.15fr 0.95fr 0.8fr 0.8fr 1.1fr;
    align-items: start;
  }

  .footer-brand {
    grid-column: auto;
  }

}

@media (min-width: 75rem) {
  .service-body {
    padding: 1.35rem 1.55rem 1.45rem;
  }
}

@media (max-width: 47.99rem) {
  :root {
    --header-height: 4.15rem;
  }

  .section {
    padding-block: clamp(3.25rem, 12vw, 5rem);
    scroll-margin-top: calc(var(--header-height) + var(--safe-top));
  }

  h2 {
    max-width: none;
    font-size: clamp(1.75rem, 7.2vw, 2.35rem);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.05rem, 9.4vw, 2.75rem);
    line-height: 1.22;
  }

  .hero-lead,
  .section-lead,
  .product-description {
    font-size: 1rem;
  }

  .hero-stats {
    max-width: none;
    gap: 0.45rem;
  }

  .hero-stats div {
    min-width: 0;
    padding-right: 0.45rem;
  }

  .hero-stats dt {
    font-size: 0.64rem;
    line-height: 1.3;
  }

  .hero-stats dd {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .visual-status-group {
    left: 0.7rem;
    top: 0.7rem;
    max-width: calc(100% - 1.4rem);
  }

  .visual-status {
    max-width: 100%;
    padding: 0.45rem 0.65rem;
    white-space: normal;
  }

  .about-flip-card,
  .about-flip-inner {
    min-height: 13.5rem;
  }

  .product-copy {
    padding: 1.25rem 1.15rem 1.35rem;
  }

  .product-feature-grid li {
    padding: 1.35rem 1rem 1.15rem;
  }

  .contact-tile {
    min-height: 0;
    padding: 1rem 1.05rem;
  }

  .contact-intro h2,
  .contact-intro .section-lead,
  .section-heading.centered h2,
  .section-heading.centered .section-lead {
    max-width: none;
  }

  .footer-main {
    gap: 1.75rem;
    padding-block: 2.25rem;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .legal-content {
    padding: 1.25rem 1.1rem 1.4rem;
  }

  .legal-identity-header {
    padding: 1rem 1.05rem;
  }

  .legal-info-grid {
    padding: 0.85rem;
  }

  .legal-switch {
    gap: 1rem;
  }

  .legal-switch-link {
    width: 100%;
    justify-content: center;
  }

  .footer-logo {
    max-width: 14.5rem;
  }

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

@media (max-width: 30rem) {
  .brand {
    width: min(11.5rem, calc(100% - 3.75rem));
  }

  .visual-status-group {
    right: 0.55rem;
    left: 0.55rem;
    top: 0.55rem;
    max-width: none;
    gap: 0.4rem;
  }

  .visual-status-primary,
  .visual-status-secondary {
    right: 0.55rem;
    left: 0.55rem;
    justify-content: center;
  }

  .visual-status-primary {
    bottom: 0.55rem;
  }

  .about-flip-front strong {
    max-width: none;
  }
}

@media (hover: none) {
  .service-card:hover,
  .js [data-reveal].is-visible.service-card:hover,
  .product-feature-grid li:hover,
  .js .product-feature-grid [data-reveal].is-visible:hover,
  .contact-tile:hover,
  .js [data-reveal].is-visible.contact-tile:hover,
  .contact-next li:hover,
  .js .contact-next [data-reveal].is-visible:hover,
  .why-pillars li:hover,
  .js .why-pillars [data-reveal].is-visible:hover,
  .button:hover,
  .hero-stats div:hover,
  .visual-status:hover,
  .footer-nav a:hover,
  .footer-connect a:hover {
    transform: none;
  }

  .service-card:hover .service-image img,
  .about-visual:hover img,
  .why-visual:hover img,
  .contact-visual:hover img,
  .product-card:hover .product-image img,
  .brand:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .js [data-reveal],
  .js [data-reveal-stagger] > *,
  .js [data-reveal-stagger].is-visible > *,
  .js .hero-content.is-visible .hero-stats div,
  .js .hero-visual.is-visible .visual-status,
  .js [data-reveal].is-visible .eyebrow span,
  .js .primary-nav li,
  .js .service-card.is-visible .service-body li {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .js .site-header {
    animation: none;
  }

  .hero-glow,
  .status-dot,
  .hero-frame,
  .hero-visual.is-visible .hero-frame img,
  .service-card:hover .service-image img,
  .about-visual:hover img,
  .why-visual:hover img,
  .contact-visual:hover img,
  .product-card:hover .product-image img {
    animation: none !important;
    transform: none !important;
  }

  .about-flip-inner {
    transform: none !important;
  }

  .about-flip-back {
    transform: none;
    opacity: 0;
  }

  .about-flip-card:hover .about-flip-front,
  .about-flip-card:focus-visible .about-flip-front,
  .about-flip-card.is-flipped .about-flip-front {
    opacity: 0;
  }

  .about-flip-card:hover .about-flip-back,
  .about-flip-card:focus-visible .about-flip-back,
  .about-flip-card.is-flipped .about-flip-back {
    opacity: 1;
  }
}
